/* ============================================================
   Nightiez — design tokens (matched to the approved design file)
   ============================================================ */
:root {
  --ink: #0D0E12;
  --ink-deep: #0A0B0E;
  --ink-soft: #171418;
  --ink-line: rgba(232, 167, 160, 0.12);
  --ink-line-strong: rgba(232, 167, 160, 0.35);
  --rose: #E8A7A0;
  --cream: #F7F0EC;
  --muted: #BDA9A4;
  --muted-dim: #8a7f7a;
  --muted-dimmer: #6f645f;
  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', sans-serif;
}

* { box-sizing: border-box; }

body {
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 400;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
::selection { background: var(--rose); color: var(--ink); }

.nz-container { max-width: 1312px; margin: 0 auto; padding: 0 64px; }
@media (max-width: 900px) { .nz-container { padding: 0 24px; } }
.nz-section { padding: 90px 0; }
.nz-eyebrow { font-size: 12px; letter-spacing: 0.28em; text-transform: uppercase; margin: 0 0 16px; }
.nz-accent { color: var(--rose); }
.nz-center { text-align: center; }
.nz-moon { color: var(--rose); font-size: 18px; }

.nz-link-underline { position: relative; font-size: 12.5px; color: var(--rose); }
.nz-link-underline::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--rose); transition: width 0.3s ease;
}
.nz-link-underline:hover::after { width: 100%; }

.nz-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 15px 32px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; font-weight: 600;
  border: none; cursor: pointer; transition: opacity 0.25s ease, background 0.25s ease;
  font-family: var(--font-body);
}
.nz-btn-primary { background: var(--rose); color: var(--ink); }
.nz-btn-primary:hover { opacity: 0.88; }
.nz-btn-outline { background: transparent; color: var(--cream); border: 1px solid var(--ink-line-strong); }
.nz-btn-outline:hover { border-color: var(--rose); }

.nz-arrow-btn {
  width: 44px; height: 44px; border-radius: 50%; background: rgba(13,14,18,.55);
  border: 1px solid var(--ink-line-strong); color: var(--cream); font-size: 20px; cursor: pointer;
  display: flex; align-items: center; justify-content: center; transition: border-color 0.2s ease;
}
.nz-arrow-btn:hover { border-color: var(--rose); }
.nz-arrow-btn-sm { width: 36px; height: 36px; font-size: 16px; background: transparent; }

/* ============================================================
   Announcement marquee
   ============================================================ */
.nz-announcement { background: #111216; padding: 9px 0; border-bottom: 1px solid var(--ink-line); overflow: hidden; }
.nz-marquee-track { display: flex; width: max-content; gap: 56px; animation: nzMarquee 26s linear infinite; }
.nz-marquee-group { display: flex; gap: 56px; }
.nz-marquee-track span {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted);
  font-weight: 500; white-space: nowrap;
}
.nz-marquee-track span.nz-accent { color: var(--rose); }
@keyframes nzMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================================================
   Header
   ============================================================ */
.nz-header { background: var(--ink); border-bottom: 1px solid var(--ink-line); position: sticky; top: 0; z-index: 40; }
.nz-header-inner {
  max-width: 1312px; margin: 0 auto; padding: 20px 64px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 16px;
}
@media (max-width: 900px) { .nz-header-inner { padding: 16px 24px; grid-template-columns: auto 1fr auto; } }

.nz-logo { display: flex; align-items: center; gap: 8px; justify-self: center; }
.nz-wordmark {
  font-family: var(--font-display); font-style: italic; font-size: 26px; letter-spacing: 0.02em; color: var(--rose);
}
.nz-nav ul { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nz-nav a { font-size: 12px; letter-spacing: 0.08em; color: var(--cream); text-transform: uppercase; transition: color 0.2s ease; }
.nz-nav a:hover { color: var(--rose); }

/* ============================================================
   Native mega menu
   ============================================================ */
.nz-nav-item { position: relative; }
.nz-mega-caret { font-size: 9px; display: inline-block; margin-left: 3px; transition: transform 0.2s ease; }
.nz-nav-item.has-mega:hover .nz-mega-caret { transform: rotate(180deg); }

.nz-mega-panel {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  z-index: 50; background: var(--ink); border: 1px solid var(--ink-line-strong);
  box-shadow: 0 24px 48px rgba(0,0,0,.45); min-width: 720px; max-width: 92vw;
  opacity: 0; visibility: hidden; transition: opacity 0.2s ease, transform 0.2s ease;
}
.nz-nav-item.has-mega:hover .nz-mega-panel { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nz-mega-panel-inner { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 32px 24px; padding: 40px; }

.nz-mega-column { display: flex; flex-direction: column; gap: 12px; }
.nz-mega-column-title { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--rose); font-weight: 600; }
.nz-mega-column-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.nz-mega-column-list a { font-size: 12.5px; color: var(--muted); text-transform: none; letter-spacing: normal; }
.nz-mega-column-list a:hover { color: var(--cream); }

.nz-mega-promo-tile {
  position: relative; grid-column: span 2; min-height: 160px; overflow: hidden; display: flex; align-items: flex-end;
  padding: 16px; background-size: cover; background-position: center; background-color: var(--ink-soft);
}
.nz-mega-promo-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,14,18,.85), rgba(13,14,18,.1)); }
.nz-mega-promo-label { position: relative; font-family: var(--font-display); font-size: 17px; color: var(--cream); text-transform: none; letter-spacing: normal; }

@media (max-width: 900px) {
  .nz-mega-panel { position: static; transform: none; opacity: 1; visibility: visible; min-width: 0; border: none; box-shadow: none; display: none; }
  .nz-nav-item.has-mega.is-open .nz-mega-panel { display: block; }
  .nz-mega-panel-inner { grid-template-columns: 1fr; padding: 16px 0; gap: 20px; }
}
.nz-header-actions { display: flex; align-items: center; gap: 22px; justify-self: end; }
.nz-icon-link { position: relative; color: var(--cream); display: flex; }
.nz-cart-count, .nz-wishlist-count {
  position: absolute; top: -8px; right: -9px; background: var(--rose); color: var(--ink);
  border-radius: 50%; width: 15px; height: 15px; font-size: 9px; font-weight: 600;
  display: flex; align-items: center; justify-content: center;
}
.nz-menu-toggle { display: none; flex-direction: column; gap: 4px; background: none; border: none; cursor: pointer; padding: 6px; }
.nz-menu-toggle span { width: 20px; height: 1.5px; background: var(--cream); }

