/* Bhai Bhai Fashion — clean luxury style */
:root {
  --white: #ffffff;
  --ink: #1c1c1c;
  --muted: #6b6560;
  --cream: #f7f3ee;
  --line: #e7e1d9;
  --maroon: #7a1f2b;
  --gold: #b08d57;
  --green: #1f9d55;
  --serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --sans: "Jost", "Helvetica Neue", Arial, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--sans); font-size: 1rem; line-height: 1.65; color: var(--ink); background: var(--white); }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.wrap { width: min(1320px, 100% - 2.5rem); margin-inline: auto; }
section { padding: 4.5rem 0; }
.title { text-align: center; margin-bottom: 2.2rem; }
.title h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4vw, 2.8rem); line-height: 1.15; }
.title p { color: var(--muted); margin-top: .4rem; }
.title a { display: inline-block; margin-top: .6rem; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid var(--ink); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: .5rem; font: 500 .85rem var(--sans); letter-spacing: .14em; text-transform: uppercase;
  padding: .95rem 2rem; border: 1px solid var(--ink); background: var(--ink); color: var(--white); cursor: pointer; transition: background .2s, color .2s; }
.btn:hover { background: var(--white); color: var(--ink); }
.btn-light { background: var(--white); color: var(--ink); border-color: var(--white); }
.btn-light:hover { background: transparent; color: var(--white); }
.btn-outline { background: transparent; color: var(--ink); }
.btn-outline:hover { background: var(--ink); color: var(--white); }
.btn-wa { background: var(--green); border-color: var(--green); }
.btn-wa:hover { background: var(--white); color: var(--green); }

/* Announcement bar */
.announce { background: var(--ink); color: var(--white); text-align: center; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase;
  height: calc(38px + env(safe-area-inset-top, 0px)); padding-top: env(safe-area-inset-top, 0px); position: relative; overflow: hidden; }
.announce span { position: absolute; left: 0; right: 0; top: calc(env(safe-area-inset-top, 0px)); line-height: 38px; opacity: 0; transition: opacity .6s; padding: 0 1rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.announce span.on { opacity: 1; }

/* Header */
header { background: var(--white); border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 30; }
.hbar { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 1.1rem 0 .6rem; }
.hleft, .hright { display: flex; gap: 1.2rem; align-items: center; }
.hright { justify-content: flex-end; }
.icon-btn { display: inline-flex; align-items: center; gap: .4rem; font-size: .85rem; background: none; border: 0; cursor: pointer; color: var(--ink); font-family: var(--sans); }
.icon-btn svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 1.5; }
.brand { text-align: center; }
.brand b { display: block; font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem, 3.6vw, 2.6rem); letter-spacing: .06em; line-height: 1; text-transform: uppercase; }
.brand small { display: block; font-size: .7rem; letter-spacing: .3em; text-transform: uppercase; color: var(--muted); margin-top: .35rem; }
.catnav { display: flex; justify-content: center; gap: 2.2rem; padding: .5rem 0 .9rem; font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; }
.catnav a { padding-bottom: .15rem; border-bottom: 1px solid transparent; }
.catnav a:hover, .catnav a[aria-current="page"] { border-color: var(--ink); }
.menu-toggle { display: none; }
.hide-sm { display: inline; }
@media (max-width: 860px) {
  .catnav { display: none; }
  .catnav.open { display: flex; flex-direction: column; gap: 0; padding: 0 0 1rem; }
  .catnav.open a { padding: .8rem 0; border-bottom: 1px solid var(--line); }
  .menu-toggle { display: inline-flex; }
  .hide-sm { display: none; }
  .hbar { padding: .9rem 0; }
}

