 
:root{
  --bg:#ffffff;
  --text:#111111;
  --muted:#3d3d3d;
  --border:rgba(17,17,17,.18);
  --shadow:0 14px 40px rgba(17,17,17,.08);
  --maxw:1100px;
  --radius:18px;
  --pad:24px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
}

img{max-width:100%; height:auto; display:block}

a{color:var(--text); text-decoration:none}
a:hover{text-decoration:underline; text-underline-offset:4px}

.skip-link{
  position:absolute; left:-999px; top:10px;
  background:var(--bg); border:1px solid var(--border);
  padding:10px 12px; border-radius:999px; z-index:9999;
}
.skip-link:focus{left:12px}

.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 20px;
}

.site-header{
  position:sticky;
  top:0;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(160%) blur(10px);
  border-bottom:1px solid var(--border);
  z-index:50;
}

.header-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:140px;
}
.brand-mark{
  width:150px;
  height:auto;
}

.nav-toggle{
  display:none;
  border:1px solid var(--border);
  background:transparent;
  color:var(--text);
  font:600 13px/1 Inter, system-ui, sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
  border-radius:999px;
  padding:10px 12px;
  cursor:pointer;
}

.primary-nav{
  display:flex;
  align-items:center;
  gap:18px;
}

.nav-link{
  font:600 13px/1 Inter, system-ui, sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
  padding:10px 8px;
  border-radius:999px;
  outline-offset:4px;
}


.nav-link--aux{
  margin-left:auto;
  border:1px solid var(--border);
  background:rgba(17,17,17,.03);
  padding:10px 12px;
}

.nav-link--aux:hover{
  background:rgba(17,17,17,.06);
  text-decoration:none;
}

.nav-link.active,
.nav-link[aria-current="page"]{
  border:1px solid var(--border);
}

main{padding:44px 0 70px}

.hero{
  padding-top:12px;
}
.hero-inner{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:start;
}

.hero-logo{
  width:min(520px, 100%);
  margin:8px 0 16px;
}

.kicker{
  font:600 12px/1 Inter, system-ui, sans-serif;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
  margin:0 0 10px;
}

h1,h2,h3{
  font-family:"Cormorant Garamond", Georgia, serif;
  letter-spacing:.02em;
  margin:0 0 12px;
}

h1{font-size:46px; line-height:1.05}
h2{font-size:34px; line-height:1.15; margin-top:42px}
h3{font-size:24px; line-height:1.2}


.h1-tagline{
  font-family:Inter, system-ui, sans-serif;
  font-size:0.33em;
  font-weight:600;
  letter-spacing:.16em;
  text-transform:uppercase;
  color:var(--muted);
  margin-left:10px;
  vertical-align:middle;
  white-space:nowrap;
}

@media (max-width: 560px){
  .h1-tagline{
    display:block;
    margin:10px 0 0;
    white-space:normal;
  }
}

.lead{
  font-size:18px;
  color:var(--muted);
  margin:0 0 18px;
  max-width:60ch;
}

.cta-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  border:1px solid var(--text);
  font:700 13px/1 Inter, system-ui, sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
  background:var(--text);
  color:var(--bg);
  text-decoration:none;
}

.btn:hover{filter:brightness(.96); text-decoration:none}
.btn:focus{outline:2px solid var(--text); outline-offset:3px}

.btn-ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--border);
}
.btn-ghost:hover{background:rgba(17,17,17,.04)}

.figure{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
  box-shadow:var(--shadow);
}

.figure img{width:100%; height:auto}


.page-products .figure--products-title{
  max-width:clamp(390px, 60vw, 700px);
  margin-left:0;
  margin-right:auto;
}

.page-products .products-title-gallery{
  display:flex;
  flex-direction:column;
  gap:14px;
  align-items:flex-start;
}


.page-products .figure--products-title img{
  height:clamp(300px, 38vh, 450px);
  object-fit:contain;
  object-position:center center;
  max-width:100%;
  width:100%;
  background:#f3f3f3;
  display:block;
}


