/* =========================================================
   MODA BILAL — Rediseño Luxury Editorial
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;1,9..144,400&family=Inter+Tight:wght@300;400;500;600&display=swap');

:root {
  --bg: #f4efe6;
  --bg-alt: #ebe3d5;
  --ink: #1a1410;
  --ink-soft: #443930;
  --muted: #8a7f72;
  --line: #d9cfbf;
  --gold: #b48a3c;
  --gold-deep: #8a6620;
  --accent: #a83e2a;
  --success: #2e7d32;
  --white: #fbf8f2;

  --font-display: 'Fraunces', 'Times New Roman', serif;
  --font-body: 'Inter Tight', system-ui, sans-serif;

  --max: 1280px;
  --pad: clamp(1rem, 4vw, 2.5rem);
  --ease: cubic-bezier(.2, .8, .2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .25s var(--ease); }
a:hover { opacity: .65; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.5rem, 7vw, 6rem); font-weight: 300; }
h2 { font-size: clamp(1.85rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.85rem); font-weight: 500; }

.eyebrow {
  font-family: var(--font-body);
  font-size: .72rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 500;
  margin-bottom: 1.25rem;
  display: inline-block;
}

.lead {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: var(--ink-soft);
  max-width: 60ch;
  line-height: 1.55;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 var(--pad); }
section { padding: clamp(3.5rem, 9vw, 7rem) 0; }

/* TOPBAR */
.topbar {
  background: var(--ink);
  color: var(--bg);
  font-size: .72rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .65rem 0;
  text-align: center;
}

/* HEADER */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244, 239, 230, .94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--pad);
  max-width: var(--max);
  margin: 0 auto;
  gap: 1.5rem;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  display: flex;
  align-items: baseline;
  gap: .3rem;
}
.brand span { color: var(--gold); font-style: italic; font-weight: 400; }

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  font-size: .8rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-menu a { position: relative; padding: .25rem 0; }
.nav-menu a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .35s var(--ease);
}
.nav-menu a:hover::after,
.nav-menu a.active::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 1.1rem; }
.icon-btn, .nav-actions > a {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: .35rem;
  font-family: inherit;
  font-size: .8rem;
  letter-spacing: .05em;
  position: relative;
}
.icon-btn svg, .nav-actions a svg { width: 18px; height: 18px; stroke: currentColor; fill: none; stroke-width: 1.5; }

.cart-count {
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  width: 18px; height: 18px;
  font-size: .62rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: .2rem;
}

.nav-socials { display: flex; gap: .6rem; padding-left: .75rem; border-left: 1px solid var(--line); margin-left: .25rem; }
.nav-socials a { padding: 0; }
.nav-socials svg { width: 16px; height: 16px; fill: currentColor; stroke: none; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 28px;
  height: 22px;
  position: relative;
}
.menu-toggle span {
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 4px; }
.menu-toggle span:nth-child(2) { top: 50%; }
.menu-toggle span:nth-child(3) { bottom: 4px; }
.menu-toggle.open span:nth-child(1) { top: 50%; transform: rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { bottom: 50%; transform: rotate(-45deg) translateY(0); top: 50%; }

/* BOTONES */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .9rem 1.85rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--bg);
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  cursor: pointer;
  transition: all .35s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateY(100%);
  transition: transform .4s var(--ease);
  z-index: 0;
}
.btn span { position: relative; z-index: 1; }
.btn:hover { opacity: 1; border-color: var(--gold); }
.btn:hover::before { transform: translateY(0); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline::before { background: var(--ink); }
.btn-outline:hover { color: var(--bg); }

.btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  padding-bottom: .35rem;
  border-bottom: 1px solid var(--ink);
  cursor: pointer;
  background: none;
  font-family: inherit;
}
.btn-arrow:hover { color: var(--gold-deep); border-color: var(--gold); opacity: 1; }