/* Hero slider */
.hero { position: relative; height: min(82vh, 760px); min-height: 460px; overflow: hidden; background: var(--maroon); }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1s; display: grid; align-items: end; }
.slide.on { opacity: 1; z-index: 1; }
.slide .bg { position: absolute; inset: 0; background: var(--fb); }
.slide .bg img { width: 100%; height: 100%; object-fit: cover; }
.slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 45%, rgba(0,0,0,.55)); }
.slide .txt { position: relative; z-index: 2; color: var(--white); text-align: center; padding: 0 1.25rem 4.5rem; width: 100%; }
.slide h1, .slide h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.4rem, 6vw, 4.6rem); line-height: 1.05; }
.slide p { margin: .7rem auto 1.6rem; max-width: 34rem; font-size: 1.05rem; }
.dots { position: absolute; bottom: 1.6rem; left: 0; right: 0; z-index: 3; display: flex; justify-content: center; gap: .6rem; }
.dots button { width: 9px; height: 9px; border-radius: 50%; border: 1px solid var(--white); background: transparent; cursor: pointer; padding: 0; }
.dots button[aria-current="true"] { background: var(--white); }
@media (prefers-reduced-motion: reduce) { .slide, .announce span { transition: none; } }

/* Photo with fallback */
.ph { position: relative; overflow: hidden; background: var(--fb, var(--cream)); }
.ph img { position: relative; width: 100%; height: 100%; object-fit: cover; }
.ph .fb { position: absolute; inset: 0; display: grid; place-items: center; text-align: center; color: rgba(255,255,255,.92); font-family: var(--serif); font-size: 1.6rem; padding: 1rem; line-height: 1.2; }

/* Categories */
.cats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1.4rem; }
.cat { text-align: center; }
.cat .ph { aspect-ratio: 3/4; border-radius: 999px 999px 0 0; }
.cat .ph img { transition: transform .6s; }
.cat:hover .ph img { transform: scale(1.04); }
.cat h3 { font-family: var(--serif); font-weight: 500; font-size: 1.45rem; margin-top: .8rem; }

/* Product carousel */
.rail-wrap { position: relative; }
.rail { display: grid; grid-auto-flow: column; grid-auto-columns: calc((100% - 3 * 1.4rem) / 4); gap: 1.4rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding-bottom: .4rem; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
@media (max-width: 1000px) { .rail { grid-auto-columns: calc((100% - 2 * 1.4rem) / 3); } }
@media (max-width: 700px) { .rail { grid-auto-columns: 72%; gap: 1rem; } }
.arrow { position: absolute; top: 38%; z-index: 2; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); cursor: pointer; font-size: 1.3rem; color: var(--ink); box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.arrow.prev { left: -18px; } .arrow.next { right: -18px; }
@media (max-width: 700px) { .arrow { display: none; } }

.card .ph { aspect-ratio: 3/4; }
.card .badge { position: absolute; top: .7rem; left: .7rem; z-index: 2; background: var(--white); font-size: .7rem; letter-spacing: .12em; text-transform: uppercase; padding: .2rem .55rem; }
.card .quick { position: absolute; left: .7rem; right: .7rem; bottom: .7rem; z-index: 2; background: var(--white); text-align: center; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; padding: .7rem; opacity: 0; transform: translateY(8px); transition: .25s; }
.card:hover .quick, .card:focus-within .quick { opacity: 1; transform: none; }
@media (hover: none) { .card .quick { opacity: 1; transform: none; } }
.card h4 { font-weight: 400; font-size: .98rem; margin-top: .8rem; }
.card .price { color: var(--muted); font-size: .92rem; }

/* Grid (collection page) */
.filters { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2rem; }
.filters button { font: 500 .78rem var(--sans); letter-spacing: .12em; text-transform: uppercase; padding: .6rem 1.2rem; border: 1px solid var(--line); background: var(--white); color: var(--ink); cursor: pointer; }
.filters button[aria-pressed="true"] { background: var(--ink); color: var(--white); border-color: var(--ink); }
.grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem 1.4rem; }
@media (max-width: 1000px) { .grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 700px) { .grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem 1rem; } }

