/* ===== STYLISTA BOUTIQUE — Light Elegant Theme ===== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&display=swap');

:root {
  /* Light, warm boutique palette */
  --cream: #FBF8F4;         /* main background */
  --cream-2: #F4EEE6;       /* alt sections */
  --blush: #F3E7E1;         /* soft accent bg */
  --ink: #2D2722;           /* main text (warm charcoal) */
  --ink-soft: #6B6259;      /* secondary text */
  --gold: #B08D57;          /* soft antique gold accent */
  --gold-deep: #8C6D3F;
  --gold-light: #D8BD8E;
  --rose: #C9A9A0;          /* subtle rose for hover */
  --white: #FFFFFF;
  --line: #E7DDD0;          /* borders */
  --line-soft: #EFE8DE;
  --shadow: 0 10px 40px rgba(45, 39, 34, 0.08);
  --shadow-sm: 0 4px 20px rgba(45, 39, 34, 0.06);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background-color: var(--cream);
  color: var(--ink);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--cream-2); }
::-webkit-scrollbar-thumb { background: var(--gold-light); border-radius: 4px; }
::selection { background: var(--gold-light); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--ink);
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  display: block;
}

.section-title {
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  color: var(--ink);
  margin-bottom: 1.2rem;
  font-weight: 500;
}

.section-subtitle {
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 560px;
  font-weight: 300;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.9rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  outline: none;
  border-radius: 2px;
}

.btn-gold {
  background: var(--gold);
  color: var(--white);
}
.btn-gold:hover {
  background: var(--gold-deep);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(176, 141, 87, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--white);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.25);
}

/* ===== NAVIGATION — slim & compact ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: 68px;
  padding: 0 4%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
  background: rgba(251, 248, 244, 0.85);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
}

.navbar.scrolled {
  background: rgba(251, 248, 244, 0.97);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 20px rgba(45,39,34,0.04);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo img {
  height: 52px;
  width: auto;
}

.nav-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-text .lt-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.28rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.08em;
}
.nav-logo .logo-text .lt-sub {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  position: relative;
  padding: 6px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover, .nav-links a.active { color: var(--ink); }

.nav-cta {
  background: var(--gold);
  color: var(--white) !important;
  padding: 0.55rem 1.3rem !important;
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: var(--transition);
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--gold-deep) !important; color: var(--white) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 88vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 72px 4% 60px;
  background:
    linear-gradient(105deg, var(--cream) 0%, var(--cream) 48%, rgba(243,231,225,0.5) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.6rem;
}
.hero-eyebrow .line { width: 42px; height: 1px; background: var(--gold); }
.hero-eyebrow span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero h1 {
  font-size: clamp(3rem, 7vw, 5.8rem);
  line-height: 1.02;
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-weight: 500;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
  font-weight: 500;
}

.hero-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 2.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
}
.hero-tagline .dot { width: 4px; height: 4px; background: var(--gold); border-radius: 50%; }

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-visual {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 42%;
  overflow: hidden;
  background: var(--blush);
}
.hero-visual img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.hero-visual::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 60%;
  background: linear-gradient(to right, var(--cream) 0%, transparent 100%);
  z-index: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.58rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  animation: bounce 2s infinite;
  z-index: 10;
  background: rgba(251,248,244,0.92);
  padding: 0.45rem 1.1rem;
  border-radius: 20px;
  border: 1px solid var(--line);
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
.hero-scroll .scroll-line { width: 34px; height: 1px; background: var(--gold); }
@keyframes bounce { 0%,100%{transform:translateY(0);} 50%{transform:translateY(6px);} }

/* ===== MARQUEE ===== */
.marquee-section {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  background: var(--white);
}
.marquee-track { display: flex; gap: 3rem; animation: marquee 32s linear infinite; white-space: nowrap; }
.marquee-item {
  display: flex; align-items: center; gap: 1.5rem;
  font-size: 0.68rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--ink-soft); flex-shrink: 0;
  font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; letter-spacing: 0.15em;
}
.marquee-item .star { color: var(--gold); font-size: 0.7rem; }
@keyframes marquee { from{transform:translateX(0);} to{transform:translateX(-50%);} }

/* ===== SECTIONS ===== */
section { padding: 6rem 4%; }
.section-header { margin-bottom: 3.5rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ===== SERVICES GRID ===== */
.services-section { background: var(--cream-2); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: var(--gold-light);
}
.service-icon { font-size: 1.8rem; margin-bottom: 1rem; }
.service-card h3 { font-size: 1.4rem; color: var(--ink); margin-bottom: 0.6rem; }
.service-card p { font-size: 0.86rem; color: var(--ink-soft); line-height: 1.7; }
.service-price {
  margin-top: 1.2rem; font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--gold-deep); font-weight: 500; text-transform: uppercase;
}

