/* ZYLITH — Shop CSS (design tokens from styles.css) */

/* ── HELPERS ── */
.section-header{text-align:center;margin-bottom:3rem}
.section-eyebrow{font-family:var(--ff-cinzel);font-size:.62rem;letter-spacing:.4em;color:var(--gold-dim);text-transform:uppercase;margin-bottom:.75rem}
.section-title{font-family:var(--ff-display);font-size:clamp(1.6rem,3.5vw,2.8rem);color:var(--ivory);font-weight:400}
.section-subtitle{color:var(--ivory-dim);margin-top:.5rem;font-size:.9rem}
.section-cta-wrap{text-align:center;margin-top:2.5rem}
.hidden{display:none!important}
.btn-primary{display:inline-block;font-family:var(--ff-cinzel);font-size:.62rem;letter-spacing:.3em;text-transform:uppercase;padding:.8rem 2rem;background:var(--gold);color:var(--void);border-radius:2px;cursor:pointer;border:none;transition:background .3s}
.btn-primary:hover{background:var(--gold-light)}

/* ── ANNOUNCEMENT BAR ── */
.announcement-bar{background:var(--gold);color:var(--void);text-align:center;font-family:var(--ff-cinzel);font-size:.62rem;letter-spacing:.25em;padding:.55rem 2rem;position:relative;z-index:1001}
.announcement-bar a{color:inherit;text-decoration:underline}
.ann-close{position:absolute;right:1rem;top:50%;transform:translateY(-50%);background:none;border:none;cursor:pointer;font-size:.9rem;color:var(--void)}

/* ── PRODUCT GRID ── */
.product-grid{display:grid;gap:1.5rem}
.product-grid-4{grid-template-columns:repeat(4,1fr)}
.product-grid-3{grid-template-columns:repeat(3,1fr)}
@media(max-width:1100px){.product-grid-4{grid-template-columns:repeat(3,1fr)}}
@media(max-width:820px){.product-grid-4,.product-grid-3{grid-template-columns:repeat(2,1fr)}}
@media(max-width:500px){.product-grid-4,.product-grid-3{grid-template-columns:1fr}}

