/* =========================================================
   TRIYOG SRIVISISTA AYURVEDA – MAIN STYLESHEET
   ========================================================= */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-primary: #1a4b8c;      /* deep navy/royal blue used in headings */
  --blue-dark:    #0d3060;      /* darker blue */
  --blue-cta:     #1c5fa8;      /* CTA banner bg */
  --green-accent: #3a7d3a;      /* Excellence text green */
  --gold:         #c8962a;      /* gold accent */
  --orange-cta:   #e67a1e;      /* orange phone btn */
  --text-dark:    #1a1a2e;
  --text-body:    #444455;
  --text-light:   #ffffff;
  --bg-light:     #f4f6fa;
  --bg-white:     #ffffff;
  --bg-why:       #1a3a6b;      /* why-us section dark bg */
  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --shadow-card:  0 4px 24px rgba(26,75,140,0.12);
  --shadow-hover: 0 8px 36px rgba(26,75,140,0.22);
  --transition:   0.28s ease;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* =========================================================
   UNIFIED STICKY HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  border-bottom: 2px solid var(--blue-primary);
  box-shadow: 0 2px 16px rgba(26,75,140,0.10);
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 28px rgba(26,75,140,0.18);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 72px;           /* single row height */
}

/* LEFT — Brand logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}
.navbar-logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.logo-main {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: var(--blue-primary);
}
.logo-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--green-accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* CENTER — Certification badges */
.certifications {
  display: flex;
  gap: 10px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px 3px 3px;
  border-radius: 28px;
  border: 1px solid #dde6f5;
  background: #f3f7ff;
  white-space: nowrap;
  transition: box-shadow var(--transition);
}
.badge:hover { box-shadow: 0 2px 10px rgba(26,75,140,0.12); }
.badge-logo-img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 50%;
  flex-shrink: 0;
}
.badge-text {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue-primary);
}

/* RIGHT — Nav + phone + CTA */
.header-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  padding: 6px 10px;
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}
.nav-link:hover {
  color: var(--blue-primary);
  background: #f0f4fb;
}
/* Phone link in nav */
.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--orange-cta) !important;
  font-weight: 600;
  border: 1.5px solid var(--orange-cta);
  border-radius: 20px;
  padding: 5px 12px !important;
  font-size: 13px !important;
}
.nav-phone:hover {
  background: var(--orange-cta) !important;
  color: #fff !important;
}
/* Book Appointment CTA pill */
.nav-cta {
  background: var(--blue-primary);
  color: #fff !important;
  padding: 8px 18px !important;
  border-radius: 24px;
  font-weight: 700;
  font-size: 13px !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; transform: scale(1.04); }

/* Hamburger (mobile only) */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--transition);
  flex-shrink: 0;
}
.hamburger:hover { background: #f0f4fb; }
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav backdrop (mobile) */
.nav-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nav-backdrop.active {
  opacity: 1;
}

/* =========================================================
   HERO SECTION
   ========================================================= */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(10,30,70,0.88) 0%,
    rgba(10,40,90,0.72) 45%,
    rgba(10,30,70,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 48px;
  padding-top: 80px;
  padding-bottom: 120px;
}
.hero-text {
  flex: 1;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.9s ease both;
}
.hero-tagline {
  font-size: 14px;
  font-weight: 500;
  color: #a8c4f0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title .highlight {
  color: #4caf90;
  position: relative;
}
.hero-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #cddeff;
  margin-bottom: 28px;
}
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.trust-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  padding: 6px 14px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
}

/* =========================================================
   BOOKING FORM SECTION (Horizontal)
   ========================================================= */
.booking-form-section {
  position: relative;
  margin-top: -60px; /* pull up over the hero */
  z-index: 10;
}
.horizontal-form-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid #eaeaea;
}
.horizontal-form {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: start;
}
.horizontal-form .form-group {
  margin-bottom: 0;
  position: relative;
}
.horizontal-form .form-group input,
.horizontal-form .form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #dde3ef;
  border-radius: var(--radius-sm);
  background: #f9faff;
  height: 48px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.horizontal-form .form-group input:focus,
