/* ===== Design Tokens ===== */
:root{
  --gold:#bfa36a;
  --pearl:#f7f4ec;
  --ink:#111111;
  --ash:#777777;
  --veil:#eeeeee;
}

/* ===== Global ===== */
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  background:#fff;color:var(--ink);line-height:1.6;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-feature-settings:"liga" 1,"kern" 1;
}
.container{width:90%;max-width:1300px;margin:0 auto}
img{max-width:100%;display:block}

/* ===== Typography ===== */
h1,h2,h3{
  font-family:"Cormorant Garamond",serif;
  font-weight:600;
  letter-spacing:.3px;
}
.smallcaps{
  font-variant:all-small-caps;
  letter-spacing:.12em;
}

/* ===== Header ===== */
.topbar{
  padding:18px 0;
  border-bottom:1px solid var(--veil);
  background:#fff;
}
.topbar .container{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px
}
.brand{
  text-decoration:none;
  color:var(--ink);
  display:flex;
  flex-direction:column;
  line-height:1.1
}
.brand .brand-main{
  font-family:"Italiana",serif;
  font-size:28px;
  letter-spacing:1px
}
.brand-logo{
  display:block;
  height:74px;
  width:auto;
  object-fit:contain;
}
.brand .brand-sub{
  font-size:12px;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:#6b6b6b;
}

/* Nav */
.nav-list{
  list-style:none;
  display:flex;
  gap:28px
}
.nav-link{
  text-decoration:none;
  color:var(--ink);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  position:relative;
  padding-bottom:6px;
}
.nav-link[aria-current="page"],
.nav-link:hover{
  color:var(--gold)
}
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:1px;
  width:0%;
  height:1px;
  background:var(--gold);
  transition:width .25s ease;
}
.nav-link:hover::after,
.nav-link[aria-current="page"]::after{
  width:100%;
}

.actions{
  display:flex;
  align-items:center;
  gap:14px;
  position:relative;
}
.icon-btn{
  border:none;
  background:transparent;
  cursor:pointer;
  position:relative;
  padding:3px
}
.icon-btn svg{
  stroke:var(--ink);
  width:20px;
  height:20px;
  transition:.3s
}
.icon-btn:hover svg{
  stroke:var(--gold)
}
.icon-btn.account-auth{
  position:relative;
}
.cart-badge{
  background:var(--ink);
  color:#fff;
  font-size:11px;
  width:16px;
  height:16px;
  border-radius:50%;
  position:absolute;
  top:-5px;
  right:-6px;
  display:flex;
  align-items:center;
  justify-content:center
}
.account-hover-menu{
  position:absolute;
  right:0;
  top:100%;
  min-width:170px;
  background:#fff;
  border:1px solid var(--veil);
  box-shadow:0 10px 24px rgba(0,0,0,.08);
  padding:10px;
  opacity:0;
  pointer-events:none;
  transform:translateY(-4px);
  transition:opacity .2s ease,transform .2s ease;
  z-index:30;
}
.icon-btn.account-auth:hover + .account-hover-menu,
.account-hover-menu:hover{
  opacity:1;
  pointer-events:auto;
  transform:translateY(0);
}
.account-hover-name{
  font-size:12px;
  margin-bottom:8px;
  color:var(--ink);
  word-break:break-word;
}
.account-signout-btn{
  width:100%;
  border:1px solid var(--ink);
  background:#fff;
  color:var(--ink);
  padding:8px 10px;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  cursor:pointer;
}
.account-signout-btn:hover{
  background:var(--ink);
  color:#fff;
}
.welcome-banner{
  width:100%;
  text-align:center;
  background:#eef7ef;
  color:#2f6b3c;
  border-top:1px solid #d9ebdc;
  border-bottom:1px solid #d9ebdc;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:10px 12px;
  opacity:1;
  transition:opacity .35s ease, transform .35s ease, max-height .35s ease, padding .35s ease;
  max-height:48px;
}
.welcome-banner.hide{
  opacity:0;
  transform:translateY(-6px);
  max-height:0;
  padding-top:0;
  padding-bottom:0;
  overflow:hidden;
}