/* Banner (split) */
.split { display: grid; grid-template-columns: 1fr 1fr; background: var(--cream); }
.split .ph { min-height: 480px; }
.split .txt { padding: 4rem clamp(1.5rem, 5vw, 5rem); display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.split .eyebrow { font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); }
.split h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(2rem, 4vw, 3rem); line-height: 1.1; }
.split p { color: var(--muted); max-width: 32rem; }
.split ul { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; font-size: .92rem; }
.split ul li::before { content: "✓ "; color: var(--gold); }
.split .actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: .6rem; }
@media (max-width: 820px) { .split { grid-template-columns: 1fr; } .split .ph { min-height: 320px; } }
.split.flip .ph { order: 2; }
@media (max-width: 820px) { .split.flip .ph { order: 0; } }

/* Promise strip */
.promise { border-block: 1px solid var(--line); padding: 2.2rem 0; }
.promise .wrap { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; text-align: center; }
.promise h3 { font-family: var(--serif); font-weight: 600; font-size: 1.3rem; }
.promise p { color: var(--muted); font-size: .9rem; }
@media (max-width: 760px) { .promise .wrap { grid-template-columns: 1fr 1fr; } }

/* FAQ / about text */
.about { background: var(--cream); }
.about .inner { max-width: 860px; margin: 0 auto; }
.about h2 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.8rem, 3.5vw, 2.4rem); text-align: center; margin-bottom: 1rem; }
.about > .inner > p { color: var(--muted); text-align: center; margin-bottom: 2rem; }
details { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; list-style: none; padding: 1.1rem 0; font-weight: 500; display: flex; justify-content: space-between; gap: 1rem; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; font-size: 1.3rem; line-height: 1; }
details[open] summary::after { content: "−"; }
details p { padding: 0 0 1.1rem; color: var(--muted); }

/* Contact */
.page-head { text-align: center; padding: 3.5rem 0 1rem; }
.page-head h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.4rem, 5vw, 3.4rem); }
.page-head p { color: var(--muted); }
.two { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: start; }
@media (max-width: 820px) { .two { grid-template-columns: 1fr; } }
.info { display: grid; gap: 1.4rem; }
.info h3 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.info p { font-size: 1.1rem; }
form { border: 1px solid var(--line); padding: 2rem; display: grid; gap: 1.1rem; }
form h2 { font-family: var(--serif); font-weight: 500; font-size: 1.9rem; }
label { font-size: .85rem; letter-spacing: .06em; display: grid; gap: .35rem; }
input, select, textarea { font: inherit; font-size: 1rem; color: var(--ink); padding: .75rem .9rem; border: 1px solid var(--line); background: var(--white); width: 100%; border-radius: 0; }
input:focus, select:focus, textarea:focus { border-color: var(--ink); outline: none; }
.map { border: 1px solid var(--line); min-height: 380px; }
.map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }

/* Footer */
footer { background: var(--cream); border-top: 1px solid var(--line); padding: 4rem 0 calc(1.5rem + env(safe-area-inset-bottom, 0px)); }
.fgrid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 2.5rem; }
@media (max-width: 860px) { .fgrid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .fgrid { grid-template-columns: 1fr; } }
footer .brand { text-align: left; }
footer .brand b { font-size: 1.8rem; }
footer p { color: var(--muted); font-size: .92rem; margin-top: .8rem; }
footer h4 { font-size: .8rem; letter-spacing: .16em; text-transform: uppercase; font-weight: 600; margin-bottom: .9rem; }
footer ul { list-style: none; display: grid; gap: .45rem; font-size: .92rem; color: var(--muted); }
footer ul a:hover { color: var(--ink); }
.copy { border-top: 1px solid var(--line); margin-top: 3rem; padding-top: 1.2rem; font-size: .8rem; color: var(--muted); text-align: center; letter-spacing: .06em; }

/* Floating WhatsApp */
.float-wa { position: fixed; right: 1.1rem; bottom: calc(1.1rem + env(safe-area-inset-bottom, 0px)); z-index: 40; width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; display: grid; place-items: center; box-shadow: 0 6px 18px rgba(0,0,0,.2); }
.float-wa svg { width: 30px; height: 30px; fill: #fff; }
@media (max-width: 700px) { .cats { grid-template-columns: repeat(2, 1fr); gap: 1rem; } .cat h3 { font-size: 1.2rem; } .brand small { letter-spacing: .18em; } }

/* Hero video */
.slide .bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }

