/* ============================================================
   ORCHARD GOLF & COUNTRY RESORT - SHARED STYLESHEET
   Used across all pages: home.html, about.html, booking.html,
   booking-details.html, contact.html
   ============================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  --primary-green: #1B5E20;
  --accent-gold: #C9A227;
  --white: #FFFFFF;
  --light-gray: #F8F9FA;
  --dark-text: #212529;
  --font-poppins: 'Poppins', sans-serif;
  --transition-smooth: all 0.3s ease;
  --transition-bouncy: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --border-radius: 12px;
  --box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  --box-shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* ===== GLOBAL RESET & TYPOGRAPHY ===== */
html {
  overflow-y: scroll;
}

body {
  font-family: var(--font-poppins);
  color: var(--dark-text);
  background-color: var(--white);
  padding-top: 0;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  color: var(--dark-text);
}

a {
  text-decoration: none;
  transition: var(--transition-smooth);
}

img {
  max-width: 100%;
  height: auto;
}

/* ===== UTILITY CLASSES ===== */
.text-gold {
  color: var(--accent-gold) !important;
}

.text-green {
  color: var(--primary-green) !important;
}

.bg-light-gray {
  background-color: var(--light-gray);
}

.text-green-link {
  color: var(--primary-green);
  text-decoration: underline;
  font-weight: 500;
  transition: var(--transition-smooth);
}

.text-green-link:hover {
  color: var(--accent-gold);
}

/* ===== SECTION SUBTITLE & HEADING (Shared) ===== */
.section-subtitle {
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.section-heading {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--dark-text);
}

/* ===== BUTTONS (Shared) ===== */
.btn-primary-green {
  background-color: var(--primary-green);
  color: var(--white);
  border: 2px solid var(--primary-green);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition-bouncy);
  cursor: pointer;
}

.btn-primary-green:hover {
  background-color: transparent;
  color: var(--primary-green);
  border-color: var(--primary-green);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(27, 94, 32, 0.25);
}

.btn-outline-green {
  background-color: transparent;
  color: var(--primary-green);
  border: 2px solid var(--primary-green);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition-bouncy);
  cursor: pointer;
}

.btn-outline-green:hover {
  background-color: var(--primary-green);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-gold {
  background-color: var(--accent-gold);
  color: var(--white);
  border: 2px solid var(--accent-gold);
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: var(--transition-bouncy);
  letter-spacing: 0.5px;
  cursor: pointer;
}

.btn-gold:hover {
  background-color: transparent;
  color: var(--accent-gold);
  border-color: var(--accent-gold);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(201, 162, 39, 0.25);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 500;
  transition: var(--transition-bouncy);
  cursor: pointer;
}

.btn-outline-light:hover {
  background-color: var(--white);
  color: var(--primary-green);
}

/* ============================================================
   HERO LOGO (Separate from navbar)
   ============================================================ */
.hero-logo-wrapper {
  position: absolute;
  top: 20px;
  left: 5%;
  z-index: 1001;
  pointer-events: auto;
}

.hero-logo-link {
  display: block;
  text-decoration: none;
}

.hero-logo {
  height: 195px;
  width: auto;
  display: block;

  /* Premium visibility */
  filter:
    drop-shadow(0 0 8px rgba(255,255,255,.95))
    drop-shadow(0 0 18px rgba(255,255,255,.75))
    drop-shadow(0 0 35px rgba(255,255,255,.45))
    drop-shadow(0 8px 20px rgba(0,0,0,.35));

  transition: all .35s ease;
}

.hero-logo:hover{
  transform: scale(1.03);

  filter:
    drop-shadow(0 0 12px rgba(255,255,255,1))
    drop-shadow(0 0 28px rgba(255,255,255,.85))
    drop-shadow(0 0 45px rgba(255,255,255,.55))
    drop-shadow(0 10px 24px rgba(0,0,0,.4));
}

/* ===== NAVIGATION BAR - TRANSPARENT TOP ===== */
#mainNav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 1.4rem 5%;
  background: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.4s ease;
}

#mainNav .container {
  max-width: 100%;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

/* White nav links at top */
#mainNav .nav-link {
  color: #FFFFFF !important;
  font-weight: 500;
  padding: 0.5rem 1.1rem !important;
  border-radius: 6px;
  transition: all 0.3s ease;
  font-size: 0.95rem;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

#mainNav .nav-link:hover {
  color: var(--accent-gold) !important;
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

#mainNav .nav-link.active {
  color: var(--accent-gold) !important;
  background-color: rgba(255, 255, 255, 0.15);
  font-weight: 600;
}

#mainNav .nav-link::after {
  background: var(--accent-gold);
}

/* White hamburger at top */
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Language dropdown - white at top */
.lang-dropdown-btn {
  color: #FFFFFF !important;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
  display: flex !important;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  padding: 0.5rem 0.8rem !important;
  border-radius: 6px;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}
