/* Modern Elegant Theme */
:root {
  --primary-color: #2c3e50;
  --secondary-color: #e67e22;
  --text-color: #2c3e50;
  --background-color: #ffffff;
  --accent-color: #3498db;
  --shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: var(--text-color);
  background-color: var(--background-color);
  line-height: 1.5;
}

.hero {
  position: relative;
  height: 480px;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/image-0183.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  animation: kenBurns 20s ease-in-out infinite;
}

@keyframes kenBurns {
  0% {
    background-size: 102% auto;
    background-position: center center;
  }
  25% {
    background-size: 106% auto;
    background-position: 40% 40%;
  }
  50% {
    background-size: 110% auto;
    background-position: 60% 60%;
  }
  75% {
    background-size: 106% auto;
    background-position: 50% 45%;
  }
  100% {
    background-size: 102% auto;
    background-position: center center;
  }
}

.hero-content {
  max-width: 800px;
  padding: 0 2rem;
}

.hero h1 {
  margin: 0;
  font-size: 3.5rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero p {
  font-size: 1.4rem;
  margin-top: 1rem;
  opacity: 0.9;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

section {
  padding: 1.5rem 2rem;
  max-width: 1200px;
  margin: auto;
}

section + section {
  padding-top: 0.5rem;
}

section h2 {
  color: var(--primary-color);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.3rem;
}

section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: var(--secondary-color);
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.image-grid figure {
  margin: 0;
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease;
}

.image-grid figure:hover {
  transform: translateY(-5px);
}

.image-grid img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.image-grid figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem;
  font-size: 0.9rem;
  text-align: center;
}

ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

ul:not(.nav-links) li {
  background: white;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

ul:not(.nav-links) li::before {
  content: "✓";
  color: var(--secondary-color);
  font-weight: bold;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
  border: none;
  cursor: pointer;
  font-size: 1.2em;
  text-align: center;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
  color: #fff;
}

.btn:active {
  transform: translateY(0);
  color: #fff;
}

.btn span:first-child {
  font-size: 1.2em;
  color: #fff;
  font-weight: 600;
}

.btn.hero-btn span:first-child,
.btn.footer-btn span:first-child {
  color: #fff;
}

.btn-subtext {
  display: block;
  font-size: 0.8em;
  color: #fff;
  opacity: 0.85;
  margin-top: -4px;
  letter-spacing: 0.01em;
  font-weight: 400;
}

.btn.hero-btn .btn-subtext,
.btn.footer-btn .btn-subtext {
  color: #fff;
  opacity: 0.85;
}

.btn .btn-subtext {
  color: #fff;
  opacity: 0.85;
}

.hero-btn {
  font-size: 1.1em;
  padding: 18px 35px;
  margin-top: 30px;
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

.hero-btn:hover {
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.6);
  color: white;
  text-decoration: none;
}

iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

footer {
  background-color: var(--primary-color);
  color: white;
  padding: 3rem 2rem 1rem 2rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 2rem;
}

.footer-section h4 {
  color: var(--secondary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  font-weight: 600;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.contact-icon {
  font-size: 1.2rem;
  margin-top: 0.2rem;
}

.contact-item div p:first-child {
  font-weight: 600;
  margin-bottom: 0.2rem;
  color: var(--secondary-color);
}

.contact-item div p:last-child {
  margin: 0;
}

.contact-item a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--secondary-color);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
  padding: 0.3rem 0;
}

.footer-links a:hover {
  color: var(--secondary-color);
}

.footer-btn {
  margin: 0;
  font-size: 0.9rem;
  padding: 12px 24px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1rem;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}

.usb-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.usb-card {
  background: white;
  padding: 1.5rem 1rem;
  border-radius: 12px;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.usb-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.usb-card.animate {
  opacity: 1;
  transform: translateY(0);
}

.usb-card.animate:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.usb-icon {
  font-size: 2.5rem;
  margin-bottom: 0.8rem;
  display: block;
}

.usb-card h3 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin: 0 0 0.4rem 0;
  font-weight: 600;
}

.usb-card p {
  color: #666;
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

.usb-card:nth-child(1) { transition-delay: 0.1s; }
.usb-card:nth-child(2) { transition-delay: 0.2s; }
.usb-card:nth-child(3) { transition-delay: 0.3s; }
.usb-card:nth-child(4) { transition-delay: 0.4s; }
.usb-card:nth-child(5) { transition-delay: 0.5s; }
.usb-card:nth-child(6) { transition-delay: 0.6s; }

.language-switcher {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  gap: 0.5rem;
  z-index: 10;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.lang-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
}

.lang-btn.active {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Carousel Styles */
.carousel-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto 2rem auto;
  overflow: hidden;
  height: 700px;
}

.carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  position: relative;
  height: 100%;
}

.carousel-item {
  position: absolute;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all 0.5s ease;
  cursor: pointer;
  display: none;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Active image (main) */
.carousel-item.active {
  width: 900px;
  height: 600px;
  z-index: 5;
  transform: scale(1);
  display: block;
  position: relative;
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.56);
  color: white;
  padding: 1rem;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 500;
  backdrop-filter: blur(5px);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}

.carousel-btn:hover {
  background: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: 1rem;
}

.carousel-btn.next {
  right: 1rem;
}

/* Thumbnails Styles */
.thumbnails {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
}

.thumbnail {
  text-align: center;
  cursor: pointer;
  padding: 0.5rem;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.thumbnail:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.thumbnail.active {
  border-color: var(--secondary-color);
  background: rgba(230, 126, 34, 0.1);
}

.thumbnail img {
  width: 100%;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.thumbnail span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-color);
  font-weight: 500;
}

/* Animation Keyframes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Animation Classes */
.section-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.section-animate.animate {
  opacity: 1;
  transform: translateY(0);
}

.carousel-container {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.carousel-container.animate {
  opacity: 1;
  transform: translateY(0);
}

.thumbnails {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.thumbnails.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Facilities Styles */
.facilities-section {
  margin-bottom: 2rem;
}

.facilities-section h3 {
  color: var(--primary-color);
  font-size: 1.2rem;
  margin-bottom: 1rem;
  position: relative;
  padding-bottom: 0.3rem;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 1rem;
}

.facility-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem;
  background: white;
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.facility-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.facility-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.facility-item span {
  font-size: 0.9rem;
  color: var(--text-color);
  font-weight: 500;
  line-height: 1.3;
}

/* Facilities List (Three Columns) */
.facilities-text-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.facilities-text-column h4 {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
  margin-top: 1.5rem;
  font-weight: 600;
  border-bottom: 1px solid var(--secondary-color);
  padding-bottom: 0.3rem;
}

.facilities-text-column h4:first-child {
  margin-top: 0;
}

.facilities-text-column p {
  margin: 0.3rem 0;
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.4;
}

/* Navigation Menu */
.nav-menu {
  width: fit-content;
  margin: -43px auto 2rem auto;
  max-width: 98vw;
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-container {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 0.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin: 0;
}

.nav-links a {
  display: inline-block;
  padding: 0.38rem 1.1rem;
  border-radius: 22px;
  color: var(--primary-color);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  background: #f7f8fa;
  box-shadow: 0 1px 4px rgba(102,126,234,0.07);
  border: 1px solid #e0e6f7;
  margin: 0 0.08rem;
  transition: background 0.18s, color 0.18s, box-shadow 0.18s, border 0.18s;
  line-height: 1.2;
}

.nav-links a:hover, .nav-links a.active {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #fff;
  box-shadow: 0 2px 8px rgba(102,126,234,0.13);
  border: 1px solid #764ba2;
}

/* Go to Top Button */
.go-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
  transition: all 0.3s ease;
  z-index: 1000;
  opacity: 0;
  transform: translateY(20px);
}

.go-to-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.6);
  background: linear-gradient(135deg, #5a6fd8 0%, #6a4190 100%);
}

.go-to-top.show {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero {
    height: 35vh;
    min-height: 210px;
  }

  .hero h1 {
    font-size: 2rem;
  }
  
  .hero p {
    font-size: 1.1rem;
  }
  
  section {
    padding: 1rem;
  }
  
  section + section {
    padding-top: 0.25rem;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
  
  .language-switcher {
    top: 0.5rem;
    right: 0.5rem;
  }
  
  .lang-btn {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
  }
  
  .carousel-container {
    max-width: 100%;
    padding: 0 1rem;
  }
  
  .carousel {
    padding: 0 1rem;
  }
  
  .carousel-item {
    flex: 0 0 250px;
    height: 300px;
  }
  
  .carousel-btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .thumbnails {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 0.5rem;
  }
  
  .thumbnail img {
    height: 60px;
  }
  
  .thumbnail span {
    font-size: 0.7rem;
  }
  
  .usb-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 100%;
  }
  
  .usb-card {
    padding: 1.2rem 0.8rem;
  }
  
  .usb-icon {
    font-size: 2rem;
    margin-bottom: 0.6rem;
  }
  
  .usb-card h3 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
  }
  
  .usb-card p {
    font-size: 0.8rem;
  }
  
  .facilities-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 0.8rem;
  }
  
  .facility-item {
    padding: 0.6rem;
    gap: 0.6rem;
  }
  
  .facility-icon {
    font-size: 1.3rem;
  }
  
  .facility-item span {
    font-size: 0.85rem;
  }
  
  .facilities-section h3 {
    font-size: 1.1rem;
  }
  
  .facilities-text-columns {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
  
  .facilities-text-column h4 {
    font-size: 0.95rem;
    margin-top: 0.8rem;
  }
  
  .facilities-text-column p {
    font-size: 0.8rem;
    margin: 0.2rem 0;
  }
  
  .nav-menu {
    max-width: 99vw;
    margin: -18px auto 1.2rem auto;
    border-radius: 8px;
    padding: 0.1rem 0.1rem;
  }
  
  .nav-links a {
    font-size: 0.89rem;
    padding: 0.22rem 0.7rem;
    border-radius: 16px;
  }
  
  .go-to-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
  
  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-section h4 {
    font-size: 1.1rem;
  }
  
  .contact-item {
    gap: 0.6rem;
  }
  
  .contact-icon {
    font-size: 1.1rem;
  }

  .rating-sticker {
    top: 1rem;
    left: 1rem;
    padding: 0.8rem;
    min-width: 100px;
  }

  .rating-number {
    font-size: 1.6rem;
  }

  .rating-label {
    font-size: 0.7rem;
  }

  .rating-source {
    font-size: 0.6rem;
  }
}

@media (max-width: 480px) {
  .usb-grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  
  .usb-card {
    padding: 1rem 0.8rem;
  }
  
  .usb-icon {
    font-size: 1.8rem;
  }
  
  .usb-card h3 {
    font-size: 0.95rem;
  }
  
  .usb-card p {
    font-size: 0.75rem;
  }
  
  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }
  
  .facility-item {
    padding: 0.8rem;
  }
  
  .facility-icon {
    font-size: 1.2rem;
  }
  
  .facility-item span {
    font-size: 0.85rem;
  }
  
  .facilities-text-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .facilities-text-column h4 {
    font-size: 0.9rem;
    margin-top: 0.6rem;
  }
  
  .facilities-text-column p {
    font-size: 0.75rem;
    margin: 0.15rem 0;
  }
  
  .nav-menu {
    max-width: 100vw;
    margin: -10px auto 0.7rem auto;
    border-radius: 6px;
    padding: 0.05rem 0.05rem;
  }
  
  .nav-links {
    gap: 0.05rem;
  }
  
  .nav-links a {
    font-size: 0.75rem;
    padding: 0.13rem 0.35rem;
    border-radius: 10px;
  }
  
  .go-to-top {
    bottom: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
  }
  
  footer {
    padding: 1.5rem 1rem 1rem 1rem;
  }
  
  .footer-content {
    gap: 1rem;
  }
  
  .footer-section h4 {
    font-size: 1rem;
  }
  
  .contact-item {
    gap: 0.5rem;
  }
  
  .contact-icon {
    font-size: 1rem;
  }
  
  .footer-btn {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}

.facilities-section h3 {
  font-size: 1.2rem;
}

/* Booking.com Style Rating Sticker */
.rating-sticker.bookingcom-style {
  position: absolute;
  top: 2rem;
  left: 2rem;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.13);
  padding: 0.7rem 1.1rem 0.7rem 1.1rem;
  z-index: 10;
  min-width: 0;
  border: 1px solid #e6e6e6;
  gap: 1.1rem;
}
.rating-sticker .rating-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-right: 0.5rem;
}
.rating-sticker .rating-label {
  font-size: 1.1rem;
  font-weight: 700;
  color: #111;
  line-height: 1.1;
}
.rating-sticker .rating-reviews {
  font-size: 0.95rem;
  color: #6b6b6b;
  font-weight: 400;
  margin-top: 0.1rem;
}
.rating-sticker .rating-score-box {
  background: #003580;
  border-radius: 7px;
  padding: 0.2em 0.7em 0.18em 0.7em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.2em;
  min-height: 2.2em;
}
.rating-sticker .rating-score {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01em;
}
@media (max-width: 768px) {
  .rating-sticker.bookingcom-style {
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 0.7rem;
    gap: 0.7rem;
  }
  .rating-sticker .rating-label {
    font-size: 1rem;
  }
  .rating-sticker .rating-reviews {
    font-size: 0.85rem;
  }
  .rating-sticker .rating-score-box {
    min-width: 1.7em;
    min-height: 1.7em;
    padding: 0.15em 0.5em 0.13em 0.5em;
  }
  .rating-sticker .rating-score {
    font-size: 1.05rem;
  }
}

@media (max-width: 600px) {
  .btn-subtext {
    font-size: 0.9em;
  }
} 