/* ===== Section ===== */
.section{padding:56px 0}
.section-head{text-align:center}
.section-title{
  font-size:30px;
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:2px
}
.section-tab-title{
  font-family:"DM Sans",system-ui,sans-serif;
  font-size:clamp(32px,4.2vw,52px);
  letter-spacing:.03em;
  text-transform:uppercase;
  font-weight:400;
  color:var(--ink);
  line-height:1.08;
}
.section-sub{
  font-size:15px;
  color:#777;
  font-style:italic
}

/* ===== Product Grid ===== */
.product-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  margin-top:36px
}

/* Updated for actions layout */
.product-card{
  text-align:center;
  display:flex;
  flex-direction:column;
  cursor:default
}
.product-media{
  display:block;
  position:relative;
  overflow:hidden;
  cursor:pointer
}
.product-media img{
  width:100%;
  transition:opacity .35s ease
}
.product-media .img-back{
  position:absolute;
  inset:0;
  opacity:0
}
.product-card:hover .img-back{opacity:1}
.product-card:hover .img-front{opacity:0}

body.quick-view-open{
  overflow:hidden;
}

.quick-view-modal{
  position:fixed;
  inset:0;
  display:none;
  z-index:120;
}

.quick-view-modal.is-open{
  display:block;
}

.quick-view-backdrop{
  position:absolute;
  inset:0;
  background:rgba(20,22,24,.24);
  backdrop-filter:blur(10px);
}

.quick-view-card{
  position:relative;
  width:min(1028px, calc(100vw - 32px));
  max-height:calc(100vh - 32px);
  margin:16px auto;
  background:#fff;
  overflow:auto;
  box-shadow:0 30px 90px rgba(21,24,27,.16);
}

.quick-view-head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:26px 30px;
  border-bottom:1px solid #efede8;
}

.quick-view-kicker{
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#4a4d51;
}

.quick-view-close{
  border:none;
  background:none;
  color:#76716a;
  cursor:pointer;
  padding:0;
}

.quick-view-gallery{
  display:grid;
  grid-template-columns:minmax(0,1.06fr) minmax(320px,.94fr);
  border-bottom:1px solid #efede8;
  background:#fcfbf8;
}

.quick-view-gallery.is-single{
  grid-template-columns:1fr;
}

.quick-view-image{
  margin:0;
  min-height:560px;
  background:#fbfaf7;
  display:grid;
  place-items:center;
  overflow:hidden;
}

.quick-view-image + .quick-view-image{
  border-left:1px solid #efede8;
}

.quick-view-image img{
  width:100%;
  height:100%;
  display:block;
}

.quick-view-image-primary img{
  object-fit:contain;
  padding:38px 34px;
}

.quick-view-image-secondary{
  background:#f7f5f0;
}

.quick-view-image-secondary img{
  object-fit:contain;
  padding:22px;
}

.quick-view-gallery.is-single .quick-view-image{
  min-height:620px;
}

.quick-view-gallery.is-single .quick-view-image img{
  padding:44px 36px;
}

.quick-view-body{
  display:grid;
  grid-template-columns:minmax(0,1fr);
  gap:28px;
  padding:34px 56px 44px;
}

.quick-view-copy{
  max-width:760px;
}

.quick-view-title{
  font-size:16px;
  line-height:1.35;
  color:#26292d;
}

.quick-view-subtitle{
  margin-top:8px;
  color:#8a867f;
  font-size:13px;
  letter-spacing:.01em;
}

.quick-view-description{
  margin-top:20px;
  font-size:13px;
  line-height:1.8;
  color:#76716a;
}

.quick-view-list{
  margin:18px 0 0;
  padding-left:18px;
  color:#8a867f;
  font-size:13px;
  line-height:1.9;
}

.quick-view-actions{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:18px;
}