@media (max-width: 900px) {
  .nz-menu-toggle { display: flex; }
  .nz-nav { display: none; width: 100%; order: 3; grid-column: 1 / -1; }
  .nz-nav.is-open { display: block; }
  .nz-nav ul { flex-direction: column; gap: 12px; padding: 16px 0; }
}

/* ============================================================
   Hero slider
   ============================================================ */
.nz-hero { position: relative; overflow: hidden; height: 780px; background: var(--ink-soft); }
@media (max-width: 900px) { .nz-hero { height: 560px; } }
.nz-hero-slide {
  position: absolute; inset: 0; display: flex; align-items: center;
  background-size: cover; background-position: center;
  opacity: 0; visibility: hidden; transition: opacity 0.8s ease;
}
.nz-hero-slide.is-active { opacity: 1; visibility: visible; position: relative; animation: nzHeroIn 0.6s ease; }
.nz-hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(13,14,18,.88) 10%, rgba(13,14,18,.35) 55%, rgba(13,14,18,.15) 100%); }
.nz-hero-content { position: relative; max-width: 560px; padding: 0 64px; display: flex; flex-direction: column; gap: 22px; }
.nz-hero-content h1 { font-family: var(--font-display); font-weight: 500; font-size: 64px; line-height: 1.08; margin: 0; color: var(--cream); }
.nz-hero-subtitle { color: var(--muted); max-width: 440px; font-size: 15px; line-height: 1.7; margin: 0; }
@keyframes nzHeroIn { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.nz-hero-dots { position: absolute; bottom: 26px; left: 64px; display: flex; gap: 8px; z-index: 5; }
.nz-hero-dot { width: 22px; height: 3px; background: rgba(247,240,236,.25); border: none; cursor: pointer; transition: background 0.3s ease; padding: 0; }
.nz-hero-dot.is-active { background: var(--rose); }
.nz-hero-prev { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); z-index: 5; }
.nz-hero-next { position: absolute; right: 24px; top: 50%; transform: translateY(-50%); z-index: 5; }

@media (max-width: 640px) {
  .nz-hero-content h1 { font-size: 38px; }
  .nz-hero-content { padding: 0 24px; }
}

/* ============================================================
   Trust strip
   ============================================================ */
.nz-trust-strip { border-bottom: 1px solid var(--ink-line); }
.nz-trust-strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); padding: 34px 64px; }
@media (max-width: 900px) { .nz-trust-strip-inner { grid-template-columns: repeat(2, 1fr); padding: 24px; gap: 20px; } }
.nz-trust-strip-item { display: flex; align-items: center; justify-content: center; gap: 12px; text-align: center; border-left: 1px solid var(--ink-line); }
.nz-trust-strip-item:first-child { border-left: none; }
.nz-trust-strip-item svg { color: var(--rose); flex-shrink: 0; }
.nz-trust-strip-item span { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); font-weight: 500; }

/* ============================================================
   Section headings
   ============================================================ */
.nz-section-title { font-family: var(--font-display); font-weight: 500; font-size: 38px; color: var(--cream); margin: 0 0 10px; }
.nz-section-sub { font-size: 14px; color: var(--muted); margin: 0; }
.nz-section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 40px; padding: 0 64px; }
@media (max-width: 900px) { .nz-section-header { padding: 0 24px; flex-direction: column; align-items: flex-start; gap: 16px; } }

/* ============================================================
   Category bento grid ("Shop Your Mood")
   ============================================================ */
.nz-bento-grid {
  display: grid; grid-template-columns: 1.4fr 1fr; grid-template-rows: 1fr 1fr; gap: 20px; height: 640px;
}
@media (max-width: 900px) { .nz-bento-grid { grid-template-columns: 1fr; grid-template-rows: auto; height: auto; } }
.nz-bento-tile {
  position: relative; overflow: hidden; cursor: pointer; border: none; text-align: left; padding: 0;
  background: linear-gradient(150deg, #1c161a, #211a1e);
}
.nz-bento-tile.is-tall { grid-row: 1 / 3; }
.nz-bento-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.nz-bento-tile:hover img { transform: scale(1.05); }
.nz-bento-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,14,18,.85), rgba(13,14,18,.05)); }
.nz-bento-tile-content { position: absolute; bottom: 30px; left: 30px; display: flex; flex-direction: column; gap: 7px; }
.nz-bento-tile-content h3 { font-family: var(--font-display); font-size: 24px; color: var(--cream); margin: 0; }
.nz-bento-tile-content span { font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--rose); }
.nz-bento-quad { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ============================================================
   Product carousels
   ============================================================ */
.nz-carousel { display: flex; gap: 28px; overflow-x: auto; scroll-behavior: smooth; padding: 0 64px 8px; scrollbar-width: none; }
.nz-carousel::-webkit-scrollbar { display: none; }
.nz-product-tile { flex: 0 0 280px; display: flex; flex-direction: column; gap: 12px; }
.nz-product-image { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--ink-soft); }
.nz-product-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s ease; }
.nz-product-tile:hover .nz-product-image img { transform: scale(1.05); }
.nz-wishlist-heart {
  position: absolute; top: 14px; right: 14px; font-size: 17px; color: var(--cream); cursor: pointer;
  transition: color 0.2s ease;
}
.nz-wishlist-heart:hover, .nz-wishlist-heart.is-active { color: var(--rose); }
.nz-sale-flag {
  position: absolute; top: 14px; left: 14px; background: var(--rose); color: var(--ink);
  font-size: 9.5px; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 8px; font-weight: 600;
}
.nz-product-meta { display: flex; flex-direction: column; gap: 3px; }
.nz-product-eyebrow { font-size: 10px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-dim); }
.nz-product-name { font-family: var(--font-display); font-size: 16px; color: var(--cream); }
.nz-product-price-row { display: flex; gap: 8px; align-items: baseline; }
.nz-product-price-row .price { font-size: 13.5px; color: var(--rose); }
.nz-product-price-row .price del { color: var(--muted-dimmer); opacity: 1; text-decoration: line-through; margin-right: 6px; }
.nz-product-price-row .price ins { text-decoration: none; }
.nz-product-price { font-size: 13.5px; color: var(--rose); }
.nz-product-compare { font-size: 12px; color: var(--muted-dimmer); text-decoration: line-through; }

