﻿/* ============================================================
   SHANIEL BESPOKE TAILOR — MAIN CSS
   Universal styles used across ALL pages
   ============================================================ */

:root {
  /* ── Blue Colour Scheme ── */
  --gold:         #2563a8;
  --gold-light:   #4a90d9;
  --gold-dark:    #1a3a5c;
  --gold-pale:    #e8f4ff;
  --cream:        #f0f7ff;
  --peach:        #e8f2fc;
  --peach-dark:   #d0e8f8;
  --warm-white:   #f8fcff;
  --bg-light:     #f5faff;
  --bg-cream:     #f0f7ff;
  --bg-peach:     #e8f2fc;
  --bg-section:   #edf4fb;
  --bg-white:     #FFFFFF;
  --border:       #bcd6f0;
  --border-light: #dce8f5;
  --black:        #0d2233;
  --dark:         #1a3a5c;
  --charcoal:     #2563a8;
  --gray:         #5a7a9a;
  --text-dark:    #0d2233;
  --text-body:    #2d3a4a;
  --text-light:   #5a7a9a;
  --text-muted:   #8ab0c8;
  --font-serif:   'Cormorant Garamond', Georgia, serif;
  --font-sans:    'Montserrat', 'Helvetica Neue', sans-serif;
  --shadow-xs:    0 1px 4px rgba(180,140,90,0.08);
  --shadow-sm:    0 2px 12px rgba(180,140,90,0.10);
  --shadow-md:    0 6px 28px rgba(180,140,90,0.13);
  --shadow-lg:    0 12px 48px rgba(180,140,90,0.15);
  --transition:   all 0.3s ease;
  --radius:       3px;
}

/* RESET */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
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.75; -webkit-font-smoothing: antialiased; overflow-x: hidden; max-width: 100%; }
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); }
h4 { font-size: 1.1rem; }
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); }

/* UTILITIES */
.container  { max-width: 1300px; margin: 0 auto; padding: 0 28px; }
.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(--gold-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(--gold); margin-bottom: 12px;
}