.quick-view-primary{
  width:min(540px,100%);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border:1px solid var(--ink);
  background:var(--ink);
  color:#fff;
  padding:18px 22px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  cursor:pointer;
  transition:transform .2s ease, background .25s ease, border-color .25s ease, color .25s ease;
}

.quick-view-primary:hover{
  background:#444a50;
  border-color:#444a50;
  transform:translateY(-1px);
}

.quick-view-primary.is-added{
  background:var(--gold);
  border-color:var(--gold);
  color:var(--ink);
}

.quick-view-link{
  color:#5c5f64;
  text-decoration:underline;
  text-underline-offset:5px;
  font-size:13px;
}

.product-info{
  margin-top:10px;
}
.product-title{
  font-family:"DM Sans",system-ui,sans-serif;
  font-size:13px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  margin-top:0
}
.product-price{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#6b6b6b;
  margin-top:6px
}

/* ===== Product Actions + Buttons ===== */
.product-actions{
  display:flex;
  gap:10px;
  justify-content:center;
  margin-top:14px;
}

.btn{
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  padding:10px 14px;
  border-radius:4px;
  cursor:pointer;
  transition:transform .2s ease, background .25s ease, color .25s ease, border-color .25s ease;
  text-decoration:none;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  line-height:1;
}

.btn.outline{
  background:transparent;
  border:1px solid var(--ink);
  color:var(--ink);
}
.btn.outline:hover{
  background:var(--ink);
  color:#fff;
}

.btn.gold{
  background:var(--gold);
  border:1px solid var(--gold);
  color:var(--ink);
}
.btn.gold:hover{
  transform:translateY(-1px);
  background:#a88c56;
  border-color:#a88c56;
}

#homeShopPreview .product-actions{
  gap:8px;
  margin-top:18px;
}

#homeShopPreview .product-actions .btn.outline{
  min-width:168px;
  padding:11px 18px;
  border-radius:4px;
  border:1px solid var(--ink);
  background:transparent;
  color:var(--ink);
  box-shadow:none;
  letter-spacing:.14em;
  font-size:10px;
}

#homeShopPreview .product-actions .btn.outline:hover{
  transform:translateY(-1px);
  background:var(--gold);
  border-color:var(--gold);
  color:var(--ink);
}

#homeShopPreview .product-actions .btn.gold{
  min-width:148px;
  padding:11px 18px;
  border-radius:999px;
  border:1px solid #d8c49a;
  background:linear-gradient(180deg,#f6ecd7 0%, #ead5aa 100%);
  color:#111;
  box-shadow:0 12px 26px rgba(191,163,106,.18);
  letter-spacing:.16em;
  font-size:10px;
}

#homeShopPreview .product-actions .btn.gold:hover{
  transform:translateY(-1px);
  background:linear-gradient(180deg,#111 0%, #050505 100%);
  border-color:#111;
  color:#fff;
}

#homeShopPreview .product-title{
  font-size:13px;
}

#homeShopPreview .product-media{
  transform:scale(1.03);
  transform-origin:center;
}

#homeShopPreview .section-tab-title{
  font-family:"DM Sans",system-ui,sans-serif;
  font-size:clamp(32px,4.2vw,52px);
  font-weight:400;
  letter-spacing:.03em;
  text-transform:uppercase;
  line-height:1.08;
}

/* Mobile stacking for buttons */
@media (max-width: 520px){
  .quick-view-card{
    width:calc(100vw - 20px);
    max-height:calc(100vh - 20px);
    margin:10px auto;
  }

  .quick-view-head{
    padding:20px 18px;
  }

  .quick-view-gallery{
    grid-template-columns:1fr;
  }

  .quick-view-image{
    min-height:260px;
  }

  .quick-view-image + .quick-view-image{
    border-left:none;
    border-top:1px solid #efede8;
  }

  .quick-view-image-primary img,
  .quick-view-image-secondary img,
  .quick-view-gallery.is-single .quick-view-image img{
    padding:18px;
  }

  .quick-view-body{
    padding:24px 18px 28px;
  }

  .product-actions{
    flex-direction:column;
    align-items:center;
  }
  .product-actions .btn{
    width:100%;
    max-width:260px;
  }
}