.page-home .figure img{
  height:clamp(220px, 34vh, 360px);
  object-fit:cover;
  object-position:center;
  display:block;
}

figcaption{
  padding:12px 14px;
  font-size:13px;
  color:var(--muted);
  border-top:1px solid var(--border);
}

.section{
  margin-top:40px;
}

.grid-3{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.card{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:18px;
  background:#fff;
}

.card p{margin:0; color:var(--muted)}

.page-info .order-card p + p{margin-top:1rem}



.page-privacy .card{
  font-size:0.95rem;
  line-height:1.85;
}

.page-privacy .card p{
  margin:0 0 1.1rem;
}

.page-privacy .card p:last-child{margin-bottom:0}

.page-privacy .card ul,
.page-privacy .card ol{
  margin:0 0 1.2rem 1.2rem;
  padding:0;
}

.page-privacy .card li{margin:0 0 .55rem}
.page-privacy .card li:last-child{margin-bottom:0}

.page-privacy .card strong,
.page-privacy .card b{font-weight:400}


.badge{
  display:inline-flex;
  border:1px solid var(--border);
  border-radius:999px;
  padding:7px 10px;
  font:600 12px/1 Inter, system-ui, sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
  margin-bottom:12px;
}

.divider{
  border:0;
  border-top:1px solid var(--border);
  margin:34px 0;
}

.divider-compact{
  margin:22px 0;
}
.divider-compact + .section{
  margin-top:26px;
}



.product-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
  margin-top:14px;
}

.product{
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  background:#fff;
}

.product-thumb{
  height:180px;
  background:
    linear-gradient(135deg, rgba(17,17,17,.06), rgba(17,17,17,.02));
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  color:rgba(17,17,17,.55);
  font:600 12px/1 Inter, system-ui, sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.product-body{
  padding:16px;
}

.product-title{
  font-family:"Cormorant Garamond", Georgia, serif;
  font-size:22px;
  margin:0 0 6px;
}

.product-meta{
  margin:0;
  color:var(--muted);
  font-size:14px;
}

.page-products .product-meta-strong{
  font-weight:700;
}

.page-products .product-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.product--placeholder .product-thumb{
  background:rgba(17,17,17,.10);
}


.page-products .product--placeholder{
  background:rgba(17,17,17,.10);
  border-color:rgba(17,17,17,.10);
}

.page-products .product--placeholder .product-thumb,
.page-products .product--placeholder .product-body{
  background:rgba(17,17,17,.10);
}

.page-products .product--placeholder .product-title.placeholder,
.page-products .product--placeholder .product-meta.placeholder{
  background:transparent;
}
.product-title.placeholder,
.product-meta.placeholder{
  background:rgba(17,17,17,.10);
  border-radius:10px;
  color:transparent;
}

.product-title.placeholder{
  height:22px;
  width:68%;
}

.product-meta.placeholder{
  height:14px;
  width:86%;
  margin-top:10px;
}

.note{
  border-left:3px solid var(--text);
  padding:12px 14px;
  margin:18px 0 0;
  color:var(--muted);
  background:rgba(17,17,17,.03);
  border-radius:12px;
}

.site-footer{
  border-top:1px solid var(--border);
  padding:22px 0;
  color:var(--muted);
  font-size:13px;
}

.footer-inner{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 20px;
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links{display:flex; gap:14px; flex-wrap:wrap}
.footer-links a{color:var(--muted)}
.footer-links a:hover{color:var(--text)}



.hero .cta-row{
  margin-top:26px;
  margin-bottom:18px;
}
.hero .note{margin-top:0}


.social-links{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:12px;
}
.social-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  font:700 13px/1 Inter, system-ui, sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--text);
  text-decoration:none;
  background:transparent;
}
.social-link:hover{
  background:rgba(17,17,17,.04);
  text-decoration:none;
}


@media (max-width: 920px){
  h1{font-size:40px}
  .hero-inner{grid-template-columns:1fr}
}

