/* ============================================================
   SHANIEL BESPOKE TAILOR — MAIN CSS (UPGRADED)
   Modern, clean, and maintainable CSS
   ============================================================ */

:root {
  /* ── Luxury Gold Colour Scheme ── */
  --primary:        #c9a96e;
  --primary-light:  #e8d3a8;
  --primary-dark:   #8b6f3a;
  --primary-pale:  #fdf8e9;
  --secondary:      #f0f7ff;
  --accent:         #1a3a5c;
  --bg-light:       #f8fafc;
  --bg-white:      #FFFFFF;
  --bg-cream:      #fdf8e9;
  --border:         #e2e8f0;
  --border-light:   #f1f5f9;
  --text-dark:      #0f172a;
  --text-body:      #475569;
  --text-light:     #64748b;
  --text-muted:     #94a3b8;
  --font-serif:     'Cormorant Garamond', Georgia, serif;
  --font-sans:      'Montserrat', 'Helvetica Neue', sans-serif;
  --shadow-xs:      0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-sm:      0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
  --shadow-md:      0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --shadow-lg:      0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --transition:     all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --radius:         4px;
  --radius-lg:      6px;
  --radius-xl:      8px;
  --container:         clamp(16px, 5vw, 28px);
}

/* RESET & BASE STYLES */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background: var(--bg-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100vw;
}
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 400;
}
h1 { font-size: clamp(1.9rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.6rem); }
p { margin-bottom: 1rem; color: var(--text-body); }
a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
address { font-style: normal; }
button {
  font-family: var(--font-sans);
  cursor: pointer;
  border: none;
  background: none;
}

/* UTILITIES */
.container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 var(--container);
}
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-20 { margin-bottom: 20px; }
.mb-40 { margin-bottom: 40px; }

/* SECTION HEADER */
.section-header { text-align: center; margin-bottom: 52px; }
.section-header p { max-width: 580px; margin: 14px auto 0; color: var(--text-light); font-size: 0.95rem; line-height: 1.8; }
.section-header.light h2 { color: var(--bg-white); }
.section-header.light p  { color: rgba(255,255,255,0.7); }
.section-header.light .section-tag { color: var(--primary-light); }
.section-tag {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--primary); margin-bottom: 12px;
}

/* BUTTONS */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #000;
  padding: 12px 32px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #fff;
  padding: 12px 32px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.8);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: #fff;
  color: var(--text-dark);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: var(--primary);
  padding: 10px 28px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--primary);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--text-dark);
  color: #fff;
  padding: 12px 32px;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 2px solid var(--text-dark);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-dark:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* FORMS */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  background: var(--bg-white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text-body);
  border-radius: var(--radius);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  background: var(--primary-pale);
  box-shadow: 0 0 0 4px rgba(37, 99, 168, 0.1);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-row-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 18px; }

/* NOTICE BAR */
.notice-bar {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.notice-bar a { color: #fff; text-decoration: underline; }

/* TOPBAR */
.topbar {
  background: #1a1a1a;
  padding: 8px 0;
  font-size: 0.75rem;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-left { display: flex; align-items: center; gap: 0; }
.topbar-left span { color: rgba(255,255,255,0.6); margin-right: 18px; }
.topbar-left span a { color: rgba(255,255,255,0.6); }
.topbar-left span a:hover { color: var(--primary); }
.topbar-badge {
  color: rgba(255,255,255,0.35) !important;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
}
.topbar-right {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.btn-topbar {
  padding: 6px 14px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 169, 110, 0.4);
  color: var(--primary);
  border-radius: var(--radius);
  transition: var(--transition);
}
.btn-topbar:hover {
  border-color: var(--primary);
  background: var(--primary);
  color: #0a0a0a;
}
.btn-topbar.btn-gold { border-color: var(--primary); background: var(--primary); color: #0a0a0a; }
.btn-topbar.btn-gold:hover {
  background: var(--primary-light);
  border-color: var(--primary-light);
  color: #0a0a0a;
}
@media (max-width: 768px) {
  .topbar-badge,
  .topbar-left span:not(:first-child) {
    display: none;
  }
}
.hide-sm { }
.hide-md { }
@media (max-width: 640px) { .hide-sm { display: none !important; } }
@media (max-width: 900px) { .hide-md { display: none !important; } }

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #0a0a0a;
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  transition: var(--transition);
}
.site-header.scrolled {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  background: rgba(10, 10, 10, 0.95);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 16px;
}

/* LOGO */
.logo a { display: flex; align-items: center; gap: 12px; }
.logo img {
  height: 50px;
  width: 50px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--primary);
}
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: #fff;
  line-height: 1.1;
  display: block;
}
.logo-sub {
  font-family: var(--font-sans);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
}

/* NAV */
.main-nav {
  flex: 1;
  overflow: hidden;
}
.nav-list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
  justify-content: center;
}
.nav-list::-webkit-scrollbar { display: none; }
.nav-list > li { position: relative; flex-shrink: 0; }
.nav-list > li > a {
  display: block;
  padding: 26px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: var(--transition);
}
.nav-list > li > a:hover,
.nav-list > li > a.active {
  color: var(--primary);
}
.nav-list .arrow {
  font-size: 0.5rem;
  margin-left: 2px;
  vertical-align: middle;
}