/* ── PRODUCT CARD ── */
.product-card{background:var(--surface);border:1px solid var(--border);border-radius:4px;overflow:hidden;transition:border-color .4s,transform .4s}
.product-card:hover{border-color:var(--border-strong);transform:translateY(-4px)}
.product-card-image-wrap{position:relative;aspect-ratio:4/5;overflow:hidden}
.product-card-img{width:100%;height:100%;object-fit:cover;transition:transform .8s}
.product-card:hover .product-card-img{transform:scale(1.05)}
.product-card-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,26,18,.7),transparent 60%);opacity:0;transition:opacity .4s}
.product-card:hover .product-card-overlay{opacity:1}
.product-card-badges{position:absolute;top:.75rem;left:.75rem;display:flex;flex-direction:column;gap:.35rem}
.badge{display:inline-block;font-family:var(--ff-cinzel);font-size:.52rem;letter-spacing:.18em;padding:.25rem .6rem;border-radius:2px;text-transform:uppercase}
.badge-new{background:var(--gold);color:var(--void)}
.badge-best{background:var(--surface-mid);color:var(--ivory);border:1px solid var(--gold-dim)}
.badge-oos{background:rgba(255,255,255,.1);color:var(--ivory-ghost)}
.badge-low{background:#4a1515;color:#ff9999}
.badge-sale{background:#1a3d1a;color:#6ddb6d}
.wishlist-btn{position:absolute;top:.75rem;right:.75rem;width:32px;height:32px;background:rgba(10,26,18,.75);border:1px solid var(--border);border-radius:50%;display:flex;align-items:center;justify-content:center;cursor:pointer;color:var(--ivory-dim);transition:color .3s,background .3s}
.wishlist-btn:hover,.wishlist-btn.wishlisted{color:var(--gold);background:rgba(10,26,18,.95)}
.quick-add-btn{position:absolute;bottom:0;left:0;right:0;background:var(--gold);color:var(--void);font-family:var(--ff-cinzel);font-size:.6rem;letter-spacing:.25em;padding:.6rem;opacity:0;transform:translateY(4px);transition:opacity .3s,transform .3s;cursor:pointer;border:none}
.product-card:hover .quick-add-btn{opacity:1;transform:translateY(0)}
.product-card-info{padding:1rem 1rem 1.25rem}
.product-family{font-family:var(--ff-cinzel);font-size:.52rem;letter-spacing:.3em;color:var(--gold-dim);text-transform:uppercase;display:block;margin-bottom:.4rem}
.product-card-name{font-family:var(--ff-display);font-size:1.05rem;margin-bottom:.25rem}
.product-card-name a{color:var(--ivory)}
.product-card-tagline{font-size:.78rem;color:var(--ivory-ghost);margin-bottom:.6rem}
.product-rating-mini{display:flex;align-items:center;gap:2px;margin-bottom:.6rem;font-size:.95rem}
.star{color:rgba(245,239,230,.12);line-height:1;transition:color .3s}.star.filled{color:var(--gold);text-shadow:0 0 8px rgba(227,180,60,0.35)}
.rating-count{color:var(--ivory-ghost);font-size:.75rem;margin-left:4px}
.product-card-price-row{display:flex;align-items:baseline;gap:.6rem;margin-bottom:.85rem}
.product-price{font-family:var(--ff-display);font-size:1.05rem;color:var(--gold)}
.product-compare-price{font-size:.8rem;color:var(--ivory-ghost);text-decoration:line-through}
.btn-shop-now{font-family:var(--ff-cinzel);font-size:.58rem;letter-spacing:.22em;color:var(--gold);border-bottom:1px solid var(--border-strong);padding-bottom:.15rem;transition:color .3s}
.btn-notify{font-family:var(--ff-cinzel);font-size:.58rem;letter-spacing:.22em;color:var(--ivory-ghost);border:1px solid var(--border);padding:.45rem 1rem;border-radius:2px;cursor:pointer;background:none;transition:border-color .3s,color .3s}
.btn-notify:hover{border-color:var(--gold);color:var(--gold)}
.featured-products,.new-arrivals{padding:5rem 4rem;background:var(--void-alt)}
@media(max-width:768px){.featured-products,.new-arrivals{padding:4rem 1.5rem}}

/* ── SHOP PAGE ── */
.shop-page{min-height:100vh;padding-top:90px}
.shop-hero{position:relative;background:var(--void-alt);background-size:cover;background-position:center;padding:6rem 4rem 4rem;overflow:hidden;min-height:320px;display:flex;align-items:flex-end}
.shop-hero-overlay{position:absolute;inset:0;background:linear-gradient(to top,rgba(10,26,18,.9),rgba(10,26,18,.4));z-index:1}
.shop-hero-inner{position:relative;z-index:2;max-width:1440px;margin:0 auto;width:100%}
.shop-hero-title{font-family:var(--ff-display);font-size:clamp(2.5rem,5vw,4rem);font-weight:300;color:var(--ivory);margin-top:.5rem}
.shop-hero-count{color:var(--gold-dim);font-size:.85rem;margin-top:.6rem;font-family:var(--ff-cinzel);letter-spacing:.1em}
.shop-layout{display:grid;grid-template-columns:260px 1fr;gap:2rem;max-width:1440px;margin:0 auto;padding:2.5rem 4rem 5rem}
@media(max-width:900px){
  .shop-layout{grid-template-columns:1fr}
  .shop-hero{padding:4rem 1.5rem 3rem;min-height:280px}
  .shop-sidebar{position:fixed;inset:0;right:auto;width:280px;background:var(--void-alt);z-index:900;overflow-y:auto;padding:2rem;transform:translateX(-100%);transition:transform .4s;box-shadow:4px 0 24px rgba(0,0,0,.5)}
  .shop-sidebar.open{transform:translateX(0)}
  .sidebar-overlay{position:fixed;inset:0;background:rgba(0,0,0,.6);z-index:850;opacity:0;pointer-events:none;transition:opacity .4s}
  body.sidebar-open .sidebar-overlay{opacity:1;pointer-events:auto}
}
.sidebar-header{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;border-bottom:1px solid var(--border);padding-bottom:1rem}
.sidebar-header h3{font-family:var(--ff-cinzel);font-size:.75rem;letter-spacing:.3em;color:var(--ivory);text-transform:uppercase}
.clear-filters{font-size:.72rem;color:var(--gold-dim);text-decoration:underline}
.clear-filters.hidden{display:none}
.filter-group{margin-bottom:1.75rem;border-bottom:1px solid var(--border);padding-bottom:1.5rem}
.filter-label{font-family:var(--ff-cinzel);font-size:.6rem;letter-spacing:.3em;text-transform:uppercase;color:var(--gold-dim);margin-bottom:.8rem;display:block}
.filter-option{display:flex;align-items:center;gap:.6rem;color:var(--ivory-dim);font-size:.82rem;padding:.3rem 0;cursor:pointer}
.filter-option input{accent-color:var(--gold)}
.price-inputs{display:flex;align-items:center;gap:.5rem;margin-bottom:.75rem}
.price-inputs input{background:var(--surface);border:1px solid var(--border);color:var(--ivory);padding:.4rem .6rem;border-radius:2px;width:80px;font-size:.82rem}
.filter-apply-btn{font-family:var(--ff-cinzel);font-size:.58rem;letter-spacing:.2em;background:none;border:1px solid var(--border-strong);color:var(--gold);padding:.45rem 1rem;cursor:pointer;border-radius:2px}
.collection-filter-link{display:block;font-size:.82rem;color:var(--ivory-dim);padding:.3rem 0;transition:color .3s}
.collection-filter-link:hover,.collection-filter-link.active{color:var(--gold)}
.shop-toolbar{display:flex;justify-content:space-between;align-items:center;margin-bottom:1.5rem;padding-bottom:1rem;border-bottom:1px solid var(--border)}
.active-filters{display:flex;flex-wrap:wrap;gap:.5rem}
.active-filter-tag{font-size:.72rem;background:var(--surface);border:1px solid var(--border-strong);padding:.25rem .6rem;border-radius:2px;color:var(--ivory-dim)}
.active-filter-tag a{margin-left:.4rem;color:var(--gold-dim)}
.sort-control{display:flex;align-items:center;gap:.6rem;font-size:.8rem;color:var(--ivory-dim)}
.sort-control select{background:var(--surface);border:1px solid var(--border);color:var(--ivory);padding:.35rem .6rem;border-radius:2px;font-size:.8rem}
.shop-empty{text-align:center;padding:4rem;color:var(--ivory-dim)}
.mobile-filter-btn{display:none;position:fixed;bottom:1.5rem;left:1.5rem;z-index:200;background:var(--gold);color:var(--void);font-family:var(--ff-cinzel);font-size:.6rem;letter-spacing:.2em;padding:.6rem 1.2rem;border:none;border-radius:22px;cursor:pointer;box-shadow:0 4px 20px rgba(0,0,0,.4);align-items:center;gap:.5rem}
@media(max-width:900px){.mobile-filter-btn{display:flex}}

/* ── PRODUCT DETAIL ── */
.product-detail-page{padding:90px 4rem 5rem;max-width:1440px;margin:0 auto}
@media(max-width:768px){.product-detail-page{padding:90px 1.5rem 4rem}}
.breadcrumb{font-size:.75rem;color:var(--ivory-ghost);margin-bottom:2rem;display:flex;align-items:center;gap:.5rem;flex-wrap:wrap}
.breadcrumb a{color:var(--ivory-ghost);transition:color .3s}
.breadcrumb a:hover{color:var(--gold)}
.product-detail-inner{display:grid;grid-template-columns:1fr 1fr;gap:4rem;margin-bottom:5rem}
@media(max-width:900px){
  .product-detail-page{padding-top:80px}
  .product-detail-inner{grid-template-columns:1fr;gap:2.5rem;margin-bottom:3rem}
  .product-gallery{position:relative;top:0}
  .product-info{padding:0}
  .product-name{font-size:2.2rem}
  .product-actions{flex-direction:column;gap:1rem}
  .btn-add-to-cart,.btn-wishlist-detail{width:100%;justify-content:center}
  .breadcrumb{font-size:.65rem;margin-bottom:1.5rem}
}
.product-gallery{position:sticky;top:90px;align-self:start}
.gallery-main{aspect-ratio:1;overflow:hidden;border-radius:4px;border:1px solid var(--border);cursor:zoom-in}
.gallery-main-img{width:100%;height:100%;object-fit:cover;transition:transform .6s}
.gallery-main:hover .gallery-main-img{transform:scale(1.04)}
.gallery-thumbs{display:flex;gap:.6rem;margin-top:.75rem;flex-wrap:wrap}
.gallery-thumb{width:70px;height:70px;border:2px solid transparent;border-radius:3px;overflow:hidden;cursor:pointer;transition:border-color .3s;background:none;padding:0}
.gallery-thumb.active,.gallery-thumb:hover{border-color:var(--gold)}
.gallery-thumb img{width:100%;height:100%;object-fit:cover}
.gallery-zoom-hint{font-size:.68rem;color:var(--ivory-ghost);text-align:center;margin-top:.4rem}
.gallery-lightbox{position:fixed;inset:0;z-index:9999;display:none;align-items:center;justify-content:center}
.gallery-lightbox[aria-hidden="false"]{display:flex}
.lightbox-overlay{position:absolute;inset:0;background:rgba(0,0,0,.9)}
.lightbox-inner{position:relative;z-index:1;max-width:90vw;max-height:90vh}
.lightbox-inner img{max-width:100%;max-height:90vh;object-fit:contain}
.lightbox-close{position:absolute;top:-2rem;right:0;background:none;border:none;color:#fff;font-size:1.5rem;cursor:pointer}
.product-family-tag{font-family:var(--ff-cinzel);font-size:.58rem;letter-spacing:.35em;color:var(--gold-dim);text-transform:uppercase;margin-bottom:.6rem}
.product-name{font-family:var(--ff-display);font-size:clamp(1.8rem,3vw,2.8rem);font-weight:400;color:var(--ivory);margin-bottom:.4rem}
.product-tagline{color:var(--ivory-ghost);font-size:.9rem;margin-bottom:1rem}
.product-rating{display:flex;align-items:center;gap:.6rem;font-size:.85rem;margin-bottom:1.2rem}
.product-rating-avg{color:var(--gold)}
.product-rating-count{color:var(--ivory-ghost);text-decoration:underline}
.product-price-block{display:flex;align-items:baseline;flex-wrap:wrap;gap:.75rem;margin-bottom:1.2rem}
.product-price-main{font-family:var(--ff-display);font-size:1.8rem;color:var(--gold)}
.product-tax-note{font-size:.72rem;color:var(--ivory-ghost);width:100%;margin-top:-.5rem}
.intensity-meter{display:flex;align-items:center;gap:.75rem;margin-bottom:1.4rem}
.intensity-label,.intensity-value{font-size:.75rem;color:var(--ivory-dim);white-space:nowrap}
.intensity-bar{flex:1;height:4px;background:var(--surface-alt);border-radius:2px;overflow:hidden}
.intensity-fill{height:100%;background:linear-gradient(to right,var(--gold-dim),var(--gold-light));border-radius:2px}
.variant-selector{margin-bottom:1.4rem}
.variant-label{font-size:.78rem;color:var(--ivory-dim);margin-bottom:.6rem}
.variant-label strong{color:var(--ivory)}
.variant-options{display:flex;flex-wrap:wrap;gap:.5rem}
.variant-btn{font-family:var(--ff-cinzel);font-size:.62rem;letter-spacing:.15em;background:var(--surface);border:1px solid var(--border);color:var(--ivory);padding:.5rem 1rem;border-radius:2px;cursor:pointer;transition:border-color .3s,color .3s;position:relative}
.variant-btn.selected{border-color:var(--gold);color:var(--gold)}
.variant-btn.out-of-stock,.variant-btn:disabled{opacity:.4;cursor:not-allowed;text-decoration:line-through}
.product-actions{display:flex;gap:.75rem;margin-bottom:1.75rem;flex-wrap:wrap}
.btn-add-to-cart{flex:1;min-width:160px;background:var(--gold);color:var(--void);font-family:var(--ff-cinzel);font-size:.68rem;letter-spacing:.25em;padding:1rem;border:none;cursor:pointer;border-radius:2px;transition:background .3s}
.btn-add-to-cart:hover{background:var(--gold-light)}
.btn-wishlist-detail{display:flex;align-items:center;gap:.5rem;font-family:var(--ff-cinzel);font-size:.6rem;letter-spacing:.18em;background:none;border:1px solid var(--border);color:var(--ivory-dim);padding:.8rem 1rem;cursor:pointer;border-radius:2px;transition:border-color .3s,color .3s;white-space:nowrap}
.btn-wishlist-detail:hover,.btn-wishlist-detail.wishlisted{border-color:var(--gold);color:var(--gold)}
.fragrance-notes{margin-bottom:1.6rem}
.fragrance-notes h3{font-family:var(--ff-cinzel);font-size:.65rem;letter-spacing:.3em;color:var(--gold-dim);text-transform:uppercase;margin-bottom:.7rem}
.notes-tags{display:flex;flex-wrap:wrap;gap:.45rem}
.note-tag{font-size:.75rem;background:var(--surface-alt);border:1px solid var(--border);color:var(--ivory-dim);padding:.3rem .75rem;border-radius:20px}
.product-tabs{margin-bottom:1.75rem}
.tab-nav{display:flex;border-bottom:1px solid var(--border);margin-bottom:1.2rem}
.tab-btn{font-family:var(--ff-cinzel);font-size:.6rem;letter-spacing:.2em;color:var(--ivory-dim);background:none;border:none;border-bottom:2px solid transparent;padding:.6rem 1rem;cursor:pointer;text-transform:uppercase;margin-bottom:-1px;transition:color .3s,border-color .3s}
.tab-btn.active{color:var(--gold);border-bottom-color:var(--gold)}
.tab-panel{display:none;font-size:.88rem;line-height:1.9;color:var(--ivory-dim)}
.tab-panel.active{display:block}
.product-trust-badges{display:flex;flex-wrap:wrap;gap:.6rem}
.trust-badge{font-size:.72rem;color:var(--ivory-ghost);background:var(--surface);border:1px solid var(--border);padding:.35rem .8rem;border-radius:2px;display:flex;align-items:center;gap:.4rem}

/* ── REVIEWS ── */
.product-reviews,.related-products{padding:3rem 4rem 0;max-width:1440px;margin:0 auto}
@media(max-width:900px){
  .product-reviews,.related-products{padding:2rem 1.5rem 0}
  .product-grid-4{grid-template-columns:repeat(2,1fr);gap:1rem}
  .reviews-header{flex-direction:column;align-items:flex-start;gap:1rem}
}
@media(max-width:480px){
  .product-grid-4{grid-template-columns:1fr}
  .tab-nav{overflow-x:auto;white-space:nowrap;-webkit-overflow-scrolling:touch;padding-bottom:.5rem}
  .tab-btn{padding:.6rem .8rem;font-size:.55rem}
  .star-rating-input label{font-size:1.4rem}
}
.reviews-header{display:flex;align-items:center;flex-wrap:wrap;gap:1.5rem;margin-bottom:2rem;padding-bottom:1rem;border-bottom:1px solid var(--border)}
.reviews-header h2{font-family:var(--ff-display);font-size:1.6rem}
.reviews-summary{display:flex;align-items:center;gap:.75rem}
.reviews-avg{font-family:var(--ff-display);font-size:2.5rem;color:var(--gold)}
.reviews-count{font-size:.78rem;color:var(--ivory-ghost)}
.reviews-list{display:flex;flex-direction:column;gap:1.5rem;margin-bottom:2.5rem}
.review-item{background:var(--surface);border:1px solid var(--border);border-radius:4px;padding:1.25rem}
.review-header{display:flex;flex-wrap:wrap;align-items:center;gap:.75rem;margin-bottom:.6rem}
.reviewer-name{font-size:.85rem;color:var(--ivory);font-weight:500}
.review-date{font-size:.72rem;color:var(--ivory-ghost);margin-left:auto}
.review-title{font-size:.9rem;color:var(--ivory);margin-bottom:.4rem}
.review-body{font-size:.85rem;color:var(--ivory-dim);line-height:1.7;margin:0}
.review-form-wrap{background:var(--surface);border:1px solid var(--border);border-radius:4px;padding:1.75rem;margin-top:1.5rem}
.star-rating-input{direction:rtl;display:inline-flex;gap:.2rem;margin-bottom:1rem}
.star-rating-input input{position:absolute;opacity:0;width:0;height:0}
.star-rating-input label{font-size:1.8rem;color:rgba(245,239,230,.15);cursor:pointer;transition:color .2s}
.star-rating-input label:hover,.star-rating-input label:hover~label,.star-rating-input input:checked~label{color:var(--gold);text-shadow:0 0 10px rgba(227,180,60,.4)}
.form-input{width:100%;background:var(--surface-alt);border:1px solid var(--border);color:var(--ivory);padding:.65rem .85rem;border-radius:2px;font-family:var(--ff-body);font-size:.85rem;margin-bottom:.75rem;outline:none;transition:border-color .3s;box-sizing:border-box}
.form-input:focus{border-color:var(--gold)}
.form-note{font-size:.72rem;color:var(--ivory-ghost);margin-top:.6rem}
.review-login-prompt{font-size:.85rem;color:var(--ivory-ghost);margin-top:1rem}
.review-login-prompt a{color:var(--gold)}
.related-products{padding-bottom:5rem}

/* ── COLLECTION PAGE ── */
.collection-page{padding-top:80px}
.collection-hero {
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  background: var(--void-alt) center/cover no-repeat;
  position: relative;
  padding: 4rem 0;
}

.collection-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 26, 18, 0.95), transparent 70%);
}