@media (max-width: 720px){
  .brand-mark{width:128px}
  .nav-toggle{display:inline-flex}
  .primary-nav{
    position:absolute;
    right:20px;
    top:62px;
    width:min(320px, calc(100vw - 40px));
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
    padding:10px;
    border:1px solid var(--border);
    border-radius:16px;
    background:rgba(255,255,255,.98);
    box-shadow:var(--shadow);
  }
  .primary-nav.open{display:flex}
  .nav-link{padding:12px 12px}
  .nav-link--aux{margin-left:0}
  .grid-3{grid-template-columns:1fr}
  .product-grid{grid-template-columns:1fr}
}




.page-home .section{
  margin-top:clamp(44px, 6vw, 76px);
}

.page-home .section > h2{
  margin-top:0;
}

.page-home .divider{
  
  margin:clamp(44px, 6vw, 76px) 0 clamp(28px, 4vw, 54px);
}

.page-home .hero-logo{
  margin:10px 0 22px;
}

.page-home .cta-row{
  margin-top:26px;
  margin-bottom:22px;
}

.page-home .note{
  margin-top:22px;
}

.page-home .grid-3{
  gap:22px;
  margin-top:22px;
}

.page-home .figure{
  margin-top:26px;
}

@media (max-width: 560px){
  .page-home .section{
    margin-top:44px;
  }
  .page-home .section > h2{
    margin-top:0;
  }
  .page-home .divider{
    margin:44px 0 34px;
  }
  .page-home .cta-row{
    margin-top:22px;
    margin-bottom:18px;
  }
  .page-home .figure{
    margin-top:22px;
  }
}


.section-social .callout{
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:clamp(18px, 3vw, 26px);
  background:rgba(17,17,17,.015);
}

.section-social .callout h2{
  margin-top:0;
}

.section-social .callout .lead{
  margin-bottom:18px;
  font-weight:400;
  line-height:1.5;
}

.social-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:16px;
}

.social-btn{
  flex:1;
  min-width:240px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:14px 16px;
  border-radius:16px;
  border:1px solid var(--border);
  text-decoration:none;
  color:var(--text);
  background:#fff;
  transition:transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
}

.social-btn__icon{
  width:38px;
  height:38px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid var(--border);
  background:rgba(17,17,17,.03);
  flex:0 0 auto;
  position:relative;
}

.social-btn__icon svg{
  width:18px;
  height:18px;
  fill:currentColor;
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  transition:opacity .16s ease;
}

.social-btn__icon svg.icon-color{opacity:0}
.social-btn__icon svg.icon-mono{opacity:1}

.social-btn__meta{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.social-btn__title{
  font:700 11px/1 Inter, system-ui, sans-serif;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--muted);
}

.social-btn__name{
  font:600 16px/1.1 Inter, system-ui, sans-serif;
  letter-spacing:.01em;
}

.social-btn__arrow{
  margin-left:auto;
  font:700 16px/1 Inter, system-ui, sans-serif;
  opacity:.55;
}

.social-btn:hover{
  transform:translateY(-1px);
  box-shadow:0 10px 22px rgba(17,17,17,.08);
  border-color:rgba(24,119,242,.35);
  background:rgba(24,119,242,.08);
  text-decoration:none;
}

.social-btn:hover .social-btn__icon svg.icon-color{opacity:1}
.social-btn:hover .social-btn__icon svg.icon-mono{opacity:0}

.social-btn:focus-visible{
  outline:2px solid rgba(17,17,17,.55);
  outline-offset:3px;
}

@media (max-width: 560px){
  .social-btn{
    min-width:100%;
  }
}

.note-title{
  margin:0 0 10px;
  color:var(--text);
  font:600 12px/1 Inter, system-ui, sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
}

.label{
  display:inline-block;
  min-width:150px;
  margin-right:10px;
  font:600 12px/1 Inter, system-ui, sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}

@media (max-width: 560px){
  .label{
    display:block;
    min-width:0;
    margin:0 0 6px;
  }
}


.page-info .signature{
  margin:36px 0 24px;
  text-align:right;
}