/* HERO */
.hero { padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(3rem, 8vw, 6rem); position: relative; overflow: hidden; }
.hero-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(2rem, 5vw, 4rem); align-items: end; }
.hero-text h1 { font-style: italic; font-weight: 300; }
.hero-text h1 em { font-style: normal; color: var(--gold-deep); font-weight: 400; }
.hero-text .lead { margin: 1.8rem 0 2.2rem; }
.hero-cta { display: flex; gap: .85rem; flex-wrap: wrap; }
.hero-visual { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.hero-visual img { width: 100%; height: 100%; object-fit: cover; filter: contrast(1.05) saturate(.95); }
.hero-tag {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem;
  background: var(--bg);
  padding: .6rem 1.1rem;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
}

/* MARQUEE */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 1.1rem 0;
  overflow: hidden;
  background: var(--bg-alt);
}
.marquee-track {
  display: flex;
  gap: 3.5rem;
  animation: scroll 28s linear infinite;
  white-space: nowrap;
}
.marquee span {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--ink-soft);
}
.marquee .dot { color: var(--gold); font-style: normal; font-size: 1rem; align-self: center; }
@keyframes scroll { to { transform: translateX(-50%); } }

/* CATEGORIES */
.categories { background: var(--white); }
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1.5rem;
  margin-bottom: clamp(2rem, 5vw, 3.5rem);
  flex-wrap: wrap;
}
.cat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(.85rem, 2vw, 1.75rem); }
.cat-card { position: relative; aspect-ratio: 3/4; overflow: hidden; cursor: pointer; background: var(--bg-alt); }
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s var(--ease), filter .8s var(--ease);
  filter: saturate(.85);
}
.cat-card:hover img { transform: scale(1.06); filter: saturate(1); }
.cat-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(26,20,16,.85) 0%, rgba(26,20,16,0) 100%);
  color: var(--bg);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.cat-overlay h3 { color: var(--bg); font-style: italic; }
.cat-overlay small { font-size: .65rem; letter-spacing: .25em; text-transform: uppercase; opacity: .7; }
.cat-arrow {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: background .3s var(--ease);
}
.cat-card:hover .cat-arrow { background: var(--gold); }

/* ABOUT */
.about-split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 5vw, 4rem); align-items: center; }
.about-img { position: relative; aspect-ratio: 4/5; overflow: hidden; }
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-stamp {
  position: absolute;
  top: 1.25rem; right: 1.25rem;
  background: var(--gold);
  color: var(--ink);
  padding: 1rem;
  width: 100px; height: 100px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  line-height: 1.1;
  font-size: .8rem;
  transform: rotate(-8deg);
}
.about-stamp strong { display: block; font-size: 1.6rem; font-style: normal; font-weight: 600; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.75rem;
  margin-top: 2.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--line);
}
.value h4 {
  font-style: italic;
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: .5rem;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.value h4::before { content: ''; width: 20px; height: 1px; background: var(--gold); }
.value p { font-size: .9rem; color: var(--ink-soft); }

/* STATS */
.stats { background: var(--ink); color: var(--bg); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.75rem; text-align: center; }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat .label {
  font-size: .72rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  opacity: .7;
  margin-top: .65rem;
  display: block;
}

/* PROCESS */
.process { background: var(--bg-alt); }
.process-row {
  display: grid;
  grid-template-columns: 70px 1fr 2fr 80px;
  gap: 1.5rem;
  align-items: center;
  padding: 1.65rem 0;
  border-top: 1px solid var(--line);
  transition: padding .35s var(--ease);
}
.process-row:last-child { border-bottom: 1px solid var(--line); }
.process-row:hover { padding-left: 1rem; }
.process-num { font-family: var(--font-display); font-size: 1.85rem; color: var(--gold-deep); font-style: italic; }
.process-row h4 { font-family: var(--font-display); font-size: 1.4rem; font-weight: 500; }
.process-row p { color: var(--ink-soft); font-size: .92rem; }
.process-row .arrow {
  text-align: right;
  font-size: 1.4rem;
  color: var(--ink);
  transition: transform .35s var(--ease), color .35s var(--ease);
}
.process-row:hover .arrow { transform: translateX(8px); color: var(--gold-deep); }

/* BUNDLES (productos combinados) */
.bundles { background: var(--white); }
.bundle-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.bundle-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--bg);
  overflow: hidden;
  position: relative;
}
.bundle-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 2px;
  background: var(--line);
  aspect-ratio: 1;
}
.bundle-imgs img { width: 100%; height: 100%; object-fit: cover; }
.bundle-body { padding: 1.75rem 1.5rem; display: flex; flex-direction: column; justify-content: center; }
.bundle-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--ink);
  padding: .3rem .65rem;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  width: fit-content;
}
.bundle-card h3 { margin-bottom: .65rem; font-style: italic; }
.bundle-card p { font-size: .88rem; color: var(--ink-soft); margin-bottom: 1rem; }
.bundle-prices { margin: .75rem 0 1.25rem; }
.bundle-old { text-decoration: line-through; color: var(--muted); font-size: .9rem; margin-right: .65rem; }
.bundle-new { font-family: var(--font-display); font-style: italic; color: var(--gold-deep); font-size: 1.6rem; }
.bundle-card .btn-arrow { font-size: .72rem; }