/* DROPDOWN */
.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--bg-white);
  border-top: 2px solid var(--primary);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 200;
}
.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown li a {
  display: block;
  padding: 10px 18px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-body);
  border-bottom: 1px solid var(--border-light);
  white-space: nowrap;
  transition: var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover {
  color: var(--primary);
  background: var(--primary-pale);
  padding-left: 24px;
}

/* HEADER ACTIONS */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.cart-icon {
  position: relative;
  color: var(--text-dark);
  display: flex;
  align-items: center;
}
.cart-icon:hover { color: var(--primary); }
.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: var(--primary);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn-appointment {
  padding: 9px 18px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--primary);
  color: #fff;
  border: 2px solid var(--primary);
  white-space: nowrap;
  transition: var(--transition);
  border-radius: var(--radius);
}
.btn-appointment:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); transition: var(--transition); border-radius: 2px; }

/* PAGE BANNER */
.page-banner {
  background: linear-gradient(135deg, var(--black) 0%, #2E2416 100%);
  padding: 70px 0 50px; text-align: center; position: relative; overflow: hidden;
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background-size: cover; background-position: center; opacity: 0.1;
}
.page-banner[style*="background-image"]::before {
  background-image: inherit;
  opacity: 0.35;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner h1 { color: var(--bg-white); margin-bottom: 10px; }
.page-banner p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 0 auto; font-size: 0.95rem; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 0.78rem; }
.breadcrumb a { color: var(--primary-light); }
.breadcrumb a:hover { color: var(--primary); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* TWO COLUMN */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.two-col.reverse { direction: rtl; }
.two-col.reverse > * { direction: ltr; }
.col-img { position: relative; }
.col-img img { width: 100%; object-fit: cover; border-radius: var(--radius); }
.experience-badge {
  position: absolute; bottom: -16px; right: -16px;
  background: var(--primary); color: #fff; width: 100px; height: 100px;
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center; box-shadow: var(--shadow-md);
}
.experience-badge strong { font-size: 1.5rem; font-weight: 700; line-height: 1; }
.experience-badge span { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }

/* PRODUCT CARD */
.product-card { background: var(--bg-white); border: 1px solid #dde8f0; transition: transform 0.2s, box-shadow 0.2s; position: relative; overflow: hidden; border-radius: 8px; }
.product-card:hover { box-shadow: 0 6px 20px rgba(37,99,168,0.11); transform: translateY(-2px); }
.product-card:hover .product-img img { transform: scale(1.04); }
.product-img { overflow: hidden; height: 320px; background: #f8f9fa; position: relative; display: block; }
.product-img img { position: absolute; left: 0; top: 0; width: 175%; height: auto; min-height: 100%; object-fit: unset; display: block; transition: transform 0.35s ease; }
.product-badge { position: absolute; top: 8px; left: 8px; background: #2563a8; color: #fff; font-size: 0.54rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; padding: 2px 8px; border-radius: 3px; z-index:2; }
.product-info { padding: 18px 20px 20px; }
.product-info h3 { font-size: 1.05rem; margin-bottom: 8px; }
.product-info h3 a:hover { color: var(--primary); }
.product-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; }
.price-current { font-family: var(--font-serif); font-size: 1.3rem; color: var(--primary-dark); font-weight: 600; }
.price-from { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.1em; }
.product-actions { display: flex; gap: 8px; }
.product-actions .btn-primary, .product-actions .btn-outline { flex: 1; text-align: center; padding: 9px 10px; font-size: 0.66rem; }

/* ACCORDION */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-header { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; cursor: pointer; font-family: var(--font-serif); font-size: 1.08rem; color: var(--text-dark); transition: var(--transition); }
.accordion-header:hover { color: var(--primary); }
.accordion-icon { font-size: 1.3rem; transition: transform 0.35s; color: var(--primary); flex-shrink: 0; }
.accordion-item.open .accordion-icon { transform: rotate(45deg); }
.accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s ease; }
.accordion-item.open .accordion-body { max-height: 600px; padding-bottom: 18px; }
.accordion-body p { color: var(--text-body); margin: 0; line-height: 1.8; }

/* TABS */
.tabs-nav { display: flex; border-bottom: 2px solid var(--border); overflow-x: auto; }
.tab-btn { padding: 12px 20px; font-size: 0.73rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; background: none; border: none; border-bottom: 2px solid transparent; margin-bottom: -2px; cursor: pointer; color: var(--text-light); transition: var(--transition); white-space: nowrap; }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* STARS */
.stars { color: var(--primary); font-size: 1rem; letter-spacing: 2px; }

/* TOAST */
.toast { position: fixed; bottom: 24px; right: 24px; background: var(--black); color: #fff; padding: 13px 22px; font-size: 0.83rem; border-left: 4px solid var(--primary); box-shadow: var(--shadow-lg); z-index: 9999; transform: translateX(120%); transition: var(--transition); border-radius: var(--radius); max-width: 360px; }
.toast.show { transform: translateX(0); }

/* PAGINATION */
.pagination { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 48px; }
.pagination a, .pagination span { width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border: 1.5px solid var(--border); font-size: 0.85rem; transition: var(--transition); border-radius: var(--radius); }
.pagination a:hover, .pagination .active { background: var(--primary); border-color: var(--primary); color: #fff; }

/* SPINNER */
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; margin: 32px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* SCROLL TOP */
.scroll-top { position: fixed; bottom: 96px; right: 16px; width: 44px; height: 44px; background: var(--primary); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transform: translateY(10px); transition: var(--transition); z-index: 500; border: none; font-size: 1.1rem; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-dark); }

/* DOTS */
.dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: var(--border); cursor: pointer; transition: var(--transition); }
.dot.active { background: var(--primary); width: 22px; border-radius: 4px; }

/* LIGHTBOX */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,0.93); z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition); }
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close { position: fixed; top: 20px; right: 24px; color: #fff; font-size: 2rem; cursor: pointer; width: 44px; height: 44px; display: flex; align-items: center; justify-content: center; background: none; border: none; }
.lightbox-close:hover { color: var(--primary); }

/* EMPTY STATE */
.empty-state { text-align: center; padding: 64px 24px; color: var(--text-light); }
.empty-state .icon { font-size: 3.5rem; margin-bottom: 16px; opacity: 0.4; }

/* ANIMATIONS */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; } to { opacity: 1; } }
.animate-in { animation: fadeInUp 0.6s ease forwards; }