.collection-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
  width: 100%;
}

.collection-hero-content h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-top: 0.5rem;
  font-weight: 300;
}

.breadcrumb {
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.5rem 4rem;
  font-size: 0.75rem;
  color: var(--ivory-ghost);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  width: 100%;
}

.subcollection-tabs {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  padding: 1rem 4rem;
  border-bottom: 1px solid var(--border);
  width: 100%;
}

.collection-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2.5rem 4rem 5rem;
}
/* ── COLLECTION FOOTER NAV ── */
.collection-footer-nav {
  background: var(--void-alt);
  border-top: 1px solid var(--border);
  padding: 6rem 0;
  margin-top: 4rem;
}

.footer-nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 4rem;
}

.suggestions-title {
  font-family: var(--ff-cinzel);
  font-size: 0.65rem;
  letter-spacing: 0.4em;
  color: var(--gold-dim);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
  text-align: center;
}

.suggestions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 5rem;
}

.suggestion-card {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border: 1px solid var(--border);
  display: block;
}

.suggestion-img-wrap {
  width: 100%;
  height: 100%;
  position: relative;
}

.suggestion-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) saturate(0.8);
  transition: transform 0.8s var(--ease-silk), filter 0.6s;
}

.suggestion-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 26, 18, 0.8), transparent);
  transition: opacity 0.4s;
}