/* INSTAGRAM */
.instagram { background: var(--bg-alt); }
.ig-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.ig-card {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--ink);
  display: block;
}
.ig-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .7s var(--ease), opacity .4s var(--ease);
}
.ig-card:hover img { transform: scale(1.05); opacity: .7; }
.ig-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(26,20,16,.85), transparent 60%);
  color: var(--bg);
  opacity: 0;
  transition: opacity .35s var(--ease);
}
.ig-card:hover .ig-overlay { opacity: 1; }
.ig-overlay .caption { font-size: .85rem; line-height: 1.35; margin-bottom: .5rem; }
.ig-overlay .stats { font-size: .7rem; letter-spacing: .1em; opacity: .85; display: flex; gap: 1rem; }
.ig-header { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; margin-bottom: 2.5rem; }
.ig-handle { color: var(--gold-deep); font-style: italic; font-family: var(--font-display); font-size: 1.1rem; }

/* CUPONES — banner */
.coupon-banner {
  background: linear-gradient(120deg, var(--ink), #2a1f17);
  color: var(--bg);
  padding: 1.25rem 0;
  text-align: center;
  font-size: .92rem;
}
.coupon-banner strong {
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: .05em;
}
.coupon-banner code {
  background: var(--gold);
  color: var(--ink);
  padding: .25rem .65rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .85rem;
  letter-spacing: .12em;
  margin: 0 .4rem;
  border-radius: 2px;
}

/* CTA Newsletter */
.newsletter { background: var(--ink); color: var(--bg); position: relative; overflow: hidden; }
.newsletter::before {
  content: 'B';
  position: absolute;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(18rem, 45vw, 36rem);
  color: var(--gold);
  opacity: .06;
  bottom: -7rem;
  right: -3rem;
  line-height: .8;
  pointer-events: none;
}
.newsletter-inner { position: relative; z-index: 1; max-width: 700px; text-align: center; margin: 0 auto; }
.newsletter h2 { color: var(--bg); font-style: italic; }
.newsletter h2 em { color: var(--gold); font-style: normal; }
.newsletter p { color: var(--bg); opacity: .75; margin: 1.25rem auto 2.25rem; }
.newsletter-form { display: flex; max-width: 460px; margin: 0 auto; border-bottom: 1px solid var(--bg); }
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 1rem 0;
  color: var(--bg);
  font-family: inherit;
  font-size: 1rem;
  outline: none;
}
.newsletter-form input::placeholder { color: var(--bg); opacity: .5; }
.newsletter-form button {
  background: none;
  border: none;
  color: var(--gold);
  font-family: var(--font-body);
  font-size: .78rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 1rem;
}

/* FOOTER */
.site-footer { background: var(--bg-alt); padding: 3.5rem 0 1.75rem; font-size: .88rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--line);
}
.footer-brand .brand { font-size: 1.85rem; margin-bottom: .85rem; }
.footer-brand p { color: var(--ink-soft); max-width: 32ch; margin-bottom: 1.25rem; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: .7rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 1.1rem;
  color: var(--ink);
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: .6rem; }
.footer-col a { color: var(--ink-soft); }