/* ============================================================
   NEWSLETTER SECTION (appears in footer.php)
   ============================================================ */
.newsletter { padding: 64px 0; background: linear-gradient(135deg, var(--peach-dark) 0%, var(--peach) 100%); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.newsletter-text h2 { font-size: 2rem; margin-bottom: 8px; color: var(--text-dark); }
.newsletter-text p { color: var(--text-light); margin: 0; }
.newsletter-form { display: flex; flex: 1; max-width: 460px; }
.newsletter-form input { flex: 1; padding: 14px 18px; border: 1.5px solid var(--border); background: var(--bg-white); font-family: var(--font-sans); font-size: 0.9rem; outline: none; border-radius: var(--radius) 0 0 var(--radius); }
.newsletter-form input:focus { border-color: var(--primary); }
.newsletter-form .btn-primary { white-space: nowrap; border-radius: 0 var(--radius) var(--radius) 0; padding: 14px 24px; }

/* ============================================================
   FOOTER (appears via footer.php on ALL pages)
   ============================================================ */
.site-footer { background: #071828; color: rgba(255,255,255,0.7); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 48px; padding: 70px 0 48px; border-bottom: 1px solid rgba(255,255,255,0.07); }
.footer-logo     { font-family: var(--font-serif); font-size: 1.6rem; color: #fff; letter-spacing: 0.2em; margin-bottom: 4px; }
.footer-logo-sub { font-family: var(--font-sans); font-size: 0.58rem; font-weight: 600; letter-spacing: 0.25em; text-transform: uppercase; color: var(--primary); margin-bottom: 16px; display: block; }
.footer-brand p  { font-size: 0.84rem; line-height: 1.8; margin-bottom: 20px; color: rgba(255,255,255,0.75); }
.social-links { display: flex; gap: 9px; flex-wrap: wrap; }
.social-links a { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; font-size: 0.68rem; font-weight: 700; color: rgba(255,255,255,0.55); transition: var(--transition); border-radius: var(--radius); }
.social-links a:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-pale); }
.footer-col h4 { color: #fff; font-family: var(--font-sans); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.83rem; color: rgba(255,255,255,0.75); transition: var(--transition); font-weight: 500; }
.footer-col ul li a:hover { color: #fff; padding-left: 4px; }
.footer-col address p { font-size: 0.83rem; margin-bottom: 7px; color: rgba(255,255,255,0.75); }
.footer-col address a { color: rgba(255,255,255,0.75); }
.footer-col address a:hover { color: #fff; }
.footer-hours { margin-top: 14px; }
.footer-hours strong { display: block; font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin-bottom: 6px; font-family: var(--font-sans); font-weight: 700; }
.footer-hours span { display: block; font-size: 0.82rem; color: rgba(255,255,255,0.8); font-weight: 500; line-height: 1.8; }
.seo-city-links { padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,0.06); }
.seo-city-links h5 { font-family: var(--font-sans); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.15em; text-transform: uppercase; color: #fff; margin-bottom: 12px; }
.city-links-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.city-links-grid a { font-size: 0.75rem; color: #fff; padding: 5px 12px; border: 1px solid rgba(255,255,255,0.3); transition: var(--transition); border-radius: 2px; font-weight: 600; }
.city-links-grid a:hover { color: #fff; border-color: var(--primary); background: rgba(37,99,168,0.3); }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom p { font-size: 0.82rem; color: #fff; margin: 0; font-weight: 600; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.82rem; color: #fff; transition: var(--transition); font-weight: 600; }
.footer-legal a:hover { color: var(--primary-light); }

/* MOBILE NAV */
@media (max-width: 1100px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-inner { height: 64px; }
  .main-nav.open { display: block; position: fixed; top: 64px; left: 0; right: 0; bottom: 0; background: var(--bg-white); overflow-y: auto; z-index: 999; padding: 16px 0; border-top: 2px solid var(--primary); box-shadow: var(--shadow-lg); }
  .nav-list { flex-direction: column; align-items: stretch; overflow: visible; }
  .nav-list > li > a { padding: 13px 24px; border-bottom: 1px solid var(--bg-cream); display: flex; justify-content: space-between; }
  .dropdown { position: static; box-shadow: none; border-top: none; border-left: 3px solid var(--primary); margin-left: 20px; opacity: 1; visibility: visible; transform: none; display: none; background: var(--bg-cream); }
  .has-dropdown.open .dropdown { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1/-1; }
}
@media (max-width: 768px) {
  .two-col { grid-template-columns: 1fr; gap: 36px; }
  .two-col.reverse { direction: ltr; }
  .form-row, .form-row-3 { grid-template-columns: 1fr; }
  .container { padding: 0 16px; }
  .newsletter-inner { flex-direction: column; align-items: stretch; }
  .newsletter-form { max-width: 100%; flex-direction: column; }
  .newsletter-form input { border-radius: var(--radius) var(--radius) 0 0; }
  .newsletter-form .btn-primary { border-radius: 0 0 var(--radius) var(--radius); text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; }
}
@media (max-width: 480px) {
  .btn-appointment { display: none; }
  .topbar-right .btn-topbar:first-child { display: none; }
}

/* ============================================================
   SHANIEL — COMPLETE MOBILE RESPONSIVE
   Works on 320px (smallest) to 4K screens
   ============================================================ */

/* ── FLUID TYPOGRAPHY ──────────────────────────────────────── */
html { font-size: clamp(13px, 2.5vw, 16px); }

/* ── CONTAINER ─────────────────────────────────────────────── */
.container { padding: 0 clamp(12px, 4vw, 28px); }

/* ── TOPBAR ─────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .topbar { padding: 7px 0; }
  .topbar-inner { flex-direction: column; gap: 5px; align-items: flex-start; }
  .topbar-left span { display: none; }
  .topbar-left span:first-child { display: inline; font-size: 0.72rem; }
  .topbar-right { width: 100%; justify-content: flex-end; }
  .topbar-badge { display: none; }
}

/* ── HEADER ─────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .header-inner { height: 58px; }
  .logo-text { font-size: 1.1rem; letter-spacing: 0.12em; }
  .logo-sub { font-size: 0.5rem; }
  .logo img { height: 40px; width: 40px; }
}
@media (max-width: 480px) {
  .header-inner { height: 54px; gap: 8px; }
  .btn-appointment { display: none; }
  .cart-count { width: 16px; height: 16px; font-size: 0.55rem; }
}

/* ── HERO ──────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { height: 80vmax; min-height: 420px; max-height: 680px; }
  .hero-content { padding: 0 20px; max-width: 100%; }
  .hero-content h1 { font-size: clamp(1.5rem, 6vw, 2.8rem); }
  .hero-content p { font-size: 0.88rem; margin-bottom: 24px; }
  .hero-btns { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero-btns .btn-primary, .hero-btns .btn-secondary { padding: 12px 24px; font-size: 0.72rem; width: auto; }
  .hero-controls { bottom: 20px; gap: 10px; }
  .hero-prev, .hero-next { width: 36px; height: 36px; font-size: 1rem; }
}
@media (max-width: 380px) {
  .hero { height: 100svh; min-height: 380px; }
  .hero-content h1 { font-size: 1.5rem; }
}

/* ── MARQUEE ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  .marquee-strip { padding: 9px 0; }
  .marquee-inner span { font-size: 0.62rem; padding: 0 20px; }
}

/* ── SECTION HEADER ─────────────────────────────────────────── */
@media (max-width: 768px) {
  .section-header { margin-bottom: 36px; }
  .section-header h2 { font-size: clamp(1.4rem, 5vw, 2rem); }
  .section-header p { font-size: 0.85rem; }
}

/* ── WHY CHOOSE US ──────────────────────────────────────────── */
.why-us { padding: clamp(48px,8vw,96px) 0; }
@media (max-width: 900px) { .why-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 560px) { .why-grid { grid-template-columns: 1fr; } .why-card { padding: 24px 18px; } }

/* ── WHO WE ARE ─────────────────────────────────────────────── */
.who-we-are { padding: clamp(48px,8vw,96px) 0; }
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 28px; }
  .two-col.reverse { direction: ltr; }
  .col-img img { height: 320px; }
  .experience-badge { width: 82px; height: 82px; bottom: -12px; right: -8px; }
  .experience-badge strong { font-size: 1.2rem; }
  .experience-badge span { font-size: 0.52rem; }
}

/* ── SERVICES GRID ──────────────────────────────────────────── */
.what-we-do { padding: clamp(48px,8vw,96px) 0; }
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .services-grid { grid-template-columns: 1fr; } }

/* ── CITY TOURS ─────────────────────────────────────────────── */
.city-tours { padding: clamp(48px,8vw,96px) 0; }
@media (max-width: 900px) { .cities-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 480px) { .cities-grid { grid-template-columns: 1fr 1fr; gap: 10px; } .city-card { padding: 18px 12px; } .city-flag { font-size: 1.6rem; } .city-card h3 { font-size: 0.9rem; } .city-card span { font-size: 0.65rem; } }

/* ── HOW IT WORKS ───────────────────────────────────────────── */
.how-it-works { padding: clamp(48px,8vw,96px) 0; }
@media (max-width: 900px) { .steps-grid { flex-direction: column; gap: 22px; } .step-arrow { display: none; } .step { padding: 0 4px; } }
@media (max-width: 480px) { .steps-grid { gap: 16px; } .step-icon { width: 42px; height: 42px; font-size: 1rem; } }

/* ── APPOINTMENT PREVIEW ────────────────────────────────────── */
.appointment-preview { padding: clamp(48px,8vw,96px) 0; }
@media (max-width: 900px) { .appointment-preview .two-col { grid-template-columns: 1fr; } .mini-calendar { max-width: 100%; } }

/* ── FABRIC BRANDS ──────────────────────────────────────────── */
.fabric-brands { padding: clamp(40px,6vw,80px) 0; }
@media (max-width: 900px) { .brands-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 560px) { .brands-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 380px) { .brands-grid { grid-template-columns: 1fr; } }

/* ── PRODUCTS GRID ──────────────────────────────────────────── */
.featured-products { padding: clamp(48px,8vw,96px) 0; }
@media (max-width: 1100px) { .products-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 768px)  { .products-grid { grid-template-columns: repeat(2,1fr); gap: 14px; } }
@media (max-width: 440px)  { .products-grid { grid-template-columns: 1fr; } }

/* ── LOOKBOOK ───────────────────────────────────────────────── */
.lookbook-preview { padding: clamp(48px,8vw,96px) 0; }
@media (max-width: 900px) { .lookbook-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .lookbook-grid { grid-template-columns: 1fr; } .lookbook-img { min-height: 200px; } }

/* ── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials-home { padding: clamp(48px,8vw,96px) 0; }
@media (max-width: 768px) { .testimonial-slide { padding: 0 12px; } .testimonial-slide p { font-size: 1rem; } }
@media (max-width: 440px) { .testimonial-slide p { font-size: 0.9rem; } .client-info { flex-direction: column; align-items: center; gap: 8px; text-align: center; } }

/* ── BLOG ───────────────────────────────────────────────────── */
.blog-preview { padding: clamp(48px,8vw,96px) 0; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; gap: 18px; } }
@media (max-width: 560px) { .blog-grid { grid-template-columns: 1fr; } }

/* ── NEWSLETTER ─────────────────────────────────────────────── */
.newsletter { padding: clamp(36px,6vw,72px) 0; }
@media (max-width: 768px) { .newsletter-inner { flex-direction: column; gap: 20px; } .newsletter-form { max-width: 100%; } }
@media (max-width: 480px) { .newsletter-text h2 { font-size: 1.4rem; } .newsletter-form { flex-direction: column; } .newsletter-form input { border-radius: 6px; } .newsletter-form .btn-primary { border-radius: 6px; text-align: center; } }

/* ── FOOTER ─────────────────────────────────────────────────── */
@media (max-width: 1100px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } .footer-brand { grid-column: 1/-1; } }
@media (max-width: 640px) { .footer-grid { grid-template-columns: 1fr; gap: 24px; } .footer-col h4 { margin-bottom: 12px; } .footer-col ul li { margin-bottom: 6px; } }
@media (max-width: 480px) { .footer-bottom { flex-direction: column; text-align: center; gap: 10px; } .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; } .city-links-grid { gap: 5px; } .city-links-grid a { font-size: 0.65rem; padding: 3px 7px; } }