/* ============================================================
   Circle category chips
   ============================================================ */
.nz-circle-row { display: flex; gap: 32px; overflow-x: auto; justify-content: center; padding: 0 24px; scrollbar-width: none; }
.nz-circle-row::-webkit-scrollbar { display: none; }
.nz-circle-item { display: flex; flex-direction: column; align-items: center; gap: 12px; cursor: pointer; flex-shrink: 0; }
.nz-circle-thumb { width: 110px; height: 110px; border-radius: 50%; overflow: hidden; background: var(--ink-soft); }
.nz-circle-thumb img { width: 100%; height: 100%; object-fit: cover; }
.nz-circle-item span { font-family: var(--font-display); font-size: 15px; color: var(--cream); }

/* ============================================================
   WooCommerce product grid — themed to match carousel tiles
   ============================================================ */
.nightiez-shop-wrap { padding: 56px 0; }
.nz-product-grid, ul.products {
  display: grid !important; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)) !important;
  gap: 24px !important; list-style: none !important; margin: 0 !important; padding: 0 !important; float: none !important;
}
ul.products li.product {
  background: none; border: none; margin: 0 !important; padding: 0 !important; text-align: left;
  float: none !important; width: auto !important; clear: none !important;
}
ul.products li.product a { display: block; }
ul.products li.product a img { margin: 0 !important; }
ul.products li.product img {
  width: 100% !important; aspect-ratio: 3/4; object-fit: cover; transition: transform 0.7s ease;
}
ul.products li.product:hover img { transform: scale(1.05); }
ul.products li.product .woocommerce-loop-product__title {
  font-family: var(--font-display); font-size: 16px; color: var(--cream); margin: 12px 0 4px; font-weight: 400;
}
ul.products li.product .price { font-size: 13.5px; color: var(--rose); }
ul.products li.product .price del { color: var(--muted-dimmer); opacity: 1; margin-right: 6px; }
ul.products li.product .price ins { text-decoration: none; }
ul.products li.product .button {
  margin-top: 10px; background: var(--rose); color: var(--ink); border: none;
  padding: 10px 16px; font-size: 12px; text-transform: uppercase; letter-spacing: 0.05em;
}
ul.products li.product .button:hover { opacity: 0.88; }
ul.products li.product .onsale {
  background: var(--rose); color: var(--ink); font-size: 9.5px; text-transform: uppercase; font-weight: 600;
  padding: 4px 8px; min-height: 0; min-width: 0; border-radius: 0; left: 12px; top: 12px; right: auto;
}

/* Single product page */
.single-product .summary { font-family: var(--font-body); }
.single-product .product_title { font-family: var(--font-display); color: var(--cream); font-size: 34px; font-weight: 500; }
.single-product .price { color: var(--rose); font-size: 20px; }
.single-product .woocommerce-product-details__short-description { color: rgba(247,240,236,0.8); }
.single-product .single_add_to_cart_button {
  background: var(--rose) !important; color: var(--ink) !important; border: none !important;
  padding: 15px 32px !important; text-transform: uppercase; letter-spacing: 0.12em; font-size: 12px !important; font-weight: 600 !important;
}
.single-product .single_add_to_cart_button:hover { opacity: 0.88; }
.single-product table.variations select, .single-product .quantity input {
  background: var(--ink-soft); border: 1px solid var(--ink-line-strong); color: var(--cream); padding: 8px;
}

/* Cart / checkout */
.woocommerce-cart table.cart, .woocommerce-checkout table.shop_table, .woocommerce table.shop_table {
  background: var(--ink-soft); border: 1px solid var(--ink-line); color: var(--cream);
}
.woocommerce table.shop_table th { color: var(--muted); border-bottom: 1px solid var(--ink-line); }
.woocommerce table.shop_table td { border-bottom: 1px solid var(--ink-line); }
.woocommerce #payment, .woocommerce-checkout #payment { background: var(--ink-soft); border: 1px solid var(--ink-line); }
.woocommerce form .form-row input.input-text, .woocommerce form .form-row textarea, .woocommerce-checkout select {
  background: var(--ink); border: 1px solid var(--ink-line-strong); color: var(--cream); padding: 10px;
}
.woocommerce a.button, .woocommerce button.button, .woocommerce input.button, .woocommerce #respond input#submit {
  background: var(--rose); color: var(--ink); border: none; text-transform: uppercase; letter-spacing: 0.1em; font-weight: 600;
  font-size: 12px; padding: 13px 26px; border-radius: 0;
}
.woocommerce a.button:hover, .woocommerce button.button:hover, .woocommerce input.button:hover { opacity: 0.88; color: var(--ink); }
.woocommerce-message, .woocommerce-info, .woocommerce-error {
  background: var(--ink-soft) !important; border-top-color: var(--rose) !important; color: var(--cream) !important;
}
.widget_price_filter .price_slider_amount, .woocommerce .widget_layered_nav ul li a { color: var(--cream); }

/* ============================================================
   Promo / collection banner
   ============================================================ */
.nz-promo-banner {
  position: relative; overflow: hidden; padding: 90px 32px; text-align: center; min-height: 320px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, #1c161a, #211a1e); background-size: cover; background-position: center;
}
.nz-promo-overlay { position: absolute; inset: 0; background: rgba(13,14,18,0.6); }
.nz-promo-content { position: relative; }
.nz-promo-content h2 { font-family: var(--font-display); font-weight: 500; font-size: 36px; color: var(--cream); max-width: 560px; margin: 20px auto; }
.nz-promo-content p { color: var(--muted); max-width: 440px; margin: 0 auto 28px; font-size: 14px; }

/* ============================================================
   Trust grid ("Luxury you can trust")
   ============================================================ */
.nz-trust-grid-section { background: var(--ink-soft); border-top: 1px solid var(--ink-line); border-bottom: 1px solid var(--ink-line); padding: 90px 0; }
.nz-trust-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px 24px; margin-top: 48px; }
@media (min-width: 768px) { .nz-trust-grid { grid-template-columns: repeat(3, 1fr); } }
.nz-trust-item { display: flex; align-items: flex-start; gap: 12px; }
.nz-trust-item svg { color: var(--rose); flex-shrink: 0; margin-top: 2px; }
.nz-trust-item strong { display: block; color: var(--cream); font-size: 13.5px; font-weight: 500; margin-bottom: 4px; }
.nz-trust-item span { color: var(--muted); font-size: 11.5px; }