/* ===== Footer ===== */
.footer{
  background:#fff;
  padding:58px 0 42px;
  text-align:center;
  font-family:"Cormorant Garamond",serif;
  border-top:1px solid var(--veil);
}
.footer-layout{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px
}
.mark{
  font-family:"Italiana",serif;
  font-size:40px;
  letter-spacing:2px;
  font-weight:400;
  color:var(--ink)
}
.footer-motto{
  font-size:12px;
  letter-spacing:.32em;
  text-transform:uppercase;
  color:#6d6d6d;
  margin-top:-4px
}
.gold-rule{
  width:75px;
  height:1px;
  background:var(--gold);
  border:none;
  margin:10px auto
}
.footer-text{
  font-size:14px;
  color:#7a7977;
  opacity:.9;
  max-width:520px
}

.footer-social{
  display:flex;
  gap:18px;
  margin-top:8px
}
.social-icon svg{
  width:22px;
  height:22px;
  stroke:var(--ink);
  transition:.3s
}
.social-icon:hover svg{
  stroke:var(--gold)
}

.copyright{
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#999;
  margin-top:14px
}
.rights{opacity:.85}

/* ===== Premium Footer Grid ===== */
.footer-luxe{
  width:100%;
}

.footer-columns{
  display:grid;
  grid-template-columns:1.25fr repeat(3,minmax(0,1fr));
  gap:18px;
  width:100%;
  text-align:left;
}

.footer-news-title{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(14px,1.2vw,20px);
  font-weight:500;
  line-height:1.2;
  margin:0 0 10px;
  color:var(--ink);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.footer-email-form{
  display:flex;
  gap:8px;
  align-items:center;
}

.footer-signup-message{
  margin-top:10px;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#6f5424;
}
.updates-popout{
  position:fixed;
  left:50%;
  bottom:24px;
  transform:translate(-50%, 18px);
  background:#111;
  color:#fff;
  border:1px solid #2d2d2d;
  padding:12px 16px;
  border-radius:999px;
  font-size:11px;
  letter-spacing:.08em;
  text-transform:uppercase;
  z-index:1000;
  opacity:0;
  transition:transform .25s ease, opacity .25s ease;
  text-align:center;
  max-width:min(92vw, 720px);
}
.updates-popout.show{
  opacity:1;
  transform:translate(-50%, 0);
}

.footer-email-input{
  flex:1;
  min-width:0;
  border:1px solid #d2d2d2;
  background:#fff;
  padding:10px 12px;
  font-size:14px;
  color:var(--ink);
}

.footer-email-input:focus{
  outline:none;
  border-color:var(--gold);
}

.footer-email-btn{
  border:1px solid var(--ink);
  background:var(--ink);
  color:#fff;
  padding:10px 16px;
  font-size:13px;
  cursor:pointer;
  transition:.2s ease;
}

.footer-email-btn:hover{
  border-color:var(--gold);
  background:var(--gold);
  color:var(--ink);
}

.footer-col-title{
  font-family:"Cormorant Garamond",serif;
  font-size:22px;
  font-weight:500;
  letter-spacing:.02em;
  margin:0 0 8px;
  color:var(--ink);
}

.footer-link{
  display:block;
  text-decoration:none;
  color:#626262;
  font-size:14px;
  line-height:1.35;
  margin:4px 0;
  transition:color .2s ease;
}

.footer-link:hover{
  color:var(--gold);
}

.footer-bottom-row{
  width:100%;
  margin-top:20px;
  padding-top:10px;
  border-top:1px solid var(--veil);
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
}

.footer-brand-bottom{
  grid-column:2;
  justify-self:center;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:10px;
  font-weight:600;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--ink);
}