.socials { display: flex; gap: .6rem; margin-top: .5rem; }
.socials a {
  width: 34px; height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: all .3s var(--ease);
}
.socials a:hover { background: var(--ink); border-color: var(--ink); color: var(--bg); opacity: 1; }
.socials svg { width: 15px; height: 15px; fill: currentColor; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.25rem;
  font-size: .78rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-payments { display: flex; gap: .5rem; align-items: center; }
.footer-payments span {
  border: 1px solid var(--line);
  padding: .25rem .55rem;
  font-size: .65rem;
  letter-spacing: .1em;
  border-radius: 2px;
}

/* PAGE HERO */
.page-hero { padding: clamp(3rem, 8vw, 6rem) 0 clamp(1.5rem, 4vw, 2.5rem); border-bottom: 1px solid var(--line); }
.page-hero h1 { font-style: italic; font-weight: 300; }
.breadcrumbs {
  font-size: .72rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.breadcrumbs a { color: var(--muted); }
.breadcrumbs span { color: var(--ink); }

/* SERVICES */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 5vw, 4rem);
  align-items: center;
  margin-bottom: clamp(2.5rem, 7vw, 5rem);
}
.service-block:nth-child(even) > div:first-child { order: 2; }
.service-img { aspect-ratio: 5/4; overflow: hidden; }
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1s var(--ease);
}
.service-block:hover .service-img img { transform: scale(1.04); }
.service-num { font-family: var(--font-display); font-style: italic; font-size: 1.15rem; color: var(--gold-deep); margin-bottom: .85rem; }

/* SHOP */
.shop-layout { display: grid; grid-template-columns: 220px 1fr; gap: 2.5rem; }
.filters h5 {
  font-family: var(--font-body);
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  margin: 1.25rem 0 .65rem;
  font-weight: 600;
}
.filters ul { list-style: none; }
.filters li { padding: .35rem 0; }
.filters a, .filters button {
  color: var(--ink-soft);
  font-size: .9rem;
  display: flex;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  cursor: pointer;
  text-align: left;
  padding: 0;
}
.filters a:hover, .filters a.active, .filters button:hover, .filters button.active {
  color: var(--gold-deep); opacity: 1;
}
.filters .active { font-weight: 500; }
.filters small { color: var(--muted); }
.shop-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
  gap: 1rem;
}
.shop-bar select {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: .82rem;
  letter-spacing: .1em;
  color: var(--ink);
  cursor: pointer;
}

.shop-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 1.75rem; }
.product-card { cursor: pointer; display: flex; flex-direction: column; }
.product-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--white);
  margin-bottom: .9rem;
  position: relative;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease);
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: .85rem; left: .85rem;
  background: var(--ink);
  color: var(--bg);
  padding: .3rem .55rem;
  font-size: .62rem;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.product-tag.gold { background: var(--gold); color: var(--ink); }
.product-tag.red { background: var(--accent); color: var(--bg); }
.product-cat { font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.product-name { font-family: var(--font-display); font-size: 1.05rem; font-weight: 500; margin-bottom: .3rem; }
.product-desc { font-size: .82rem; color: var(--ink-soft); margin-bottom: .55rem; line-height: 1.4; }
.product-price { font-family: var(--font-display); font-style: italic; color: var(--gold-deep); margin-bottom: .85rem; }
.product-add {
  margin-top: auto;
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: .65rem 1rem;
  font-family: inherit;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .3s var(--ease);
}
.product-add:hover { background: var(--gold-deep); }
.product-add.added { background: var(--success); }

/* CART DRAWER */
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(26,20,16,.5);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }

.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(420px, 100vw);
  height: 100vh;
  background: var(--bg);
  z-index: 201;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head { padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid var(--line); }