.lang-dropdown-btn:hover {
  background-color: rgba(255, 255, 255, 0.1) !important;
  color: var(--accent-gold) !important;
}
.lang-dropdown-btn::after { display: none !important; }

/* ===== SCROLLED STATE: Floating glass navbar ===== */
#mainNav.navbar-scrolled {
  padding: 0.6rem 5%;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 16px 16px;
  max-width: 95%;
  left: 2.5%;
  top: 8px;
  justify-content: center;
}

/* Dark nav links when scrolled */
#mainNav.navbar-scrolled .nav-link {
  color: var(--dark-text) !important;
  text-shadow: none;
}
#mainNav.navbar-scrolled .nav-link:hover {
  color: var(--primary-green) !important;
  background-color: rgba(27, 94, 32, 0.06);
}
#mainNav.navbar-scrolled .nav-link.active {
  color: var(--primary-green) !important;
  background-color: rgba(27, 94, 32, 0.1);
}
#mainNav.navbar-scrolled .nav-link::after {
  background: var(--primary-green);
}

/* Dark hamburger when scrolled */
#mainNav.navbar-scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(33, 37, 41, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Dark language dropdown when scrolled */
#mainNav.navbar-scrolled .lang-dropdown-btn {
  color: var(--dark-text) !important;
  text-shadow: none;
}
#mainNav.navbar-scrolled .lang-dropdown-btn:hover {
  background-color: rgba(27, 94, 32, 0.06) !important;
  color: var(--primary-green) !important;
}

/* ===== Shared navbar elements ===== */
.navbar-collapse { flex-grow: 0; }
.navbar-nav { display: flex; align-items: center; gap: 0.3rem; }
.navbar-toggler { border: none; padding: 8px; order: 3; margin-left: 15px; }
.navbar-toggler:focus { box-shadow: none; }

.lang-dropdown-menu {
  border: none; border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0; min-width: 180px; margin-top: 10px;
}
.lang-option { padding: 10px 20px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s ease; }
.lang-option:hover { background-color: rgba(27, 94, 32, 0.06); color: var(--primary-green); }

/* ===== MOBILE ===== */
@media (max-width: 992px) {
  .hero-logo { height: 140px; }
  .hero-logo-wrapper { top: 15px; left: 4%; }
  
  #mainNav.navbar-scrolled {
    max-width: 96%;
    left: 2%;
    justify-content: flex-end;
  }
  
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    padding: 15px; border-radius: 10px;
    margin-top: 10px; box-shadow: var(--box-shadow);
    width: 100%; order: 4; position: relative; z-index: 9999;
  }
  
  #mainNav .navbar-collapse .nav-link {
    color: var(--dark-text) !important;
    text-shadow: none;
  }
}

@media (max-width: 768px) {
  .hero-logo { height: 110px; }
  .hero-logo-wrapper { top: 10px; left: 3%; }
}

/* ============================================================
   FOOTER (Shared Across All Pages)
   ============================================================ */
.footer-section {
  background-color: #111;
  color: #ccc;
  padding: 60px 0 30px;
}

.footer-logo {
  height: 65px;
  width: auto;
  filter: brightness(1.1);
}

.footer-text {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #aaa;
}

.social-icons {
  display: flex;
  gap: 10px;
}

.social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-radius: 50%;
  transition: var(--transition-bouncy);
}

.social-icons a:hover {
  background: var(--accent-gold);
  transform: translateY(-3px);
}