/* Watch and Shop reels */
.reels { grid-auto-columns: calc((100% - 4 * 1.2rem) / 5); gap: 1.2rem; }
@media (max-width: 1000px) { .reels { grid-auto-columns: calc((100% - 2 * 1.2rem) / 3); } }
@media (max-width: 700px) { .reels { grid-auto-columns: 58%; } }
.reel-media { position: relative; display: block; width: 100%; aspect-ratio: 9/16; border: 0; padding: 0; cursor: pointer; overflow: hidden; background: var(--fb); border-radius: 14px; }
.reel-media img, .reel-media video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.reel-media video { opacity: 0; transition: opacity .4s; }
.reel-media video.on { opacity: 1; }
.reel-media .fb { position: absolute; inset: 0; display: grid; place-content: center; gap: .8rem; justify-items: center; color: #fff; font: 500 1.4rem var(--serif); padding: 1rem; text-align: center; }
.play { width: 54px; height: 54px; border-radius: 50%; border: 1px solid rgba(255,255,255,.8); display: grid; place-items: center; font-size: 1rem; padding-left: 3px; }
.reel-info { padding-top: .7rem; }
.reel-info h4 { font-weight: 400; font-size: .98rem; }
.reel-info a { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.vmodal { position: fixed; inset: 0; z-index: 60; background: rgba(0,0,0,.85); display: grid; place-items: center; padding: 1rem; }
.vmodal[hidden] { display: none; }
.vbox { position: relative; width: min(420px, 100%); background: #000; }
.vbox video { width: 100%; max-height: 78vh; display: block; background: #000; }
.vbar { background: var(--white); padding: .9rem 1rem; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.vbar .btn { padding: .7rem 1rem; font-size: .72rem; }
.vclose { position: absolute; top: -44px; right: 0; width: 40px; height: 40px; border: 0; background: none; color: #fff; font-size: 2rem; cursor: pointer; }

/* As Seen On */
.seen { background: var(--cream); }
.seen-card .ph { aspect-ratio: 4/5; }
.seen-card figcaption { font-family: var(--serif); font-size: 1.25rem; text-align: center; margin-top: .7rem; }

/* Our Store gallery */
.store-grid { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: 1rem; height: min(560px, 70vw); }
.store-grid .ph:first-child { grid-row: span 2; }
.store-grid .ph .fb { font-size: 1.8rem; }
.store-info { display: flex; justify-content: space-between; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 1.6rem; }
.store-info ul { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem 1.6rem; }
.store-info ul li::before { content: "✓ "; color: var(--gold); }
.store-info .actions { display: flex; gap: .8rem; flex-wrap: wrap; }
@media (max-width: 700px) { .store-grid { grid-template-columns: 1fr 1fr; grid-template-rows: 220px 150px; height: auto; } .store-grid .ph:first-child { grid-column: span 2; grid-row: auto; } }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem 1.6rem; }
@media (max-width: 900px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .blog-grid { grid-template-columns: 1fr; } }
.post .ph { aspect-ratio: 16/10; }
.post time { display: block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-top: 1rem; }
.post h3 { font-family: var(--serif); font-weight: 500; font-size: 1.5rem; line-height: 1.2; margin: .3rem 0 .5rem; }
.post p { color: var(--muted); font-size: .95rem; }
.post .more { display: inline-block; margin-top: .6rem; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; border-bottom: 1px solid var(--ink); }
.article { max-width: 760px; padding: 3rem 0 4rem; }
.article .back { font-size: .85rem; color: var(--muted); }
.article time { display: block; margin-top: 1.5rem; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); }
.article h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(2.2rem, 5vw, 3.2rem); line-height: 1.1; margin: .4rem 0 1.6rem; }
.article .hero-img { aspect-ratio: 16/9; margin-bottom: 1.8rem; }
.article p { font-size: 1.08rem; line-height: 1.8; margin-bottom: 1.2rem; }
.article .actions { display: flex; gap: .8rem; flex-wrap: wrap; margin-top: 2rem; }

/* Instagram */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: .5rem; }
.insta-grid .ph { aspect-ratio: 1; }
.insta-grid .ph .fb { font-size: 1rem; font-family: var(--sans); }
.insta-grid a:hover .ph img { opacity: .85; }
@media (max-width: 800px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }

/* Intro heading */
.intro { text-align: center; padding: 3rem 0 0; max-width: 860px; }
.intro h1 { font-family: var(--serif); font-weight: 500; font-size: clamp(1.7rem, 3.4vw, 2.4rem); line-height: 1.2; }
.intro p { color: var(--muted); margin-top: .5rem; }

/* Blog article extras */
.crumbs { font-size: .85rem; color: var(--muted); }
.crumbs a:hover { color: var(--ink); text-decoration: underline; }
.article-body h2 { font-family: var(--serif); font-weight: 500; font-size: 1.8rem; margin: 2rem 0 .8rem; }

/* ===== Mobile polish ===== */
.icon-btn { min-width: 44px; min-height: 44px; justify-content: center; }
.dots button { position: relative; }
.dots button::after { content: ""; position: absolute; inset: -12px; }
.shade { position: fixed; inset: 0; background: rgba(0,0,0,.45); z-index: 49; opacity: 0; pointer-events: none; transition: opacity .25s; }
.shade.on { opacity: 1; pointer-events: auto; }
.drawer-head { display: none; }
body.no-scroll { overflow: hidden; }
.mbar { display: none; }
@media (max-width: 860px) {
  .brand b { font-size: 1.45rem; letter-spacing: .04em; white-space: nowrap; }
  .brand small { font-size: .6rem; letter-spacing: .16em; white-space: nowrap; }
  .hleft, .hright { gap: 0; }
  /* side drawer menu */
  .catnav, .catnav.open { display: flex; flex-direction: column; gap: 0; position: fixed; top: 0; bottom: 0; left: 0; width: min(84vw, 340px); z-index: 50;
    background: var(--white); padding: env(safe-area-inset-top, 0px) 1.4rem 1.5rem; overflow-y: auto; transform: translateX(-100%); transition: transform .3s ease; }
  .catnav.open { transform: none; box-shadow: 4px 0 24px rgba(0,0,0,.15); }
  .catnav a { padding: .95rem 0; border-bottom: 1px solid var(--line); font-size: .9rem; }
  .drawer-head { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; border-bottom: 1px solid var(--ink); }
  .drawer-head b { font-family: var(--serif); font-size: 1.35rem; letter-spacing: .04em; text-transform: uppercase; }
  .drawer-close { width: 44px; height: 44px; border: 0; background: none; font-size: 2rem; line-height: 1; cursor: pointer; color: var(--ink); }
  /* sticky bottom action bar */
  .mbar { display: grid; grid-template-columns: repeat(3, 1fr); position: fixed; left: 0; right: 0; bottom: 0; z-index: 45; background: var(--white);
    border-top: 1px solid var(--line); padding-bottom: env(safe-area-inset-bottom, 0px); box-shadow: 0 -4px 16px rgba(0,0,0,.06); }
  .mbar a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: .15rem; min-height: 58px; font-size: .72rem; letter-spacing: .08em; text-transform: uppercase; }
  .mbar svg { width: 22px; height: 22px; stroke: var(--ink); fill: none; stroke-width: 1.5; }
  .mbar .mbar-wa { background: #25D366; color: #fff; }
  .mbar .mbar-wa svg { fill: #fff; stroke: none; }
  .float-wa { display: none; }
  body { padding-bottom: calc(58px + env(safe-area-inset-bottom, 0px)); }
  .hero { height: min(72vh, 620px); }
  section { padding: 3.2rem 0; }
  .title { margin-bottom: 1.5rem; }
  footer ul a, footer ul li { padding: .25rem 0; display: inline-block; }
}
@media (prefers-reduced-motion: reduce) { .catnav, .shade { transition: none; } }
@media (max-width: 860px) {
  .hleft [data-directions], .hright a[href^="tel:"] { display: none; }
  .brand b { font-size: min(1.45rem, 5.6vw); }
  .brand small { font-size: min(.6rem, 2.5vw); }
}
@media (max-width: 860px) {
  .catnav, .catnav.open { justify-content: flex-start; }
  body.no-scroll .mbar { display: none; }
}

/* ===== Bombay-style section titles & edge-to-edge rails ===== */
.title h2 { text-transform: uppercase; letter-spacing: .03em; }
.title-row { display: flex; align-items: center; justify-content: center; gap: 1.6rem; }
.tarrow { width: 44px; height: 44px; border: 0; background: none; color: var(--ink); font-size: 2.4rem; line-height: 1; cursor: pointer; font-family: var(--sans); font-weight: 300; }
.tarrow:hover { color: var(--gold); }
.title a.viewall { display: inline-block; margin-top: .5rem; font-family: var(--serif); font-size: 1rem; letter-spacing: .14em; text-transform: uppercase; color: #c47a45; border-bottom: 0; }
.title a.viewall:hover { text-decoration: underline; }

.rail.bleed { grid-auto-columns: calc((100% - 3 * 6px) / 4); gap: 6px; padding: 0; }
.rail.bleed.reels { grid-auto-columns: calc((100% - 4 * 6px) / 5); }
.rail.bleed.seen-rail { grid-auto-columns: calc((100% - 2 * 6px) / 3); }
.rail.bleed .card h4, .rail.bleed .card .price, .rail.bleed .reel-info { padding-inline: .8rem; }
.rail.bleed .reel-media { border-radius: 0; }
.seen-rail .seen-card .ph { aspect-ratio: 3/4; }
.seen-rail .seen-card figcaption { font-size: 1.35rem; }
@media (max-width: 1000px) {
  .rail.bleed { grid-auto-columns: calc((100% - 2 * 6px) / 3); }
  .rail.bleed.reels { grid-auto-columns: calc((100% - 2 * 6px) / 3); }
  .rail.bleed.seen-rail { grid-auto-columns: calc((100% - 6px) / 2); }
}
@media (max-width: 700px) {
  .rail.bleed { grid-auto-columns: 64%; }
  .rail.bleed.reels { grid-auto-columns: 60%; }
  .rail.bleed.seen-rail { grid-auto-columns: 82%; }
  .title-row { gap: .6rem; }
}

/* Our Store: no gaps */
.store-grid, .store-grid .ph { gap: 0; }
@media (max-width: 700px) { .store-grid { gap: 0; } }

/* Instagram: edge-to-edge, bigger tiles */
.insta-grid { grid-template-columns: repeat(4, 1fr); gap: 0; }
@media (max-width: 800px) { .insta-grid { grid-template-columns: repeat(2, 1fr); } }

/* ===== Transparent header on the homepage ===== */
.overlay-header header { background: transparent; border-bottom-color: transparent; transition: background-color .3s, border-color .3s; }
.overlay-header header .brand b, .overlay-header header .brand small, .overlay-header header .icon-btn { color: #fff; transition: color .3s; }
.overlay-header header .icon-btn svg { stroke: #fff; transition: stroke .3s, fill .3s; }
.overlay-header header .hright a[href*="wa.me"] svg { fill: #fff !important; }
@media (min-width: 861px) {
  .overlay-header header .catnav a { color: #fff; transition: color .3s; }
  .overlay-header header .catnav a:hover, .overlay-header header .catnav a[aria-current="page"] { border-color: #fff; }
}
/* solid state: scrolled, mouse over, keyboard focus, or menu open */
.overlay-header header.solid, .overlay-header header:hover, .overlay-header header:focus-within, body.no-scroll.overlay-header header {
  background: var(--white); border-bottom-color: var(--line);
}
.overlay-header header.solid .brand b, .overlay-header header:hover .brand b, .overlay-header header:focus-within .brand b, body.no-scroll.overlay-header header .brand b,
.overlay-header header.solid .icon-btn, .overlay-header header:hover .icon-btn, .overlay-header header:focus-within .icon-btn, body.no-scroll.overlay-header header .icon-btn { color: var(--ink); }
.overlay-header header.solid .brand small, .overlay-header header:hover .brand small, .overlay-header header:focus-within .brand small, body.no-scroll.overlay-header header .brand small { color: var(--muted); }
.overlay-header header.solid .icon-btn svg, .overlay-header header:hover .icon-btn svg, .overlay-header header:focus-within .icon-btn svg, body.no-scroll.overlay-header header .icon-btn svg { stroke: var(--ink); }
.overlay-header header.solid .hright a[href*="wa.me"] svg, .overlay-header header:hover .hright a[href*="wa.me"] svg,
.overlay-header header:focus-within .hright a[href*="wa.me"] svg, body.no-scroll.overlay-header header .hright a[href*="wa.me"] svg { fill: var(--ink) !important; stroke: none; }
.overlay-header header .hright a[href*="wa.me"] svg { stroke: none; }
@media (min-width: 861px) {
  .overlay-header header.solid .catnav a, .overlay-header header:hover .catnav a, .overlay-header header:focus-within .catnav a { color: var(--ink); }
  .overlay-header header.solid .catnav a:hover, .overlay-header header:hover .catnav a:hover,
  .overlay-header header.solid .catnav a[aria-current="page"], .overlay-header header:hover .catnav a[aria-current="page"] { border-color: var(--ink); }
}
/* banner slides up behind the header, with a soft dark fade so white text stays readable */
.overlay-header .hero { margin-top: calc(-1 * var(--hh, 120px)); }
.overlay-header .hero::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: calc(var(--hh, 120px) + 60px); z-index: 2; pointer-events: none;
  background: linear-gradient(rgba(0,0,0,.45), transparent); }

/* Phone: banner shows only heading + button */
@media (max-width: 700px) {
  .slide .txt p { display: none; }
  .slide h2 { margin-bottom: 1.2rem; }
}

/* ===== Banner position + header overlap fix ===== */
.slide .bg img, .slide .bg video { object-position: var(--pos, center); }
/* With the transparent header, the banner is made taller by the header's height,
   so the part below the header is the full banner size */
.overlay-header .hero { height: calc(min(82vh, 760px) + var(--hh, 120px)); }
@media (max-width: 860px) { .overlay-header .hero { height: calc(min(72vh, 620px) + var(--hh, 90px)); } }
.overlay-header .slide .txt { padding-bottom: 4.5rem; }

/* ===== Instagram — tall tiles carousel with side margins ===== */
.ig-wrap { position: relative; padding-inline: clamp(1rem, 4vw, 4.5rem); }
.ig-rail { grid-auto-columns: calc((100% - 5 * 4px) / 6); gap: 4px; }
.ig-tile { position: relative; display: block; aspect-ratio: 9 / 16; border-radius: 6px; overflow: hidden; }
.ig-tile .ph { position: absolute; inset: 0; }
.ig-tile .ph .fb { font-family: var(--sans); font-size: .95rem; }
.ig-tile video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.ig-tile img { transition: transform .5s; }
.ig-tile:hover img { transform: scale(1.04); }
.ig-icon { position: absolute; inset: 0; display: grid; place-items: center; background: rgba(0,0,0,.18); opacity: 0; transition: opacity .25s; z-index: 2; }
.ig-icon svg { width: 36px; height: 36px; fill: none; stroke: #fff; stroke-width: 1.8; }
.ig-tile:hover .ig-icon, .ig-tile:focus-visible .ig-icon { opacity: 1; }
.ig-arrow { position: absolute; top: 50%; transform: translateY(-50%); z-index: 3; width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.92); box-shadow: 0 2px 10px rgba(0,0,0,.15); font-size: 1.6rem; line-height: 1; padding-bottom: 3px; }
.ig-arrow.prev { left: calc(clamp(1rem, 4vw, 4.5rem) + 12px); }
.ig-arrow.next { right: calc(clamp(1rem, 4vw, 4.5rem) + 12px); }
.ig-arrow:hover { background: #fff; color: var(--ink); }
.insta-grid { display: none; }
@media (max-width: 1000px) { .ig-rail { grid-auto-columns: calc((100% - 3 * 4px) / 4); } }
@media (max-width: 700px) {
  .ig-rail { grid-auto-columns: 44%; }
  .ig-arrow { width: 34px; height: 34px; font-size: 1.3rem; }
}

/* ===== Reference sizes: Shop In & New Arrivals ===== */
.rail.bleed.prod-rail { --g: 2vw; padding-inline: 4vw; scroll-padding-inline: 4vw; gap: var(--g);
  grid-auto-columns: calc((100% - 4 * var(--g)) / 5); }
.prod-rail .card { background: transparent; border: 0; border-radius: 0; }
.prod-rail .card-media { position: relative; }
.prod-rail .card .ph { aspect-ratio: 2 / 3; }
.prod-rail .card .badge { left: auto; right: .8rem; top: .8rem; font-family: var(--serif); font-size: .95rem; letter-spacing: 0; text-transform: none; padding: .2rem .75rem; }
.prod-rail .card .quick { left: .8rem; right: .8rem; bottom: .8rem; padding: .8rem; font-family: var(--serif); font-size: 1.05rem; letter-spacing: .08em; background: rgba(255,255,255,.95); }
.rail.bleed.prod-rail .card h4 { font-family: var(--serif); font-size: 1.25rem; font-weight: 500; text-align: center; margin-top: 1rem; padding-inline: .3rem; line-height: 1.25; }
.rail.bleed.prod-rail .card .price { text-align: center; font-family: var(--serif); font-size: 1rem; padding-inline: .3rem; }
@media (max-width: 1000px) { .rail.bleed.prod-rail { grid-auto-columns: calc((100% - 2 * var(--g)) / 3); } }
@media (max-width: 700px) { .rail.bleed.prod-rail { --g: 12px; padding-inline: 16px; scroll-padding-inline: 16px; grid-auto-columns: 62%; }
  .rail.bleed.prod-rail .card h4 { font-size: 1.1rem; } }

/* ===== Reference sizes: As Seen On ===== */
.rail.bleed.seen-big { --g: 2vw; padding-inline: 2vw; scroll-padding-inline: 2vw; gap: var(--g);
  grid-auto-columns: calc((100% - 3 * var(--g)) / 4); }
.seen-big .seen-card { position: relative; margin: 0; }
.seen-big .seen-card .ph { aspect-ratio: 428 / 625; }
.seen-big .seen-card .ph::after { content: ""; position: absolute; inset: 55% 0 0 0; background: linear-gradient(transparent, rgba(0,0,0,.45)); pointer-events: none; }
.seen-big .seen-card figcaption { position: absolute; left: 0; right: 0; bottom: 7%; z-index: 2; margin: 0; color: #fff; font-family: var(--serif);
  font-size: 1.1rem; letter-spacing: .12em; text-transform: uppercase; text-align: center; padding: 0 1rem; }
@media (max-width: 1000px) { .rail.bleed.seen-big { grid-auto-columns: calc((100% - 2 * var(--g)) / 3); } }
@media (max-width: 700px) { .rail.bleed.seen-big { --g: 12px; padding-inline: 16px; scroll-padding-inline: 16px; grid-auto-columns: 78%; } }
.seen { background: #faf9f5; }

/* ===== Reference sizes: Instagram (4% sides, 4px gaps, 9:16 tiles, 6 across) ===== */
.ig-wrap { padding-inline: 4vw; }
.ig-arrow.prev { left: calc(4vw + 12px); } .ig-arrow.next { right: calc(4vw + 12px); }
@media (max-width: 700px) { .ig-wrap { padding-inline: 16px; } .ig-arrow.prev { left: 24px; } .ig-arrow.next { right: 24px; } }