.cart-head h3 { font-style: italic; font-size: 1.4rem; }
.cart-close { background: none; border: none; cursor: pointer; font-size: 1.5rem; color: var(--ink); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; }
.cart-empty { padding: 3rem 1rem; text-align: center; color: var(--muted); }
.cart-line { display: grid; grid-template-columns: 70px 1fr auto; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-line img { width: 70px; height: 70px; object-fit: cover; }
.cart-line-name { font-family: var(--font-display); font-size: .98rem; font-weight: 500; }
.cart-line-cat { font-size: .65rem; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); margin-bottom: .25rem; }
.cart-qty { display: inline-flex; border: 1px solid var(--line); margin-top: .35rem; }
.cart-qty button { width: 26px; height: 26px; background: none; border: none; cursor: pointer; font-size: .9rem; }
.cart-qty span { display: inline-flex; align-items: center; justify-content: center; min-width: 28px; border-left: 1px solid var(--line); border-right: 1px solid var(--line); font-size: .85rem; }
.cart-line-price { font-family: var(--font-display); font-style: italic; color: var(--gold-deep); font-size: 1rem; text-align: right; }
.cart-remove { background: none; border: none; cursor: pointer; color: var(--muted); font-size: .7rem; letter-spacing: .15em; text-transform: uppercase; margin-top: .25rem; padding: 0; }
.cart-remove:hover { color: var(--accent); }
.cart-foot { padding: 1.25rem 1.5rem 1.75rem; border-top: 1px solid var(--line); }
.cart-sum { display: flex; justify-content: space-between; padding: .35rem 0; font-size: .92rem; }
.cart-sum.total { font-family: var(--font-display); font-size: 1.3rem; padding-top: .65rem; border-top: 1px solid var(--line); margin-top: .35rem; }
.cart-sum .discount { color: var(--success); }
.cart-foot .btn { width: 100%; justify-content: center; margin-top: 1rem; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(1.5rem, 5vw, 4rem); }
.contact-info .info-row {
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 1rem;
  align-items: center;
}
.info-row:first-of-type { border-top: 1px solid var(--line); }
.info-label { font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; color: var(--muted); }
.info-value { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; }
.contact-form { background: var(--white); padding: clamp(1.5rem, 4vw, 2.5rem); }
.field { margin-bottom: 1.25rem; }
.field label {
  display: block;
  font-size: .68rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: .45rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: .65rem 0;
  font-family: inherit;
  font-size: .98rem;
  color: var(--ink);
  outline: none;
  transition: border-color .3s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--gold); }
.field textarea { resize: vertical; min-height: 90px; }

/* CHECKOUT */
.checkout-layout { display: grid; grid-template-columns: 1.3fr .9fr; gap: 2.5rem; }
.checkout-section { padding: 1.65rem 0; border-bottom: 1px solid var(--line); }
.checkout-section h3 { font-style: italic; margin-bottom: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.pay-options { display: grid; gap: .65rem; }
.pay-option {
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: .9rem 1rem;
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color .3s var(--ease);
  font-size: .92rem;
}
.pay-option:hover { border-color: var(--gold); }
.pay-option input { accent-color: var(--gold-deep); }
.order-summary { background: var(--white); padding: 1.75rem; height: fit-content; position: sticky; top: 100px; }
.order-summary h3 { font-style: italic; margin-bottom: 1.25rem; }
.order-item { display: grid; grid-template-columns: 50px 1fr auto; gap: .85rem; padding: .6rem 0; border-bottom: 1px solid var(--line); align-items: center; font-size: .86rem; }
.order-item img { width: 50px; height: 50px; object-fit: cover; }

.coupon-input { display: flex; gap: .5rem; margin: 1rem 0; }
.coupon-input input {
  flex: 1;
  border: 1px solid var(--line);
  padding: .6rem .75rem;
  font-family: inherit;
  font-size: .9rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  outline: none;
}
.coupon-input input:focus { border-color: var(--gold); }
.coupon-input button {
  background: var(--ink);
  color: var(--bg);
  border: none;
  padding: 0 1rem;
  font-family: inherit;
  font-size: .7rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  cursor: pointer;
}
.coupon-feedback { font-size: .82rem; margin-bottom: .85rem; }
.coupon-feedback.ok { color: var(--success); }
.coupon-feedback.err { color: var(--accent); }

/* ACCOUNT */
.account-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; max-width: 900px; margin: 0 auto; }
.auth-box h3 { font-style: italic; margin-bottom: 1.25rem; }