.footer-heading {
  color: var(--white);
  font-weight: 600;
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.footer-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-section ul li {
  margin-bottom: 10px;
}

.footer-section ul li a {
  color: #aaa;
  transition: var(--transition-smooth);
}

.footer-section ul li a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.contact-list li {
  color: #aaa;
  display: flex;
  align-items: center;
}

.contact-list li i {
  width: 20px;
  text-align: center;
}

.footer-divider {
  border-color: rgba(255, 255, 255, 0.1);
  margin: 30px 0 20px;
}

.copyright {
  color: #888;
  font-size: 0.9rem;
}

/* ============================================================
   RESPONSIVE STYLES (Shared)
   ============================================================ */
@media (max-width: 1200px) {
  #mainNav { padding: 1rem 3%; }
  #mainNav.scrolled { padding: 0.7rem 3%; }
  .nav-link { padding: 0.5rem 0.8rem !important; font-size: 0.9rem; }
}

@media (max-width: 992px) {
  #mainNav { padding: 0.8rem 4%; flex-wrap: wrap; }
  #mainNav.scrolled { padding: 0.6rem 4%; }
  #mainNav .container { flex-wrap: wrap; }
  .navbar-logo { height: 80px; }
  #mainNav.scrolled .navbar-logo { height: 55px; }
  .navbar-toggler { order: 3; }
  .navbar-collapse {
    background: var(--white); padding: 15px; border-radius: 10px;
    margin-top: 10px; box-shadow: var(--box-shadow); width: 100%;
    order: 4; position: relative; z-index: 9999;
  }
  .navbar-nav { gap: 0.2rem; }
  .section-heading { font-size: 2rem; }
}

@media (max-width: 768px) {
  #mainNav { padding: 0.7rem 4%; }
  .navbar-logo { height: 65px; }
  #mainNav.scrolled .navbar-logo { height: 48px; }
  .nav-link { padding: 0.4rem 0.6rem !important; font-size: 0.85rem; }
  #mainNav .btn-gold { padding: 7px 16px; font-size: 0.82rem; }
  .section-heading { font-size: 1.8rem; }
  .footer-section { padding: 40px 0 20px; }
}

/* ============================================================
   HERO & CTA TEXT COLOR OVERRIDE (White text on dark overlays)
   ============================================================ */
.hero-section h1, .hero-section p, .hero-section .hero-title,
.hero-section .hero-subtitle, .hero-section .hero-description,
.contact-hero-section h1, .contact-hero-section p, .contact-hero-section .contact-hero-title,
.contact-hero-section .contact-hero-subtitle, .contact-hero-section .contact-hero-text,
.booking-hero-section h1, .booking-hero-section p, .booking-hero-section .booking-hero-title,
.booking-hero-section .booking-hero-subtitle, .booking-hero-section .booking-hero-text,
.about-hero-section h1, .about-hero-section p, .about-hero-section .about-hero-title,
.about-hero-section .about-hero-subtitle, .about-hero-section .about-hero-text,
.cta-section h2, .cta-section p, .cta-section .cta-title, .cta-section .cta-text {
  color: #FFFFFF !important;
}

.hero-section .text-gold, .contact-hero-section .contact-hero-subtitle,
.booking-hero-section .booking-hero-subtitle, .about-hero-section .about-hero-subtitle {
  color: var(--accent-gold) !important;
}

/* ============================================================
   PREMIUM SOCIAL MEDIA PILLS - EXPANDING HOVER ANIMATION
   ============================================================ */
.social-pills {
  display: flex; gap: 12px; align-items: center; flex-wrap: nowrap;
}

.social-pill {
  display: flex; align-items: center; justify-content: flex-start;
  height: 48px; width: 48px; min-width: 48px; max-width: 160px;
  border-radius: 50px; text-decoration: none; overflow: hidden;
  transition: width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2),
              min-width 0.35s cubic-bezier(0.25, 0.8, 0.25, 1.2),
              background 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  position: relative; white-space: nowrap; flex-shrink: 0;
}