.page-info .signature-label{
  display:block;
  font:600 12px/1 Inter, system-ui, sans-serif;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}

.page-info .signature-names{
  display:block;
  margin-top:6px;
  font-family:"Dancing Script", "Segoe Script", "Brush Script MT", "Apple Chancery", cursive;
  font-weight:600;
  font-size:17px;
  line-height:1;
  letter-spacing:.01em;
  color:var(--text);
}


.page-info .signature + .note{
  margin-top:32px;
}


.page-info .note .note-title{
  margin-bottom:14px;
}

.page-info .note .list{
  margin:0;
  padding-left:18px;
}

.page-info .note .list li{
  margin:0 0 16px;
  line-height:1.55;
}

.page-info .note .list li:last-child{margin-bottom:0}

@media (max-width: 560px){
  .page-info .signature-names{font-size:15px}
}


.page-privacy .section{
  margin-top:48px;
}

.page-privacy .section > h2{
  display:flex;
  align-items:center;
  gap:10px;
}

.page-privacy .section > h2::before{
  content:"";
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(17,17,17,.25);
}

.page-privacy .card{
  background:linear-gradient(180deg, rgba(17,17,17,.02), #fff);
  border-color:rgba(17,17,17,.16);
}

.page-privacy .card ol li{
  margin:0 0 12px;
}

.page-privacy .card ol li:last-child{
  margin-bottom:0;
}

.page-privacy .pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(17,17,17,.03);
  color:var(--muted);
  font-size:0.92rem;
  line-height:1.2;
}

.page-privacy .pill-label{
  color:var(--text);
  opacity:.75;
}

.page-privacy .privacy-snapshot{
  margin-top:22px;
}

.page-privacy .privacy-snapshot ul{
  list-style:none;
  margin:0;
  padding:0;
}

.page-privacy .privacy-snapshot li{
  position:relative;
  padding-left:22px;
  margin:0 0 12px;
}

.page-privacy .privacy-snapshot li:last-child{margin-bottom:0}

.page-privacy .privacy-snapshot li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:var(--text);
  opacity:.45;
}



.page-products .order-card .order-note{margin-top:22px;}
.page-products .order-card .order-email{margin-top:10px;}
.page-products .order-card .order-email a{
  display:inline-block;
  padding:10px 12px;
  border:1px solid rgba(0,0,0,.18);
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  letter-spacing:.01em;
  transition: background .18s ease, border-color .18s ease, box-shadow .28s ease, transform .12s ease;
}
.page-products .order-card .order-email a:hover,
.page-products .order-card .order-email a:focus{
  background:rgba(0,0,0,.05);
  text-decoration:none;
}
.page-products .order-card .order-email a:active{
  transform: translateY(1px);
}

.page-products .care-card p + p{margin-top:16px;}
.page-products .care-card .care-list{
  margin:10px 0 0 1.2rem;
  padding:0;
}
.page-products .care-card .care-list li{
  margin:0 0 .5rem;
  color:var(--muted);
}
.page-products .care-card .care-list li:last-child{margin-bottom:0;}
.page-products .care-card .care-list + p{margin-top:14px;}


@keyframes tapPulse{
  0%   { box-shadow: 0 0 0 0 rgba(30, 115, 255, .25); border-color: rgba(30, 115, 255, .35); background: rgba(30, 115, 255, .10); }
  100% { box-shadow: 0 0 0 14px rgba(30, 115, 255, 0); border-color: rgba(0,0,0,.18); background: rgba(30, 115, 255, .06); }
}
.page-products .order-card .order-email a.tap{
  animation: tapPulse .55s ease-out;
}