.horizontal-form .form-group select:focus {
  border-color: var(--blue-primary);
  box-shadow: 0 0 0 3px rgba(26,75,140,0.15);
  background: #fff;
}
.horizontal-form .form-group input.error,
.horizontal-form .form-group select.error {
  border-color: #dc3545;
}
.horizontal-form .btn-submit {
  width: 100%;
  height: 48px;
  background: linear-gradient(135deg, var(--blue-primary), var(--blue-dark));
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  letter-spacing: 0.5px;
  transition: all var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(26,75,140,0.35);
}
.horizontal-form .btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,75,140,0.45);
}
.horizontal-form .btn-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}
.horizontal-form .error-msg {
  display: block;
  font-size: 11px;
  color: #dc3545;
  margin-top: 4px;
  min-height: 16px;
  position: absolute;
}

/* =========================================================
   CENTRES OF EXCELLENCE
   ========================================================= */
.centres {
  padding: 80px 0;
  background: var(--bg-white);
}
.section-header {
  text-align: center;
  margin-bottom: 52px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
}
.section-title .of { color: var(--text-dark); }
.section-title .excellence { color: var(--green-accent); }
.section-subtitle {
  font-size: 16px;
  color: var(--text-body);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
}
.centres-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.centre-card {
  position: relative;
  background: var(--card-color, #f4f6fa);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.centre-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 28px rgba(0,0,0,0.12);
}
.centre-img-wrap {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
}
.centre-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.centre-card:hover .centre-img-wrap img { transform: scale(1.08); }
.centre-label {
  width: 100%;
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  text-align: center;
  transition: filter var(--transition);
}
.centre-card:hover .centre-label {
  filter: brightness(0.95);
}

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-us {
  background: linear-gradient(135deg, #1a3a6b 0%, #0d2a52 60%, #1a3a6b 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.why-us::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,200,50,0.06), transparent 70%);
  border-radius: 50%;
}
.section-header.light .why-tagline {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #a8c4f0;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.why-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}
.why-title .highlight-gold { color: var(--gold); }
.why-desc {
  font-size: 16px;
  color: #c0d4f0;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.stat-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform var(--transition), background var(--transition);
}
.stat-card:hover {
  transform: translateY(-6px);
  background: rgba(255,255,255,0.14);
}
.stat-number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-plus {
  font-size: 26px;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: #c0d4f0;
  margin-top: 10px;
  letter-spacing: 0.5px;
}

/* =========================================================
   TREATMENTS DETAIL
   ========================================================= */
.treatments-detail {
  padding: 80px 0;
  background: var(--bg-light);
}
.section-tag {
  font-size: 13px;
  font-weight: 600;
  color: var(--orange-cta);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.treatment-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
}

/* Vertical tabs (desktop) */
.treatment-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  position: sticky;
  top: 82px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
  padding-right: 8px;
  scrollbar-width: thin;
  scrollbar-color: var(--blue-primary) transparent;
}
.treatment-tabs::-webkit-scrollbar { width: 4px; }
.treatment-tabs::-webkit-scrollbar-thumb { background: var(--blue-primary); border-radius: 4px; }

.tab-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 16px 10px;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-body);
  background: #fff;
  border: 2px solid #f0f4fb;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.03);
}
.tab-btn img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.tab-btn:hover {
  border-color: var(--blue-primary);
  color: var(--blue-primary);
  background: #f0f4fb;
}
.tab-btn.active {
  border-color: var(--blue-primary);
  background: var(--blue-primary);
  color: #fff;
  box-shadow: var(--shadow-card);
}
.treatment-content {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-card);
  min-height: 500px;
}
.tab-panel {
  display: none;
  animation: fadeIn 0.35s ease;
}
.tab-panel.active { display: block; }
.treatment-hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
}
.treatment-name {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--blue-primary);
  margin-bottom: 18px;
}
.tab-panel p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* =========================================================
   CTA BANNER
   ========================================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-cta) 0%, #1a3a8c 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M20 0L40 20L20 40L0 20z'/%3E%3C/g%3E%3C/svg%3E");
}
.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.cta-top {
  font-size: 16px;
  font-weight: 500;
  color: #a8d4ff;
  margin-bottom: 10px;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3.5vw, 38px);
  font-weight: 700;
  color: #fff;
}
.btn-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 16px 36px;
  border: 2px solid #fff;
  border-radius: 32px;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-cta:hover {
  background: #fff;
  color: var(--blue-cta);
  transform: scale(1.04);
}

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
  background: #f0f2f7;
  border-top: 1px solid #dde3ef;
  padding: 24px 0;
}
.footer-inner { text-align: center; }
.footer-copy {
  font-size: 13px;
  color: #666;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
@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 fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes spin {
  to { transform: rotate(360deg); }
}
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hide Mobile CTA on Desktop by Default */
.mobile-cta-bar { display: none; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px) {
  /* Hide badge text at mid-width, keep icons */
  .badge-text { display: none; }
  .badge { padding: 3px; border: none; background: transparent; }
  .nav-link { font-size: 13px; padding: 5px 8px; }
}

@media (max-width: 900px) {
  /* Certifications — icon only, no text */
  .badge-text { display: none; }
  .badge { padding: 2px; border: none; background: transparent; }
  .badge-logo-img { width: 36px; height: 36px; }
  .navbar-logo-img { height: 44px; }
  .logo-main { font-size: 15px; }
  .logo-sub { display: none; }

  /* ---- TREATMENT TABS – horizontal scrollable strip ---- */
  .treatment-layout { display: block; width: 100%; }
  .treatment-tabs {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
    position: static;
    max-height: none;
    gap: 10px;
    padding: 8px 4px 12px;
    width: 100% !important;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }
  .treatment-tabs::-webkit-scrollbar { display: none; }
  .tab-btn {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    flex: 0 0 110px !important;
    width: 110px !important;
    min-width: 110px !important;
    max-width: 110px !important;
    min-height: 110px !important;
    padding: 12px 8px !important;
    text-align: center !important;
    gap: 8px;
    scroll-snap-align: start;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.3;
  }
  .tab-btn img { width: 52px; height: 52px; border-radius: 10px; }
}

@media (max-width: 768px) {
  .header-inner { height: 62px; gap: 8px; }
  .navbar-logo-img { height: 40px; }
  .certifications { flex: 0 1 auto; justify-content: flex-start; gap: 4px; margin-right: auto; }
  .nav-phone { font-size: 12px !important; padding: 4px 8px !important; gap: 3px; }
  .nav-phone svg { width: 12px; height: 12px; }

  /* Hero */
  .hero-content { flex-direction: column; padding-bottom: 100px; }
  .hero-text { max-width: 100%; }
  
  /* Horizontal Form */
  .horizontal-form { grid-template-columns: repeat(2, 1fr); }
  .horizontal-form .form-submit-group { grid-column: span 2; }
  .booking-form-section { margin-top: -50px; padding: 0 16px; }
  .horizontal-form-card { padding: 20px; }

  /* Centres */
  .centres-grid { grid-template-columns: repeat(2, 1fr); }

  /* CTA & stats */
  .cta-inner { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  /* Mobile floating CTA bar */
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    height: 56px;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22,1,0.36,1);
    pointer-events: none;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
  }
  .mobile-cta-bar.cta-visible {
    transform: translateY(0);
    pointer-events: auto;
  }
  .mobile-cta-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    transition: filter 0.2s;
  }
  .mobile-cta-btn:active { filter: brightness(0.9); }
  .mobile-cta-call { background: #e8a020; }
  .mobile-cta-book { background: #1a4b8c; }

  body { padding-bottom: 56px; }
}

@media (max-width: 480px) {
  .header-inner { gap: 4px; }
  .navbar-logo-img { height: 32px; }
  .badge-logo-img { width: 30px; height: 30px; }
  .nav-phone { font-size: 0 !important; padding: 8px !important; border-radius: 50%; }
  .nav-phone svg { width: 16px; height: 16px; margin: 0; }
  
  .centres-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .horizontal-form { grid-template-columns: 1fr; }
  .horizontal-form .form-submit-group { grid-column: span 1; }
  .horizontal-form-card { padding: 16px; }
  .treatment-content { padding: 20px; }
  .navbar-logo-img { height: 36px; }
  .tab-btn { flex: 0 0 96px !important; width: 96px !important; min-width: 96px !important; max-width: 96px !important; min-height: 100px !important; }
  .tab-btn img { width: 44px; height: 44px; }
  .logo-main { font-size: 14px; }
}