/* ============================================================
   Reviews / testimonials carousel
   ============================================================ */
.nz-testimonial-carousel { display: flex; gap: 28px; overflow-x: auto; scroll-behavior: smooth; padding: 0 64px 8px; scrollbar-width: none; }
.nz-testimonial-carousel::-webkit-scrollbar { display: none; }
.nz-testimonial-card { flex: 0 0 340px; border: 1px solid var(--ink-line); padding: 36px; display: flex; flex-direction: column; gap: 16px; }
.nz-testimonial-stars { color: var(--rose); font-size: 14px; letter-spacing: 0.05em; }
.nz-testimonial-quote { font-family: var(--font-display); font-style: italic; font-size: 16px; line-height: 1.6; color: var(--cream); margin: 0; }
.nz-testimonial-author { font-size: 12px; color: var(--muted-dim); }

/* ============================================================
   Instagram-style marquee gallery
   ============================================================ */
.nz-gallery-marquee { overflow: hidden; }
.nz-gallery-track { display: flex; width: max-content; gap: 12px; animation: nzMarquee 32s linear infinite; }
.nz-gallery-group { display: flex; gap: 12px; }
.nz-gallery-item { width: 220px; aspect-ratio: 1/1; background: var(--ink-soft); overflow: hidden; }
.nz-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   Generic pages
   ============================================================ */
.nz-page { padding: 64px 20px; max-width: 720px; }
.nz-page-title { font-family: var(--font-display); font-weight: 500; color: var(--cream); font-size: 32px; }
.nz-page-content { color: rgba(247,240,236,0.8); font-size: 15px; line-height: 1.7; }

/* ============================================================
   Footer
   ============================================================ */
.nz-footer { background: var(--ink-deep); padding: 80px 64px 32px; display: flex; flex-direction: column; gap: 64px; }
@media (max-width: 900px) { .nz-footer { padding: 56px 24px 24px; } }
.nz-footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 32px; }
@media (max-width: 900px) { .nz-footer-inner { grid-template-columns: 1fr 1fr; } }
.nz-footer-brand { display: flex; flex-direction: column; gap: 14px; }
.nz-footer-tagline { font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted-dim); }
.nz-footer-whatsapp { display: flex; align-items: center; gap: 8px; margin-top: 8px; cursor: pointer; }
.nz-footer-whatsapp-badge { width: 26px; height: 26px; border-radius: 50%; background: var(--rose); color: var(--ink); font-size: 9px; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.nz-footer-whatsapp span:last-child { font-size: 12px; color: var(--muted); }
.nz-footer-col { display: flex; flex-direction: column; gap: 14px; }
.nz-footer-col .nz-eyebrow { color: var(--cream); font-weight: 600; font-size: 11px; letter-spacing: 0.14em; margin: 0; }
.nz-footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.nz-footer-col ul a { color: var(--muted); font-size: 13px; }
.nz-footer-col ul a:hover { color: var(--cream); }
.nz-footer-bottom {
  border-top: 1px solid var(--ink-line); padding-top: 28px; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 16px;
}
.nz-footer-bottom p { color: var(--muted-dimmer); font-size: 12px; margin: 0; }
.nz-payment-badges { display: flex; gap: 10px; flex-wrap: wrap; }
.nz-payment-badges span {
  font-size: 10px; letter-spacing: 0.05em; color: var(--muted); border: 1px solid var(--ink-line-strong); padding: 5px 10px;
}

/* ============================================================
   Breadcrumb
   ============================================================ */
.nz-breadcrumb, .woocommerce-breadcrumb {
  padding: 20px 64px 0; display: flex; gap: 8px; font-size: 12px; color: var(--muted-dim);
}
.nz-breadcrumb a, .woocommerce-breadcrumb a { color: var(--muted-dim); }
.nz-breadcrumb .is-current, .woocommerce-breadcrumb > * { color: var(--cream); }

/* ============================================================
   Page banner (category / about / archive headers)
   ============================================================ */
.nz-page-banner { position: relative; height: 220px; margin: 24px 64px 0; overflow: hidden; background: linear-gradient(150deg, #1a1519, #221a1e); }
.nz-page-banner.nz-page-banner-tall { height: 420px; margin: 0; text-align: center; }
.nz-page-banner img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.nz-page-banner-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(13,14,18,.85) 40%, rgba(13,14,18,.15) 100%); }
.nz-page-banner-tall .nz-page-banner-overlay { background: linear-gradient(to top, rgba(13,14,18,.9), rgba(13,14,18,.2)); }
.nz-page-banner-content { position: absolute; inset: 0; display: flex; flex-direction: column; justify-content: center; padding: 0 48px; gap: 8px; }
.nz-page-banner-tall .nz-page-banner-content { align-items: center; text-align: center; }
.nz-page-banner-content h1 { font-family: var(--font-display); font-weight: 500; font-size: 40px; color: var(--cream); margin: 0; }
.nz-page-banner-tall .nz-page-banner-content h1 { font-size: 46px; font-weight: 600; }
.nz-page-banner-content p { font-size: 13.5px; color: var(--muted); margin: 0; }

/* ============================================================
   Shop layout — sidebar filters + product grid (Category / Search)
   ============================================================ */
.nz-shop-layout { display: grid; grid-template-columns: 240px 1fr; gap: 40px; padding: 40px 64px 110px; }
@media (max-width: 900px) { .nz-shop-layout { grid-template-columns: 1fr; padding: 24px 24px 80px; } }

.nz-shop-layout-outer:has(.nz-shop-sidebar) { display: grid; grid-template-columns: 240px 1fr; gap: 40px; align-items: start; }
@media (max-width: 900px) { .nz-shop-layout-outer:has(.nz-shop-sidebar) { grid-template-columns: 1fr; } }
.nz-shop-sidebar { display: flex; flex-direction: column; }

/* Cart and Checkout use the same WooCommerce content wrapper — give them
   their own column split instead of the shop's sidebar+grid split. */
body.woocommerce-cart .nz-shop-layout-outer,
body.woocommerce-checkout .nz-shop-layout-outer {
  display: grid; grid-template-columns: 1fr 380px; gap: 56px; align-items: start; padding: 32px 64px 100px;
}
@media (max-width: 900px) {
  body.woocommerce-cart .nz-shop-layout-outer, body.woocommerce-checkout .nz-shop-layout-outer {
    grid-template-columns: 1fr; padding: 24px;
  }
}
body.woocommerce-checkout .nz-shop-layout-outer { grid-template-columns: 1fr 400px; max-width: 1240px; }

/* My Account layout: WooCommerce's nav + content are siblings inside the
   page's .woocommerce wrapper — grid them into the sidebar layout. */
body.woocommerce-account .woocommerce {
  display: grid; grid-template-columns: 250px 1fr; gap: 56px; max-width: 1180px; margin: 0 auto; padding: 40px 32px 110px;
}
@media (max-width: 900px) { body.woocommerce-account .woocommerce { grid-template-columns: 1fr; padding: 24px; } }

.nz-filter-group { margin-bottom: 32px; }
.nz-filter-title { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); font-weight: 600; display: block; margin-bottom: 14px; }
.nz-filter-list { display: flex; flex-direction: column; gap: 10px; }
.nz-filter-list a, .nz-filter-list span { font-size: 13px; color: var(--muted); cursor: pointer; }
.nz-filter-list a.is-active, .nz-filter-list a:hover { color: var(--rose); }