/* ── PAGE BANNER ────────────────────────────────────────────── */
@media (max-width: 768px) { .page-banner { padding: 48px 0 36px; } .page-banner h1 { font-size: clamp(1.6rem,5vw,2.4rem); } }
@media (max-width: 480px) { .page-banner { padding: 36px 0 28px; } }

/* ── CART PAGE ──────────────────────────────────────────────── */
@media (max-width: 900px) { .cart-layout { grid-template-columns: 1fr !important; } #summaryPanel, .cart-sidebar { position: static !important; } }
@media (max-width: 640px) { .cart-table th:nth-child(3), .cart-table td:nth-child(3) { display: none; } }
@media (max-width: 480px) { .cart-table { font-size: 0.78rem; } .cart-item-img { width: 60px; height: 76px; } }

/* ── SHOP PAGE ──────────────────────────────────────────────── */
@media (max-width: 900px) { .shop-layout { grid-template-columns: 1fr; } .shop-sidebar { position: static; display: none; } .shop-sidebar.open { display: block; } }

/* ── PRODUCT PAGE ───────────────────────────────────────────── */
@media (max-width: 900px) { #productLayout { grid-template-columns: 1fr !important; gap: 24px !important; } .gallery-thumbs { grid-template-columns: repeat(5,1fr); } }
@media (max-width: 480px) { .gallery-thumbs { grid-template-columns: repeat(4,1fr); } .add-to-cart-row { flex-wrap: wrap; } .add-to-cart-row .btn-primary { flex: 1; min-width: 120px; } .trust-badges { grid-template-columns: 1fr 1fr; } .related-products .products-grid { grid-template-columns: repeat(2,1fr) !important; } }

/* ── BOOKING/APPOINTMENT ────────────────────────────────────── */
@media (max-width: 900px) { .appt-main-grid { grid-template-columns: 1fr !important; } .appt-form-box { position: static !important; } }
@media (max-width: 640px) { .time-slots-grid { grid-template-columns: repeat(3,1fr) !important; } .cal-month-pills { gap: 4px; } .cal-month-pill { padding: 3px 7px; font-size: 0.62rem; } }
@media (max-width: 380px) { .time-slots-grid { grid-template-columns: repeat(2,1fr) !important; } }

/* ── CHECKOUT ───────────────────────────────────────────────── */
@media (max-width: 900px) { .checkout-layout { grid-template-columns: 1fr !important; } .order-summary-sidebar { position: static !important; } }

/* ── FORM ROWS ──────────────────────────────────────────────── */
@media (max-width: 560px) { .form-row, .form-row-3 { grid-template-columns: 1fr; } }

/* ── BUTTONS ─────────────────────────────────────────────────── */
@media (max-width: 380px) { .btn-primary, .btn-outline, .btn-dark, .btn-secondary { padding: 11px 20px; font-size: 0.7rem; } }

/* ── SCROLL TOP ─────────────────────────────────────────────── */
@media (max-width: 480px) { .scroll-top { bottom: 80px; right: 14px; width: 38px; height: 38px; } }
@media (max-width: 480px) { .whatsapp-float { bottom: 16px; right: 14px; width: 50px; height: 50px; } }

/* ── TOAST ──────────────────────────────────────────────────── */
@media (max-width: 480px) { .toast, #cartToast { bottom: 12px; right: 12px; left: 12px; max-width: none; } }

/* ── PAGINATION ─────────────────────────────────────────────── */
@media (max-width: 480px) { .pagination a, .pagination span { width: 34px; height: 34px; font-size: 0.78rem; } }


/* ── WHATSAPP FLOAT BUTTON ───────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 16px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9998;
  transition: all 0.3s ease;
  overflow: hidden;
}
.whatsapp-float:hover {
  width: 160px;
  border-radius: 29px;
  background: #20ba5a;
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
}
.whatsapp-float-label {
  max-width: 0;
  overflow: hidden;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  transition: max-width 0.3s ease, margin 0.3s ease;
  margin-left: 0;
}
.whatsapp-float:hover .whatsapp-float-label {
  max-width: 100px;
  margin-left: 8px;
}

/* ── SOCIAL LINKS (footer) ───────────────────────────────── */
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  flex-wrap: wrap;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all 0.2s;
  text-decoration: none;
}
.social-links a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ── MOBILE TABLE OVERFLOW FIX ───────────────────── */
@media (max-width: 768px) {
  .table-responsive, .cart-table-wrap, .schedule-wrap {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
  }
  table { min-width: 100%; }
}

/* ── WHATSAPP FLOAT — MOBILE OVERRIDE ────────────── */
@media (max-width: 480px) {
  .whatsapp-float {
    bottom: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
  }
  /* Prevent hover expand on mobile */
  .whatsapp-float:hover {
    width: 48px;
    border-radius: 50%;
  }
  .whatsapp-float-label { display: none !important; }
}

/* ── PREVENT HORIZONTAL OVERFLOW ON ALL PAGES ── */
html, body { overflow-x: hidden !important; max-width: 100vw; }
* { max-width: 100%; }
img, video, iframe { max-width: 100%; }

/* ── TABLES ALWAYS SCROLL ON MOBILE ── */
@media (max-width: 768px) {
  .table-wrap, .table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    display: block;
    width: 100%;
  }
  .table-wrap table, .table-responsive table {
    min-width: 480px;
  }
}

/* ── FLEX/GRID WRAPPING ON MOBILE ── */
@media (max-width: 600px) {
  .steps-horizontal, .how-steps, .process-steps {
    flex-direction: column !important;
    overflow-x: hidden !important;
  }
}

/* ── CITY TOUR STEPS SINGLE COLUMN ON MOBILE ── */
@media (max-width: 600px) {
  .city-tour-steps, .how-it-works-steps {
    grid-template-columns: 1fr !important;
    overflow-x: hidden !important;
  }
}

/* ================================================================
   SHANIEL — COMPREHENSIVE MOBILE RESPONSIVE FIX v2
   All pages fully responsive 320px–768px
   ================================================================ */

/* ── ALL MULTI-COLUMN GRIDS COLLAPSE ─────────────────────────── */
@media (max-width: 768px) {
  html, body { overflow-x: hidden !important; }

  /* Collapse any inline 3-col grids */
  .pay-type-grid,
  .reviews-grid,
  .tours-grid-3,
  .testimonials-hero-grid,
  .city-tour-steps,
  .how-it-works-grid,
  .values-grid,
  .measure-steps,
  .process-steps-grid,
  .blog-layout,
  .contact-layout,
  .faq-layout,
  .checkout-layout,
  .about-hero-grid {
    grid-template-columns: 1fr !important;
  }

  /* Stats 2x2 preserved */
  .testimonials-stats-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }

  /* Collections stay 2col */
  .collections-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }

  /* Sticky panels become static */
  [style*="position:sticky"] { position: static !important; }

  /* Tables scroll */
  table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }

  /* Flex rows wrap */
  [style*="display:flex"] { flex-wrap: wrap; }

  /* Section heights reduce */
  section[style*="height:420px"] { height: 260px !important; }
  section[style*="height:480px"] { height: 280px !important; }

  /* Page hero */
  .page-hero { padding: 40px 0 28px !important; }
  .page-hero h1 { font-size: clamp(1.6rem,6vw,2.4rem) !important; }

  /* Col image */
  .col-img img { height: auto !important; max-height: 320px; width: 100%; }
}