.footer-brand-soft{
  color:#8b8375;
  font-weight:500;
}

.footer-brand-copy{
  grid-column:2;
  justify-self:center;
  margin-top:4px;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:10px;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#8b8375;
}

.footer-locale{
  grid-column:3;
  justify-self:end;
  font-size:10px;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:#7b7b7b;
}

.footer-home{
  margin-top:24px;
  padding:44px 0 24px;
  background:#fff;
  border-top:1px solid #ece4d3;
}

.footer-home .container{
  width:min(94%, 1360px);
}

.footer-home .footer-layout{
  position:relative;
}

.footer-home .footer-layout::before{
  content:"";
  position:absolute;
  inset:-18px -20px auto;
  height:1px;
  background:linear-gradient(90deg, transparent 0%, rgba(191,163,106,.55) 18%, rgba(191,163,106,.55) 82%, transparent 100%);
}

.footer-home .footer-columns{
  grid-template-columns:1.35fr repeat(4,minmax(0,1fr));
  gap:34px;
}

.footer-home .footer-news-title{
  font-family:"Cormorant Garamond",serif;
  font-size:clamp(14px,1.2vw,20px);
  font-weight:500;
  line-height:1.2;
  letter-spacing:normal;
  text-transform:none;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width:none;
  margin:0 0 18px;
  color:var(--ink);
}

.footer-home .footer-email-form{
  max-width:390px;
  gap:10px;
}

.footer-home .footer-email-input{
  min-height:42px;
  border:1px solid #d9d1c2;
  background:#fff;
  padding:10px 12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  font-size:11px;
}

.footer-home .footer-email-input:focus{
  border-color:var(--gold);
  box-shadow:0 0 0 4px rgba(191,163,106,.12);
}

.footer-home .footer-email-btn{
  min-height:42px;
  padding:10px 16px;
  border-radius:999px;
  background:linear-gradient(180deg,#171717 0%, #0d0d0d 100%);
  border-color:#171717;
  letter-spacing:.16em;
  font-size:10px;
}

.footer-home .footer-email-btn:hover{
  background:linear-gradient(180deg,#c1a467 0%, #ae8e4e 100%);
  border-color:#ae8e4e;
}

.footer-home .footer-col-title{
  position:relative;
  display:block;
  width:100%;
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:14px;
  font-weight:600;
  letter-spacing:.04em;
  line-height:1.35;
  margin:0 0 20px;
}

.footer-home .footer-link{
  font-size:13px;
  line-height:1.9;
  letter-spacing:.01em;
  text-transform:none;
  margin:0 0 2px;
  color:#222;
}

.footer-home .footer-legal-col .footer-col-title{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Helvetica,Arial,sans-serif;
  font-size:14px;
  font-weight:600;
  letter-spacing:.04em;
  line-height:1.35;
  margin:0 0 20px;
}

.footer-home .footer-legal-col .footer-link{
  font-size:13px;
  line-height:1.9;
  letter-spacing:.01em;
  text-transform:none;
  margin:0 0 2px;
  color:#222;
}

.footer-home .footer-bottom-row{
  margin-top:22px;
  padding-top:14px;
  border-top:1px solid #e8dcc4;
}

.footer-home .footer-brand-bottom{
  font-size:10px;
  letter-spacing:.08em;
}

.footer-home .footer-locale{
  font-size:10px;
  letter-spacing:.08em;
  color:#7b7b7b;
}

@media (max-width: 980px){
  .footer-columns{
    grid-template-columns:1fr;
    gap:12px;
  }
  .footer-col-title{font-size:18px}
  .footer-link{font-size:13px}
  .footer-bottom-row{
    grid-template-columns:1fr;
    gap:8px;
  }
  .footer-brand-bottom,
  .footer-locale{
    grid-column:1;
    justify-self:center;
  }

  .footer-home .footer-columns{
    grid-template-columns:1fr;
    gap:18px;
  }

  .footer-home .footer-news-title{
    max-width:none;
  }

  .footer-home .footer-email-form{
    max-width:none;
    flex-direction:column;
    align-items:stretch;
  }

  .footer-home .footer-email-btn{
    width:100%;
  }
}

/* ===== Responsive ===== */
@media (max-width: 960px){
  .hero .wrap{grid-template-columns:1fr;padding:64px 0}
}
@media (max-width: 768px){
  .nav-list{gap:18px}
  .brand .brand-main{font-size:24px}
  .brand-logo{height:58px}
}

/* ===== Cart Icon Bounce ===== */
@keyframes cartShake {
  0%{transform:scale(1)}
  30%{transform:scale(1.3)}
  60%{transform:scale(.85)}
  100%{transform:scale(1)}
}
.icon-btn.cart-shake svg{
  animation:cartShake .6s ease
}

/* ===== Shop Grid: Match New Arrivals Feel ===== */
.shop-page #shopGrid.product-grid{
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 16px;
  align-items: stretch;
}

.shop-page .section .container{
  width: 96%;
  max-width: 1850px;
}

.shop-page #shopGrid .product-card{
  gap: 10px;
  height: 100%;
}