.nz-size-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.nz-size-swatch {
  width: 38px; height: 38px; border: 1px solid var(--ink-line-strong); display: flex; align-items: center;
  justify-content: center; font-size: 12px; color: var(--cream); cursor: pointer; background: transparent;
}
.nz-size-swatch.is-active, .nz-size-swatch:hover { border-color: var(--rose); color: var(--rose); }

.nz-color-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.nz-color-swatch { width: 24px; height: 24px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; }
.nz-color-swatch.is-active { border-color: var(--cream); }

.nz-shop-toolbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.nz-shop-toolbar .nz-result-count { font-size: 13px; color: var(--muted); }
.nz-shop-toolbar select {
  font-size: 13px; color: var(--cream); border: 1px solid var(--ink-line-strong); padding: 9px 16px;
  background: transparent; cursor: pointer;
}

/* WooCommerce native widgets themed to match */
.widget_product_categories ul, .widget_layered_nav ul, .widget_layered_nav_filters ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.widget_product_categories a, .widget_layered_nav a { font-size: 13px; color: var(--muted); }
.widget_product_categories a:hover, .widget_layered_nav a:hover { color: var(--rose); }
.widget_price_filter .price_slider { margin-bottom: 16px; }
.widget_price_filter .ui-slider-range { background: var(--rose); }
.widget_price_filter .ui-slider-handle { background: var(--cream); border: none; border-radius: 50%; }
.widget_price_filter button { background: var(--rose); color: var(--ink); border: none; padding: 8px 16px; font-size: 11px; text-transform: uppercase; }

.nz-pagination, .woocommerce-pagination { display: flex; justify-content: center; gap: 10px; margin-top: 56px; }
.nz-pagination a, .nz-pagination span, .woocommerce-pagination .page-numbers {
  width: 38px; height: 38px; border: 1px solid var(--ink-line-strong); color: var(--cream);
  display: flex; align-items: center; justify-content: center; font-size: 13px;
}
.nz-pagination .is-active, .woocommerce-pagination .page-numbers.current {
  border-color: var(--rose); background: var(--rose); color: var(--ink);
}

/* ============================================================
   Single product — gallery, price, swatches, accordion
   ============================================================ */
.nz-product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; padding: 32px 64px 100px; }
@media (max-width: 900px) { .nz-product-layout { grid-template-columns: 1fr; gap: 32px; padding: 24px; } }

.single-product div.product {
  display: grid; grid-template-columns: 1fr 1fr; gap: 56px; max-width: 1312px; margin: 0 auto; padding: 32px 64px 60px;
}
@media (max-width: 900px) { .single-product div.product { grid-template-columns: 1fr; gap: 32px; padding: 24px; } }
.single-product div.product div.images { grid-column: 1; }
.single-product div.product div.summary { grid-column: 2; }
@media (max-width: 900px) { .single-product div.product div.images, .single-product div.product div.summary { grid-column: 1; } }
.single-product .woocommerce-tabs, .single-product .related.products {
  max-width: 1312px; margin: 0 auto; padding: 0 64px 60px;
}
@media (max-width: 900px) { .single-product .woocommerce-tabs, .single-product .related.products { padding: 0 24px 40px; } }
.single-product .related.products h2 { font-family: var(--font-display); font-weight: 500; font-size: 30px; color: var(--cream); margin: 0 0 36px; }

.woocommerce div.product div.images .flex-control-thumbs li img,
.nz-thumb { border: 2px solid transparent; cursor: pointer; }
.woocommerce div.product div.images .flex-control-thumbs li img.flex-active,
.nz-thumb.is-active { border-color: var(--rose); }

.nz-product-category-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-dim); }
.woocommerce div.product .product_title { font-family: var(--font-display); font-weight: 500; font-size: 36px; color: var(--cream); margin: 8px 0; }

.nz-rating-row { display: flex; align-items: center; gap: 10px; }
.nz-rating-row .stars { color: var(--rose); font-size: 14px; }
.nz-rating-row .count { font-size: 12px; color: var(--muted-dim); }

.nz-price-row { display: flex; align-items: baseline; gap: 12px; }
.nz-price-row .current { font-size: 26px; color: var(--rose); font-family: var(--font-display); }
.nz-price-row .compare { font-size: 16px; color: var(--muted-dimmer); text-decoration: line-through; }
.nz-price-row .save-badge { background: var(--rose); color: var(--ink); font-size: 10px; letter-spacing: 0.06em; text-transform: uppercase; padding: 4px 8px; font-weight: 600; }

.nz-attribute-label { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); font-weight: 600; }

.nz-qty-stepper { display: flex; align-items: center; border: 1px solid var(--ink-line-strong); }
.nz-qty-stepper button { width: 40px; height: 52px; background: none; border: none; color: var(--cream); font-size: 16px; cursor: pointer; }
.nz-qty-stepper input { width: 40px; height: 52px; text-align: center; background: none; border: none; color: var(--cream); font-size: 14px; }