/* ── 480PX FIXES ─────────────────────────────────────────────── */
@media (max-width: 480px) {
  .container { padding: 0 12px !important; }
  h1 { font-size: clamp(1.5rem,6vw,2rem) !important; }
  h2 { font-size: clamp(1.25rem,5vw,1.7rem) !important; }

  /* Collections single col */
  .collections-grid { grid-template-columns: 1fr !important; }
  .city-tour-steps { grid-template-columns: 1fr !important; }

  /* Buttons */
  .btn-primary, .btn-outline, .btn-secondary { padding: 11px 18px !important; font-size: 0.71rem !important; }

  /* Card padding reduce */
  [style*="padding:28px"] { padding: 16px !important; }
  [style*="padding:32px"] { padding: 18px !important; }
  [style*="padding:40px"] { padding: 20px !important; }

  /* Font size reduce */
  [style*="font-size:3rem"] { font-size: 2rem !important; }
  [style*="font-size:2.8rem"] { font-size: 1.8rem !important; }
  [style*="font-size:3.2rem"] { font-size: 1.9rem !important; }
  [style*="font-size:2.4rem"] { font-size: 1.6rem !important; }
}

/* ── PAY ONLINE ──────────────────────────────────────────────── */
@media (max-width: 768px) {
  .pay-type-grid { grid-template-columns: 1fr !important; }
  .pay-form-grid { grid-template-columns: 1fr !important; }
}