/* ===== WHY US ===== */
.why-section { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.why-image-side { display: flex; flex-direction: column; align-items: flex-start; }
.why-image-frame {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  border-radius: 4px; box-shadow: var(--shadow); width: 100%;
}
.why-image-frame img { width: 100%; height: 100%; object-fit: cover; }
.why-image-frame::after {
  content: ''; position: absolute; bottom: -0.8rem; right: -0.8rem;
  width: 60%; height: 60%; border: 1px solid var(--gold-light); z-index: -1; border-radius: 4px;
  pointer-events: none;
}
.why-stat {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.2rem;
  background: var(--gold); color: var(--white);
  padding: 0.9rem 1.8rem; border-radius: 4px;
  box-shadow: var(--shadow);
  text-align: center; min-width: 120px;
  align-self: flex-start;
}
.why-stat .number { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; line-height: 1; }
.why-stat .label { font-size: 0.58rem; letter-spacing: 0.18em; text-transform: uppercase; margin-top: 0.4rem; opacity: 0.95; }
.why-features { display: flex; flex-direction: column; gap: 1.8rem; }
.why-feature { display: flex; gap: 1.5rem; align-items: flex-start; }
.why-feature-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem;
  color: var(--gold-light); line-height: 1; flex-shrink: 0; min-width: 3rem; font-weight: 600;
}
.why-feature h4 { font-size: 1.25rem; color: var(--ink); margin-bottom: 0.3rem; }
.why-feature p { font-size: 0.86rem; color: var(--ink-soft); }

/* ===== GALLERY ===== */
.gallery-section { background: var(--cream-2); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 300px);
  gap: 12px;
}
.gallery-item { overflow: hidden; position: relative; cursor: pointer; border-radius: 4px; }
.gallery-item:first-child { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(45,39,34,0.35) 0%, transparent 55%);
  opacity: 0; transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-placeholder {
  width: 100%; height: 100%;
  background: var(--blush);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 0.8rem;
}
.gallery-placeholder .ph-icon { font-size: 2rem; opacity: 0.5; }
.gallery-placeholder .ph-label { font-size: 0.68rem; letter-spacing: 0.2em; color: var(--ink-soft); text-transform: uppercase; }
.gallery-cta { text-align: center; margin-top: 3rem; }

/* ===== PRICING ===== */
.pricing-hero {
  padding: 9rem 4% 4rem;
  text-align: center;
  background: var(--blush);
  border-bottom: 1px solid var(--line);
}
.pricing-nav {
  display: inline-flex;
  margin-top: 2.5rem;
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  background: var(--white);
  flex-wrap: wrap;
}
.pricing-nav button {
  background: transparent; border: none; color: var(--ink-soft);
  padding: 0.85rem 1.8rem; font-family: 'Jost', sans-serif;
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase;
  cursor: pointer; transition: var(--transition); border-right: 1px solid var(--line);
}
.pricing-nav button:last-child { border-right: none; }
.pricing-nav button.active, .pricing-nav button:hover { background: var(--gold); color: var(--white); }
.pricing-category { display: none; animation: fadeIn 0.4s ease; }
.pricing-category.active { display: block; }
@keyframes fadeIn { from{opacity:0;transform:translateY(12px);} to{opacity:1;transform:translateY(0);} }
.pricing-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: 4px; overflow: hidden; box-shadow: var(--shadow-sm); }
.pricing-table th {
  text-align: left; padding: 1.1rem 1.5rem; font-size: 0.64rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep);
  border-bottom: 2px solid var(--line); font-weight: 500; font-family: 'Jost', sans-serif;
  background: var(--cream-2);
}
.pricing-table td { padding: 1.1rem 1.5rem; font-size: 0.9rem; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); transition: var(--transition); }
.pricing-table tr:hover td { background: var(--blush); color: var(--ink); }
.pricing-table .service-name { color: var(--ink); font-weight: 400; }
.price-cell { color: var(--gold-deep); font-weight: 500; white-space: nowrap; }
.note-box {
  background: var(--white); border: 1px solid var(--line);
  border-left: 3px solid var(--gold); padding: 1.2rem 1.5rem; margin-top: 2rem;
  font-size: 0.85rem; color: var(--ink-soft); border-radius: 3px;
}

/* ===== CONTACT ===== */
.contact-hero { padding: 9rem 4% 4rem; background: var(--blush); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 2.2rem; }
.contact-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.contact-item-icon {
  width: 46px; height: 46px; background: var(--white); border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; border-radius: 3px;
}
.contact-item-text h4 { font-family: 'Jost', sans-serif; font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.4rem; }
.contact-item-text p, .contact-item-text a { font-size: 0.92rem; color: var(--ink-soft); line-height: 1.6; }
.contact-item-text a:hover { color: var(--gold-deep); }
.social-links { display: flex; gap: 0.8rem; margin-top: 0.6rem; }
.social-link {
  width: 42px; height: 42px; border: 1px solid var(--line); background: var(--white);
  display: flex; align-items: center; justify-content: center; font-size: 1rem; color: var(--ink-soft); transition: var(--transition); border-radius: 3px;
}
.social-link:hover { background: var(--gold); color: var(--white); border-color: var(--gold); transform: translateY(-3px); }
.contact-action-box { background: var(--white); border: 1px solid var(--line); padding: 3rem; display: flex; flex-direction: column; gap: 1.5rem; border-radius: 4px; box-shadow: var(--shadow-sm); }
.contact-action-box h3 { font-size: 2rem; color: var(--ink); }
.contact-action-box p { font-size: 0.9rem; color: var(--ink-soft); }