.nz-add-to-bag-row { display: flex; gap: 14px; margin-top: 8px; align-items: stretch; }
.woocommerce div.product form.cart .button, .nz-add-to-bag-row .nz-btn-primary { flex: 1; }
.nz-wishlist-btn-lg { width: 52px; height: 52px; background: transparent; border: 1px solid var(--ink-line-strong); color: var(--cream); font-size: 18px; cursor: pointer; flex-shrink: 0; }

.nz-trust-mini-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; padding-top: 16px; border-top: 1px solid var(--ink-line); }
.nz-trust-mini { display: flex; align-items: center; gap: 10px; }
.nz-trust-mini svg { color: var(--rose); }
.nz-trust-mini span { font-size: 12px; color: var(--muted); }

.nz-accordion { display: flex; flex-direction: column; border-top: 1px solid var(--ink-line); margin-top: 8px; }
.nz-accordion-item { border-bottom: 1px solid var(--ink-line); }
.nz-accordion-trigger {
  display: flex; justify-content: space-between; align-items: center; padding: 18px 0; cursor: pointer;
  background: none; border: none; width: 100%; text-align: left; font-family: var(--font-body);
}
.nz-accordion-trigger span:first-child { font-size: 13px; color: var(--cream); font-weight: 500; }
.nz-accordion-trigger .nz-accordion-icon { color: var(--rose); font-size: 16px; transition: transform 0.2s ease; }
.nz-accordion-item.is-open .nz-accordion-icon { transform: rotate(45deg); }
.nz-accordion-body { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.nz-accordion-item.is-open .nz-accordion-body { max-height: 400px; padding-bottom: 18px; }
.nz-accordion-body p { font-size: 13px; color: var(--muted); line-height: 1.7; margin: 0; }

/* WooCommerce tabs restyled as the accordion above */
.woocommerce-tabs ul.tabs { display: none; }
.woocommerce-tabs .panel { border-top: 1px solid var(--ink-line); padding: 18px 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

/* ============================================================
   Cart page
   ============================================================ */
.nz-cart-layout { display: grid; grid-template-columns: 1fr 380px; gap: 56px; padding: 32px 64px 100px; }
@media (max-width: 900px) { .nz-cart-layout { grid-template-columns: 1fr; padding: 24px; } }

.woocommerce table.cart, .nz-cart-items { border: none; background: none; }
.woocommerce table.cart td, .woocommerce table.cart th { border: none; border-bottom: 1px solid var(--ink-line); }
.woocommerce table.cart img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.woocommerce table.cart .product-remove a { color: var(--muted-dim); text-decoration: underline; font-size: 12px; }
.woocommerce table.cart .quantity input { width: 50px; }

.nz-empty-state { padding: 80px 0; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; }
.nz-empty-state .icon { font-size: 40px; color: var(--muted); }
.nz-empty-state h2 { font-family: var(--font-display); font-size: 22px; color: var(--cream); margin: 0; }
.nz-empty-state p { font-size: 13px; color: var(--muted-dim); margin: 0; }

.nz-order-summary-card { background: var(--ink-soft); border: 1px solid var(--ink-line); padding: 32px; display: flex; flex-direction: column; gap: 20px; }
.nz-order-summary-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--cream); margin: 0; }
.nz-order-summary-line { display: flex; justify-content: space-between; font-size: 13px; }
.nz-order-summary-line .label { color: var(--muted); }
.nz-order-summary-line .value { color: var(--cream); }
.nz-order-summary-line .value.nz-accent { color: var(--rose); }

/* ============================================================
   Checkout page
   ============================================================ */
.nz-checkout-layout { max-width: 1240px; margin: 0 auto; padding: 48px 64px 100px; display: grid; grid-template-columns: 1fr 400px; gap: 64px; }
@media (max-width: 900px) { .nz-checkout-layout { grid-template-columns: 1fr; padding: 24px; } }

.nz-checkout-steps { display: flex; align-items: center; gap: 16px; margin-bottom: 32px; }
.nz-checkout-step { display: flex; align-items: center; gap: 8px; }
.nz-checkout-step-num {
  width: 26px; height: 26px; border-radius: 50%; font-size: 12px; display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ink-line-strong); color: var(--muted-dim);
}
.nz-checkout-step.is-active .nz-checkout-step-num { background: var(--rose); border-color: var(--rose); color: var(--ink); font-weight: 600; }
.nz-checkout-step span:last-child { font-size: 13px; color: var(--muted-dim); }
.nz-checkout-step.is-active span:last-child { color: var(--cream); }
.nz-checkout-step-line { flex: 1; height: 1px; background: var(--ink-line); }

.woocommerce-checkout input.input-text, .woocommerce-checkout select, .woocommerce-checkout textarea {
  background: transparent !important; border: 1px solid var(--ink-line-strong) !important; padding: 14px 16px !important;
  font-size: 13px !important; color: var(--cream) !important;
}
.woocommerce-checkout .form-row { margin-bottom: 16px; }
.woocommerce-checkout label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-dim); }

.nz-payment-method-card {
  display: flex; align-items: center; gap: 14px; padding: 18px 20px; border: 1px solid var(--ink-line); cursor: pointer;
}
.nz-payment-method-card.is-active { border-color: var(--rose); }
.nz-payment-method-radio { width: 18px; height: 18px; border-radius: 50%; border: 1px solid var(--rose); display: flex; align-items: center; justify-content: center; }
.nz-payment-method-radio .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--rose); display: none; }
.nz-payment-method-card.is-active .dot { display: block; }
.nz-payment-method-card span:last-child { font-size: 13px; color: var(--cream); }

/* ============================================================
   My Account
   ============================================================ */
.nz-account-layout { max-width: 1180px; margin: 0 auto; padding: 40px 32px 110px; display: grid; grid-template-columns: 250px 1fr; gap: 56px; }
@media (max-width: 900px) { .nz-account-layout { grid-template-columns: 1fr; padding: 24px; } }

.nz-account-profile { display: flex; align-items: center; gap: 14px; padding-bottom: 20px; border-bottom: 1px solid var(--ink-line); margin-bottom: 24px; }
.nz-account-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--rose); color: var(--ink);
  font-family: var(--font-display); font-size: 18px; font-weight: 600; display: flex; align-items: center; justify-content: center;
}
.nz-account-profile-name { font-size: 13px; color: var(--cream); display: block; }
.nz-account-profile-email { font-size: 11px; color: var(--muted-dim); display: block; }