/* ── OVERSEAS TRIPS ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .tours-grid-3 { grid-template-columns: 1fr 1fr !important; }
  .city-tour-steps { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 500px) {
  .tours-grid-3 { grid-template-columns: 1fr !important; }
  .city-tour-steps { grid-template-columns: 1fr !important; }
}

/* ── TESTIMONIALS ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .testimonials-hero-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .reviews-grid { grid-template-columns: 1fr !important; }
  .filter-tabs { overflow-x: auto !important; flex-wrap: nowrap !important; }
}

/* ── GALLERY ─────────────────────────────────────────────────── */
@media (max-width: 768px) { .gallery-grid { grid-template-columns: 1fr 1fr !important; gap: 8px !important; } }
@media (max-width: 400px) { .gallery-grid { grid-template-columns: 1fr !important; } }

/* ── BLOG ────────────────────────────────────────────────────── */
@media (max-width: 768px) { .blog-layout { grid-template-columns: 1fr !important; } .blog-grid { grid-template-columns: 1fr !important; } }

/* ── PRODUCT GRID ────────────────────────────────────────────── */
@media (max-width: 768px) { .products-grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; } }
@media (max-width: 420px) { .products-grid { grid-template-columns: 1fr !important; } }

/* ── FABRIC GRID ─────────────────────────────────────────────── */
@media (max-width: 768px) { .fabrics-grid { grid-template-columns: 1fr 1fr !important; } .fabric-detail-layout { grid-template-columns: 1fr !important; } }
@media (max-width: 420px) { .fabrics-grid { grid-template-columns: 1fr !important; } }