/* ===== CASHBACK ===== */
.cashback-page {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 6rem 4% 4rem; background: var(--blush); position: relative;
}
.cashback-card {
  width: 100%; max-width: 480px; background: var(--white);
  border: 1px solid var(--line); padding: 3.5rem 3rem; position: relative;
  border-radius: 6px; box-shadow: var(--shadow);
}
.cashback-card::before { content:''; position:absolute; top:0; left:0; right:0; height:3px; background: linear-gradient(to right, var(--gold-deep), var(--gold-light)); border-radius: 6px 6px 0 0; }
.cashback-logo { text-align: center; margin-bottom: 2.2rem; }
.cashback-logo img { height: 90px; width: auto; }
.cashback-card h2 { font-size: 1.9rem; margin-bottom: 0.4rem; text-align: center; }
.cashback-card .subtitle { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 2.2rem; text-align: center; }
.form-group { margin-bottom: 1.4rem; }
.form-group label { display: block; font-size: 0.64rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-deep); margin-bottom: 0.5rem; font-weight: 500; }
.form-group input {
  width: 100%; background: var(--cream); border: 1px solid var(--line); color: var(--ink);
  padding: 0.9rem 1rem; font-family: 'Jost', sans-serif; font-size: 0.92rem; outline: none; transition: var(--transition); border-radius: 3px;
}
.form-group input:focus { border-color: var(--gold); background: var(--white); }
.form-group input::placeholder { color: #B5AA9C; }
.form-submit {
  width: 100%; padding: 1rem; background: var(--gold); color: var(--white); border: none;
  font-family: 'Jost', sans-serif; font-size: 0.74rem; font-weight: 500; letter-spacing: 0.2em;
  text-transform: uppercase; cursor: pointer; transition: var(--transition); margin-top: 0.5rem; border-radius: 3px;
}
.form-submit:hover { background: var(--gold-deep); }
.form-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.cashback-result { display: none; margin-top: 2rem; }
.cashback-result.show { display: block; }
.balance-card { background: var(--blush); border: 1px solid var(--line); padding: 2rem; text-align: center; margin-bottom: 1.5rem; border-radius: 4px; }
.balance-amount { font-family: 'Cormorant Garamond', serif; font-size: 3.2rem; color: var(--gold-deep); line-height: 1; font-weight: 600; }
.balance-label { font-size: 0.64rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.5rem; }
.cashback-detail { display: flex; justify-content: space-between; padding: 0.7rem 0; border-bottom: 1px solid var(--line-soft); font-size: 0.86rem; }
.cashback-detail:last-child { border-bottom: none; }
.cashback-detail .detail-label { color: var(--ink-soft); }
.cashback-detail .detail-value { color: var(--ink); font-weight: 500; }
.cashback-detail .detail-value.gold { color: var(--gold-deep); }
.error-msg { color: #C0392B; font-size: 0.84rem; margin-top: 1rem; text-align: center; display: none; }
.error-msg.show { display: block; }

/* ===== EXPRESS BADGE ===== */
.express-badge {
  background: var(--gold); color: var(--white); padding: 0.3rem 0.8rem;
  font-size: 0.6rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; display: inline-block; border-radius: 2px;
}

/* ===== FOOTER ===== */
footer { background: var(--ink); color: var(--cream); padding: 4rem 4% 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand img { height: 70px; width: auto; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: #B5AA9C; line-height: 1.8; max-width: 280px; }
.footer-col h5 { font-family: 'Jost', sans-serif; font-size: 0.62rem; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.2rem; font-weight: 500; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.7rem; }
.footer-col ul li a { font-size: 0.85rem; color: #B5AA9C; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--cream); padding-left: 4px; }
.footer-social { display: flex; gap: 0.8rem; margin-top: 1.2rem; }
.footer-social .social-link { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.15); color: var(--cream); }
.footer-social .social-link:hover { background: var(--gold); border-color: var(--gold); }
.footer-bottom { padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.75rem; color: #B5AA9C; }
.footer-bottom a { color: #B5AA9C; font-size: 0.75rem; }
.footer-bottom a:hover { color: var(--cream); }
.footer-bottom .gold { color: var(--gold-light); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 1.8rem; right: 1.8rem; width: 58px; height: 58px;
  background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  z-index: 999; box-shadow: 0 6px 24px rgba(37,211,102,0.4); transition: var(--transition); cursor: pointer;
  font-size: 0; text-indent: -9999px;
}
.whatsapp-float::after {
  content: ''; position: absolute; width: 30px; height: 30px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E") no-repeat center / contain;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float::before { content:''; position:absolute; inset:-4px; border-radius:50%; border:2px solid rgba(37,211,102,0.3); animation: pulse-ring 2s infinite; }
@keyframes pulse-ring { 0%{transform:scale(1);opacity:0.6;} 100%{transform:scale(1.4);opacity:0;} }

/* ===== CTA STRIP ===== */
.cta-strip { padding: 4rem 4%; background: var(--blush); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta-strip-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 2rem; }

/* ===== ADMIN ===== */
.admin-page { background: var(--cream); min-height: 100vh; }
.admin-login-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--blush); }
.admin-card { width: 100%; max-width: 420px; background: var(--white); border: 1px solid var(--line); padding: 3rem; border-radius: 6px; box-shadow: var(--shadow); }
.admin-header { background: var(--white); border-bottom: 1px solid var(--line); padding: 0.8rem 2rem; display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 100; }
.admin-sidebar { width: 240px; background: var(--white); border-right: 1px solid var(--line); min-height: calc(100vh - 60px); padding: 2rem 0; position: fixed; top: 61px; }
.admin-sidebar nav a { display: flex; align-items: center; gap: 0.8rem; padding: 0.9rem 1.5rem; font-size: 0.8rem; color: var(--ink-soft); transition: var(--transition); }
.admin-sidebar nav a:hover, .admin-sidebar nav a.active { color: var(--ink); background: var(--blush); border-left: 2px solid var(--gold); }
.admin-main { margin-left: 240px; padding: 2.5rem; min-height: calc(100vh - 60px); }
.admin-title { font-size: 1.8rem; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--line); }
.admin-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.5rem; margin-bottom: 3rem; }
.stat-card { background: var(--white); border: 1px solid var(--line); padding: 1.5rem; border-radius: 4px; box-shadow: var(--shadow-sm); }
.stat-card .stat-num { font-family: 'Cormorant Garamond', serif; font-size: 2.8rem; color: var(--gold-deep); line-height: 1; font-weight: 600; }
.stat-card .stat-label { font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--ink-soft); margin-top: 0.4rem; }
.admin-table { width: 100%; border-collapse: collapse; background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.admin-table th { padding: 0.85rem 1.2rem; font-size: 0.64rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold-deep); text-align: left; border-bottom: 1px solid var(--line); background: var(--cream-2); }
.admin-table td { padding: 1rem 1.2rem; font-size: 0.86rem; color: var(--ink-soft); border-bottom: 1px solid var(--line-soft); }
.admin-table tr:hover td { background: var(--blush); }
.badge { display: inline-block; padding: 0.25rem 0.7rem; font-size: 0.62rem; letter-spacing: 0.1em; font-weight: 600; border-radius: 2px; }
.badge-green { background: rgba(39,174,96,0.12); color: #27AE60; }
.badge-gold { background: rgba(176,141,87,0.15); color: var(--gold-deep); }
.badge-red { background: rgba(192,57,43,0.12); color: #C0392B; }
.badge-gray { background: rgba(107,98,89,0.12); color: var(--ink-soft); }
.admin-form { display: flex; flex-direction: column; gap: 1.4rem; max-width: 560px; }

/* ===== ALERTS ===== */
.alert { padding: 1rem 1.2rem; margin-bottom: 1.5rem; font-size: 0.85rem; border-left: 3px solid; border-radius: 3px; }
.alert-success { background: rgba(39,174,96,0.08); border-color: #27AE60; color: #1e8449; }
.alert-error { background: rgba(192,57,43,0.08); border-color: #C0392B; color: #C0392B; }


/* ── Express strip hidden by default ── */
.m-express-strip { display: none; }

/* ── Hero scroll arrow hidden by default ── */
.hero-scroll-arrow { display: none; }

/* ── Price bold ── */
.price-bold { font-weight: 700 !important; font-size: 0.82rem !important; color: var(--gold-deep) !important; }

/* ── Hero mobile: outline btn over dark bg needs white icon ── */

/* ===== BRAND ICONS (inline, reusable) ===== */
.ico {
  display: inline-block;
  width: 1.05em; height: 1.05em;
  vertical-align: -0.18em;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  flex-shrink: 0;
}
/* WhatsApp — green glyph on light, or currentColor via mask */
.ico-wa {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M17.472 14.382c-.297-.149-1.758-.867-2.03-.967-.273-.099-.471-.148-.67.15-.197.297-.767.966-.94 1.164-.173.199-.347.223-.644.075-.297-.15-1.255-.463-2.39-1.475-.883-.788-1.48-1.761-1.653-2.059-.173-.297-.018-.458.13-.606.134-.133.298-.347.446-.52.149-.174.198-.298.298-.497.099-.198.05-.371-.025-.52-.075-.149-.669-1.612-.916-2.207-.242-.579-.487-.5-.669-.51-.173-.008-.371-.01-.57-.01-.198 0-.52.074-.792.372-.272.297-1.04 1.016-1.04 2.479 0 1.462 1.065 2.875 1.213 3.074.149.198 2.096 3.2 5.077 4.487.709.306 1.262.489 1.694.625.712.227 1.36.195 1.871.118.571-.085 1.758-.719 2.006-1.413.248-.694.248-1.289.173-1.413-.074-.124-.272-.198-.57-.347m-5.421 7.403h-.004a9.87 9.87 0 01-5.031-1.378l-.361-.214-3.741.982.998-3.648-.235-.374a9.86 9.86 0 01-1.51-5.26c.001-5.45 4.436-9.884 9.888-9.884 2.64 0 5.122 1.03 6.988 2.898a9.825 9.825 0 012.893 6.994c-.003 5.45-4.437 9.884-9.885 9.884m8.413-18.297A11.815 11.815 0 0012.05 0C5.495 0 .16 5.335.157 11.892c0 2.096.547 4.142 1.588 5.945L.057 24l6.305-1.654a11.882 11.882 0 005.683 1.448h.005c6.554 0 11.89-5.335 11.893-11.893a11.821 11.821 0 00-3.48-8.413Z'/%3E%3C/svg%3E") no-repeat center / contain;
  background: currentColor;
}
/* Instagram — outline camera glyph via mask (inherits currentColor) */
.ico-ig {
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zM12 0C8.741 0 8.333.014 7.053.072 2.695.272.273 2.69.073 7.052.014 8.333 0 8.741 0 12c0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98C8.333 23.986 8.741 24 12 24c3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98C15.668.014 15.259 0 12 0zm0 5.838a6.162 6.162 0 100 12.324 6.162 6.162 0 000-12.324zM12 16a4 4 0 110-8 4 4 0 010 8zm6.406-11.845a1.44 1.44 0 100 2.881 1.44 1.44 0 000-2.881z'/%3E%3C/svg%3E") no-repeat center / contain;
  background: currentColor;
}
/* Icons inside buttons align nicely */
.btn .ico { margin-right: 0.15rem; }
.nav-cta .ico { vertical-align: -0.15em; margin-right: 0.3rem; }
/* Social link circular icons use bigger glyph */
.social-link .ico { width: 1.1rem; height: 1.1rem; vertical-align: middle; }


/* ===== ICON COLOR CONTEXTS ===== */
/* Brand icons inside contact info boxes → gold */
.contact-item-icon .ico { color: var(--gold-deep); width: 1.2rem; height: 1.2rem; }
/* Social circle links: gold on white, white on hover */
.social-link .ico { color: var(--gold-deep); }
.social-link:hover .ico { color: var(--white); }
/* Footer social (dark bg): cream, white on hover */
.footer-social .social-link .ico { color: var(--cream); }
.footer-social .social-link:hover .ico { color: var(--white); }
/* WhatsApp buttons: icon should be white on green/gold buttons */
.btn-whatsapp .ico { color: #fff; }
.btn-gold .ico { color: var(--white); }
.btn-outline .ico { color: var(--gold-deep); }
.btn-outline:hover .ico { color: var(--cream); }
.nav-cta .ico { color: #fff; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--blush); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 6px;
  padding: 2rem 1.8rem;
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.testimonial-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  line-height: 1;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  display: block;
}
.testimonial-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.testimonial-initials {
  width: 38px; height: 38px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  flex-shrink: 0;
}
.testimonial-name {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.04em;
}
.testimonial-city {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: 2px;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.8rem;
}
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) {
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

/* ===== BRIDAL BADGE on pricing ===== */
.bridal-highlight {
  background: linear-gradient(135deg, var(--blush) 0%, #f9f0f0 100%);
  border: 1px solid var(--rose);
  border-left: 3px solid var(--gold-deep);
  padding: 0.4rem 0.8rem;
  border-radius: 3px;
  display: inline-block;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 1rem;
}

/* ===== FAQ ACCORDION ===== */
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item + .faq-item { margin-top: 10px; }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 1.4rem 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: var(--transition);
}
.faq-question:hover { color: var(--gold-deep); }
.faq-icon {
  font-size: 1.2rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.3s ease;
  padding: 0 2rem;
  font-size: 0.87rem;
  color: var(--ink-soft);
  line-height: 1.8;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 0 2rem 1.4rem;
}

/* ===== GALLERY FILTERS ===== */
.gallery-filters {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.gallery-filter-btn {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  padding: 0.5rem 1.3rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 20px;
  transition: var(--transition);
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}

/* ===== GALLERY CAPTIONS ===== */
.gallery-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(45,39,34,0.75) 0%, transparent 100%);
  color: var(--white);
  padding: 1.2rem 1rem 0.8rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 2;
}
.gallery-item:hover .gallery-caption { opacity: 1; }

/* ===== LOCATION BADGE ===== */
.location-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 0.35rem 0.9rem;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 1rem;
}
.location-badge .loc-dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }

/* ===== OPEN GRAPH / meta already in HTML; no CSS needed ===== */

/* ===== CASHBACK — coming soon state ===== */
.cashback-coming-soon {
  text-align: center;
  padding: 2rem 0 1rem;
}
.cashback-coming-soon .cs-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
  opacity: 0.6;
}
.cashback-coming-soon h3 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}
.cashback-coming-soon p {
  font-size: 0.87rem;
  color: var(--ink-soft);
  margin-bottom: 1.8rem;
}

/* ===== EXPRESS / PRICING TABS mobile ===== */




/* ── desktop-only / mobile-only visibility helpers ── */
.desktop-only { display: block; }
.mobile-only  { display: none; }

/* ── PRICING CARDS (mobile view) ── */
.pricing-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}
.pc-lining-header {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 0.2rem 0.1rem;
}
.pc-lining-label {
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-family: 'Jost', sans-serif;
}
.pc-card {
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  padding: 0.9rem 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  transition: var(--transition);
}
.pc-card.pc-highlight {
  border-color: var(--gold-light);
  background: linear-gradient(135deg, var(--white) 0%, #fdf6ee 100%);
}
.pc-name {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.25;
}
.pc-sub {
  font-size: 0.65rem;
  color: var(--ink-soft);
  font-family: 'Jost', sans-serif;
}
.pc-price {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-deep);
  margin-top: 0.35rem;
  line-height: 1.1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  letter-spacing: -0.01em;
}
.pc-onwards {
  font-family: 'Jost', sans-serif;
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  line-height: 1;
  margin-top: 2px;
}
/* Dual-price cards for Women's Wear */
.pc-card.pc-dual { flex-direction: row; align-items: center; justify-content: space-between; gap: 0.4rem; padding: 0.75rem 0.85rem; }
.pc-card.pc-dual .pc-name { font-size: 0.78rem; flex: 1; }
.pc-dual-price {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-shrink: 0;
}
.pc-dual-price em {
  font-style: normal;
  font-family: 'Jost', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink-soft);
  line-height: 1;
  letter-spacing: -0.01em;
}
.pc-dual-price .pc-with { color: var(--gold-deep); font-family: 'Jost', sans-serif; font-size: 1.05rem; font-weight: 700; line-height: 1; letter-spacing: -0.01em; }
.pc-sep { color: var(--line); font-size: 0.9rem; font-weight: 300; line-height: 1; }