.page-info-en .contact-email{margin-top:22px;}
.page-info-en .contact-email a{
  display:inline-block;
  padding:10px 12px;
  border:1px solid rgba(0,0,0,.18);
  border-radius:999px;
  text-decoration:none;
  font-weight:600;
  letter-spacing:.01em;
  transition: background .18s ease, border-color .18s ease, box-shadow .28s ease, transform .12s ease;
}
.page-info-en .contact-email a:hover,
.page-info-en .contact-email a:focus{
  background:rgba(0,0,0,.05);
  text-decoration:none;
}
.page-info-en .contact-email a:active{
  transform: translateY(1px);
}
.page-info-en .contact-email a.tap{
  animation: tapPulse .55s ease-out;
}


.hero .lead{
  font-weight:600;
  line-height:1.35;
}
.hero-tags{
  margin:-8px 0 22px;
  font-size:13px;
  color:var(--muted);
  letter-spacing:.04em;
}
@media (max-width: 720px){
  .hero-tags{
    margin:-6px 0 18px;
    font-size:12px;
  }
}


.page-home .section{ margin-top:clamp(52px, 6vw, 88px); }
.page-home .divider{ margin:clamp(52px, 6vw, 88px) 0 clamp(34px, 4vw, 62px); }
.page-home .divider-compact{ margin:clamp(22px, 3vw, 34px) 0; }
.page-home .divider-compact + .section{ margin-top:clamp(28px, 4vw, 46px); }

@media (max-width: 720px){
  .page-home .section{ margin-top:44px; }
  .page-home .divider{ margin:44px 0 30px; }
  .page-home .divider-compact{ margin:16px 0; }
  .page-home .divider-compact + .section{ margin-top:22px; }

  .page-home .divider{ margin:30px 0 22px; }
  .page-home .divider-compact{ margin:12px 0; }
  .page-home .divider-compact + .section{ margin-top:16px; }
}



.page-products .product-image-link{
  position:absolute;
  inset:0;
  display:block;
  width:100%;
  height:100%;
  color:inherit;
  text-decoration:none;
  z-index:1;
}

.page-products .product-thumb .product-image-link{
  position:absolute;
  inset:0;
}

.page-products .product-image-link:focus-visible{
  outline:2px solid rgba(17,17,17,.55);
  outline-offset:2px;
}

.page-products .image-action-bar{
  position:absolute;
  right:10px;
  bottom:10px;
  display:flex;
  gap:8px;
  z-index:2;
}

.page-products .image-action-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(17,17,17,.16);
  background:rgba(255,255,255,.88);
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  line-height:1;
  transform:translateZ(0);
}

@keyframes yd-border-pulse{
  0%,100%{
    box-shadow:0 0 0 0 rgba(56,123,255,0);
    border-color:rgba(17,17,17,.16);
  }
  50%{
    box-shadow:0 0 0 3px rgba(56,123,255,.16);
    border-color:rgba(56,123,255,.35);
  }
}

.page-products .image-action-btn{
  transition:background .15s ease, border-color .2s ease, box-shadow .2s ease, transform .15s ease;
}

.page-products .image-action-btn:hover{
  opacity:1;
  animation:yd-border-pulse 1.2s ease-in-out infinite;
}

.page-products .image-lang-toggle:hover{
  background:rgba(255,255,255,.94);
  color:#111;
  opacity:1;
  text-decoration:none;
}


.page-products .image-link-hint{
  animation:yd-hint-pulse 2.6s ease-in-out infinite;
  pointer-events:none;
}

.page-products .image-open-btn{
  pointer-events:auto;
}


.page-products .product-thumb:hover .image-link-hint{
  animation-play-state:paused;
  transform:translateY(-1px);
}

.page-products .image-lang-toggle{
  cursor:pointer;
  pointer-events:auto;
}

.page-products .image-lang-toggle:hover{
  background:rgba(17,17,17,.04);
}

.page-products .image-lang-toggle:active{
  transform:translateY(0);
}

.page-products .image-lang-toggle:focus-visible{
  outline:2px solid rgba(17,17,17,.55);
  outline-offset:2px;
}

.page-products .image-lang-toggle.is-loading{
  opacity:.65;
  cursor:progress;
}

.page-products .image-lang-toggle.is-unavailable{
  opacity:.55;
}