/* ================================================================
   SHANIEL — ALL PAGES INLINE GRID MOBILE FIX
   Targets inline style grids on about, contact, faq, blog,
   testimonials, gallery, lookbook pages
   ================================================================ */

@media (max-width: 900px) {
  /* About page — image grid + text grid */
  .container > .section > div[style*="grid-template-columns:1fr 1fr"],
  .container div[style*="grid-template-columns:1fr 1fr;gap:60px"],
  .container div[style*="grid-template-columns:1fr 1fr;gap:48px"],
  .container div[style*="grid-template-columns:1fr 1fr;gap:40px"] {
    grid-template-columns: 1fr !important;
  }

  /* Blog/FAQ sidebar layout */
  div[style*="grid-template-columns:1fr 300px"],
  div[style*="grid-template-columns:1fr 320px"],
  div[style*="grid-template-columns:1fr 340px"],
  div[style*="grid-template-columns:1fr 360px"] {
    grid-template-columns: 1fr !important;
  }

  /* Gallery masonry — 3 col to 2 */
  div[style*="columns:3"] { columns: 2 !important; }

  /* Lookbook 3-col grid */
  div[style*="grid-template-columns:repeat(3,1fr);gap:24px"],
  div[style*="grid-template-columns:repeat(3,1fr);gap:20px"],
  div[style*="grid-template-columns:repeat(3,1fr);gap:16px"],
  #lookGrid { grid-template-columns: 1fr 1fr !important; }

  /* Stats grids 4-col to 2-col */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
    gap: 16px !important;
  }

  /* Hero image heights reduce */
  section[style*="height:500px"] { height: 280px !important; }
  section[style*="height:420px"] { height: 240px !important; }
  section[style*="height:480px"] { height: 260px !important; }

  /* Blog featured image */
  a[style*="display:block;margin-bottom:36px"] img { height: 200px !important; }

  /* Sticky sidebars */
  div[style*="position:sticky"] { position: static !important; }
}