/* ── Odd card in 2-col grid spans full width ── */
.pricing-cards .pc-card:not(.pc-dual):last-child:nth-child(odd) {
  grid-column: 1 / -1;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.pricing-cards .pc-card:not(.pc-dual):last-child:nth-child(odd) .pc-price {
  align-items: flex-end;
  text-align: right;
}


/* ── Women's Wear lining legend ── */
.pc-lining-legend {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  padding: 0.5rem 0.4rem 0.6rem;
  background: var(--cream-2);
  border-radius: 6px;
  margin-bottom: 0.2rem;
}
.pc-leg-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.pc-leg-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pc-leg-plain { background: var(--ink-soft); }
.pc-leg-gold  { background: var(--gold-deep); }
.pc-leg-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.pc-leg-onwards {
  margin-left: auto;
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-deep);
  opacity: 0.85;
}
/* Dual price: plain = soft, with = gold */
.pc-dual-price em { font-family: 'Jost', sans-serif; font-size: 1.05rem; font-weight: 700; line-height: 1; letter-spacing: -0.01em; }
.pc-dual-price .pc-with { color: var(--gold-deep); font-family: 'Jost', sans-serif; font-size: 1.05rem; font-weight: 700; line-height: 1; letter-spacing: -0.01em; }
.pc-sep { color: var(--line); font-size: 0.9rem; font-weight: 300; line-height: 1; }