.social-pill:hover {
  width: 160px; min-width: 160px; transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.social-pill-icon {
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; min-width: 48px; font-size: 1.1rem;
  flex-shrink: 0; position: relative; z-index: 2;
}

.social-pill-text {
  font-size: 0.9rem; font-weight: 600; letter-spacing: 0.5px;
  opacity: 0; transform: translateX(-8px);
  transition: opacity 0.25s ease 0.05s, transform 0.3s cubic-bezier(0.25, 0.8, 0.25, 1.2) 0.05s;
  padding-right: 18px; white-space: nowrap;
}

.social-pill:hover .social-pill-text { opacity: 1; transform: translateX(0); }

.social-pill-facebook { background: #1877F2; color: #FFFFFF; }
.social-pill-facebook:hover { background: #1877F2; box-shadow: 0 8px 25px rgba(24, 119, 242, 0.4); }

.social-pill-instagram { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); color: #FFFFFF; }
.social-pill-instagram:hover { background: linear-gradient(45deg, #F58529, #DD2A7B, #8134AF, #515BD4); box-shadow: 0 8px 25px rgba(221, 42, 123, 0.4); }

.social-pill-tiktok { background: #FFFFFF; color: #111111; border: 2px solid rgba(255, 255, 255, 0.25); }
.social-pill-tiktok:hover { background: #FFFFFF; color: #111111; border-color: rgba(255, 255, 255, 0.5); box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); }

@media (max-width: 768px) {
  .social-pills { gap: 10px; }
  .social-pill { height: 44px; width: 44px; min-width: 44px; max-width: 140px; }
  .social-pill-icon { width: 44px; height: 44px; min-width: 44px; font-size: 1rem; }
  .social-pill:hover { width: 140px; min-width: 140px; }
  .social-pill-text { font-size: 0.82rem; }
}

@media (max-width: 480px) {
  .social-pills { gap: 8px; }
  .social-pill { height: 40px; width: 40px; min-width: 40px; max-width: 120px; }
  .social-pill-icon { width: 40px; height: 40px; min-width: 40px; font-size: 0.95rem; }
  .social-pill:hover { width: 120px; min-width: 120px; }
  .social-pill-text { font-size: 0.78rem; padding-right: 14px; }
}

/* ============================================================
   BOARD OF DIRECTORS SECTION
   ============================================================ */
.board-section { padding: 80px 0; background-color: var(--light-gray); }
.board-intro { font-size: 1.05rem; color: #6c757d; max-width: 650px; margin: 15px auto 0; line-height: 1.7; }

.director-card {
  background: var(--white); border-radius: var(--border-radius); padding: 35px 25px 30px;
  text-align: center; box-shadow: var(--box-shadow); transition: all 0.3s ease;
  height: 100%; position: relative; overflow: hidden;
}
.director-card:hover { transform: translateY(-8px); box-shadow: var(--box-shadow-hover); }

.director-accent {
  width: 0; height: 3px; background: var(--accent-gold); margin: 0 auto 12px;
  border-radius: 3px; transition: width 0.3s ease;
}
.director-card:hover .director-accent { width: 50px; }

.director-image-wrapper {
  width: 150px; height: 150px; border-radius: 50%; overflow: hidden;
  margin: 0 auto 20px; border: 3px solid #e8f5e9; transition: all 0.3s ease;
}
.director-card:hover .director-image-wrapper { border-color: var(--primary-green); transform: scale(1.05); }

.director-image { width: 100%; height: 100%; object-fit: cover; }

.director-name { font-size: 1.1rem; font-weight: 600; color: var(--dark-text); margin-bottom: 6px; }
.director-position { font-size: 0.9rem; color: var(--accent-gold); font-weight: 500; margin-bottom: 0; letter-spacing: 0.5px; }

@media (max-width: 992px) { .director-image-wrapper { width: 130px; height: 130px; } }
@media (max-width: 768px) {
  .board-section { padding: 50px 0; }
  .director-image-wrapper { width: 120px; height: 120px; }
}

/* ============================================================
   LANGUAGE DROPDOWN
   ============================================================ */
.lang-dropdown-btn {
  display: flex !important; align-items: center; gap: 6px;
  color: var(--dark-text) !important; font-weight: 500;
  padding: 0.5rem 0.8rem !important; border-radius: 6px; font-size: 0.9rem;
}
.lang-dropdown-btn:hover { background-color: rgba(27, 94, 32, 0.06); color: var(--primary-green) !important; }
.lang-dropdown-btn::after { display: none !important; }

.lang-dropdown-menu {
  border: none; border-radius: 12px; box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  padding: 8px 0; min-width: 180px; margin-top: 10px;
}

.lang-option { padding: 10px 20px; font-size: 0.9rem; font-weight: 500; transition: all 0.2s ease; }
.lang-option:hover { background-color: rgba(27, 94, 32, 0.06); color: var(--primary-green); }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal-on-scroll { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }

/* ============================================================
   GOLF TARIFF SECTION
   ============================================================ */
.golf-tariff-section {
  padding: 80px 0;
  background-color: var(--white);
}

.tariff-intro {
  font-size: 1.05rem;
  color: #6c757d;
  max-width: 600px;
  margin: 10px auto 0;
  line-height: 1.7;
}

/* ===== TARIFF PREVIEW ===== */
.tariff-preview-wrapper {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.tariff-preview {
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  border: 3px solid var(--accent-gold);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.tariff-preview:hover {
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.tariff-preview:hover .tariff-image {
  transform: scale(1.02);
}

.tariff-preview:hover .tariff-overlay {
  opacity: 1;
}

.tariff-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

/* ===== OVERLAY ===== */
.tariff-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.tariff-overlay-icon {
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 10px;
  filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
}

.tariff-overlay-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #FFFFFF;
  letter-spacing: 1px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tariff-hint {
  text-align: center;
  margin-top: 12px;
  font-size: 0.85rem;
  color: #999;
}

/* ===== MODAL ===== */
.tariff-modal-content {
  background: transparent;
  border: none;
  position: relative;
}

.tariff-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1055;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
  font-size: 1.2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.tariff-close-btn:hover {
  background: rgba(0, 0, 0, 0.85);
  border-color: #FFFFFF;
  transform: scale(1.1);
}

.tariff-modal-body {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tariff-modal-image {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
  .golf-tariff-section { padding: 60px 0; }
  .tariff-preview-wrapper { max-width: 100%; padding: 0 15px; }
}

@media (max-width: 768px) {
  .golf-tariff-section { padding: 40px 0; }
  .tariff-preview { border-radius: 12px; border-width: 2px; }
  .tariff-overlay-icon { font-size: 2rem; }
  .tariff-overlay-text { font-size: 0.9rem; }
  .tariff-close-btn { top: 10px; right: 10px; width: 36px; height: 36px; font-size: 1rem; }
}