@media (max-width: 600px) {
  /* Gallery single col on very small */
  div[style*="columns:3"],
  div[style*="columns:2"] { columns: 1 !important; }

  /* All 3-col grids to 1-col */
  div[style*="grid-template-columns:repeat(3,1fr)"],
  #lookGrid { grid-template-columns: 1fr !important; }

  /* 2-col grids to 1-col on small */
  div[style*="grid-template-columns:1fr 1fr;gap:16px"],
  div[style*="grid-template-columns:1fr 1fr;gap:20px"] {
    grid-template-columns: 1fr !important;
  }

  /* About photo grid */
  div[style*="grid-template-columns:1fr 1fr;gap:16px"] {
    grid-template-columns: 1fr !important;
  }

  /* Stats 4-col to 1-col on very small */
  div[style*="grid-template-columns:repeat(4,1fr)"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* Font sizes reduce */
  h1[style*="font-size:3.5rem"] { font-size: 2rem !important; }
  h1[style*="font-size:3.2rem"] { font-size: 1.9rem !important; }
  h1[style*="font-size:2.8rem"] { font-size: 1.7rem !important; }
  h2[style*="font-size:2.6rem"] { font-size: 1.6rem !important; }

  /* Section padding reduce */
  section[style*="padding:80px 0"] { padding: 40px 0 !important; }
  section[style*="padding:60px 0"] { padding: 32px 0 !important; }
  section[style*="padding:70px 0"] { padding: 36px 0 !important; }

  /* Button groups on mobile */
  div[style*="display:flex;gap:16px;flex-wrap:wrap"] { flex-direction: column !important; }
  div[style*="display:flex;gap:16px;flex-wrap:wrap"] a,
  div[style*="display:flex;gap:16px;flex-wrap:wrap"] button { width: 100% !important; text-align: center !important; }
}

/* ── FAQ SIDEBAR HIDE ON MOBILE ─────────────────────────── */
@media (max-width: 900px) {
  /* Hide right sidebar on FAQ/Blog on mobile */
  div[style*="grid-template-columns:1fr 300px"] > div:last-child,
  div[style*="grid-template-columns:1fr 320px"] > div:last-child { display: none; }
}

/* ── GALLERY MASONRY ITEMS ───────────────────────────────── */
@media (max-width: 900px) {
  #galleryGrid img { width: 100%; }
  #galleryGrid > div { break-inside: avoid; margin-bottom: 12px; }
}

/* ── LOOKBOOK CARDS ──────────────────────────────────────── */
@media (max-width: 600px) {
  #lookGrid > div { padding: 0 !important; }
  #lookGrid img { height: 200px !important; }
}