.woocommerce-MyAccount-navigation ul { list-style: none; margin: 0; padding: 0; }
.woocommerce-MyAccount-navigation li a {
  display: flex; align-items: center; gap: 12px; padding: 13px 16px; font-size: 13px; color: var(--muted);
  border-left: 2px solid transparent;
}
.woocommerce-MyAccount-navigation li.is-active a { color: var(--rose); border-left-color: var(--rose); background: rgba(232,167,160,.06); }

.nz-account-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 20px; }
.nz-account-stat-card { border: 1px solid var(--ink-line); padding: 24px; display: flex; flex-direction: column; gap: 8px; }
.nz-account-stat-card .value { font-family: var(--font-display); font-size: 26px; color: var(--rose); }
.nz-account-stat-card .label { font-size: 12px; color: var(--muted-dim); }

.woocommerce-orders-table, .nz-order-table { width: 100%; border-collapse: collapse; }
.woocommerce-orders-table th, .nz-order-table th {
  font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--rose); text-align: left;
  padding: 14px 0; border-bottom: 1px solid var(--ink-line-strong);
}
.woocommerce-orders-table td, .nz-order-table td { padding: 14px 0; border-bottom: 1px solid var(--ink-line); font-size: 13px; color: var(--cream); }

/* ============================================================
   Login / Register (WooCommerce My Account, logged out)
   ============================================================ */
.nz-auth-layout { max-width: 920px; margin: 0 auto; padding: 56px 32px 110px; }
.nz-auth-intro { text-align: center; margin-bottom: 48px; }
.nz-auth-intro h1 { font-family: var(--font-display); font-weight: 600; font-size: 36px; color: var(--cream); margin: 0 0 10px; }
.nz-auth-intro p { font-size: 13.5px; color: var(--muted); margin: 0; }

.u-columns.woocommerce-Addresses, .nz-auth-split { display: grid; grid-template-columns: 1fr 1px 1fr; gap: 56px; }
@media (max-width: 700px) { .u-columns.woocommerce-Addresses, .nz-auth-split { grid-template-columns: 1fr; } }
.nz-auth-divider { background: var(--ink-line); width: 1px; }

.woocommerce form.login, .woocommerce form.register { display: flex; flex-direction: column; gap: 16px; border: none; padding: 0; }
.woocommerce form.login h2, .woocommerce form.register h2 { font-family: var(--font-display); font-size: 22px; color: var(--cream); }
.woocommerce form .form-row label { font-size: 11px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted-dim); }
.woocommerce-form-login__rememberme { font-size: 12px !important; color: var(--muted) !important; }
.woocommerce-LostPassword a { font-size: 12px; color: var(--rose); text-decoration: underline; }

/* ============================================================
   Track order
   ============================================================ */
.nz-track-layout { max-width: 680px; margin: 0 auto; padding: 64px 24px 110px; }
.nz-track-input-row { display: flex; gap: 12px; margin-bottom: 56px; }
.nz-track-input-row input {
  flex: 1; background: transparent; border: 1px solid var(--ink-line-strong); padding: 14px 16px;
  font-size: 13px; color: var(--cream);
}
.nz-track-card { border: 1px solid var(--ink-line); padding: 32px; display: flex; flex-direction: column; gap: 28px; }
.nz-track-steps { display: flex; justify-content: space-between; position: relative; }
.nz-track-steps-bg { position: absolute; top: 11px; left: 5%; right: 5%; height: 2px; background: var(--ink-line); }
.nz-track-steps-fill { position: absolute; top: 11px; left: 5%; height: 2px; background: var(--rose); }
.nz-track-step { display: flex; flex-direction: column; align-items: center; gap: 10px; flex: 1; position: relative; z-index: 1; }
.nz-track-step-dot { width: 22px; height: 22px; border-radius: 50%; border: 2px solid var(--rose); }
.nz-track-step-dot.is-filled { background: var(--rose); }
.nz-track-step span { font-size: 11px; color: var(--muted-dim); text-align: center; }
.nz-track-step.is-active span { color: var(--cream); }

/* ============================================================
   Thank you / order confirmation
   ============================================================ */
.nz-thankyou-layout { max-width: 720px; margin: 0 auto; padding: 72px 24px 100px; display: flex; flex-direction: column; align-items: center; gap: 20px; text-align: center; }
.nz-thankyou-check {
  width: 64px; height: 64px; border-radius: 50%; border: 2px solid var(--rose); display: flex;
  align-items: center; justify-content: center; color: var(--rose); font-size: 28px;
}
.nz-thankyou-layout h1 { font-family: var(--font-display); font-weight: 600; font-size: 38px; color: var(--cream); margin: 0; }
.nz-order-meta-row { display: flex; gap: 40px; margin-top: 12px; padding: 20px 32px; border: 1px solid var(--ink-line); flex-wrap: wrap; justify-content: center; }
.nz-order-meta-item { display: flex; flex-direction: column; gap: 4px; }
.nz-order-meta-item .label { font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--muted-dim); }
.nz-order-meta-item .value { font-family: var(--font-display); font-size: 18px; color: var(--cream); }

/* ============================================================
   Policies / FAQ — sidebar tab pages
   ============================================================ */
.nz-tab-page-layout { max-width: 960px; margin: 0 auto; padding: 56px 32px 110px; display: grid; grid-template-columns: 220px 1fr; gap: 56px; }
@media (max-width: 700px) { .nz-tab-page-layout { grid-template-columns: 1fr; } }
.nz-tab-nav { display: flex; flex-direction: column; gap: 4px; position: sticky; top: 32px; align-self: start; }
.nz-tab-nav button {
  padding: 12px 14px; font-size: 13px; color: var(--muted); background: none; border: none; text-align: left;
  cursor: pointer; font-family: var(--font-body);
}
.nz-tab-nav button.is-active { color: var(--rose); background: rgba(232,167,160,.08); }
.nz-tab-panel { display: none; }
.nz-tab-panel.is-active { display: block; }
.nz-tab-panel h1 { font-family: var(--font-display); font-weight: 600; font-size: 32px; color: var(--cream); margin: 0 0 24px; }
.nz-tab-panel p { font-size: 14px; line-height: 1.9; color: var(--muted); }