.shop-page #shopGrid .product-media{
  background: transparent;
  border: 1px solid rgba(0,0,0,.06);
  padding: 6px;
  aspect-ratio: 4 / 6.9;
}

.shop-page #shopGrid .utility-wrap{
  position:absolute;
  top:10px;
  right:10px;
  display:flex;
  gap:8px;
  z-index:3;
}

.shop-page #shopGrid .icon-fav,
.shop-page #shopGrid .icon-util{
  width:30px;
  height:30px;
  border-radius:6px;
  border:1px solid rgba(0,0,0,.04);
  background:rgba(255,255,255,.7);
  cursor:pointer;
  display:grid;
  place-items:center;
  transition:transform .2s ease,border-color .2s ease,color .2s ease;
}

.shop-page #shopGrid .icon-util svg{
  stroke-width:1.6;
}

.shop-page #shopGrid .icon-fav:hover{
  transform:translateY(-1px) scale(1.01);
  border-color:var(--gold);
  color:var(--gold);
}

.shop-page #shopGrid .icon-util:hover{
  transform:translateY(-1px) scale(1.01);
  border-color:#999;
}

.shop-page #shopGrid .icon-fav.is-on{
  border-color:var(--gold);
  color:var(--gold);
}

.shop-page #shopGrid .product-media img{
  height: 100%;
  object-fit: contain;
  transform: scale(1.08);
  transform-origin: center 60%;
}

.shop-page #shopGrid .product-media .img-back{
  inset: 6px;
}

.shop-page #shopGrid .product-card:hover .product-media img{
  transform: scale(1.1);
}

.shop-page #shopGrid .product-info{
  min-height: 72px;
}

.shop-page #shopGrid .product-title{
  font-size:13px;
}

.shop-page .section-title{
  font-family:"DM Sans",system-ui,sans-serif;
  font-size:clamp(32px,4.2vw,52px);
  font-weight:400;
  letter-spacing:.03em;
  line-height:1.08;
}

.shop-page .section-sub{
  font-family:"DM Sans",system-ui,sans-serif;
  font-size:13px;
  font-style:normal;
  letter-spacing:.06em;
  text-transform:uppercase;
}

.shop-page #shopGrid .product-actions{
  margin-top: auto;
  padding-top: 6px;
}

.shop-page #shopGrid .product-actions .btn.gold{
  background: #fff;
  border-color: rgba(17,17,17,.14);
  color: var(--ink);
  box-shadow: 0 12px 26px rgba(17,17,17,.06);
}

.shop-page #shopGrid .product-actions .btn.gold:hover{
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
}

@media (max-width: 1240px){
  .shop-page #shopGrid.product-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px){
  .shop-page #shopGrid.product-grid{
    grid-template-columns: 1fr;
  }
}