@keyframes yd-hint-pulse{
  0%, 100%{ opacity:.78; }
  50%{ opacity:1; }
}

.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.62);
  display:none;
  align-items:center;
  justify-content:center;
  padding:16px;
  z-index:9999;
}

.lightbox.is-open{
  display:flex;
}

body.lightbox-open{
  overflow:hidden;
}

.lightbox-dialog{
  width:min(980px, 96vw);
  max-height:92vh;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 40px rgba(0,0,0,.24);
  border:1px solid rgba(17,17,17,.10);
  display:flex;
  flex-direction:column;
  min-height:0;
}

.lightbox-bar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 14px;
  border-bottom:1px solid rgba(17,17,17,.10);
  background:rgba(255,255,255,.96);
}

.lightbox-title{
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:rgba(17,17,17,.78);
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
  padding-right:12px;
}

.lightbox-actions{
  display:flex;
  gap:8px;
}

.lightbox-btn{
  border:1px solid rgba(17,17,17,.14);
  background:#fff;
  border-radius:12px;
  padding:8px 10px;
  font-size:14px;
  line-height:1;
  cursor:pointer;
  transition:transform .12s ease, background .12s ease;
}

.lightbox-btn:hover{
  background:rgba(17,17,17,.04);
  transform:translateY(-1px);
}

.lightbox-close{
  font-size:18px;
  padding:6px 10px;
}

.lightbox-stage{
  position:relative;
  background:rgba(17,17,17,.03);
  flex:1 1 auto;
  min-height:0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  touch-action:pan-x pan-y;
  cursor:grab;
}

.lightbox.is-dragging .lightbox-stage{
  cursor:grabbing;
}

.lightbox-image{
  max-width:92%;
  max-height:78vh;
  transform:translate(0px,0px) scale(1);
  transition:none;
  will-change:transform;
  user-select:none;
  -webkit-user-drag:none;
  transform-origin:center center;
}

.lightbox-hint{
  position:absolute;
  right:14px;
  left:auto;
  bottom:12px;
  font-size:12px;
  color:rgba(17,17,17,.66);
  background:rgba(255,255,255,.88);
  border:1px solid rgba(17,17,17,.12);
  padding:8px 10px;
  border-radius:14px;
}




.product-watermark{
  position:absolute;
  left:10px;
  bottom:10px;
  z-index:3;
  display:none;
  padding:6px 8px;
  border-radius:12px;
  background:rgba(255,255,255,.78);
  border:1px solid rgba(17,17,17,.14);
  color:rgba(17,17,17,.70);
  font:600 11px/1.1 Inter, system-ui, sans-serif;
  letter-spacing:.08em;
  text-transform:uppercase;
  pointer-events:none;
  max-width:calc(100% - 20px);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  backdrop-filter: blur(2px);
}


.lightbox-watermark{
  position:absolute;
  left:14px;
  bottom:12px;
  z-index:4;
  display:none;
  padding:8px 10px;
  border-radius:14px;
  background:rgba(255,255,255,.72);
  border:1px solid rgba(17,17,17,.12);
  color:rgba(17,17,17,.68);
  font-size:12px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  pointer-events:none;
  max-width:60%;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  backdrop-filter: blur(2px);
}

.lightbox-thumbs{
  display:flex;
  gap:10px;
  padding:10px 14px 14px;
  border-top:1px solid rgba(17,17,17,.10);
  overflow:auto;
  background:#fff;
  flex:0 0 auto;
  position:relative;
  z-index:2;
}

.lightbox-thumb{
  border:1px solid rgba(17,17,17,.14);
  background:#fff;
  border-radius:14px;
  padding:4px;
  cursor:pointer;
  transition:transform .12s ease, border-color .12s ease;
  flex:0 0 auto;
}

.lightbox-thumb:hover{
  transform:translateY(-1px);
}

.lightbox-thumb.is-active{
  border-color:rgba(17,17,17,.38);
}

.lightbox-thumb img{
  width:74px;
  height:54px;
  object-fit:cover;
  display:block;
  border-radius:10px;
}