.suggestion-info {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
}

.suggestion-eyebrow {
  display: block;
  font-family: var(--ff-cinzel);
  font-size: 0.52rem;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.2rem;
}

.suggestion-name {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  color: var(--ivory);
  font-weight: 300;
}

.suggestion-card:hover .suggestion-img-wrap img {
  transform: scale(1.08);
  filter: brightness(0.8) saturate(1);
}

.collection-navigator {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--border);
  padding-top: 3rem;
}

.nav-btn {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  transition: opacity 0.3s;
}

.nav-btn:hover {
  opacity: 0.7;
}

.nav-label {
  font-family: var(--ff-cinzel);
  font-size: 0.56rem;
  letter-spacing: 0.25em;
  color: var(--gold-dim);
  text-transform: uppercase;
}

.nav-name {
  font-family: var(--ff-display);
  font-size: 1.6rem;
  color: var(--ivory);
  font-weight: 300;
}

.nav-btn.next {
  align-items: flex-end;
  text-align: right;
}

@media(max-width:900px) {
  .suggestions-grid {
    grid-template-columns: 1fr;
  }
  .nav-name {
    font-size: 1.25rem;
  }
}

@media(max-width:768px){
  .collection-hero-content, 
  .collection-content, 
  .subcollection-tabs, 
  .breadcrumb,
  .footer-nav-container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

/* ── CART DRAWER ── */
.cart-drawer{position:fixed;inset:0;z-index:1100;pointer-events:none}
.cart-drawer[aria-hidden="false"]{pointer-events:auto}
.cart-drawer-overlay{position:absolute;inset:0;background:rgba(0,0,0,.6);opacity:0;transition:opacity .4s}
.cart-drawer[aria-hidden="false"] .cart-drawer-overlay{opacity:1}
.cart-drawer-panel{position:absolute;top:0;right:0;bottom:0;width:min(420px,100vw);background:var(--void-alt);border-left:1px solid var(--border);display:flex;flex-direction:column;transform:translateX(100%);transition:transform .45s}
.cart-drawer[aria-hidden="false"] .cart-drawer-panel{transform:translateX(0)}
.cart-header{display:flex;align-items:center;justify-content:space-between;padding:1.25rem 1.5rem;border-bottom:1px solid var(--border);flex-shrink:0}
.cart-title{font-family:var(--ff-cinzel);font-size:.75rem;letter-spacing:.3em;color:var(--ivory);text-transform:uppercase;display:flex;align-items:center;gap:.6rem}
.cart-count-label{background:var(--gold);color:var(--void);border-radius:50%;width:20px;height:20px;display:flex;align-items:center;justify-content:center;font-size:.62rem}
.cart-close{background:none;border:none;color:var(--ivory-ghost);font-size:1.2rem;cursor:pointer}
.cart-progress-wrap{padding:1rem 1.5rem;border-bottom:1px solid var(--border);flex-shrink:0}
.cart-progress-text{font-size:.75rem;color:var(--ivory-dim);margin-bottom:.5rem}
.cart-progress-bar{height:3px;background:var(--surface-alt);border-radius:2px;overflow:hidden}
.cart-progress-fill{height:100%;background:var(--gold);border-radius:2px;transition:width .5s}
.cart-items-list{flex:1;overflow-y:auto;padding:.5rem 1.5rem}
.cart-empty{display:flex;flex-direction:column;align-items:center;justify-content:center;height:100%;gap:1rem;color:var(--ivory-ghost);text-align:center;padding:2rem}
.cart-empty svg{opacity:.3}
.cart-empty p{font-size:.9rem}
.cart-item{display:grid;grid-template-columns:72px 1fr 24px;gap:.75rem;padding:1rem 0;border-bottom:1px solid var(--border)}
.cart-item-image{display:block;border-radius:3px;overflow:hidden}
.cart-item-image img{width:72px;height:90px;object-fit:cover}
.cart-item-name{font-size:.88rem;color:var(--ivory);line-height:1.3}
.cart-item-variant{font-size:.72rem;color:var(--gold-dim);display:block;margin-top:.2rem}
.cart-item-bottom{display:flex;align-items:center;justify-content:space-between;margin-top:.6rem}
.qty-control{display:flex;align-items:center;gap:.5rem}
.qty-btn{background:var(--surface);border:1px solid var(--border);color:var(--ivory);width:24px;height:24px;border-radius:2px;cursor:pointer;font-size:.9rem;display:flex;align-items:center;justify-content:center;transition:border-color .2s}
.qty-btn:hover{border-color:var(--gold);color:var(--gold)}
.qty-value{font-size:.85rem;color:var(--ivory);min-width:16px;text-align:center}
.cart-item-price{font-size:.88rem;color:var(--gold);font-family:var(--ff-display)}
.cart-item-remove{background:none;border:none;color:var(--ivory-ghost);cursor:pointer;font-size:.8rem;align-self:start;padding:0;transition:color .2s}
.cart-item-remove:hover{color:var(--gold)}
.cart-footer{padding:1rem 1.5rem 1.5rem;border-top:1px solid var(--border);flex-shrink:0}
.discount-row{display:flex;gap:.5rem;margin-bottom:.3rem}
.discount-input{flex:1;background:var(--surface);border:1px solid var(--border);color:var(--ivory);padding:.5rem .75rem;border-radius:2px;font-size:.8rem;outline:none}
.discount-input:focus{border-color:var(--gold)}
.discount-btn{font-family:var(--ff-cinzel);font-size:.58rem;letter-spacing:.18em;background:var(--surface-mid);color:var(--ivory);border:none;padding:.5rem .9rem;border-radius:2px;cursor:pointer}
.discount-msg{font-size:.72rem;color:var(--gold);min-height:.9rem;margin-bottom:.6rem}
.discount-msg.error{color:#ff9999}
.cart-total-row{display:flex;justify-content:space-between;font-size:.88rem;color:var(--ivory-dim);padding:.2rem 0}
.cart-shipping-note{font-size:.72rem;color:var(--ivory-ghost);margin-top:.3rem}
.cart-checkout-btn{display:block;width:100%;background:var(--gold);color:var(--void);text-align:center;font-family:var(--ff-cinzel);font-size:.68rem;letter-spacing:.3em;padding:1rem;border-radius:2px;margin-bottom:.6rem;transition:background .3s}
.cart-checkout-btn:hover{background:var(--gold-light)}
.cart-view-link{display:block;text-align:center;font-size:.75rem;color:var(--ivory-ghost);text-decoration:underline}

/* ── CART PAGE ── */
.cart-page-wrap{max-width:1200px;margin:0 auto;padding:100px 4rem 5rem;display:grid;grid-template-columns:1fr 360px;gap:3rem}
@media(max-width:900px){.cart-page-wrap{grid-template-columns:1fr;padding:100px 1.5rem 4rem}}
.cart-page-title{font-family:var(--ff-display);font-size:2rem;margin-bottom:2rem;grid-column:1/-1}
.cart-summary-box{background:var(--surface);border:1px solid var(--border);border-radius:4px;padding:1.5rem;align-self:start;position:sticky;top:100px}
.summary-row{display:flex;justify-content:space-between;font-size:.88rem;color:var(--ivory-dim);padding:.3rem 0}
.summary-row.total{color:var(--ivory);font-size:1rem;border-top:1px solid var(--border);margin-top:.5rem;padding-top:.75rem}

/* ── CHECKOUT ── */
.checkout-page{max-width:1200px;margin:0 auto;padding:100px 4rem 5rem;display:grid;grid-template-columns:1fr 380px;gap:4rem}
@media(max-width:900px){.checkout-page{grid-template-columns:1fr;padding:100px 1.5rem 4rem}}
.checkout-main h1{font-family:var(--ff-display);font-size:2rem;margin-bottom:2rem}
.checkout-stepper{display:flex;align-items:center;gap:0;margin-bottom:2.5rem}
.stepper-step{font-family:var(--ff-cinzel);font-size:.58rem;letter-spacing:.2em;padding:.4rem .8rem;color:var(--ivory-ghost);border-bottom:2px solid transparent;text-transform:uppercase}
.stepper-step.active{color:var(--gold);border-bottom-color:var(--gold)}
.stepper-sep{color:var(--border-strong);margin:0 .25rem}
.form-section{margin-bottom:2rem}
.form-section-title{font-family:var(--ff-cinzel);font-size:.65rem;letter-spacing:.3em;text-transform:uppercase;color:var(--gold-dim);margin-bottom:1rem}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:.75rem}
@media(max-width:600px){.form-row{grid-template-columns:1fr}}
.form-group{display:flex;flex-direction:column;gap:.35rem;margin-bottom:.75rem}
.form-group label{font-size:.75rem;color:var(--ivory-dim)}
.form-group input,.form-group select,.form-group textarea{background:var(--surface);border:1px solid var(--border);color:var(--ivory);padding:.65rem .85rem;border-radius:2px;font-family:var(--ff-body);font-size:.88rem;outline:none;transition:border-color .3s;width:100%;box-sizing:border-box}
.form-group input:focus,.form-group select:focus{border-color:var(--gold)}
.form-group select option{background:var(--surface)}
.delivery-options{display:flex;flex-direction:column;gap:.75rem}
.delivery-option{display:flex;align-items:center;gap:1rem;background:var(--surface);border:2px solid var(--border);border-radius:4px;padding:1rem 1.25rem;cursor:pointer;transition:border-color .3s}
.delivery-option:has(input:checked){border-color:var(--gold)}
.delivery-option-label{flex:1}
.delivery-option-label strong{display:block;font-size:.88rem;color:var(--ivory)}
.delivery-option-label span{font-size:.75rem;color:var(--ivory-ghost)}
.delivery-option-price{font-family:var(--ff-display);color:var(--gold)}
.checkout-btn{width:100%;background:var(--gold);color:var(--void);font-family:var(--ff-cinzel);font-size:.68rem;letter-spacing:.3em;padding:1rem;border:none;border-radius:2px;cursor:pointer;transition:background .3s;margin-top:1rem}
.checkout-btn:hover{background:var(--gold-light)}
.checkout-btn.loading{opacity:.7;pointer-events:none}
.checkout-order-summary{position:sticky;top:100px;align-self:start}
.checkout-order-summary h3{font-family:var(--ff-cinzel);font-size:.68rem;letter-spacing:.3em;text-transform:uppercase;color:var(--ivory);margin-bottom:1rem}
.checkout-items-list{border:1px solid var(--border);border-radius:4px;overflow:hidden;margin-bottom:1rem}
.checkout-item{display:flex;gap:.75rem;padding:.75rem;border-bottom:1px solid var(--border)}
.checkout-item:last-child{border-bottom:none}
.checkout-item img{width:54px;height:66px;object-fit:cover;border-radius:2px}
.checkout-item-info{flex:1;font-size:.82rem}
.checkout-item-name{color:var(--ivory);margin-bottom:.2rem}
.checkout-item-var,.checkout-item-qty{color:var(--ivory-ghost);font-size:.72rem}
.checkout-item-price{font-family:var(--ff-display);color:var(--gold);align-self:center;white-space:nowrap}
.checkout-totals{background:var(--surface);border:1px solid var(--border);border-radius:4px;padding:1rem}
.checkout-totals .summary-row{font-size:.85rem}

/* ── ORDER CONFIRM ── */
.order-confirm-page{max-width:700px;margin:0 auto;padding:120px 2rem 5rem;text-align:center}
.order-confirm-icon{width:64px;height:64px;background:var(--gold);border-radius:50%;display:flex;align-items:center;justify-content:center;margin:0 auto 1.5rem;font-size:1.8rem}
.order-confirm-number{font-family:var(--ff-cinzel);letter-spacing:.3em;color:var(--gold);font-size:.85rem;margin-bottom:.5rem}
.order-confirm-title{font-family:var(--ff-display);font-size:2rem;margin-bottom:1rem}
.order-confirm-box{background:var(--surface);border:1px solid var(--border);border-radius:4px;padding:1.5rem;text-align:left;margin:2rem 0}

/* ── AUTH PAGES ── */
.auth-page{min-height:100vh;display:flex;align-items:center;justify-content:center;padding:2rem;background:radial-gradient(ellipse at 40% 40%,rgba(48,79,39,.2),transparent 60%),var(--void)}
.auth-card{width:100%;max-width:420px;background:var(--surface);border:1px solid var(--border);border-radius:6px;padding:2rem}
.auth-logo{text-align:center;font-family:var(--ff-cinzel);font-size:1.2rem;letter-spacing:.5em;color:var(--gold);margin-bottom:.3rem}
.auth-subtitle{text-align:center;font-size:.72rem;letter-spacing:.2em;color:var(--gold-dim);margin-bottom:2rem;font-family:var(--ff-cinzel);text-transform:uppercase}
.auth-title{font-family:var(--ff-display);font-size:1.5rem;text-align:center;margin-bottom:1.5rem}
.auth-form .form-group{margin-bottom:1rem}
.auth-form .form-group input{width:100%;box-sizing:border-box}
.auth-link-row{text-align:center;font-size:.8rem;color:var(--ivory-ghost);margin-top:1rem}
.auth-link-row a{color:var(--gold)}

/* ── ACCOUNT PAGES ── */
.account-page{max-width:1200px;margin:0 auto;padding:100px 4rem 5rem;display:grid;grid-template-columns:220px 1fr;gap:3rem}
@media(max-width:860px){.account-page{grid-template-columns:1fr;padding:100px 1.5rem 4rem}}
.account-nav{align-self:start;position:sticky;top:100px;background:var(--surface);border:1px solid var(--border);border-radius:4px;overflow:hidden}
.account-nav-user{padding:1.25rem;border-bottom:1px solid var(--border)}
.account-nav-user-name{font-size:.95rem;color:var(--ivory)}
.account-nav-user-email{font-size:.72rem;color:var(--ivory-ghost)}
.account-nav-links{padding:.5rem 0}
.account-nav-link{display:flex;align-items:center;gap:.6rem;padding:.65rem 1.25rem;font-size:.82rem;color:var(--ivory-dim);transition:background .2s,color .2s}
.account-nav-link:hover,.account-nav-link.active{background:rgba(227,180,60,.07);color:var(--gold)}
.account-section-title{font-family:var(--ff-display);font-size:1.6rem;margin-bottom:1.5rem;border-bottom:1px solid var(--border);padding-bottom:.75rem}
.order-card{background:var(--surface);border:1px solid var(--border);border-radius:4px;padding:1.25rem;margin-bottom:1rem}
.order-card-header{display:flex;justify-content:space-between;flex-wrap:wrap;gap:.5rem;margin-bottom:.75rem}
.order-number-label{font-family:var(--ff-cinzel);font-size:.7rem;letter-spacing:.2em;color:var(--ivory)}
.order-status-badge{font-size:.65rem;letter-spacing:.15em;text-transform:uppercase;font-family:var(--ff-cinzel);padding:.25rem .6rem;border-radius:2px}
.status-confirmed,.status-processing,.status-delivered{background:#1a3d1a;color:#6ddb6d}
.status-pending{background:#3d340a;color:#e3b43c}
.status-shipped{background:#0a2040;color:#4da6ff}
.status-cancelled,.status-failed{background:#4a1515;color:#ff9999}
.status-refunded{background:#1a1a3d;color:#9999ff}
.order-items-preview{display:flex;gap:.5rem;overflow:hidden;margin-bottom:.75rem}
.order-item-thumb{width:48px;height:58px;object-fit:cover;border-radius:2px}
.order-card-footer{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;gap:.5rem;font-size:.82rem;color:var(--ivory-ghost)}
.order-card-total{color:var(--gold);font-family:var(--ff-display);font-size:.95rem}
.wishlist-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(200px,1fr));gap:1.25rem}

/* ── MODALS ── */
.modal,.quick-add-modal,.notify-modal{position:fixed;inset:0;z-index:1200;display:none;align-items:center;justify-content:center}
.modal[aria-hidden="false"],.quick-add-modal[aria-hidden="false"],.notify-modal[aria-hidden="false"]{display:flex}
.modal-overlay{position:absolute;inset:0;background:rgba(0,0,0,.75)}
.modal-panel{position:relative;z-index:1;background:var(--surface);border:1px solid var(--border);border-radius:6px;padding:2rem;max-width:600px;width:calc(100% - 2rem);max-height:90vh;overflow-y:auto}
.modal-panel h2,.modal-panel h3{font-family:var(--ff-display);font-size:1.4rem;margin-bottom:.4rem}
.modal-subtitle{font-size:.78rem;color:var(--ivory-ghost);margin-bottom:1.5rem}
.modal-close{position:absolute;top:1rem;right:1rem;background:none;border:none;color:var(--ivory-ghost);font-size:1.2rem;cursor:pointer}
.quick-add-panel{position:relative;z-index:1;background:var(--surface);border:1px solid var(--border);border-radius:6px;padding:1.75rem;max-width:460px;width:calc(100% - 2rem)}

/* ── PAGINATION ── */
.pagination{display:flex;justify-content:center;align-items:center;gap:.4rem;margin-top:3rem;flex-wrap:wrap}
.page-btn{background:var(--surface);border:1px solid var(--border);color:var(--ivory-dim);width:36px;height:36px;border-radius:2px;display:flex;align-items:center;justify-content:center;font-size:.82rem;transition:border-color .3s,color .3s}
.cart-count,
.wishlist-count {
  position: absolute;
  top: -6px;
  right: -6px;
  background: var(--gold);
  color: var(--void);
  font-size: 0.62rem;
  font-weight: 600;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s;
}

.cart-count.hidden,
.wishlist-count.hidden {
  opacity: 0;
  transform: scale(0.5);
  pointer-events: none;
}
.page-btn.active,.page-btn:hover{border-color:var(--gold);color:var(--gold)}
.page-ellipsis{color:var(--ivory-ghost);padding:.4rem}

/* ── FLASH / TRUST ── */
.flash-message{position:fixed;top:1.2rem;right:1.2rem;z-index:9999;background:var(--surface);border-left:3px solid var(--gold);color:var(--ivory);padding:.85rem 1.25rem;border-radius:3px;font-size:.85rem;box-shadow:0 8px 32px rgba(0,0,0,.4);transition:opacity .5s;max-width:340px}
.flash-error{border-left-color:#ff6b6b}
.flash-message.fade-out{opacity:0;pointer-events:none}
.footer-badges{display:flex;gap:.6rem;flex-wrap:wrap}
.payment-badge{font-size:.65rem;letter-spacing:.12em;color:var(--ivory-ghost);border:1px solid var(--border);padding:.25rem .6rem;border-radius:2px;font-family:var(--ff-cinzel)}
.back-to-top{position:fixed;bottom:2rem;right:2rem;z-index:500;width:42px;height:42px;background:var(--surface-mid);border:1px solid var(--border-strong);border-radius:50%;color:var(--gold);display:flex;align-items:center;justify-content:center;cursor:pointer;opacity:0;pointer-events:none;transition:opacity .3s}
.back-to-top.visible{opacity:1;pointer-events:auto}
