/* ---------- header ---------- */
.hdr { position: sticky; top: 0; z-index: 30; background: rgba(251, 249, 245, .94); backdrop-filter: saturate(1.2) blur(10px); -webkit-backdrop-filter: saturate(1.2) blur(10px); border-bottom: 1px solid var(--line); padding-top: env(safe-area-inset-top, 0px); }
.hdr-in { display: flex; align-items: center; justify-content: space-between; height: 58px; }
.mark { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.mark img { width: 38px; height: auto; flex: none; }
.mark span { font-family: var(--display); font-size: 20px; letter-spacing: .08em; text-transform: uppercase; color: var(--maroon); line-height: 1; }
.mark small { display: block; font-family: var(--body); font-size: 8.5px; letter-spacing: .5em; color: var(--muted); margin-top: 4px; }
.hdr-acts { display: flex; gap: 6px; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center; border: 0; background: transparent; color: var(--ink); text-decoration: none; }
.icon-btn:hover { background: var(--soft); }
.wa-ic { color: var(--wa); }
.searchbar { display: flex; gap: 10px; align-items: center; padding-bottom: 12px; }
.searchbar input { flex: 1; min-width: 0; border: 1px solid var(--line); background: var(--surface); border-radius: 999px; padding: 11px 18px; outline: none; }
.searchbar input:focus { border-color: var(--gold); }
.linkish { border: 0; background: none; color: var(--muted); padding: 6px 2px; text-decoration: underline; text-underline-offset: 3px; }

.view { min-height: 70vh; outline: none; }
.loading, .notice { padding-block: 80px; text-align: center; color: var(--muted); }
.notice h1 { font-family: var(--display); font-weight: 400; color: var(--ink); font-size: 26px; margin: 0 0 8px; }

/* ---------- home ---------- */
.hero { text-align: center; padding-block: 36px 28px; }
.hero img { width: min(250px, 64vw); height: auto; margin: 0 auto; }
.hero p { color: var(--muted); max-width: 36ch; margin: 18px auto 22px; text-wrap: balance; white-space: pre-line; }
.hero .acts { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.divider { display: flex; align-items: center; gap: 14px; color: var(--gold); }
.divider::before, .divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

.sec { padding-block: 26px 10px; }
.sec-h { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.sec-h h2 { font-family: var(--display); font-weight: 400; font-size: 23px; margin: 0; letter-spacing: .01em; text-wrap: balance; }
.sec-h a { color: var(--maroon); font-size: 14px; font-weight: 500; text-decoration: none; white-space: nowrap; }
.sec-h .eyebrow { display: block; margin-bottom: 4px; }

.rail { display: grid; grid-auto-flow: column; grid-auto-columns: 42%; gap: 12px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 6px; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scroll-padding-inline: var(--gutter); scrollbar-width: none; }
.rail::-webkit-scrollbar { display: none; }
.rail > * { scroll-snap-align: start; }
@media (min-width: 700px) { .rail { grid-auto-columns: 23%; gap: 16px; } }
@media (min-width: 1100px) { .rail { grid-auto-columns: 18%; } }

.tiles { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
@media (min-width: 700px) { .tiles { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; } }
.tile { position: relative; display: block; aspect-ratio: var(--cover-ratio, 4 / 5); border-radius: var(--radius); overflow: hidden; background: var(--soft); text-decoration: none; }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.tile:hover img { transform: scale(1.03); }
.tile .lbl { position: absolute; inset: auto 0 0 0; padding: 30px 12px 11px; background: linear-gradient(to top, rgba(40, 14, 17, .72), rgba(40, 14, 17, 0)); color: #fff; }
.tile .lbl b { display: block; font-family: var(--display); font-weight: 400; font-size: 17px; line-height: 1.2; }
.tile .lbl small { font-size: 12px; opacity: .85; }
.tile .blank { position: absolute; inset: 0; display: grid; place-items: center; }
.tile .blank img { width: 38%; height: auto; opacity: .5; }

.swatches { display: flex; flex-wrap: wrap; gap: 10px; }
.sw { display: inline-flex; align-items: center; gap: 9px; padding: 8px 16px 8px 9px; border-radius: 999px; background: var(--surface); border: 1px solid var(--line); text-decoration: none; font-size: 14px; }
.sw i { width: 22px; height: 22px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .1); background: var(--soft); flex: none; }
.sw small { color: var(--muted); font-variant-numeric: tabular-nums; }

.all-cta { text-align: center; padding-block: 34px 10px; }

/* ---------- product cards ---------- */
.grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 12px; }
@media (min-width: 700px) { .grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 18px; } }
@media (min-width: 1000px) { .grid { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.card { display: flex; flex-direction: column; text-decoration: none; min-width: 0; }
.card .ph { position: relative; aspect-ratio: var(--cover-ratio, 4 / 5); border-radius: var(--radius); overflow: hidden; background: var(--soft); }
.card .ph img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .ph img { transform: scale(1.03); }
.card .ph .blank { position: absolute; inset: 0; display: grid; place-items: center; }
.card .ph .blank img { width: 36%; height: auto; opacity: .45; }
.card .new { position: absolute; top: 9px; left: 9px; background: var(--surface); color: var(--maroon); font-size: 10px; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; padding: 3px 8px; border-radius: 999px; }
.card .nm { margin-top: 10px; font-weight: 500; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card .pr { margin-top: 3px; color: var(--maroon); font-variant-numeric: tabular-nums; }
.card .pr.req { color: var(--muted); font-size: 14px; }
.card .pr small { color: var(--muted); font-size: 12.5px; }

/* ---------- listing ---------- */
.list-h { padding-block: 26px 6px; }
.crumb { font-size: 13px; color: var(--muted); }
.crumb a { color: var(--muted); }
.list-h h1 { font-family: var(--display); font-weight: 400; font-size: 30px; line-height: 1.15; margin: 6px 0 4px; text-wrap: balance; }
.list-h .count { color: var(--muted); font-size: 14px; }
.toolbar { position: sticky; top: calc(58px + env(safe-area-inset-top, 0px)); z-index: 20; background: var(--ground); padding-block: 10px; border-bottom: 1px solid var(--line); margin-bottom: 18px; }
.toolbar-in { display: flex; gap: 10px; align-items: center; }
.filters { display: flex; gap: 8px; overflow-x: auto; flex: 1; min-width: 0; scrollbar-width: none; }
.filters::-webkit-scrollbar { display: none; }
.fchip { flex: none; display: inline-flex; align-items: center; gap: 7px; border: 1px solid var(--line); background: var(--surface); border-radius: 999px; padding: 6px 13px; font-size: 13.5px; white-space: nowrap; }
.fchip i { width: 12px; height: 12px; border-radius: 50%; border: 1px solid rgba(0, 0, 0, .1); }
.fchip small { color: var(--muted); font-variant-numeric: tabular-nums; }
.fchip[aria-pressed="true"] { background: var(--maroon); border-color: var(--maroon); color: #fff; }
.fchip[aria-pressed="true"] small { color: inherit; opacity: .75; }
.sort { flex: none; position: relative; }
.sort select { appearance: none; -webkit-appearance: none; border: 1px solid var(--line); background: var(--surface); border-radius: 999px; padding: 6px 30px 6px 13px; font-size: 13.5px; }
.sort::after { content: ""; position: absolute; right: 13px; top: 50%; width: 6px; height: 6px; border-right: 1.5px solid var(--muted); border-bottom: 1.5px solid var(--muted); transform: translateY(-70%) rotate(45deg); pointer-events: none; }
.empty-list { padding-block: 50px; text-align: center; color: var(--muted); }

/* ---------- product ---------- */
.pd { padding-bottom: 120px; }
@media (min-width: 900px) { .pd-in { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr); gap: 44px; align-items: start; padding-top: 28px; } .pd-info { position: sticky; top: 90px; } }
.gal { position: relative; margin-inline: calc(var(--gutter) * -1); }
@media (min-width: 900px) { .gal { margin-inline: 0; } }
.car { display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.car::-webkit-scrollbar { display: none; }
.car .slide { flex: 0 0 100%; scroll-snap-align: center; aspect-ratio: 4 / 5; background: var(--soft); border: 0; padding: 0; cursor: zoom-in; }
@media (min-width: 900px) { .car { border-radius: var(--radius); } }
.car .slide img { width: 100%; height: 100%; object-fit: cover; }
.car .slide.white { background: #fff; }
.car .slide.white img { object-fit: contain; }
.gal .count { position: absolute; right: 14px; bottom: 14px; background: rgba(42, 23, 25, .66); color: #fff; font-size: 12.5px; padding: 3px 10px; border-radius: 999px; font-variant-numeric: tabular-nums; pointer-events: none; }
.gal .nav { position: absolute; top: 50%; transform: translateY(-50%); width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .88); display: none; place-items: center; box-shadow: var(--shadow); }
@media (hover: hover) and (min-width: 700px) { .gal .nav { display: grid; } }
.gal .nav.prev { left: 12px; } .gal .nav.next { right: 12px; }
.strip { display: flex; gap: 8px; overflow-x: auto; padding: 12px 0 2px; scrollbar-width: none; }
.strip::-webkit-scrollbar { display: none; }
.strip button { flex: 0 0 58px; height: 72px; border-radius: 8px; overflow: hidden; border: 2px solid transparent; padding: 0; background: var(--soft); opacity: .7; }
.strip button.on { border-color: var(--maroon); opacity: 1; }
.strip img { width: 100%; height: 100%; object-fit: cover; }
.pd-info { padding-top: 18px; }
.pd-info h1 { font-family: var(--display); font-weight: 400; font-size: 29px; line-height: 1.18; margin: 4px 0 8px; text-wrap: balance; }
.pd-price { font-size: 21px; color: var(--maroon); font-variant-numeric: tabular-nums; }
.pd-price small { font-size: 14px; color: var(--muted); margin-left: 6px; }
.pd-price.req { font-size: 16px; color: var(--muted); }
.pd-acts { display: flex; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.pd-acts .btn.wa { flex: 1 1 220px; padding-block: 13px; }
.pd-desc { margin-top: 22px; white-space: pre-line; max-width: 62ch; }
.pd-details { list-style: none; margin: 22px 0 0; padding: 0; border-top: 1px solid var(--line); }
.pd-details li { padding: 10px 0; border-bottom: 1px solid var(--line); font-variant-numeric: tabular-nums; }
.pd-cols { margin-top: 22px; display: flex; flex-wrap: wrap; gap: 8px; align-items: center; font-size: 13px; color: var(--muted); }
.pd-cols a { text-decoration: none; }
.pd-sub { font-family: var(--display); font-weight: 400; font-size: 21px; margin: 34px 0 14px; }
.vids { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 240px)); gap: 12px; }
.vids video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; border-radius: var(--radius); background: #000; }
.photo-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 6px; }
@media (min-width: 700px) { .photo-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 8px; } }
.photo-grid button { aspect-ratio: 4 / 5; border: 0; padding: 0; border-radius: 8px; overflow: hidden; background: var(--soft); cursor: zoom-in; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; }
.enq-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 25; background: var(--surface); border-top: 1px solid var(--line); box-shadow: 0 -6px 24px rgba(74, 28, 32, .08); padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px)); display: flex; align-items: center; gap: 12px; }
.enq-bar .p { flex: 1; min-width: 0; }
.enq-bar .p b { display: block; font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; font-size: 14px; }
.enq-bar .p span { color: var(--maroon); font-size: 14px; font-variant-numeric: tabular-nums; }
@media (min-width: 900px) { .enq-bar { display: none; } }

/* ---------- lightbox ---------- */
.lb { position: fixed; inset: 0; z-index: 60; background: #140A0C; display: flex; flex-direction: column; }
.lb-top { display: flex; justify-content: space-between; align-items: center; padding: calc(10px + env(safe-area-inset-top, 0px)) 14px 10px; color: #fff; font-size: 14px; font-variant-numeric: tabular-nums; }
.lb-top button { width: 40px; height: 40px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, .12); color: #fff; display: grid; place-items: center; }
.lb-car { flex: 1; display: flex; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; }
.lb-car::-webkit-scrollbar { display: none; }
.lb-car figure { flex: 0 0 100%; margin: 0; scroll-snap-align: center; display: grid; place-items: center; padding-bottom: env(safe-area-inset-bottom, 0px); }
.lb-car img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ---------- footer ---------- */
.ftr { border-top: 1px solid var(--line); margin-top: 40px; padding-block: 34px calc(40px + env(safe-area-inset-bottom, 0px)); color: var(--muted); font-size: 14px; }
.ftr .row { display: flex; flex-wrap: wrap; gap: 10px 22px; align-items: center; }
.ftr .brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.ftr .brand img { width: 30px; }
.ftr .brand span { font-family: var(--display); color: var(--maroon); font-size: 17px; letter-spacing: .06em; }
.ftr a { color: var(--ink); }
.toast { position: fixed; left: 50%; bottom: calc(90px + env(safe-area-inset-bottom, 0px)); transform: translateX(-50%); background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 999px; font-size: 14px; z-index: 80; box-shadow: var(--shadow); }
