:root {
  --black: #050505;
  --ink: #121212;
  --muted: #696969;
  --soft: #f5f5f5;
  --line: #e6e6e6;
  --white: #ffffff;
  --green: #1faa59;
  --radius: 24px;
  --max: 1240px;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; min-width: 300px; background: var(--white); }
body:has(.drawer-layer) { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
button:disabled { cursor: not-allowed; opacity: .5; }
img { max-width: 100%; display: block; }
p { margin: 0; line-height: 1.65; }
h1, h2, h3 { margin: 0; font-weight: 600; letter-spacing: -.035em; }
main { min-height: 56vh; }
.noscript, .loading-error { padding: 4rem 1.5rem; text-align: center; }
.loading-error img { width: 112px; margin: 0 auto 1.25rem; }
.loading-error p { color: var(--muted); margin-top: .75rem; }
.eyebrow { margin: 0 0 18px; color: #9c9c9c; font-size: .72rem; font-weight: 700; letter-spacing: .35em; text-transform: uppercase; }
.eyebrow.dark-text { color: var(--muted); }
.button { align-items: center; border: 1px solid transparent; border-radius: 999px; display: inline-flex; gap: 10px; justify-content: center; min-height: 50px; padding: 0 22px; font-size: .9rem; font-weight: 600; transition: .18s ease; }
.button.dark { background: var(--black); color: white; }
.button.dark:hover { background: #292929; }
.button.light { background: white; color: var(--black); }
.button.light:hover { background: #efefef; }
.button.ghost { border-color: #393939; color: white; }
.button.ghost:hover { border-color: white; background: white; color: var(--black); }
.hero .button.ghost { background: white; border-color: white; color: var(--black); }
.hero .button.ghost:hover { background: #ebebeb; border-color: #ebebeb; color: var(--black); }
.button.outline { border-color: var(--line); color: var(--ink); }
.button.outline:hover { border-color: #333; }
.button.whatsapp { background: var(--green); color: white; }
.button.whatsapp:hover { background: #178d47; }
.button.full { width: 100%; }
.section { max-width: var(--max); margin: 0 auto; padding: 72px 24px; }
.header { background: rgba(5,5,5,.97); border-bottom: 1px solid rgba(255,255,255,.1); color: white; position: sticky; top: 0; z-index: 20; backdrop-filter: blur(12px); }
.nav-wrap { align-items: center; display: flex; height: 78px; justify-content: space-between; margin: 0 auto; max-width: var(--max); padding: 0 24px; }
.brand { align-items: center; display: inline-flex; gap: 14px; }
.brand img { height: 54px; object-fit: contain; width: 54px; }
.brand span { font-size: .82rem; font-weight: bold; letter-spacing: .3em; }
.desktop-nav { align-items: center; display: flex; gap: 42px; font-size: .92rem; color: #c8c8c8; }
.desktop-nav a:hover, .desktop-nav .active { color: white; }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.icon-btn { background: transparent; border: 0; color: white; font-size: .9rem; position: relative; padding: 12px 8px; }
.icon-btn strong { background: white; border-radius: 999px; color: var(--black); font-size: .7rem; font-weight: 700; min-width: 20px; height: 20px; display: grid; place-items: center; position: absolute; top: 0; right: -6px; }
.menu-btn { background: transparent; border: 0; display: none; flex-direction: column; gap: 5px; padding: 10px; }
.menu-btn span { background: white; display: block; height: 1px; width: 20px; }
.mobile-nav { display: none; flex-direction: column; gap: 20px; padding: 0 24px 24px; font-size: .9rem; color: #dbdbdb; }
.mobile-nav.open { display: flex; }
.hero { background: var(--black); color: white; }
.hero-grid { display: grid; grid-template-columns: .9fr 1.1fr; margin: 0 auto; max-width: var(--max); min-height: 650px; }
.hero-copy { display: flex; flex-direction: column; justify-content: center; padding: 54px 50px 54px 24px; }
.hero-logo { height: 148px; object-fit: contain; object-position: left; width: 148px; margin-bottom: 36px; }
.hero h1 { font-size: clamp(3.15rem, 5vw, 4.5rem); line-height: .98; max-width: 520px; text-transform: uppercase; }
.hero .intro { color: #c7c7c7; margin: 26px 0 34px; max-width: 460px; }
.actions { display: flex; flex-wrap: wrap; gap: 12px; }
.stats { border-top: 1px solid #252525; display: flex; gap: 50px; margin-top: 48px; padding-top: 28px; }
.stats div { display: flex; flex-direction: column; gap: 3px; }
.stats strong { font-size: 1.55rem; font-weight: 500; }
.stats span { color: #929292; font-size: .86rem; }
.hero-photo { min-height: 560px; overflow: hidden; position: relative; }
.hero-photo > img { animation: hero-fade .55s ease; height: 100%; object-fit: cover; width: 100%; filter: grayscale(1); }
.hero-photo::after { background: linear-gradient(0deg, rgba(0,0,0,.7), transparent 48%); content: ""; inset: 0; position: absolute; }
@keyframes hero-fade { from { opacity: .18; transform: scale(1.02); } to { opacity: 1; transform: scale(1); } }
.hero-controls { bottom: 38px; display: flex; gap: 9px; position: absolute; right: 34px; z-index: 2; }
.hero-controls button { align-items: center; background: rgba(0,0,0,.55); border: 1px solid rgba(255,255,255,.25); border-radius: 999px; color: white; display: inline-flex; font-size: 1.35rem; height: 46px; justify-content: center; transition: .18s ease; width: 46px; }
.hero-controls button:hover { background: white; color: var(--black); }
.hero-dots { display: flex; gap: 7px; left: 50%; position: absolute; top: 25px; transform: translateX(-50%); z-index: 2; }
.hero-dot { background: rgba(255,255,255,.4); border: 0; border-radius: 999px; height: 6px; transition: .18s ease; width: 17px; }
.hero-dot.active { background: white; width: 38px; }
.hero-caption { background: rgba(0,0,0,.68); border: 1px solid rgba(255,255,255,.14); border-radius: 15px; bottom: 38px; left: 34px; padding: 18px; position: absolute; z-index: 1; }
.hero-caption p { color: #999; font-size: .63rem; letter-spacing: .3em; text-transform: uppercase; }
.hero-caption strong { display: block; font-size: .9rem; margin-top: 9px; }
.hero-caption span { color: #9c9c9c; display: block; font-size: .73rem; margin-top: 6px; }
.features { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(3, 1fr); margin: 0 auto; max-width: var(--max); padding: 30px 24px; }
.features div { border-right: 1px solid var(--line); display: flex; flex-direction: column; gap: 5px; padding: 0 38px; }
.features div:last-child { border-right: 0; }
.features strong { font-size: .9rem; }
.features span { color: var(--muted); font-size: .78rem; }
.section-head { align-items: end; display: flex; gap: 18px; justify-content: space-between; margin-bottom: 42px; }
.section-head h2 { font-size: clamp(2rem, 3vw, 2.55rem); }
.product-grid { display: grid; gap: 36px 22px; grid-template-columns: repeat(4, 1fr); }
.product-grid:has(.empty-card) { display: block; }
.empty-card { background: var(--soft); border-radius: var(--radius); padding: 68px 24px; text-align: center; }
.empty-card p { color: var(--muted); margin-bottom: 25px; }
.product-image { background: var(--soft); border-radius: 22px; display: block; overflow: hidden; position: relative; }
.product-image img { aspect-ratio: 3/4; object-fit: cover; transition: transform .55s ease; width: 100%; }
.design-card:hover .product-image img { transform: scale(1.045); }
.badge { background: white; border-radius: 999px; font-size: .68rem; font-weight: 600; left: 14px; letter-spacing: .05em; padding: 8px 12px; position: absolute; text-transform: uppercase; top: 14px; }
.category { color: var(--muted); font-size: .68rem; letter-spacing: .08em; margin-top: 17px; text-transform: uppercase; }
.design-name { display: block; font-size: .95rem; font-weight: 600; margin-top: 6px; }
.price { align-items: center; display: flex; font-size: .93rem; font-weight: bold; gap: 10px; margin-top: 13px; }
.price del { color: #a4a4a4; font-weight: normal; }
.details-link { display: inline-block; font-size: .78rem; font-weight: 600; margin-top: 15px; text-decoration: underline; text-underline-offset: 4px; }
.story { background: var(--black); color: white; }
.story-grid { align-items: center; display: grid; gap: 56px; grid-template-columns: 1fr 1fr; margin: 0 auto; max-width: var(--max); padding: 80px 24px; }
.story-image { border-radius: 32px; filter: grayscale(1); height: 520px; object-fit: cover; width: 100%; }
.story-copy img { height: 92px; margin-bottom: 32px; object-fit: contain; width: 92px; }
.story-copy h2 { font-size: clamp(2.2rem, 3vw, 3rem); text-transform: uppercase; }
.story-copy > p:not(.eyebrow) { color: #c9c9c9; margin: 22px 0 34px; max-width: 490px; }
.alerts-section { background: var(--soft); padding: 72px 24px; text-align: center; }
.alerts-section h2 { font-size: clamp(1.8rem, 3vw, 2.35rem); }
.alerts-section > p { color: var(--muted); margin: 16px auto 30px; max-width: 560px; }
.alerts-section form { display: flex; gap: 12px; margin: 0 auto; max-width: 560px; }
.alerts-section input { border: 1px solid var(--line); border-radius: 999px; flex: 1; min-height: 50px; padding: 0 20px; }
.form-error { background: #fff0f0; border-radius: 9px; color: #b42318; font-size: .78rem; margin-top: 10px; padding: 9px 11px; }
.shop-banner { background: var(--black); color: white; padding: 38px 24px; }
.shop-banner > div { margin: 0 auto; max-width: var(--max); }
.shop-banner h1 { font-size: clamp(1.7rem, 3vw, 2.2rem); margin: 8px 0; text-transform: uppercase; }
.shop-banner p:not(.eyebrow) { color: #cacaca; max-width: 690px; }
.shop-section { padding-top: 54px; }
.shop-heading { margin-bottom: 44px; max-width: 740px; }
.shop-heading h2 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 12px; }
.shop-heading > p:last-child { color: var(--muted); }
.shop-grid { display: grid; gap: 34px; grid-template-columns: 244px minmax(0, 1fr); }
.filters { align-self: start; border: 1px solid var(--line); border-radius: 20px; padding: 20px; position: sticky; top: 98px; }
.filter-heading { align-items: center; display: flex; justify-content: space-between; margin-bottom: 22px; }
.filter-heading button { background: none; border: 0; color: var(--muted); font-size: .75rem; text-decoration: underline; }
.field { display: block; margin-bottom: 24px; }
.field span, fieldset legend { color: var(--muted); display: block; font-size: .68rem; font-weight: 700; letter-spacing: .1em; margin-bottom: 11px; text-transform: uppercase; }
.field input:not([type="range"]), .field select { background: white; border: 1px solid var(--line); border-radius: 11px; height: 48px; padding: 0 12px; width: 100%; }
.field input[type="range"] { accent-color: var(--black); width: 100%; }
fieldset { border: 0; margin: 0 0 24px; padding: 0; }
fieldset .choice { display: block; margin-bottom: 6px; width: 100%; text-align: left; }
.choice { background: white; border: 1px solid var(--line); border-radius: 9px; color: #555; font-size: .86rem; min-height: 39px; padding: 0 12px; }
.choice.selected { background: var(--black); border-color: var(--black); color: white; }
.choice.unavailable { opacity: .5; text-decoration: line-through; }
.results-head { align-items: center; border-bottom: 1px solid var(--line); color: var(--muted); display: flex; font-size: .86rem; justify-content: space-between; margin-bottom: 28px; padding-bottom: 19px; }
.results-head select { border: 1px solid var(--line); border-radius: 999px; height: 44px; margin-left: 12px; padding: 0 14px; }
.shop-products { grid-template-columns: repeat(3, 1fr); }
.empty-results { background: var(--soft); border-radius: 28px; color: var(--muted); padding: 72px 24px; text-align: center; }
.back { color: var(--muted); display: inline-block; font-size: .86rem; margin-bottom: 30px; }
.detail-grid { display: grid; gap: 50px; grid-template-columns: 1.05fr .95fr; }
.main-image { aspect-ratio: 4/5; background: var(--soft); border-radius: 24px; object-fit: cover; width: 100%; }
.thumbs { display: grid; gap: 12px; grid-template-columns: repeat(4, 1fr); margin-top: 12px; }
.thumb { background: transparent; border: 2px solid transparent; border-radius: 13px; overflow: hidden; padding: 0; }
.thumb.selected { border-color: var(--black); }
.thumb img { aspect-ratio: 1; object-fit: cover; width: 100%; }
.product-details h1 { font-size: clamp(2rem, 3vw, 2.6rem); margin: 11px 0 16px; }
.price.large { font-size: 1.26rem; margin-bottom: 22px; }
.description { color: var(--muted); margin-bottom: 32px; }
.option { margin-bottom: 26px; }
.option > div:first-child { align-items: center; display: flex; justify-content: space-between; margin-bottom: 13px; }
.option a { font-size: .82rem; text-decoration: underline; text-underline-offset: 4px; }
.options { display: flex; flex-wrap: wrap; gap: 9px; }
.stock { color: var(--muted); font-size: .87rem; margin-bottom: 23px; }
.stock.sold-out { color: #b42318; }
.product-actions { margin-bottom: 32px; }
.facts { border-bottom: 1px solid var(--line); border-top: 1px solid var(--line); margin: 0; }
.facts div { border-bottom: 1px solid var(--line); display: flex; gap: 12px; padding: 15px 0; }
.facts div:last-child { border-bottom: 0; }
.facts dt { font-weight: 600; }
.facts dd { color: var(--muted); margin: 0; }
.info-page { max-width: 820px; }
.info-page h1 { font-size: clamp(2.2rem, 4vw, 3rem); margin-bottom: 16px; }
.info-page > p { color: var(--muted); margin-bottom: 28px; }
.table-wrap { border: 1px solid var(--line); border-radius: 18px; overflow: auto; }
table { border-collapse: collapse; width: 100%; }
th { background: var(--black); color: white; font-size: .8rem; text-align: left; }
td, th { padding: 15px; }
td { border-top: 1px solid var(--line); }
.policy-list { list-style: none; margin: 30px 0 54px; padding: 0; }
.policy-list li { border-bottom: 1px solid var(--line); padding: 16px 0 16px 32px; position: relative; }
.policy-list li::before { content: "✓"; left: 0; position: absolute; }
.info-page h2 { font-size: 1.55rem; margin-bottom: 18px; }
.faq details { border-bottom: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 600; }
.faq p { color: var(--muted); margin-top: 13px; }
.footer { background: var(--black); color: white; }
.footer-grid { border-bottom: 1px solid #222; display: grid; gap: 54px; grid-template-columns: 2fr 1fr 1fr; margin: 0 auto; max-width: var(--max); padding: 58px 24px; }
.footer-brand > div { align-items: center; display: flex; gap: 16px; }
.footer-brand img { height: 66px; object-fit: contain; width: 66px; }
.footer-brand strong { display: block; font-size: 1rem; letter-spacing: .27em; }
.footer-brand span { color: #8d8d8d; display: block; font-size: .67rem; letter-spacing: .32em; margin-top: 7px; text-transform: uppercase; }
.footer-brand p { color: #999; margin-top: 22px; max-width: 370px; }
.footer h2 { font-size: .92rem; margin-bottom: 20px; }
.footer-grid > div:not(.footer-brand) { display: flex; flex-direction: column; gap: 14px; font-size: .86rem; color: #aaa; }
.footer-grid a:hover { color: white; }
.social { display: flex; gap: 14px; margin-top: 20px; text-transform: capitalize; font-size: .82rem; }
.copyright { color: #797979; display: flex; font-size: .72rem; justify-content: space-between; margin: 0 auto; max-width: var(--max); padding: 24px; }
.drawer-layer { inset: 0; position: fixed; z-index: 40; }
.backdrop { background: rgba(0,0,0,.52); border: 0; inset: 0; position: absolute; width: 100%; }
.drawer { background: white; bottom: 0; display: flex; flex-direction: column; max-width: 440px; position: absolute; right: 0; top: 0; width: 100%; }
.drawer-head { align-items: center; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; padding: 20px; }
.drawer-head h2 { font-size: 1.16rem; }
.drawer-head p { color: var(--muted); font-size: .78rem; }
.drawer-head button { background: transparent; border: 0; font-size: 1.5rem; }
.drawer-content { flex: 1; overflow: auto; padding: 20px; }
.cart-item { display: grid; gap: 12px; grid-template-columns: 82px 1fr auto; margin-bottom: 20px; }
.cart-item img { border-radius: 11px; height: 104px; object-fit: cover; width: 82px; }
.cart-item strong { display: block; font-size: .88rem; }
.cart-item p { color: var(--muted); font-size: .78rem; margin-top: 5px; }
.cart-item .remove { align-self: start; background: none; border: 0; color: var(--muted); font-size: .7rem; padding: 0; }
.quantity { align-items: center; border: 1px solid var(--line); border-radius: 999px; display: inline-flex; margin-top: 10px; }
.quantity button { background: white; border: 0; height: 30px; width: 32px; }
.quantity span { font-size: .78rem; min-width: 24px; text-align: center; }
.empty-bag { background: var(--soft); border-radius: 18px; color: var(--muted); padding: 62px 15px; text-align: center; }
.checkout { border-top: 1px solid var(--line); margin-top: 22px; padding-top: 22px; }
.checkout h3 { font-size: .9rem; margin-bottom: 14px; }
.checkout input, .checkout textarea { border: 1px solid var(--line); border-radius: 11px; display: block; margin-bottom: 10px; padding: 0 14px; width: 100%; }
.checkout input { height: 48px; }
.checkout textarea { height: 78px; padding-top: 13px; resize: none; }
.drawer-total { border-top: 1px solid var(--line); padding: 18px 20px 21px; }
.drawer-total > div { display: flex; justify-content: space-between; margin-bottom: 16px; }
.drawer-total span { color: var(--muted); }
.drawer-total p { color: var(--muted); font-size: .7rem; margin-top: 12px; text-align: center; }
.chat-widget { bottom: 24px; position: fixed; right: 24px; z-index: 30; }
.chat-toggle { background: var(--black); border: 0; border-radius: 999px; color: white; font-weight: bold; height: 62px; min-width: 62px; padding: 0 20px; box-shadow: 0 9px 25px rgba(0,0,0,.22); }
.chat-box { background: white; border: 1px solid var(--line); border-radius: 22px; box-shadow: 0 16px 44px rgba(0,0,0,.18); margin-bottom: 14px; overflow: hidden; width: min(370px, calc(100vw - 48px)); }
.chat-box header { align-items: center; background: var(--black); color: white; display: flex; gap: 12px; padding: 16px; }
.chat-box header img { height: 42px; object-fit: contain; width: 42px; }
.chat-box header strong { display: block; font-size: .86rem; }
.chat-box header span { color: #b7b7b7; display: block; font-size: .7rem; margin-top: 4px; }
.chat-box header button { background: transparent; border: 0; color: white; font-size: 1.35rem; margin-left: auto; }
.bubble { background: var(--soft); border-radius: 16px; font-size: .84rem; margin: 18px; padding: 13px; }
.chat-box form { padding: 0 18px 18px; }
.chat-box textarea { border: 1px solid var(--line); border-radius: 14px; height: 84px; margin-bottom: 12px; padding: 12px; resize: none; width: 100%; }
.not-found { padding: 110px 24px; text-align: center; }
.not-found h1 { margin-bottom: 26px; }
@media (max-width: 1000px) {
  .desktop-nav { display: none; }
  .menu-btn { display: flex; order: -1; }
  .brand span { display: none; }
  .hero-grid, .story-grid, .detail-grid { grid-template-columns: 1fr; }
  .hero-copy { padding: 44px 24px 55px; }
  .hero-photo { min-height: 520px; }
  .features { padding-left: 0; padding-right: 0; }
  .features div { padding: 0 24px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: 1fr; }
  .filters { position: static; }
  .shop-products { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 620px) {
  .nav-wrap { height: 70px; padding: 0 17px; }
  .brand img { height: 48px; width: 48px; }
  .section { padding: 50px 17px; }
  .hero-logo { height: 115px; width: 115px; margin-bottom: 28px; }
  .hero h1 { font-size: 2.7rem; }
  .hero-photo { min-height: 450px; }
  .hero-caption { bottom: 20px; left: 18px; }
  .hero-controls { bottom: auto; right: 17px; top: 17px; }
  .hero-controls button { height: 40px; width: 40px; }
  .hero-dots { bottom: 20px; left: auto; right: 17px; top: auto; transform: none; }
  .features { grid-template-columns: 1fr; gap: 0; }
  .features div { border-bottom: 1px solid var(--line); border-right: 0; padding: 17px; }
  .features div:last-child { border-bottom: 0; }
  .section-head { align-items: flex-start; flex-direction: column; margin-bottom: 29px; }
  .product-grid, .shop-products { gap: 27px 13px; grid-template-columns: repeat(2, 1fr); }
  .design-name { font-size: .86rem; }
  .story-grid { gap: 38px; padding: 52px 17px; }
  .story-image { height: 390px; }
  .alerts-section { padding: 54px 17px; }
  .alerts-section form { flex-direction: column; }
  .shop-banner { padding: 29px 17px; }
  .shop-heading { margin-bottom: 29px; }
  .results-head { align-items: start; flex-direction: column; gap: 14px; }
  .detail-grid { gap: 29px; }
  .product-actions { flex-direction: column; }
  .footer-grid { gap: 37px; grid-template-columns: 1fr; padding: 44px 17px; }
  .footer-brand { grid-column: auto; }
  .copyright { flex-direction: column; gap: 8px; padding: 22px 17px 90px; }
  .chat-widget { bottom: 16px; right: 16px; }
}
.loading-screen { min-height: 100vh; display:grid; place-items:center; align-content:center; gap:18px; background:#050505; color:#bcbcbc; }
.loading-screen img { width:112px; height:112px; object-fit:contain; }
.admin-link { font-size:.8rem; color:#bbb; }
.slim-banner { background:#080808; color:white; padding:36px 24px; }
.slim-banner > div { max-width:var(--max); margin:0 auto; }
.slim-banner p { color:#999; font-size:.7rem; font-weight:bold; letter-spacing:.32em; text-transform:uppercase; }
.slim-banner h1 { margin-top:12px; font-size:clamp(1.7rem,3vw,2.2rem); text-transform:uppercase; }
.slim-banner span { color:#c0c0c0; display:block; margin-top:8px; font-size:.92rem; }
.shop-section { max-width:var(--max); margin:0 auto; padding:56px 24px 78px; }
.shop-heading h2 { margin-top:10px; font-size:clamp(2.1rem,4vw,3rem); }
.shop-heading > p:last-child { color:var(--muted); margin-top:14px; max-width:620px; }
.shop-layout { display:grid; grid-template-columns:250px 1fr; gap:34px; margin-top:42px; }
.filters { align-self:start; border:1px solid var(--line); border-radius:20px; padding:20px; position:sticky; top:105px; }
.filters h3 { font-size:1rem; margin-bottom:18px; }
.filters input, .filters select { border:1px solid var(--line); border-radius:11px; height:48px; padding:0 13px; width:100%; background:white; margin-bottom:18px; }
.filters label { color:var(--muted); display:block; font-size:.7rem; font-weight:bold; letter-spacing:.08em; text-transform:uppercase; }
.filters label select { margin-top:9px; color:#222; font-size:.88rem; font-weight:normal; letter-spacing:normal; text-transform:none; }
.result-count { border-bottom:1px solid var(--line); color:var(--muted); padding-bottom:18px; margin-bottom:27px; font-size:.9rem; }
.shop-products { grid-template-columns:repeat(3, 1fr); }
.design-detail { max-width:var(--max); margin:0 auto; padding:56px 24px 76px; display:grid; grid-template-columns:1fr .9fr; gap:52px; }
.detail-primary { background:var(--soft); border-radius:24px; width:100%; aspect-ratio:4/5; object-fit:cover; }
.thumbs { display:grid; grid-template-columns:repeat(4, 1fr); gap:12px; margin-top:14px; }
.thumbs button { padding:0; border:2px solid transparent; border-radius:12px; overflow:hidden; background:none; }
.thumbs img { width:100%; aspect-ratio:1; object-fit:cover; }
.detail-copy h1 { font-size:clamp(2rem,4vw,2.9rem); }
.detail-price { font-size:1.4rem; font-weight:bold; margin-top:20px; }
.detail-description { color:var(--muted); margin:24px 0; }
.detail-copy label { display:block; color:var(--muted); font-size:.78rem; font-weight:bold; margin-bottom:18px; text-transform:uppercase; }
.detail-copy select, .detail-copy input { margin-top:9px; width:100%; height:51px; border:1px solid var(--line); border-radius:12px; padding:0 14px; color:#111; background:white; }
.restock-form { background:var(--soft); border-radius:16px; padding:18px; margin-top:22px; }
.restock-form p { font-size:.9rem; margin-bottom:10px; }
.restock-form .button { margin-top:12px; width:100%; }
.details-meta { border-top:1px solid var(--line); margin-top:28px; padding-top:18px; color:var(--muted); font-size:.9rem; }
.details-meta p { border-bottom:1px solid var(--line); padding:12px 0; }
.details-meta strong { color:#111; }
.signup { background:#f3f3f3; padding:68px 24px; text-align:center; }
.signup > div { max-width:680px; margin:0 auto; }
.signup h2 { font-size:clamp(2rem,3vw,2.55rem); }
.signup p { color:var(--muted); margin:15px 0 26px; }
.signup form { display:flex; gap:12px; }
.signup input { flex:1; min-height:50px; border:1px solid var(--line); border-radius:999px; padding:0 20px; }
.info-page h1 { font-size:clamp(2.2rem,4vw,3rem); }
.info-grid { margin-top:40px; display:grid; grid-template-columns:repeat(2,1fr); gap:28px; }
.info-grid article { border:1px solid var(--line); border-radius:20px; padding:28px; }
.info-grid article p { color:var(--muted); margin:14px 0; }
.info-grid li { color:var(--muted); margin:10px 0; }
.footer { background:#050505; color:#fff; padding:54px 24px 24px; }
.footer-grid { max-width:var(--max); margin:0 auto; display:grid; grid-template-columns:2fr 1fr 1fr; gap:42px; padding-bottom:40px; border-bottom:1px solid #272727; }
.footer-grid p, .footer-grid a { color:#999; display:block; font-size:.88rem; margin-top:11px; }
.footer-grid a:hover { color:white; }
.footer-grid h3 { font-size:.95rem; margin-bottom:18px; }
.footer-brand span { font-size:.8rem; color:white; }
.copyright { max-width:var(--max); margin:22px auto 0; color:#777; font-size:.76rem; }
.drawer-layer { position:fixed; inset:0; z-index:60; }
.drawer-bg { position:absolute; inset:0; background:rgba(0,0,0,.5); border:0; }
.cart-panel { position:absolute; right:0; top:0; height:100%; width:min(460px,100vw); background:white; padding:22px; overflow:auto; }
.cart-panel header { display:flex; justify-content:space-between; align-items:center; border-bottom:1px solid var(--line); padding-bottom:18px; }
.cart-panel header button { border:0; background:none; font-size:1.8rem; }
.cart-items { padding:22px 0; }
.cart-row { display:grid; grid-template-columns:82px 1fr; gap:13px; border-bottom:1px solid var(--line); padding:0 0 15px; margin-bottom:15px; }
.cart-row img { height:105px; width:82px; object-fit:cover; border-radius:11px; }
.cart-row strong { font-size:.9rem; }
.cart-row p { color:var(--muted); font-size:.8rem; }
.cart-row button { margin-top:7px; border:0; background:none; color:#7c2828; font-size:.75rem; padding:0; }
.checkout h3 { margin-bottom:15px; }
.checkout input, .checkout textarea { width:100%; border:1px solid var(--line); border-radius:11px; margin-bottom:10px; padding:13px; }
.checkout textarea { height:80px; resize:none; }
.subtotal { display:flex; justify-content:space-between; padding:14px 0; }
.admin-login { background:#f4f4f4; min-height:calc(100vh - 78px); display:grid; place-items:center; padding:24px; }
.admin-login-card { width:min(400px,100%); background:white; border-radius:28px; padding:34px; box-shadow:0 12px 40px rgba(0,0,0,.06); text-align:center; }
.admin-login-card img { width:82px; margin:0 auto 20px; }
.admin-login-card h1 { font-size:1.6rem; }
.admin-login-card p { color:var(--muted); margin:12px 0 24px; }
.admin-login-card input { width:100%; height:50px; border:1px solid var(--line); border-radius:12px; padding:0 14px; margin-bottom:12px; text-align:left; }
.admin-app { min-height:100vh; display:grid; grid-template-columns:240px 1fr; background:#f5f5f6; }
.admin-side { background:#13161f; color:white; padding:22px 14px; display:flex; flex-direction:column; gap:5px; }
.admin-logo { padding:0 12px 28px; border-bottom:1px solid rgba(255,255,255,.12); margin-bottom:10px; }
.admin-logo img { height:58px; width:58px; object-fit:contain; display:block; margin-bottom:12px; }
.admin-logo strong { display:block; font-size:.8rem; letter-spacing:.22em; }
.admin-logo span { display:block; color:#aaa; font-size:.74rem; margin-top:7px; }
.admin-side button { border:0; background:none; color:#cbcbd0; text-align:left; border-radius:10px; padding:13px 14px; font-size:.9rem; }
.admin-side button.active, .admin-side button:hover { color:white; background:rgba(255,255,255,.11); }
.admin-side .logout { margin-top:auto; border:1px solid rgba(255,255,255,.15); }
.admin-main { padding:34px; overflow:auto; }
.admin-head { margin-bottom:26px; }
.admin-head h1 { font-size:2rem; margin-bottom:8px; }
.admin-head > p:last-child, .admin-head div > p:last-child { color:var(--muted); }
.admin-form, .upload-form, .panel { background:white; border-radius:20px; padding:24px; box-shadow:0 1px 4px rgba(0,0,0,.04); margin-bottom:22px; }
.fields { display:grid; grid-template-columns:repeat(2,minmax(0,1fr)); gap:14px; margin-bottom:20px; }
.fields label { color:#666; font-size:.74rem; font-weight:bold; text-transform:uppercase; }
.fields .wide { grid-column:1/-1; }
.fields input, .fields textarea, .fields select { display:block; margin-top:8px; width:100%; border:1px solid var(--line); border-radius:10px; padding:11px 12px; background:white; color:#111; font-size:.9rem; text-transform:none; font-weight:normal; }
.fields textarea { min-height:86px; resize:vertical; }
.fields .toggle { display:flex; align-items:center; gap:10px; grid-column:1/-1; }
.fields .toggle input { width:auto; margin:0; }
.admin-form .button { margin-right:10px; }
.admin-list { background:white; border-radius:20px; overflow:hidden; }
.admin-list article { display:grid; grid-template-columns:64px 1fr auto auto; align-items:center; gap:14px; padding:14px 18px; border-bottom:1px solid var(--line); }
.admin-list article img { width:54px; height:64px; object-fit:cover; border-radius:9px; }
.admin-list article p { color:var(--muted); font-size:.8rem; }
.admin-list article button, .danger { background:white; border:1px solid var(--line); border-radius:9px; padding:9px 12px; font-size:.78rem; }
.danger { color:#a32525; }
.upload-form { display:flex; gap:12px; align-items:center; }
.upload-form input { flex:1; }
.media-grid { display:grid; grid-template-columns:repeat(4,minmax(0,1fr)); gap:17px; }
.media-grid figure { background:white; border-radius:16px; overflow:hidden; margin:0; }
.media-grid img { height:188px; width:100%; object-fit:cover; }
.media-grid figcaption { padding:13px; }
.media-grid strong { display:block; font-size:.82rem; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.media-grid span { display:block; color:var(--muted); font-size:.72rem; margin:7px 0; }
.orders-table article { background:white; border-radius:16px; padding:18px; margin-bottom:12px; display:grid; grid-template-columns:1fr auto 175px; gap:18px; align-items:center; }
.orders-table p { color:var(--muted); font-size:.8rem; }
.orders-table select { border:1px solid var(--line); border-radius:999px; height:44px; padding:0 12px; text-transform:capitalize; }
.content-blocks { display:grid; gap:16px; }
.content-blocks form { background:white; border-radius:16px; padding:19px; }
.content-blocks h3 { text-transform:capitalize; margin-bottom:12px; }
.content-blocks textarea { width:100%; height:180px; border:1px solid var(--line); border-radius:10px; padding:12px; margin-bottom:12px; font-family:monospace; }
.two-columns { display:grid; grid-template-columns:1fr 1fr; gap:18px; }
.panel h2 { margin-bottom:16px; }
.panel p { border-bottom:1px solid var(--line); padding:10px 0; font-size:.88rem; }
.panel small { color:var(--muted); margin-left:8px; }
.metrics { display:grid; grid-template-columns:repeat(4,1fr); gap:15px; margin-bottom:20px; }
.metrics article { background:white; border-radius:16px; padding:22px; }
.metrics strong { display:block; font-size:2rem; }
.metrics span { color:var(--muted); font-size:.84rem; }
.event-list span { color:var(--muted); float:right; }
@media (max-width: 960px) {
  .desktop-nav { display:none; } .menu-btn { display:flex; } .hero-grid, .story-grid, .design-detail, .shop-layout, .info-grid, .footer-grid, .admin-app { grid-template-columns:1fr; }
  .hero-copy { padding:44px 24px; } .product-grid, .shop-products { grid-template-columns:repeat(2,1fr); } .filters { position:static; } .footer-grid { gap:30px; }
  .admin-side { flex-direction:row; flex-wrap:wrap; min-height:auto; } .admin-logo { width:100%; } .admin-side .logout { margin-top:0; } .admin-main { padding:20px; } .media-grid, .metrics { grid-template-columns:repeat(2,1fr); }
}
@media (max-width: 600px) {
  .brand span { display:none; } .product-grid, .shop-products, .media-grid, .metrics, .two-columns, .fields { grid-template-columns:1fr; } .signup form, .upload-form { flex-direction:column; } .orders-table article { grid-template-columns:1fr; } .section, .shop-section { padding-left:18px; padding-right:18px; }
}
.fields small { display:block; color:var(--muted); font-size:.72rem; font-weight:normal; margin-top:7px; text-transform:none; }
.media-used { display:inline-block; border-radius:999px; background:#ecfdf3; color:#16703e; font-size:.7rem; padding:6px 10px; }


.subnav { display:flex; flex-wrap:wrap; gap:8px; margin:-8px 0 26px; padding-bottom:18px; border-bottom:1px solid var(--line); }
.subnav button { border:1px solid var(--line); background:white; border-radius:999px; padding:10px 16px; color:#666; font-size:.84rem; }
.subnav button.active, .subnav button:hover { background:#111; border-color:#111; color:white; }
.quick-actions { display:flex; flex-wrap:wrap; gap:10px; margin-top:24px; }
.compact-head { margin:24px 0 18px; }
.compact-head h2 { font-size:1.45rem; margin-bottom:6px; }
.compact-head p { color:var(--muted); }
.status-pill { display:inline-flex; border-radius:999px; background:#f1f1f1; color:#555; padding:7px 11px; font-size:.74rem; white-space:nowrap; }
.status-pill.live { background:#ecfdf3; color:#16703e; }
.status-pill.warning { background:#fff7e6; color:#9a6200; }
.status-pill.alert { background:#fef1f1; color:#a32525; }
.empty-row { padding:24px; color:var(--muted); font-size:.88rem; }
.inventory-list, .simple-list, .schedule-list { border-radius:20px; overflow:hidden; background:white; }
.inventory-row { display:grid; grid-template-columns:1fr 110px 130px; align-items:center; gap:14px; padding:14px 18px; border-bottom:1px solid var(--line); }
.inventory-row p, .simple-list article p, .schedule-row p { color:var(--muted); font-size:.8rem; }
.inventory-row input { height:44px; width:100%; border:1px solid var(--line); border-radius:10px; padding:0 12px; }
.inventory-row .button { padding:11px 14px; }
.simple-list article { display:flex; align-items:center; justify-content:space-between; gap:18px; padding:16px 18px; border-bottom:1px solid var(--line); }
.simple-list article select { border:1px solid var(--line); height:42px; border-radius:999px; padding:0 12px; background:white; }
.simple-list article p + p { margin-top:6px; }
.inline-actions { display:flex; align-items:center; flex-wrap:wrap; justify-content:flex-end; gap:8px; }
.small-button { padding:9px 14px; font-size:.78rem; }
.schedule-row { display:grid; grid-template-columns:minmax(160px,1fr) 185px 185px 90px 100px; align-items:end; gap:12px; padding:16px 18px; border-bottom:1px solid var(--line); }
.schedule-row label { color:#666; font-size:.72rem; font-weight:bold; text-transform:uppercase; }
.schedule-row input[type="datetime-local"] { margin-top:7px; width:100%; height:43px; border:1px solid var(--line); border-radius:10px; padding:0 9px; font-size:.8rem; font-weight:normal; text-transform:none; }
.schedule-row .schedule-toggle { display:flex; align-items:center; gap:6px; height:43px; font-weight:normal; text-transform:none; }
.category-form { max-width:640px; }
@media (max-width: 960px) {
  .schedule-row { grid-template-columns:1fr 1fr; }
  .schedule-row > div { grid-column:1/-1; }
  .inventory-row { grid-template-columns:1fr 94px 120px; }
}
@media (max-width: 600px) {
  .inventory-row, .schedule-row { grid-template-columns:1fr; }
  .simple-list article { flex-direction:column; align-items:flex-start; }
  .inline-actions { justify-content:flex-start; }
}


/* Admin workspace: interface aligned with the live management reference. */
.admin-window { background:#f7f7f8; display:flex; flex-direction:column; min-height:100vh; }
.admin-topbar { align-items:center; background:#080808; color:#fff; display:flex; height:62px; justify-content:space-between; padding:0 20px; }
.admin-title { align-items:center; display:flex; gap:12px; }
.admin-title img { height:34px; object-fit:contain; width:34px; }
.admin-title strong { display:block; font-size:11px; letter-spacing:.16em; }
.admin-title span { color:#adadb2; display:block; font-size:10px; margin-top:2px; }
.admin-top-actions { align-items:center; display:flex; gap:10px; }
.admin-top-actions button, .admin-top-actions a { align-items:center; background:#0d0d0d; border:1px solid #303034; border-radius:999px; color:#fff; display:inline-flex; font-size:11px; height:31px; padding:0 12px; }
.admin-top-actions a { border:0; font-size:22px; padding:0 6px; }
.admin-workspace { display:grid; flex:1; grid-template-columns:190px minmax(0, 1fr); min-height:0; }
.admin-workspace.has-secondary { grid-template-columns:190px 186px minmax(0, 1fr); }
.admin-primary { background:#fff; border-right:1px solid #e9e9ed; display:flex; flex-direction:column; gap:3px; padding:16px 10px; }
.admin-primary button { background:transparent; border:0; border-radius:8px; color:#51545f; font-size:13px; min-height:39px; padding:0 12px; text-align:left; }
.admin-primary button::before { color:#858895; content:"◦"; display:inline-block; font-weight:700; margin-right:10px; width:9px; }
.admin-primary button.active { background:#151925; color:#fff; font-weight:500; }
.admin-primary button.active::before { color:#fff; }
.admin-secondary { align-self:start; background:#151925; border-radius:10px; box-shadow:0 7px 22px rgba(0,0,0,.08); color:#fff; margin:16px 0 0 10px; min-height:180px; padding:12px 9px; }
.admin-secondary strong { border-bottom:1px solid rgba(255,255,255,.11); display:block; font-size:12px; margin-bottom:7px; padding:4px 9px 12px; }
.admin-secondary p { color:#9a9da8; font-size:11px; padding:8px 9px 5px; }
.admin-secondary button { align-items:center; background:none; border:0; border-radius:7px; color:#d3d4db; display:flex; font-size:12px; justify-content:space-between; min-height:35px; padding:0 10px; text-align:left; width:100%; }
.admin-secondary button.active { background:rgba(255,255,255,.14); color:#fff; }
.admin-secondary button em { background:#ffbb17; border-radius:4px; color:#111; font-size:9px; font-style:normal; font-weight:700; padding:2px 5px; }
.admin-stage { overflow:auto; padding:38px 38px 54px; }
.admin-stage .admin-head h1 { font-size:25px; font-weight:600; letter-spacing:-.03em; }
.admin-stage .admin-head > p { color:#70737e; font-size:13px; margin-top:5px; }
.toolbar-head { align-items:end; display:flex; justify-content:space-between; }
.toolbar-head > div:last-child { display:flex; gap:9px; }
.toolbar-head .button { font-size:12px; min-height:38px; padding:0 14px; }
.item-form { margin-bottom:22px; }
.form-title { align-items:start; display:flex; justify-content:space-between; margin-bottom:21px; }
.form-title h2 { font-size:19px; margin-bottom:5px; }
.form-title p { color:var(--muted); font-size:12px; }
.catalog-forms { display:grid; gap:16px; grid-template-columns:1fr 1fr; }
.catalog-forms h3 { font-size:15px; margin-bottom:17px; }
.category-groups { display:grid; gap:14px; grid-template-columns:repeat(2, minmax(0,1fr)); }
.category-group { background:white; border-radius:16px; padding:16px; }
.category-group header { align-items:center; border-bottom:1px solid var(--line); display:flex; justify-content:space-between; margin-bottom:10px; padding-bottom:11px; }
.category-group header span { color:var(--muted); display:block; font-size:11px; margin-top:4px; }
.category-group > div p { align-items:center; border-bottom:1px solid #f2f2f3; display:grid; gap:8px; grid-template-columns:1fr auto auto; margin:0; min-height:39px; }
.category-group > div small { color:var(--muted); }
.category-group > div em { color:var(--muted); display:block; font-size:12px; font-style:normal; padding:8px 0; }
.report-row { align-items:center; border-bottom:1px solid var(--line); display:flex; justify-content:space-between; margin:0; padding:13px 0; }
.panel h2 { font-size:16px; margin-bottom:14px; }
@media (max-width: 980px) {
  .admin-workspace, .admin-workspace.has-secondary { display:block; }
  .admin-primary { flex-direction:row; overflow:auto; padding:10px; }
  .admin-primary button { flex-shrink:0; }
  .admin-secondary { display:flex; gap:4px; margin:10px; min-height:0; overflow:auto; }
  .admin-secondary strong, .admin-secondary p { display:none; }
  .admin-secondary button { flex-shrink:0; width:auto; }
  .admin-stage { padding:20px; }
  .catalog-forms, .category-groups { grid-template-columns:1fr; }
  .toolbar-head { align-items:start; flex-direction:column; gap:15px; }
}


/* Storefront header tools and footer social controls. */
.icon-btn.icon-only { align-items:center; border:0; border-radius:999px; display:inline-flex; height:43px; justify-content:center; padding:0; transition:background .18s ease; width:43px; }
.icon-btn.icon-only:hover { background:rgba(255,255,255,.1); }
.icon-btn svg { height:20px; width:20px; }
.mobile-nav button { background:transparent; border:0; color:inherit; font-size:inherit; padding:0; text-align:left; }
.product-image-wrap { position:relative; }
.save-btn { align-items:center; background:#fff; border:0; border-radius:999px; box-shadow:0 2px 12px rgba(0,0,0,.1); color:#6b6b6b; display:flex; height:42px; justify-content:center; position:absolute; right:14px; top:14px; transition:.18s ease; width:42px; z-index:2; }
.save-btn:hover, .save-btn.saved { color:#080808; }
.save-btn svg { height:18px; width:18px; }
.social-links { display:flex; gap:9px; margin-top:22px; }
.social-link { align-items:center; border:1px solid #272727; border-radius:999px; color:#bbb; display:inline-flex; height:43px; justify-content:center; transition:.18s ease; width:43px; }
.social-link:hover { background:#fff; border-color:#fff; color:#050505; }
.social-link svg { height:20px; width:20px; }
.saved-panel header div p { color:var(--muted); font-size:.76rem; margin-top:2px; }
.saved-row { border-bottom:1px solid var(--line); display:grid; gap:13px; grid-template-columns:82px 1fr 22px; margin-bottom:15px; padding-bottom:15px; }
.saved-row img { border-radius:11px; height:105px; object-fit:cover; width:82px; }
.saved-row strong { display:block; font-size:.9rem; }
.saved-row p { color:var(--muted); font-size:.78rem; margin-top:4px; }
.saved-row a { display:inline-block; font-size:.75rem; font-weight:600; margin-top:9px; text-decoration:underline; text-underline-offset:3px; }
.remove-save { align-self:start; background:none; border:0; color:#777; font-size:1.2rem; line-height:1; padding:0; }
.empty-saved { background:var(--soft); border-radius:18px; padding:38px 18px; text-align:center; }
.empty-saved p { color:var(--muted); margin-bottom:18px; }
.storefront-form { max-width:920px; }
.social-settings { background:#f7f7f8; border-radius:18px; margin:25px 0; padding:22px; }
.social-settings h2 { font-size:1.05rem; margin-bottom:6px; }
.social-settings > p { color:var(--muted); font-size:.84rem; margin-bottom:18px; }
.social-fields { grid-template-columns:repeat(3, 1fr); }
.social-preview { align-items:center; background:#080808; border-radius:14px; color:#bdbdbd; display:flex; gap:10px; margin-top:18px; padding:15px 17px; }
.social-preview > span { font-size:.78rem; margin-right:4px; }
.social-preview small { color:#929292; font-size:.78rem; }
@media (max-width: 760px) { .social-fields { grid-template-columns:1fr; } }


/* Product manager inside Catalog */
.catalog-product-header { align-items:center; display:flex; justify-content:space-between; margin-bottom:18px; }
.catalog-product-count { align-items:center; display:flex; gap:9px; font-size:14px; }
.catalog-product-count span { color:#6f7890; }
.catalog-header-actions { display:flex; flex-wrap:wrap; gap:9px; }
.catalog-header-actions .button { font-size:12px; min-height:40px; padding:0 16px; }
.catalog-help-banner { align-items:center; background:#fff; border:1px solid #e6ebf3; border-radius:13px; display:flex; justify-content:space-between; margin-bottom:20px; padding:18px 24px; }
.catalog-help-banner strong { display:block; font-size:14px; margin-bottom:6px; }
.catalog-help-banner p { color:#61708a; font-size:13px; }
.catalog-help-banner .button { font-size:12px; min-height:39px; padding:0 17px; }
.catalog-product-table { background:white; border:1px solid #e6ebf3; border-radius:14px; overflow:hidden; }
.catalog-list-toolbar { align-items:center; border-bottom:1px solid #e6ebf3; display:flex; gap:10px; justify-content:flex-end; padding:14px 18px; }
.catalog-list-toolbar select { background:#fff; border:1px solid #dbe5f4; border-radius:999px; color:#25314b; font-size:12px; height:40px; padding:0 15px; }
.catalog-list-toolbar select:first-child { margin-right:auto; }
.catalog-search { align-items:center; border:1px solid #dbe5f4; border-radius:999px; color:#3a72e9; display:flex; font-size:18px; height:40px; padding:0 14px; width:min(250px,100%); }
.catalog-search input { border:0; color:#25314b; font-size:12px; height:100%; margin-left:8px; outline:none; width:100%; }
.catalog-product-columns, .catalog-product-row { align-items:center; column-gap:14px; display:grid; grid-template-columns:26px minmax(180px,1.75fr) .7fr .8fr .9fr 1.1fr .7fr 116px; padding:0 20px; }
.catalog-product-columns { background:#eef5ff; border-bottom:1px solid #cfe0fb; color:#26334f; font-size:12px; height:45px; }
.catalog-product-row { border-bottom:1px solid #edf0f5; color:#25314b; font-size:13px; min-height:78px; }
.catalog-product-row:last-child { border-bottom:0; }
.check-box { border:1px solid #2176ff; border-radius:4px; display:block; height:16px; width:16px; }
.product-title-cell { align-items:center; display:flex; gap:13px; min-width:0; }
.product-title-cell img { border-radius:4px; height:40px; object-fit:cover; width:34px; }
.product-title-cell strong { display:block; font-size:13px; font-weight:500; overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }
.product-title-cell small { color:#7e899f; display:block; font-size:11px; margin-top:4px; }
.stock-live { color:#27334c; }
.stock-out { color:#a32c2c; }
.product-row-actions { display:flex; gap:6px; justify-content:flex-end; }
.product-row-actions button { background:white; border:1px solid #dbe5f4; border-radius:999px; color:#2768e6; font-size:11px; padding:8px 11px; }
.product-row-actions .danger { color:#a32525; }
.catalog-product-table + .admin-form { margin-top:18px; }
@media (max-width: 1120px) {
  .catalog-product-columns, .catalog-product-row { grid-template-columns:25px minmax(190px,1fr) 80px 94px 105px; }
  .catalog-product-columns span:nth-child(3), .catalog-product-columns span:nth-child(7), .catalog-product-row > span:nth-child(3), .catalog-product-row > span:nth-child(7), .product-row-actions { display:none; }
}
@media (max-width: 720px) {
  .catalog-product-header, .catalog-help-banner { align-items:flex-start; flex-direction:column; gap:14px; }
  .catalog-list-toolbar { align-items:stretch; flex-direction:column; }
  .catalog-list-toolbar select:first-child { margin-right:0; }
  .catalog-search { width:100%; }
  .catalog-product-columns { display:none; }
  .catalog-product-row { display:flex; flex-wrap:wrap; gap:12px; padding:14px; }
  .catalog-product-row .check-box { display:none; }
  .product-title-cell { flex-basis:100%; }
}


/* Shop filter panel, matched to storefront reference */
.target-shop-layout { align-items: start; display: grid; gap: 30px; grid-template-columns: 214px minmax(0, 1fr); margin-top: 36px; }
.target-filters { background: #fff; border: 1px solid #e0e2e7; border-radius: 16px; padding: 17px 15px 19px; position: sticky; top: 102px; }
.target-filters .filter-heading { align-items: center; display: flex; justify-content: space-between; margin-bottom: 18px; }
.target-filters .filter-heading h3 { color: #111; font-size: .82rem; font-weight: 600; margin: 0; }
.target-filters .filter-heading button { background: none; border: 0; color: #777; cursor: pointer; font-size: .68rem; padding: 0; text-decoration: underline; }
.filter-search { align-items: center; border: 1px solid #e0e2e7; border-radius: 10px; color: #8d93a0; display: flex; gap: 8px; height: 40px; margin-bottom: 22px; padding: 0 10px; }
.filter-search svg { height: 14px; width: 14px; }
.target-filters .filter-search input { border: 0; border-radius: 0; color: #4a4a4a; font-size: .75rem; height: 100%; margin: 0; outline: none; padding: 0; width: 100%; }
.category-choices { border: 0; margin: 0 0 22px; padding: 0; }
.category-choices legend, .target-filters .field > span, .price-field span em { color: #737987; display: block; font-size: .64rem; font-style: normal; font-weight: 600; letter-spacing: .03em; margin-bottom: 10px; text-transform: uppercase; }
.category-choices .choice { background: transparent; border: 0; border-radius: 7px; color: #58606e; display: block; font-size: .76rem; font-weight: 400; height: 32px; min-height: 32px; padding: 0 10px; text-align: left; width: 100%; }
.category-choices .choice.selected { background: #080808; color: white; }
.target-filters .field { display: block; margin: 0 0 19px; }
.target-filters .field select { background: white; border: 1px solid #e0e2e7; border-radius: 10px; color: #575d67; font-size: .76rem; font-weight: 400; height: 41px; letter-spacing: normal; margin: 0; padding: 0 10px; text-transform: none; width: 100%; }
.target-filters .price-field { margin-bottom: 0; }
.target-filters .price-field > span { align-items: center; display: flex; justify-content: space-between; margin-bottom: 7px; }
.target-filters .price-field span em { margin-bottom: 0; }
.target-filters .price-field span strong { color: #737987; font-size: .64rem; font-weight: 500; }
.target-filters .price-field input[type="range"] { accent-color: #0a0a0a; cursor: pointer; margin: 3px 0 0; width: 100%; }
.target-results-head { align-items: center; border-bottom: 1px solid #eceef1; color: #707784; display: flex; font-size: .72rem; justify-content: space-between; margin-bottom: 21px; min-height: 47px; padding-bottom: 13px; }
.target-results-head p strong { color: #111; font-weight: 500; }
.target-results-head label { align-items: center; display: flex; gap: 9px; }
.target-results-head select { background: white; border: 1px solid #e0e2e7; border-radius: 999px; color: #4d5360; font-size: .72rem; height: 36px; margin: 0; min-width: 126px; padding: 0 14px; }
@media (max-width: 950px) {
  .target-shop-layout { grid-template-columns: 1fr; }
  .target-filters { position: static; }
}
@media (max-width: 560px) {
  .target-results-head { align-items: flex-start; flex-direction: column; gap: 14px; }
}

/* Ordered product image gallery */
.product-gallery-manager { background:#f8fafc; border:1px solid #e5e9f1; border-radius:16px; padding:18px; }
.gallery-manager-head { align-items:center; display:flex; gap:16px; justify-content:space-between; margin-bottom:15px; }
.gallery-manager-head h3 { color:#171b26; font-size:15px; font-weight:600; margin:0 0 4px; }
.gallery-manager-head p { color:#677187; font-size:12px; line-height:1.45; margin:0; }
.upload-gallery-button { cursor:pointer; flex-shrink:0; font-size:12px; min-height:42px; padding:0 17px; }
.media-picker { display:flex; gap:9px; margin-bottom:16px; }
.media-picker select { background:white; border:1px solid #dce3ed; border-radius:10px; color:#4b5568; flex:1; height:43px; padding:0 12px; }
.media-picker .button { flex-shrink:0; font-size:12px; min-height:43px; padding:0 15px; }
.ordered-gallery { display:grid; gap:10px; }
.gallery-empty { background:white; border:1px dashed #d5dce7; border-radius:12px; color:#677187; padding:24px; text-align:center; }
.gallery-empty strong { color:#253049; display:block; font-size:13px; margin-bottom:4px; }
.gallery-empty p { font-size:12px; margin:0; }
.gallery-order-card { align-items:center; background:white; border:1px solid #e4e9f1; border-radius:12px; display:grid; gap:12px; grid-template-columns:33px 58px 1fr auto; min-height:78px; padding:9px 11px; }
.gallery-order-number { align-items:center; background:#10131c; border-radius:999px; color:white; display:flex; font-size:12px; font-weight:600; height:27px; justify-content:center; width:27px; }
.gallery-order-card img { border-radius:8px; height:58px; object-fit:cover; width:58px; }
.gallery-order-copy strong { color:#172033; display:block; font-size:12px; font-weight:600; }
.gallery-order-copy span { color:#727c90; display:block; font-size:11px; margin-top:3px; }
.gallery-order-actions { align-items:center; display:flex; gap:6px; }
.gallery-order-actions button, .cover-badge { background:white; border:1px solid #dbe3ee; border-radius:8px; color:#345071; font-size:11px; line-height:1; padding:9px 10px; }
.gallery-order-actions button:disabled { cursor:not-allowed; opacity:.38; }
.gallery-order-actions button.danger { color:#a52b2b; }
.cover-badge { background:#effaf1; border-color:#cfead5; color:#167240; }
@media (max-width:700px) {
  .gallery-manager-head, .media-picker { align-items:stretch; flex-direction:column; }
  .gallery-order-card { grid-template-columns:31px 54px 1fr; }
  .gallery-order-actions { grid-column:1 / -1; justify-content:flex-end; }
}


/* Store product display, aligned to the requested clean retail-card reference. */
.shop-products { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 31px 18px; }
.storefront-card .product-image { border-radius: 17px; }
.storefront-card .product-image img { aspect-ratio: 3 / 4; }
.storefront-card .save-btn { box-shadow: none; border: 1px solid #edf0f2; height: 38px; right: 11px; top: 11px; width: 38px; }
.storefront-card .badge { font-size: .57rem; left: 11px; padding: 6px 9px; top: 11px; }
.storefront-card .category { font-size: .6rem; letter-spacing: .05em; margin-top: 13px; }
.storefront-card .design-name { font-size: .78rem; font-weight: 600; margin-top: 4px; }
.storefront-card .price { font-size: .76rem; gap: 7px; margin-top: 11px; }
.storefront-card .details-link { font-size: .68rem; margin-top: 11px; }
.card-size-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 10px; }
.card-size { align-items: center; border: 1px solid #e5e7eb; border-radius: 5px; color: #606776; display: inline-flex; font-size: .62rem; height: 22px; justify-content: center; min-width: 27px; padding: 0 7px; }
.card-size.selected { background: #090909; border-color: #090909; color: #fff; }
.card-size.unavailable { opacity: .42; text-decoration: line-through; }
.card-size.more { background: #f4f5f6; }
.card-stock { color: #737987; font-size: .62rem; margin-top: 8px; }
.import-csv-button { cursor: pointer; }
@media (max-width: 1240px) { .shop-products { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 900px) { .shop-products { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 540px) { .shop-products { grid-template-columns: 1fr; } }


/* Product-line grouping */
.product-line-label { color: #141821; font-size: .63rem; font-weight: 600; letter-spacing: .14em; margin: 6px 0 0; text-transform: uppercase; }
.product-line-list { display: grid; gap: 10px; margin-top: 18px; }
.product-line-list article { align-items: center; background: #fff; border: 1px solid #e6ebf3; border-radius: 13px; display: flex; gap: 15px; justify-content: space-between; padding: 16px; }
.product-line-list strong { color: #1b2334; display: block; font-size: 14px; }
.product-line-list p { color: #69758b; font-size: 12px; margin: 5px 0 0; }
.product-line-list .danger { background: #fff; border: 1px solid #e5e9f0; border-radius: 9px; color: #aa2525; font-size: 12px; padding: 9px 13px; }
.product-line-list .danger:disabled { cursor: not-allowed; opacity: .38; }

/* Compact admin/store notification */
.toast {
  align-items: center;
  animation: toast-enter .22s ease both;
  background: #111218;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  box-shadow: 0 16px 42px rgba(0,0,0,.28);
  color: #fff;
  display: flex;
  gap: 11px;
  left: auto;
  line-height: 1.45;
  max-width: min(390px, calc(100vw - 32px));
  padding: 13px 15px;
  position: fixed;
  right: 18px;
  top: 18px;
  transform: none;
  width: max-content;
  z-index: 1000;
}
.toast-dot {
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 0 0 5px rgba(255,255,255,.1);
  display: block;
  flex: 0 0 auto;
  height: 8px;
  width: 8px;
}
.toast-message {
  display: block;
  font-size: .82rem;
  font-weight: 500;
  max-width: 330px;
}
@keyframes toast-enter {
  from { opacity: 0; transform: translateY(-8px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
@media (max-width: 520px) {
  .toast {
    left: 12px;
    max-width: none;
    right: 12px;
    top: 12px;
    width: auto;
  }
}


/* Product card sizes: show every size without collapsing into a plus count. */
.storefront-card .card-size-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}


/* Product card add-to-bag action: visible beneath each card on every screen size. */
.storefront-card .card-add-button {
  display: flex;
  font-size: .73rem;
  margin-top: 14px;
  min-height: 42px;
  padding: 0 14px;
  width: 100%;
}
.storefront-card .card-add-button:disabled {
  background: #ededee;
  color: #858a94;
  cursor: not-allowed;
}

.brand-preview-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 6px;
}
.brand-preview-card {
  background: #fff;
  border: 1px solid #e6ebf3;
  border-radius: 14px;
  padding: 14px;
}
.brand-preview-card strong {
  color: #1b2334;
  display: block;
  font-size: 13px;
  margin-bottom: 10px;
}
.brand-preview-card img {
  background: #f4f6f9;
  border-radius: 12px;
  display: block;
  height: 96px;
  object-fit: contain;
  padding: 8px;
  width: 100%;
}
@media (max-width: 720px) {
  .brand-preview-grid { grid-template-columns: 1fr; }
}