/* BUTTONS */
.btn-primary {
  display: inline-block; background: var(--gold); color: #fff;
  padding: 13px 32px; font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid var(--gold); transition: var(--transition); cursor: pointer; border-radius: var(--radius);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.btn-secondary {
  display: inline-block; background: transparent; color: #fff;
  padding: 13px 32px; font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid rgba(255,255,255,0.8); transition: var(--transition); border-radius: var(--radius);
}
.btn-secondary:hover { background: #fff; color: var(--text-dark); }
.btn-outline {
  display: inline-block; background: transparent; color: var(--gold);
  padding: 11px 28px; font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid var(--gold); transition: var(--transition); border-radius: var(--radius);
}
.btn-outline:hover { background: var(--gold); color: #fff; transform: translateY(-1px); }
.btn-dark {
  display: inline-block; background: var(--black); color: #fff;
  padding: 13px 32px; font-family: var(--font-sans); font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase;
  border: 2px solid var(--black); transition: var(--transition); border-radius: var(--radius);
}
.btn-dark:hover { background: var(--charcoal); border-color: var(--charcoal); }

/* FORMS */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.7rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-dark); margin-bottom: 7px; }
.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.9rem;
  color: var(--text-body); transition: var(--transition); outline: none; border-radius: var(--radius);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold); background: var(--warm-white);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.10);
}
.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(--gold); color: #fff; text-align: center;
  padding: 9px 16px; font-size: 0.78rem; font-weight: 500; letter-spacing: 0.04em;
}
.notice-bar a { color: #fff; text-decoration: underline; }

/* TOPBAR */
.topbar { background: var(--black); padding: 8px 0; font-size: 0.75rem; }
.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.65); margin-right: 18px; }
.topbar-left span a { color: rgba(255,255,255,0.65); }
.topbar-left span a:hover { color: var(--gold); }
.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: 5px 14px; font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.75); transition: var(--transition); border-radius: 2px;
}
.btn-topbar:hover { border-color: var(--gold); color: var(--gold); }
.btn-topbar.btn-gold { border-color: var(--gold); color: var(--gold); }
.btn-topbar.btn-gold:hover { background: var(--gold); color: #fff; }
@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: var(--bg-white); border-bottom: 1px solid var(--border); transition: var(--transition); }
.site-header.scrolled { box-shadow: 0 2px 20px rgba(180,140,90,0.12); }
.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(--gold); }
.logo-text { font-family: var(--font-serif); font-size: 1.35rem; font-weight: 500; letter-spacing: 0.2em; color: var(--text-dark); 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(--gold); 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; }
.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.67rem; font-weight: 600;
  letter-spacing: 0.07em; text-transform: uppercase; color: var(--text-dark); white-space: nowrap; transition: var(--transition);
}
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--gold); }
.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(--gold);
  box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden;
  transform: translateY(6px); transition: var(--transition); z-index: 200;
}
.has-dropdown:hover .dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown li a {
  display: block; padding: 9px 18px; font-size: 0.76rem; font-weight: 500;
  color: var(--text-body); border-bottom: 1px solid var(--bg-light); white-space: nowrap; transition: var(--transition);
}
.dropdown li:last-child a { border-bottom: none; }
.dropdown li a:hover { color: var(--gold); background: var(--bg-cream); 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(--gold); }
.cart-count {
  position: absolute; top: -8px; right: -8px; background: var(--gold); 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.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; background: var(--gold); color: #fff;
  border: 2px solid var(--gold); white-space: nowrap; transition: var(--transition); border-radius: var(--radius);
}
.btn-appointment:hover { background: var(--gold-dark); border-color: var(--gold-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(--gold-light); }
.breadcrumb a:hover { color: var(--gold); }
.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(--gold); 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 var(--border); transition: var(--transition); position: relative; overflow: hidden; border-radius: var(--radius); }
.product-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img { overflow: hidden; aspect-ratio: 3/4; background: var(--bg-cream); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.product-badge { position: absolute; top: 12px; left: 12px; background: var(--gold); color: #fff; font-size: 0.62rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 4px 10px; border-radius: 2px; }
.product-info { padding: 18px 20px 20px; }
.product-info h3 { font-size: 1.05rem; margin-bottom: 8px; }
.product-info h3 a:hover { color: var(--gold); }
.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(--gold-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(--gold); }
.accordion-icon { font-size: 1.3rem; transition: transform 0.35s; color: var(--gold); 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(--gold); border-bottom-color: var(--gold); }
.tab-content { display: none; }
.tab-content.active { display: block; }

/* STARS */
.stars { color: var(--gold); 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(--gold); 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(--gold); border-color: var(--gold); color: #fff; }

/* SPINNER */
.spinner { width: 36px; height: 36px; border: 3px solid var(--border); border-top-color: var(--gold); 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: 80px; right: 24px; width: 44px; height: 44px; background: var(--gold); 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(--gold-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(--gold); 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(--gold); }

/* 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(--gold); }
.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(--gold); 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.55); }
.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(--gold); color: var(--gold); background: rgba(201,169,110,0.08); }
.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.55); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-col address p { font-size: 0.83rem; margin-bottom: 7px; color: rgba(255,255,255,0.55); }
.footer-col address a { color: rgba(255,255,255,0.55); }
.footer-col address a:hover { color: var(--gold); }
.footer-hours { margin-top: 14px; }
.footer-hours strong { display: block; font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.12em; color: #fff; margin-bottom: 6px; font-family: var(--font-sans); }
.footer-hours span { display: block; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.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.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: rgba(255,255,255,0.25); margin-bottom: 12px; }
.city-links-grid { display: flex; flex-wrap: wrap; gap: 7px; }
.city-links-grid a { font-size: 0.72rem; color: rgba(255,255,255,0.35); padding: 4px 10px; border: 1px solid rgba(255,255,255,0.08); transition: var(--transition); border-radius: 2px; }
.city-links-grid a:hover { color: var(--gold); border-color: rgba(201,169,110,0.3); }
.footer-bottom { padding: 22px 0; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-bottom p { font-size: 0.78rem; color: rgba(255,255,255,0.3); margin: 0; }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.3); transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }

/* 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(--gold); 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(--gold); 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: 16px; right: 12px; width: 38px; height: 38px; } }

/* ── 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: 28px;
  right: 28px;
  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(--gold);
  border-color: var(--gold);
  color: #fff;
  transform: translateY(-2px);
}