.nz-faq-item { border-bottom: 1px solid var(--ink-line); }
.nz-faq-question {
  display: flex; justify-content: space-between; align-items: center; padding: 20px 0; cursor: pointer;
  background: none; border: none; width: 100%; text-align: left; font-family: var(--font-body);
}
.nz-faq-question span:first-child { font-size: 14px; color: var(--cream); }
.nz-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.nz-faq-item.is-open .nz-faq-answer { max-height: 300px; padding-bottom: 20px; }
.nz-faq-answer p { font-size: 13px; color: var(--muted); line-height: 1.7; margin: 0; }

.nz-contact-form { display: flex; flex-direction: column; gap: 16px; }
.nz-contact-form input, .nz-contact-form textarea {
  background: transparent; border: 1px solid var(--ink-line-strong); padding: 14px 16px; font-size: 13px; color: var(--cream);
  font-family: var(--font-body); width: 100%;
}

/* ============================================================
   Mini-cart drawer
   ============================================================ */
.nz-drawer-overlay {
  position: fixed; inset: 0; background: rgba(13,14,18,.6); z-index: 90; opacity: 0; visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.nz-drawer-overlay.is-open { opacity: 1; visibility: visible; }

.nz-mini-cart {
  position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 92vw; background: var(--ink);
  border-left: 1px solid var(--ink-line-strong); z-index: 91; display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.35s cubic-bezier(.4,0,.2,1); box-shadow: -20px 0 60px rgba(0,0,0,.4);
}
.nz-mini-cart.is-open { transform: translateX(0); }

.nz-mini-cart-header {
  display: flex; justify-content: space-between; align-items: center; padding: 24px; border-bottom: 1px solid var(--ink-line);
}
.nz-mini-cart-header span { font-family: var(--font-display); font-size: 20px; color: var(--cream); }
.nz-mini-cart-close { background: none; border: none; color: var(--cream); font-size: 24px; cursor: pointer; line-height: 1; }

.nz-mini-cart-content { flex: 1; overflow-y: auto; display: flex; flex-direction: column; }
.nz-mini-cart-items { display: flex; flex-direction: column; padding: 8px 24px; }
.nz-mini-cart-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--ink-line); align-items: start; }
.nz-mini-cart-item-img img { width: 64px; aspect-ratio: 3/4; object-fit: cover; }
.nz-mini-cart-item-info { display: flex; flex-direction: column; gap: 4px; }
.nz-mini-cart-item-info a { font-size: 13px; color: var(--cream); }
.nz-mini-cart-item-variation { font-size: 11px; color: var(--muted-dim); }
.nz-mini-cart-item-price { font-size: 12px; color: var(--rose); }
.nz-mini-cart-item-remove { color: var(--muted-dim); font-size: 18px; line-height: 1; }
.nz-mini-cart-item-remove:hover { color: var(--rose); }
.nz-mini-cart-footer { padding: 20px 24px 24px; border-top: 1px solid var(--ink-line); margin-top: auto; }

/* ============================================================
   Variation swatches
   ============================================================ */
.nz-swatch-group { display: flex; flex-wrap: wrap; gap: 10px; margin: 4px 0 12px; }
.nz-swatch-color {
  width: 30px; height: 30px; border-radius: 50%; cursor: pointer; border: 2px solid transparent; padding: 0;
  box-shadow: 0 0 0 1px var(--ink-line-strong);
}
.nz-swatch-color.is-active { border-color: var(--cream); }
.nz-swatch-btn {
  min-width: 42px; height: 42px; padding: 0 14px; border: 1px solid var(--ink-line-strong); background: transparent;
  color: var(--cream); font-size: 12px; cursor: pointer; font-family: var(--font-body);
}
.nz-swatch-btn.is-active { border-color: var(--rose); background: var(--rose); color: var(--ink); font-weight: 600; }

/* ============================================================
   Search modal
   ============================================================ */
.nz-search-modal {
  position: fixed; inset: 0; z-index: 95; background: rgba(13,14,18,.85); display: flex; align-items: flex-start;
  justify-content: center; padding-top: 12vh; opacity: 0; visibility: hidden; transition: opacity 0.25s ease, visibility 0.25s ease;
}
.nz-search-modal.is-open { opacity: 1; visibility: visible; }
.nz-search-modal-box { width: 100%; max-width: 640px; padding: 0 24px; }
.nz-search-modal-input-row {
  display: flex; align-items: center; gap: 14px; border: 1px solid var(--ink-line-strong); background: var(--ink);
  padding: 6px 6px 6px 22px;
}
.nz-search-modal-input-row svg { color: var(--rose); flex-shrink: 0; }
.nz-search-modal-input-row input {
  flex: 1; background: transparent; border: none; padding: 16px 0; font-size: 16px; color: var(--cream);
  font-family: var(--font-body); outline: none;
}
.nz-search-modal-close { background: none; border: none; color: var(--muted); font-size: 22px; cursor: pointer; padding: 8px; }
.nz-search-modal-results { margin-top: 20px; max-height: 50vh; overflow-y: auto; display: flex; flex-direction: column; gap: 4px; }
.nz-search-result-item {
  display: grid; grid-template-columns: 48px 1fr auto; gap: 14px; align-items: center; padding: 10px; background: var(--ink-soft);
}
.nz-search-result-item img { width: 48px; aspect-ratio: 3/4; object-fit: cover; }
.nz-search-result-item .name { font-size: 13px; color: var(--cream); }
.nz-search-result-item .price { font-size: 12px; color: var(--rose); }
.nz-search-modal-empty { color: var(--muted); font-size: 13px; text-align: center; padding: 24px 0; }
.nz-search-modal-hint { color: var(--muted-dim); font-size: 12px; text-align: center; margin-top: 16px; }

/* ============================================================
   YITH WooCommerce Wishlist compatibility (styles the plugin's own
   markup to match, once installed — safe no-op if not installed)
   ============================================================ */
.yith-wcwl-add-to-wishlist { position: absolute; top: 14px; right: 14px; }
.yith-wcwl-add-to-wishlist a.add_to_wishlist,
.yith-wcwl-wishlistexistsbrowse a,
.yith-wcwl-wishlistaddedbrowse a { font-size: 0; }
.yith-wcwl-add-to-wishlist::before {
  content: "♡"; font-size: 17px; color: var(--cream); cursor: pointer; font-family: var(--font-body);
}
.yith-wcwl-wishlistexistsbrowse::before, .yith-wcwl-wishlistaddedbrowse::before { color: var(--rose); }
.yith-wcwl-add-to-wishlist .feedback { display: none; }