/* ===== RESPONSIVE ===== */

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { gap: 3rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE ONLY (≤ 768px) — Desktop completely untouched
   ============================================================ */
@media (max-width: 768px) {

  /* ── Body: heavier weight for readability ── */
  body { font-weight: 400; }

  /* ── Nav ── */
  .hamburger { display: flex; padding: 10px; min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }
  .nav-logo img { height: 38px; }
  .nav-links {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--white); flex-direction: column; gap: 0; padding: 0.5rem 0;
    border-bottom: 1px solid var(--line); box-shadow: var(--shadow); z-index: 999;
  }
  .nav-links.open { display: flex; }
  .nav-links li { width: 100%; }
  .nav-links a { display: block; padding: 0.95rem 6%; font-size: 0.82rem; }
  .nav-cta { margin: 0.6rem 6%; text-align: center; display: block; }

  /* ── Hero: full-bleed background image ── */
  .hero {
    min-height: 100svh;
    padding: 0;
    display: flex;
    align-items: flex-end;
    background: none;
    position: relative;
    overflow: hidden;
  }
  .hero-visual {
    display: block !important;
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    z-index: 0;
    background: var(--ink);
  }
  .hero-visual img {
    width: 100%; height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
  }
  .hero-visual::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(
      to top,
      rgba(20,15,12,0.93) 0%,
      rgba(20,15,12,0.55) 42%,
      rgba(20,15,12,0.08) 100%
    );
    z-index: 1; width: 100%;
  }
  .hero-content {
    position: relative; z-index: 2;
    max-width: 100%; width: 100%;
    padding: 2rem 5% 2.8rem;
  }
  .hero-eyebrow { margin-bottom: 0.7rem; }
  .hero-eyebrow span { color: rgba(216,189,142,0.9); font-size: 0.58rem; letter-spacing: 0.2em; }
  .hero-eyebrow .line { background: rgba(216,189,142,0.7); width: 24px; }
  .hero h1 { font-size: 2.6rem; color: #fff; margin-bottom: 0.8rem; line-height: 1.05; font-weight: 600; }
  .hero h1 em { color: var(--gold-light); font-weight: 500; }
  .hero-tagline { color: rgba(255,255,255,0.75); font-size: 0.65rem; margin-bottom: 1.6rem; letter-spacing: 0.12em; gap: 0.5rem; font-weight: 500; }
  .hero-tagline .dot { background: var(--gold-light); opacity: 0.7; }
  /* Buttons: stack full-width, keep ico colours working */
  .hero-actions { flex-direction: column; gap: 0.65rem; }
  .hero-actions .btn { width: 100%; justify-content: center; padding: 0.95rem 1.2rem; font-size: 0.73rem; font-weight: 600; }
  .hero-actions .btn-gold .ico { color: #fff; }
  .hero-actions .btn-outline { border-color: rgba(255,255,255,0.6); color: #fff; background: rgba(255,255,255,0.12); }
  .hero-actions .btn-outline .ico { color: #fff; }
  .hero-scroll { display: none; }

  /* Scroll-down arrow: bouncing chevron on hero */
  .hero-scroll-arrow {
    display: flex;
    position: absolute;
    bottom: 1.1rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    animation: arrowBounce 1.7s ease-in-out infinite;
    opacity: 0.9;
    pointer-events: none;
  }
  @keyframes arrowBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(9px); }
  }


  /* ── Show mobile cards, hide desktop tables ── */
  .desktop-only { display: none !important; }
  .mobile-only  { display: block !important; }
  .pc-lining-legend { display: flex !important; }
  .pricing-cards { display: grid !important; }
  .pc-lining-header { display: flex !important; }

  /* ── Express strip ── */
  .m-express-strip {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: var(--ink);
    color: var(--gold-light);
    padding: 1rem 5%;
    font-family: 'Jost', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    flex-wrap: wrap;
    border-top: 2px solid var(--gold);
    border-bottom: 2px solid var(--gold);
  }
  .m-express-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.88rem; }
  .m-express-pipe { opacity: 0.3; font-size: 1.1rem; }
  .m-express-link { color: #4cd964; font-weight: 700; text-decoration: none; font-size: 0.82rem; border: 1px solid rgba(76,217,100,0.5); padding: 0.25rem 0.7rem; border-radius: 20px; }

  /* ── Marquee: faster on mobile ── */
  .marquee-track { animation: marquee 14s linear infinite; }
  .marquee-item { font-size: 0.95rem; gap: 1rem; }

  /* ── Sections: tighter padding ── */
  section { padding: 3rem 5%; }
  .section-header { margin-bottom: 1.8rem; }
  .section-title { font-size: clamp(1.7rem, 5vw, 2.2rem) !important; font-weight: 600 !important; }
  .section-label { font-size: 0.64rem; font-weight: 600; }

  /* ── Services: 2-col compact, no body text ── */
  .services-section { padding: 2.5rem 5%; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 0.7rem; }
  .service-card { padding: 1.1rem 0.9rem; }
  .service-icon { font-size: 1.4rem; margin-bottom: 0.4rem; }
  .service-card h3 { font-size: 0.95rem; margin-bottom: 0; line-height: 1.25; font-weight: 600; }
  .service-card p { display: none; }
  .service-price { font-size: 0.75rem; margin-top: 0.45rem; font-weight: 700; color: var(--gold-deep); }

  /* ── Why Us: hide image, show features only ── */
  .why-section { padding: 2.5rem 5%; }
  .why-grid { grid-template-columns: 1fr; gap: 1.2rem; }
  .why-image-side { display: none; }
  .why-features { gap: 1.2rem; }
  .why-feature-num { font-size: 1.5rem; min-width: 2rem; font-weight: 700; }
  .why-feature h4 { font-size: 1rem; font-weight: 600; }
  .why-feature p { font-size: 0.83rem; }

  /* ── Testimonials: horizontal swipe carousel ── */
  .testimonials-section { padding: 2.5rem 0; }
  .testimonials-section .section-header { padding: 0 5%; text-align: center; }
  .testimonials-grid {
    display: flex;
    grid-template-columns: unset;
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 0.7rem;
    padding: 1rem 5% 0.5rem;
    margin-top: 1.2rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    flex: 0 0 78vw;
    max-width: 290px;
    scroll-snap-align: start;
    transform: none !important;
    padding: 1.3rem 1.2rem;
    border-radius: 8px;
  }
  .testimonial-text { font-size: 0.83rem; line-height: 1.65; margin-bottom: 0.9rem; }
  .testimonial-quote { font-size: 2rem; margin-bottom: 0.2rem; }
  .testimonial-name { font-size: 0.85rem; font-weight: 600; }
  /* Hide initials circle on mobile — show name/city only */
  .testimonial-initials { display: none; }
  .testimonial-author { flex-direction: column; align-items: flex-start; gap: 0.1rem; }

  /* Swipe hint with padding */
  .testimonials-scroll-hint {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 5% 0;
    margin-top: 0.4rem;
  }
  .scroll-hint-text { font-size: 0.62rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-soft); font-weight: 500; }
  .scroll-hint-arrow { font-size: 1.1rem; color: var(--gold); animation: nudgeRight 1.4s ease-in-out infinite; }
  @keyframes nudgeRight { 0%,100%{transform:translateX(0);} 50%{transform:translateX(7px);} }

  /* ── Gallery preview ── */
  .gallery-section { padding: 2.5rem 5%; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; gap: 7px; }
  .gallery-item { height: 160px; }
  .gallery-item:first-child { grid-column: span 2; height: 220px; }
  .gallery-caption { opacity: 1; font-size: 0.55rem; padding: 0.7rem 0.6rem 0.4rem; }

  /* ── CTA Strip ── */
  .cta-strip { padding: 2.5rem 5%; }
  .cta-strip-inner { flex-direction: column; align-items: stretch; gap: 1.2rem; }
  .cta-strip-inner h2 { font-size: 1.55rem !important; font-weight: 600 !important; }
  .cta-strip-inner > div:last-child { display: flex; flex-direction: column; gap: 0.6rem; }
  .cta-strip-inner .btn { width: 100%; justify-content: center; }

  /* ── Footer: brand full-width, Explore+Contact side by side ── */
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.6rem; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-col:nth-child(3) { display: none; }

  /* ── Contact ── */
  .contact-hero { padding: 6.5rem 5% 2.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
  .contact-action-box { padding: 1.8rem 1.3rem; }
  /* FAQ: use Jost font on mobile for clarity */
  .faq-question { padding: 1.1rem 1.2rem; font-size: 0.95rem; font-family: 'Jost', sans-serif; font-weight: 500; }
  .faq-answer { font-size: 0.85rem; padding: 0 1.2rem; }
  .faq-item.open .faq-answer { padding: 0 1.2rem 1.2rem; }

  /* ── Pricing ── */
  .pricing-hero { padding: 6.5rem 5% 2rem; text-align: left; }
  .pricing-hero .section-label, .pricing-hero h1 { text-align: center; }
  .pricing-hero > p { text-align: center; }
  .pricing-nav {
    display: flex !important; overflow-x: auto;
    -webkit-overflow-scrolling: touch; flex-wrap: nowrap;
    width: 100% !important; scrollbar-width: none; margin-top: 1.2rem !important;
    justify-content: flex-start !important;
  }
  .pricing-nav::-webkit-scrollbar { display: none; }
  .pricing-nav button { padding: 0.75rem 1.1rem; font-size: 0.62rem; white-space: nowrap; flex-shrink: 0; min-height: 44px; font-weight: 500; }
  /* pricing tables hidden on mobile via .desktop-only class */
  .pricing-category .section-header { margin-bottom: 0.8rem; }
  .pricing-category .section-label { display: none; }
  .pricing-category .section-title { font-size: 1.4rem !important; margin-bottom: 0.4rem; font-weight: 600 !important; }

  /* ── Admin ── */
  .admin-sidebar { display: none; }
  .admin-main { margin-left: 0; padding: 1.5rem; }

  /* ── Cashback ── */
  .cashback-page { padding: 5rem 5% 3rem; }
  .cashback-card { padding: 2.5rem 1.6rem; }
}

@media (max-width: 430px) {
  .hero h1 { font-size: 2.3rem; }
  .hero-content { padding: 1.8rem 5% 2.5rem; }
  .service-card h3 { font-size: 0.88rem; }
  .testimonial-card { flex: 0 0 85vw; }
  .gallery-item { height: 145px; }
  .gallery-item:first-child { height: 205px; }
  .pricing-table th, .pricing-table td { padding: 0.72rem 0.7rem; font-size: 0.78rem; }
  .cashback-card { padding: 2rem 1.2rem; }
}