/* LEGAL */
.legal-layout { display: grid; grid-template-columns: 220px 1fr; gap: 3rem; }
.legal-nav { position: sticky; top: 100px; height: fit-content; }
.legal-nav h5 { font-family: var(--font-body); font-size: .68rem; letter-spacing: .25em; text-transform: uppercase; margin-bottom: 1rem; font-weight: 600; }
.legal-nav ul { list-style: none; }
.legal-nav li { padding: .4rem 0 .4rem 1rem; border-left: 2px solid transparent; transition: all .3s var(--ease); }
.legal-nav li:hover, .legal-nav li.active { border-color: var(--gold); }
.legal-content h2 { font-style: italic; font-weight: 400; margin: 1.5rem 0 1rem; font-size: 1.85rem; }
.legal-content h3 { font-weight: 500; margin: 1.25rem 0 .65rem; font-size: 1.15rem; }
.legal-content p { margin-bottom: .85rem; color: var(--ink-soft); font-size: .95rem; }
.legal-content section { padding-bottom: 2.5rem; margin-bottom: 2.5rem; border-bottom: 1px solid var(--line); scroll-margin-top: 100px; }
.legal-content section:last-child { border: none; }

/* COOKIE BANNER */
.cookie-banner {
  position: fixed;
  bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
  max-width: 520px;
  background: var(--ink);
  color: var(--bg);
  padding: 1.25rem 1.5rem;
  z-index: 150;
  box-shadow: 0 12px 40px rgba(0,0,0,.25);
  transform: translateY(150%);
  transition: transform .5s var(--ease);
  font-size: .88rem;
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner h4 { color: var(--bg); font-style: italic; margin-bottom: .5rem; font-size: 1.05rem; }
.cookie-banner p { color: var(--bg); opacity: .8; margin-bottom: 1rem; font-size: .85rem; line-height: 1.5; }
.cookie-banner p a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.cookie-banner .actions { display: flex; gap: .5rem; flex-wrap: wrap; }
.cookie-banner button {
  background: var(--gold);
  color: var(--ink);
  border: none;
  padding: .55rem 1.1rem;
  font-family: inherit;
  font-size: .7rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
}
.cookie-banner button.reject { background: transparent; color: var(--bg); border: 1px solid var(--bg); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .08s; }
.reveal[data-delay="2"] { transition-delay: .16s; }
.reveal[data-delay="3"] { transition-delay: .24s; }
.reveal[data-delay="4"] { transition-delay: .32s; }

/* TOAST */
.toast {
  position: fixed;
  top: 90px;
  right: 1.25rem;
  background: var(--ink);
  color: var(--bg);
  padding: 1rem 1.25rem;
  font-size: .88rem;
  z-index: 250;
  transform: translateX(140%);
  transition: transform .4s var(--ease);
  border-left: 3px solid var(--gold);
  max-width: 320px;
}
.toast.show { transform: translateX(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .nav-menu { gap: 1.5rem; }
  .nav-socials { display: none; }
}

@media (max-width: 860px) {
  .nav-menu { display: none; }
  .menu-toggle { display: block; }
  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--bg);
    padding: 1.5rem var(--pad) 2rem;
    border-bottom: 1px solid var(--line);
    gap: 1.1rem;
  }
  .nav-menu.open .nav-socials-mobile { display: flex; padding-left: 0; border: none; margin-top: .5rem; }
  .nav-actions .label-text { display: none; }

  .hero-grid,
  .about-split,
  .service-block,
  .contact-grid,
  .checkout-layout,
  .legal-layout,
  .shop-layout,
  .bundle-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .service-block:nth-child(even) > div:first-child { order: 0; }
  .order-summary, .legal-nav { position: static; }

  .cat-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr; }

  .bundle-card { grid-template-columns: 1fr; }
  .bundle-imgs { aspect-ratio: 16/9; }

  .ig-grid { grid-template-columns: repeat(3, 1fr); gap: .5rem; }

  .process-row {
    grid-template-columns: 50px 1fr;
    grid-template-rows: auto auto;
    gap: .75rem 1rem;
  }
  .process-row p { grid-column: 1 / -1; }
  .process-row .arrow { display: none; }

  .footer-grid { gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 560px) {
  .cat-grid { grid-template-columns: 1fr; }
  .ig-grid { grid-template-columns: 1fr 1fr; }
  .shop-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .product-name { font-size: .95rem; }
  .product-desc { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .checkout-section h3 { font-size: 1.25rem; }
  .marquee span { font-size: 1.1rem; }
  h1 { font-size: 2.25rem; }
  h2 { font-size: 1.65rem; }
  .cart-drawer { width: 100vw; }
}
