/*
Theme Name: Qi.Zen.Art
Theme URI: https://qizenart.com
Author: Murat Erdoğan
Author URI: https://muraterdogan.tr
Description: Qi.Zen.Art için özel WooCommerce odaklı premium WordPress teması.
Version: 5.1.57
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 8.0
Text Domain: qizenart
Domain Path: /languages
*/


/* Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #2C2C2C;
  background-color: #F9F8F6;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.25s;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

input,
select,
textarea,
optgroup {
  font-family: inherit;
}

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

/* Fonts */
/* Variables */
:root {
  --cream: #F9F8F6;
  --sand: #F0EDE8;
  --warm-gray: #E8E4DF;
  --earth: #C4A882;
  --dark-earth: #8B7355;
  --coral: #E8A87C;
  --dark-coral: #D4845A;
  --olive: #A8B5A0;
  --dark-olive: #8B7355;
  --n900: #2C2C2C;
  --n700: #5A5A5A;
  --n600: #6C6C6C;
  --n500: #8A8A8A;
  --n400: #9A9A9A;
  --n300: #B8B8B8;
  --n100: #E5E5E5;
  --n50: #F5F5F5;
  --white: #FFFFFF;
  --error: #E85D5D;
  --dark: #1A1A1A;
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
  --radius-card: 24px;
  --radius-image: 20px;
  --radius-pill: 9999px;
  --max-width: 1280px;
  --nav-height: 78px;

  --color-earth: var(--earth);
  --color-neutral-900: var(--n900);
  --color-neutral-800: #3A3A3A;
  --color-neutral-700: var(--n700);
  --color-neutral-600: var(--n600);
  --color-neutral-500: var(--n500);
  --color-neutral-300: var(--n300);
  --color-neutral-100: var(--n100);
  --color-neutral-50: var(--n50);
  --color-sand: var(--sand);
  --color-cream: var(--cream);
  --color-warm-gray: var(--warm-gray);
}

/* Layout */
.qzen-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

@media (min-width: 1024px) {
  .qzen-container {
    padding: 0 48px;
  }
}

/* ============================================
   NAVIGATION
   ============================================ */
.qzen-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  background: var(--cream);
  z-index: 50;
  transition: all 0.3s;
}

.qzen-header--scrolled {
  background: rgba(249, 248, 246, 0.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 #E5E5E5;
}

.qzen-nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

@media (min-width: 1024px) {
  .qzen-nav {
    padding: 0 48px;
  }
}

.qzen-logo {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--n900);
  flex-shrink: 0;
}

.qzen-menu {
  display: none;
  align-items: center;
  gap: 32px;
  list-style: none;
}

@media (min-width: 1024px) {
  .qzen-menu {
    display: flex;
  }
}

.qzen-menu a {
  font-size: 14px;
  font-weight: 500;
  color: var(--n900);
  position: relative;
  padding-bottom: 2px;
}

.qzen-menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--earth);
  transition: width 0.25s;
}

.qzen-menu a:hover {
  color: var(--earth);
}

.qzen-menu a:hover::after {
  width: 100%;
}

.qzen-menu .current-menu-item a {
  color: var(--earth);
}

.qzen-menu .current-menu-item a::after {
  width: 100%;
}

.qzen-nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.qzen-nav-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--n900);
  position: relative;
  transition: color 0.25s;
}

.qzen-nav-btn:hover {
  color: var(--earth);
}

.qzen-cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  width: 18px;
  height: 18px;
  background: var(--coral);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
}

.qzen-menu-toggle {
  display: block;
}

@media (min-width: 1024px) {
  .qzen-menu-toggle {
    display: none;
  }
}

/* Mobile Menu */
.qzen-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85vw;
  max-width: 360px;
  background: var(--white);
  z-index: 55;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 24px;
}

.qzen-mobile-menu.is-open {
  transform: translateX(0);
}

.qzen-mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(26, 26, 26, 0.5);
  z-index: 54;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.qzen-mobile-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.qzen-mobile-menu a {
  display: block;
  padding: 16px 0;
  border-bottom: 1px solid var(--n50);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  color: var(--n900);
}

.qzen-mobile-menu a:hover {
  color: var(--earth);
}

/* ============================================
   BUTTONS
   ============================================ */
.qzen-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
}

.qzen-btn--primary {
  background: var(--n900);
  color: var(--white);
}

.qzen-btn--primary:hover {
  background: var(--dark);
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.qzen-btn--outline {
  background: transparent;
  color: var(--n900);
  border: 1px solid var(--n900);
}

.qzen-btn--outline:hover {
  background: var(--n900);
  color: var(--white);
}

.qzen-btn--white {
  background: var(--white);
  color: var(--dark-coral);
}

.qzen-btn--white:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: scale(1.02);
}

.qzen-btn--lg {
  padding: 16px 36px;
  font-size: 15px;
  letter-spacing: -0.01em;
}

.qzen-btn--ghost {
  background: transparent;
  color: var(--n900);
  border: 1.5px solid rgba(44, 44, 44, 0.14);
  font-weight: 600;
}

.qzen-btn--ghost:hover {
  background: var(--n900);
  color: var(--white);
  border-color: var(--n900);
}

/* ============================================
   HERO — ATELIER STORE
   ============================================ */
.qzen-hero--atelier {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  min-height: calc(100svh - var(--nav-height));
  display: flex;
  align-items: stretch;
  overflow: hidden;
  margin-top: calc(var(--nav-height) * -1);
  padding-top: var(--nav-height);
  background:
    linear-gradient(90deg, rgba(44, 33, 27, 0.88) 0%, rgba(44, 44, 44, 0.76) 48%, rgba(44, 44, 44, 0.18) 100%),
    linear-gradient(135deg, #2C211B 0%, #6B594B 48%, #E1D4C4 100%);
  color: var(--cream);
}

.qzen-hero--atelier::after {
  content: '';
  position: absolute;
  top: auto;
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(to top, rgba(14, 12, 10, 0.34), transparent);
  pointer-events: none;
}

.qzen-hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: clamp(34px, 5vw, 76px) clamp(20px, 5vw, 72px) clamp(38px, 5vw, 72px);
  gap: clamp(36px, 6vw, 88px);
}

.qzen-hero__content {
  max-width: 620px;
}

.qzen-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 100%;
  margin-bottom: clamp(22px, 3vw, 34px);
  color: rgba(249, 248, 246, 0.72);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}

.qzen-hero__line-deco {
  display: block;
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: #C4A882;
}

.qzen-hero__title {
  margin: 0;
  color: #F9F8F6;
  font-family: var(--font-display);
  font-size: clamp(56px, 8.2vw, 124px);
  font-weight: 400;
  letter-spacing: -0.04em;
  line-height: 0.9;
}

.qzen-hero__word {
  display: block;
}

.qzen-hero__word--accent {
  display: inline-block;
  color: #C4A882;
  font-style: italic;
}

.qzen-hero__desc {
  max-width: 470px;
  margin: 28px 0 0;
  color: rgba(249, 248, 246, 0.76);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.78;
}

.qzen-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
}

.qzen-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.qzen-hero__btn--primary {
  background: #F0EDE8;
  color: #2C2C2C;
}

.qzen-hero__btn--secondary {
  border: 1px solid rgba(249, 248, 246, 0.26);
  color: #F0EDE8;
}

.qzen-hero__btn:hover {
  transform: translateY(-2px);
}

.qzen-hero__btn--primary:hover {
  background: #C4A882;
  color: #2C2C2C;
}

.qzen-hero__btn--secondary:hover {
  background: rgba(249, 248, 246, 0.1);
  border-color: rgba(249, 248, 246, 0.46);
  color: #F9F8F6;
}

.qzen-hero__btn svg {
  transition: transform 0.24s ease;
}

.qzen-hero__btn:hover svg {
  transform: translateX(4px);
}

.qzen-hero__proof {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 520px;
  margin: clamp(34px, 4vw, 54px) 0 0;
  overflow: hidden;
  border: 1px solid rgba(249, 248, 246, 0.12);
  border-radius: 22px;
  background: rgba(249, 248, 246, 0.12);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.qzen-hero__proof div {
  min-width: 0;
  padding: 15px 16px;
  background: rgba(44, 44, 44, 0.28);
}

.qzen-hero__proof dt {
  margin-bottom: 5px;
  color: rgba(249, 248, 246, 0.46);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.qzen-hero__proof dd {
  margin: 0;
  color: #F9F8F6;
  font-size: 14px;
  font-weight: 800;
}

.qzen-hero__visual {
  position: relative;
  min-height: clamp(500px, 68vh, 760px);
  display: grid;
  align-items: center;
}

.qzen-hero__frame {
  position: relative;
  width: 100%;
  max-width: 650px;
  justify-self: end;
  aspect-ratio: 0.82;
  overflow: hidden;
  border-radius: 34px;
  background: #E8E4DF;
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
}

.qzen-hero__frame::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(to top, rgba(18, 14, 11, 0.2), transparent 45%);
  pointer-events: none;
}

.qzen-hero__frame img,
.qzen-hero__side-card img,
.qzen-hero__detail-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qzen-hero__frame img {
  transition: transform 0.7s ease;
}

.qzen-hero__frame:hover img {
  transform: scale(1.025);
}

.qzen-hero__side-card {
  position: absolute;
  left: 0;
  top: 11%;
  width: clamp(118px, 13vw, 176px);
  aspect-ratio: 0.78;
  min-height: 140px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 22px;
  background: #F0EDE8;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.22);
}

.qzen-hero__side-card span {
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 10px;
  display: inline-flex;
  justify-content: center;
  min-height: 28px;
  padding: 7px 10px;
  border-radius: var(--radius-pill);
  background: rgba(22, 18, 15, 0.76);
  color: #F0EDE8;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.qzen-hero__detail-card {
  position: absolute;
  right: clamp(0px, 2vw, 30px);
  bottom: 7%;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  align-items: center;
  gap: 13px;
  width: 58%;
  max-width: 300px;
  padding: 10px 14px 10px 10px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 20px;
  background: rgba(249, 248, 246, 0.88);
  color: #2C2C2C;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.24);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.qzen-hero__detail-card img {
  aspect-ratio: 1;
  min-height: 72px;
  border-radius: 14px;
}

.qzen-hero__detail-card strong,
.qzen-hero__detail-card span {
  display: block;
}

.qzen-hero__detail-card strong {
  font-size: 13px;
  font-weight: 900;
}

.qzen-hero__detail-card span {
  margin-top: 2px;
  color: rgba(33, 24, 18, 0.62);
  font-size: 12px;
}

/* Reveal Animations */
[data-reveal="zen"] {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1), transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal="zen"].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal="zen-img"] {
  opacity: 0;
  transform: translateY(30px) scale(0.96);
  transition: opacity 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s, transform 1.4s cubic-bezier(0.22, 1, 0.36, 1) 0.2s;
}

[data-reveal="zen-img"].is-revealed {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {

  [data-reveal="zen"],
  [data-reveal="zen-img"] {
    opacity: 1;
    transform: none;
    animation: none;
    transition: none;
  }
}

/* JS olmadan veya yüklenmeden önce hero içeriğini görünür tut */
body:not(.qzen-js-ready) [data-reveal="zen"],
body:not(.qzen-js-ready) [data-reveal="zen-img"] {
  opacity: 1;
  transform: none;
}

@media (max-width: 1100px) {
  .qzen-hero__inner {
    grid-template-columns: 1fr;
    padding-top: clamp(44px, 7vw, 70px);
  }

  .qzen-hero__content {
    max-width: 760px;
  }

  .qzen-hero__visual {
    min-height: 520px;
  }

  .qzen-hero__frame {
    justify-self: center;
    width: min(100%, 620px);
    aspect-ratio: 1.08;
  }

  .qzen-hero__side-card {
    left: max(0px, calc(50% - 330px));
  }
}

@media (max-width: 680px) {
  .qzen-hero--atelier {
    min-height: auto;
  }

  .qzen-hero__inner {
    gap: 30px;
    padding: 36px 18px 42px;
  }

  .qzen-hero__eyebrow {
    align-items: flex-start;
    font-size: 10px;
    letter-spacing: 0.13em;
  }

  .qzen-hero__line-deco {
    margin-top: 8px;
    width: 24px;
  }

  .qzen-hero__title {
    font-size: clamp(52px, 18vw, 76px);
  }

  .qzen-hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .qzen-hero__btn {
    width: 100%;
  }

  .qzen-hero__proof {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .qzen-hero__proof div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 13px 15px;
  }

  .qzen-hero__proof dt {
    margin: 0;
  }

  .qzen-hero__visual {
    min-height: 430px;
  }

  .qzen-hero__frame {
    width: 100%;
    aspect-ratio: 0.86;
    border-radius: 26px;
  }

  .qzen-hero__side-card {
    top: 12px;
    left: 12px;
    width: 108px;
    border-radius: 18px;
  }

  .qzen-hero__detail-card {
    right: 12px;
    bottom: 16px;
    width: min(280px, calc(100% - 24px));
    grid-template-columns: 60px 1fr;
  }
}


/* ============================================
   SECTIONS
   ============================================ */
.qzen-section {
  padding: 96px 0;
}

.qzen-section--sand {
  background: var(--sand);
}

.qzen-section--cream {
  background: var(--cream);
}

.qzen-section-title {
  margin-bottom: 48px;
}

.qzen-section-title h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  line-height: 1.2;
  color: var(--n900);
}

@media (min-width: 1024px) {
  .qzen-section-title h2 {
    font-size: 40px;
  }
}

.qzen-section-title__line {
  width: 60px;
  height: 2px;
  background: var(--earth);
  margin-top: 16px;
}

.qzen-section-title p {
  font-size: 16px;
  color: var(--n700);
  margin-top: 16px;
}

/* ============================================
   CATEGORIES
   ============================================ */
.qzen-categories-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 640px) {
  .qzen-categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .qzen-categories-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.qzen-category-card {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
}

.qzen-category-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.qzen-category-card:hover img {
  transform: scale(1.08);
}

.qzen-category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 26, 26, 0.6) 0%, rgba(26, 26, 26, 0.2) 100%);
  transition: all 0.3s;
}

.qzen-category-card:hover .qzen-category-card__overlay {
  background: linear-gradient(to top, rgba(26, 26, 26, 0.8) 0%, rgba(26, 26, 26, 0.4) 100%);
}

.qzen-category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  z-index: 2;
  transition: transform 0.3s;
}

.qzen-category-card:hover .qzen-category-card__content {
  transform: translateY(-4px);
}

.qzen-category-card__badge {
  display: inline-flex;
  padding: 4px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 12px;
}

.qzen-category-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
  color: var(--white);
  margin-bottom: 8px;
}

@media (min-width: 1024px) {
  .qzen-category-card__title {
    font-size: 28px;
  }
}

.qzen-category-card__desc {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 12px;
}

.qzen-category-card__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
}

.qzen-category-card__link:hover {
  text-decoration: underline;
}

/* ============================================
   PRODUCT CARD (Loop)
   ============================================ */
.qzen-products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

@media (min-width: 640px) {
  .qzen-products-grid {
    gap: 20px;
  }
}

@media (min-width: 1024px) {
  .qzen-products-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

.qzen-product-card {
  display: block;
  transition: transform 0.3s, box-shadow 0.3s;
}

.qzen-product-card:hover {
  transform: translateY(-4px);
}

.qzen-product-card__image {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: var(--n50);
}

.qzen-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.qzen-product-card:hover .qzen-product-card__image img {
  transform: scale(1.05);
}

.qzen-product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.qzen-product-card__badge--new {
  background: var(--coral);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.qzen-product-card__badge--handmade {
  background: var(--olive);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.qzen-product-card__badge--limited {
  background: var(--earth);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.qzen-product-card__badge--discount {
  background: var(--coral);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.qzen-product-card__fav {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.25s;
}

.qzen-product-card__fav:hover {
  background: var(--white);
}

.qzen-product-card__quickadd {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  transition: all 0.25s;
  z-index: 2;
  white-space: nowrap;
}

.qzen-product-card:hover .qzen-product-card__quickadd {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.qzen-product-card__quickadd button {
  padding: 10px 24px;
  background: var(--white);
  color: var(--n900);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--n100);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
}

.qzen-product-card__quickadd button:hover {
  background: var(--n50);
}

.qzen-product-card__info {
  padding: 16px 4px 4px;
}

.qzen-product-card__category {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--warm-gray);
  font-size: 12px;
  font-weight: 500;
  color: var(--n700);
  margin-bottom: 8px;
}

.qzen-product-card__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 18px;
  color: var(--n900);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qzen-product-card__price {
  margin-top: 6px;
  font-size: 16px;
  font-weight: 600;
  color: var(--n900);
}

.qzen-product-card__price del {
  color: var(--n500);
  font-weight: 400;
  margin-left: 8px;
}

/* ============================================
   SINGLE PRODUCT (Modern V2)
   ============================================ */
.qzen-single-product {
  padding-top: calc(var(--nav-height) + 32px);
  min-height: 100vh;
}

.qzen-single-product__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--n500);
  margin-bottom: 32px;
}

.qzen-single-product__breadcrumb a:hover {
  color: var(--earth);
}

.qzen-single-product__breadcrumb-sep {
  color: var(--n300);
}

.qzen-single-product__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .qzen-single-product__wrapper {
    grid-template-columns: 55% 45%;
    gap: 64px;
  }
}

/* Gallery */
.qzen-product-gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qzen-product-gallery__main {
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--n50);
  position: relative;
}

.qzen-product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s;
}

.qzen-product-gallery__thumbs {
  display: flex;
  gap: 12px;
}

.qzen-product-gallery__thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}

.qzen-product-gallery__thumb:hover,
.qzen-product-gallery__thumb.is-active {
  border-color: var(--earth);
}

.qzen-product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Info */
.qzen-product-info {
  padding-top: 8px;
}

.qzen-product-info__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.qzen-product-info__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  line-height: 1.2;
  color: var(--n900);
}

@media (min-width: 1024px) {
  .qzen-product-info__title {
    font-size: 40px;
  }
}

.qzen-product-info__rating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.qzen-product-info__stars {
  display: flex;
  gap: 2px;
}

.qzen-product-info__stars .star {
  color: var(--earth);
  font-size: 16px;
}

.qzen-product-info__stars .star--empty {
  color: var(--n100);
}

.qzen-product-info__reviews {
  font-size: 14px;
  color: var(--n500);
}

.qzen-product-info__price {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
}

.qzen-product-info__price-current {
  font-size: 28px;
  font-weight: 700;
  color: var(--n900);
}

.qzen-product-info__price-old {
  font-size: 20px;
  color: var(--n500);
  text-decoration: line-through;
}

.qzen-product-info__price-discount {
  padding: 4px 12px;
  background: var(--coral);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
}

.qzen-product-info__desc {
  font-size: 16px;
  color: var(--n700);
  margin-top: 24px;
  line-height: 1.7;
}

/* Variants */
.qzen-product-variants {
  margin-top: 32px;
}

.qzen-product-variants__label {
  font-size: 14px;
  font-weight: 600;
  color: var(--n900);
  margin-bottom: 12px;
}

.qzen-product-variants__list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.qzen-product-variant {
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--n100);
  font-size: 14px;
  font-weight: 500;
  color: var(--n600);
  cursor: pointer;
  transition: all 0.2s;
  background: var(--white);
}

.qzen-product-variant:hover {
  border-color: var(--earth);
  color: var(--earth);
}

.qzen-product-variant.is-active {
  background: var(--n900);
  color: var(--white);
  border-color: var(--n900);
}

/* Color dots */
.qzen-product-colors {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.qzen-product-color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}

.qzen-product-color:hover {
  border-color: var(--n300);
}

.qzen-product-color.is-active {
  border-color: var(--n900);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--n900);
}

/* Add to Cart */
.qzen-product-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}

.qzen-product-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--n100);
  border-radius: var(--radius-pill);
  background: var(--white);
  height: 52px;
}

.qzen-product-quantity button {
  width: 44px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--n900);
  font-size: 18px;
  transition: background 0.2s;
  border-radius: var(--radius-pill);
}

.qzen-product-quantity button:hover {
  background: var(--n50);
}

.qzen-product-quantity span {
  width: 44px;
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

.qzen-product-addtocart {
  flex: 1;
  min-width: 200px;
  padding: 16px 32px;
  background: var(--n900);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: all 0.2s;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.qzen-product-addtocart:hover {
  background: var(--dark);
  transform: scale(1.01);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* Meta */
.qzen-product-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--n100);
}

.qzen-product-meta__label {
  font-size: 12px;
  color: var(--n500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzen-product-meta__value {
  font-size: 14px;
  font-weight: 500;
  color: var(--n900);
  margin-top: 4px;
}

/* Share & Fav */
.qzen-product-secondary {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 24px;
}

.qzen-product-secondary button {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--n600);
  transition: color 0.2s;
}

.qzen-product-secondary button:hover {
  color: var(--earth);
}

/* Tabs */
.qzen-product-tabs {
  margin-top: 64px;
}

.qzen-product-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--n100);
  margin-bottom: 32px;
}

.qzen-product-tabs__nav button {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--n500);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.25s;
  background: none;
  cursor: pointer;
}

.qzen-product-tabs__nav button:hover {
  color: var(--n900);
}

.qzen-product-tabs__nav button.is-active {
  color: var(--n900);
  border-bottom-color: var(--earth);
}

.qzen-product-tabs__panel {
  font-size: 16px;
  line-height: 1.8;
  color: var(--n700);
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Related Products */
.qzen-related {
  margin-top: 80px;
}

.qzen-related__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--n900);
  margin-bottom: 32px;
}

/* ============================================
   SHOP / ARCHIVE
   ============================================ */
.qzen-shop {
  padding-top: var(--nav-height);
  min-height: 100vh;
}

.qzen-shop__header {
  padding: 48px 0 32px;
}

.qzen-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 32px;
}

.qzen-filter-chips {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.qzen-filter-chips::-webkit-scrollbar {
  display: none;
}

.qzen-filter-chip {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--n100);
  font-size: 14px;
  font-weight: 500;
  color: var(--n600);
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
  background: transparent;
  text-decoration: none;
}

.qzen-filter-chip:hover {
  background: var(--n50);
}

.qzen-filter-chip.is-active {
  background: var(--n900);
  color: var(--white);
  border-color: var(--n900);
}

.qzen-sort {
  position: relative;
  margin-left: auto;
}

.qzen-sort select {
  padding: 10px 16px;
  border: 1px solid var(--n100);
  border-radius: var(--radius-pill);
  font-size: 14px;
  color: var(--n600);
  background: var(--white);
  cursor: pointer;
  font-family: inherit;
}

.qzen-sort select:focus {
  outline: none;
  border-color: var(--earth);
}

/* ============================================
   DISCOUNT BANNER
   ============================================ */
.qzen-banner {
  padding: 64px 0;
  background: linear-gradient(135deg, var(--dark-earth) 0%, var(--coral) 50%, var(--dark-coral) 100%);
}

.qzen-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

@media (min-width: 1024px) {
  .qzen-banner__inner {
    flex-direction: row;
    justify-content: space-between;
  }
}

.qzen-banner__content {
  flex: 1;
  text-align: center;
}

@media (min-width: 1024px) {
  .qzen-banner__content {
    text-align: left;
  }
}

.qzen-banner__badge {
  display: inline-flex;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.qzen-banner__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.25;
  color: var(--white);
}

@media (min-width: 1024px) {
  .qzen-banner__title {
    font-size: 40px;
  }
}

.qzen-banner__desc {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  margin-top: 16px;
}

.qzen-banner__image {
  flex-shrink: 0;
}

.qzen-banner__image img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

@media (min-width: 1024px) {
  .qzen-banner__image img {
    width: 280px;
    height: 280px;
  }
}

/* ============================================
   WORKSHOP STORY
   ============================================ */
.qzen-story {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

@media (min-width: 1024px) {
  .qzen-story {
    flex-direction: row;
    gap: 64px;
  }
}

.qzen-story__image {
  flex: 1;
  width: 100%;
}

.qzen-story__image img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-card);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.qzen-story__content {
  flex: 1;
}

.qzen-story__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--earth);
  text-transform: uppercase;
}

.qzen-story__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  line-height: 1.25;
  color: var(--n900);
  margin-top: 16px;
}

@media (min-width: 1024px) {
  .qzen-story__title {
    font-size: 40px;
  }
}

.qzen-story__text {
  font-size: 16px;
  color: var(--n700);
  margin-top: 20px;
  line-height: 1.7;
}

.qzen-story__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-weight: 500;
  color: var(--n900);
}

.qzen-story__link:hover {
  color: var(--earth);
}

/* ============================================
   NEWSLETTER
   ============================================ */
.qzen-newsletter {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.qzen-newsletter__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--n900);
}

.qzen-newsletter__desc {
  font-size: 16px;
  color: var(--n700);
  margin-top: 16px;
}

.qzen-newsletter__form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 640px) {
  .qzen-newsletter__form {
    flex-direction: row;
  }
}

.qzen-newsletter__form input[type="email"] {
  flex: 1;
  height: 52px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--n100);
  background: var(--white);
  font-size: 16px;
  font-family: inherit;
}

.qzen-newsletter__form input[type="email"]:focus {
  outline: none;
  border-color: var(--earth);
  box-shadow: 0 0 0 3px rgba(196, 168, 130, 0.22);
}

.qzen-newsletter__form button {
  height: 52px;
  padding: 0 32px;
  background: var(--n900);
  color: var(--white);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s;
}

.qzen-newsletter__form button:hover {
  background: var(--dark);
  transform: scale(1.02);
}

.qzen-newsletter__note {
  font-size: 12px;
  color: var(--n500);
  margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.qzen-footer {
  background: var(--n900);
  color: var(--cream);
  padding: 64px 0 32px;
}

.qzen-footer__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

@media (min-width: 768px) {
  .qzen-footer__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 48px;
  }
}

.qzen-footer__brand-name {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 24px;
}

.qzen-footer__brand-desc {
  font-size: 14px;
  color: var(--n500);
  margin-top: 12px;
}

.qzen-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.qzen-footer__social a {
  color: var(--n500);
  transition: color 0.25s;
}

.qzen-footer__social a:hover {
  color: var(--earth);
}

.qzen-footer__heading {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.qzen-footer__links {
  list-style: none;
}

.qzen-footer__links li {
  margin-bottom: 12px;
}

.qzen-footer__links a {
  font-size: 14px;
  color: var(--n500);
  transition: color 0.25s;
}

.qzen-footer__links a:hover {
  color: var(--earth);
}

.qzen-footer__bottom {
  border-top: 1px solid #3D3D3D;
  margin-top: 48px;
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

@media (min-width: 640px) {
  .qzen-footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.qzen-footer__copyright {
  font-size: 12px;
  color: var(--n500);
}

.qzen-footer__legal {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--n500);
}

.qzen-footer__legal a:hover {
  color: var(--earth);
}

/* ============================================
   WOO OVERRIDES
   ============================================ */
.woocommerce .products ul,
.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 16px !important;
  margin: 0 !important;
  list-style: none !important;
}

@media (min-width: 1024px) {

  .woocommerce .products ul,
  .woocommerce ul.products {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 24px !important;
  }
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: 100% !important;
  float: none !important;
  margin: 0 !important;
}

.woocommerce span.onsale {
  display: none !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px !important;
  padding: 0 !important;
  margin: 0 0 6px !important;
}

.woocommerce ul.products li.product .price {
  font-size: 16px !important;
  font-weight: 600;
  color: var(--n900);
}

.woocommerce ul.products li.product .price del {
  color: var(--n500);
  font-weight: 400;
}

.woocommerce ul.products li.product .price ins {
  text-decoration: none;
}

.woocommerce ul.products li.product .button {
  display: none !important;
}

.woocommerce .product .woocommerce-product-gallery {
  float: none !important;
  width: 100% !important;
}

.woocommerce .product .summary {
  float: none !important;
  width: 100% !important;
}

.woocommerce .product .product_title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 36px !important;
  line-height: 1.2;
  color: var(--n900);
}

@media (min-width: 1024px) {
  .woocommerce .product .product_title {
    font-size: 40px !important;
  }
}

.woocommerce .product .price {
  font-size: 24px !important;
  font-weight: 700;
  color: var(--n900) !important;
}

.woocommerce .product .price del {
  color: var(--n500);
  font-size: 18px !important;
  font-weight: 400;
}

.woocommerce .quantity .qty {
  width: 120px;
  height: 48px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--n100);
  text-align: center;
  font-weight: 600;
  font-size: 16px;
}

.woocommerce .product .single_add_to_cart_button {
  padding: 16px 48px !important;
  border-radius: var(--radius-pill) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  background: var(--n900) !important;
  color: var(--white) !important;
  transition: all 0.2s !important;
}

.woocommerce .product .single_add_to_cart_button:hover {
  background: var(--dark) !important;
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
}

.woocommerce .product table.variations td {
  border: none !important;
  padding: 8px 0 !important;
}

.woocommerce .product table.variations select {
  padding: 10px 16px;
  border-radius: 16px;
  border: 1px solid var(--n100);
  background: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  min-width: 200px;
}

.woocommerce .product table.variations select:focus {
  outline: none;
  border-color: var(--earth);
}

.woocommerce-tabs {
  margin-top: 64px !important;
}

.woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--n100) !important;
  padding: 0 !important;
  margin: 0 0 32px !important;
  list-style: none !important;
  display: flex !important;
}

.woocommerce-tabs ul.tabs::before,
.woocommerce-tabs ul.tabs::after {
  display: none !important;
}

.woocommerce-tabs ul.tabs li {
  background: none !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  border-radius: 0 !important;
  padding: 16px 24px !important;
  margin: 0 !important;
  font-size: 15px;
  font-weight: 500;
  color: var(--n500);
  margin-bottom: -1px !important;
}

.woocommerce-tabs ul.tabs li a {
  color: inherit !important;
  text-decoration: none !important;
}

.woocommerce-tabs ul.tabs li.active {
  color: var(--n900) !important;
  border-bottom-color: var(--earth) !important;
  background: none !important;
}

.woocommerce-Tabs-panel {
  font-size: 16px;
  line-height: 1.8;
  color: var(--n700);
  animation: fadeIn 0.3s ease;
}

.woocommerce-message,
.woocommerce-info,
.woocommerce-error {
  border-radius: 16px !important;
  padding: 16px 20px !important;
  font-size: 14px;
  margin-bottom: 24px !important;
  border: none !important;
}

.woocommerce-message {
  background: var(--olive) !important;
  color: var(--white) !important;
}

.woocommerce-info {
  background: var(--earth) !important;
  color: var(--white) !important;
}

.woocommerce-error {
  background: var(--error) !important;
  color: var(--white) !important;
}

.woocommerce-cart .cart-collaterals .cart_totals,
.woocommerce-checkout-review-order {
  background: var(--sand);
  padding: 32px;
  border-radius: var(--radius-card);
}

.woocommerce-cart .cart-collaterals .cart_totals h2,
.woocommerce-checkout-review-order h3 {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  color: var(--n900);
  margin-bottom: 24px;
}

.woocommerce .checkout-button {
  width: 100%;
  padding: 18px !important;
  border-radius: var(--radius-pill) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  background: var(--n900) !important;
}

.woocommerce #place_order {
  width: 100%;
  padding: 18px !important;
  border-radius: var(--radius-pill) !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  background: var(--n900) !important;
  margin-top: 24px !important;
}

.woocommerce nav.woocommerce-pagination {
  margin-top: 48px;
}

.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
  display: flex;
  justify-content: center;
  gap: 8px;
  list-style: none !important;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 500;
  color: var(--n600);
  background: var(--white);
  border: 1px solid var(--n100);
  transition: all 0.2s;
  text-decoration: none;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--sand);
  border-color: var(--earth);
  color: var(--n900);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--n900);
  color: var(--white);
  border-color: var(--n900);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 639px) {
  .qzen-section {
    padding: 64px 0;
  }

  .qzen-section-title h2 {
    font-size: 28px;
  }

  .qzen-footer__grid {
    grid-template-columns: 1fr;
  }

  .woocommerce .products ul,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--earth);
  border-radius: var(--radius-pill);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-earth);
}

/* ============================================
   SINGLE PRODUCT V2 - ADDITIONAL STYLES
   ============================================ */

/* Breadcrumb */
.qzen-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--n500);
  margin-bottom: 32px;
  flex-wrap: wrap;
}

.qzen-breadcrumb a {
  color: var(--n700);
  transition: color 0.2s;
}

.qzen-breadcrumb a:hover {
  color: var(--earth);
}

.qzen-breadcrumb__sep {
  display: flex;
  align-items: center;
  color: var(--n300);
}

.qzen-breadcrumb__cat {
  color: var(--n700);
}

.qzen-breadcrumb__cat a {
  color: var(--n700);
}

.qzen-breadcrumb__current {
  color: var(--n900);
  font-weight: 500;
}

/* Product Info Badges */
.qzen-product-info__badge {
  display: inline-flex;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
}

.qzen-product-info__badge--new {
  background: var(--coral);
  color: var(--white);
}

.qzen-product-info__badge--handmade {
  background: var(--olive);
  color: var(--white);
}

.qzen-product-info__badge--limited {
  background: var(--earth);
  color: var(--white);
}

.qzen-product-info__badge--discount {
  background: var(--coral);
  color: var(--white);
}

/* Divider */
.qzen-product-divider {
  height: 1px;
  background: var(--n100);
  margin: 28px 0;
}

/* Variant Row */
.qzen-variant-row {
  margin-bottom: 20px;
}

.qzen-variant-row__label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--n900);
  margin-bottom: 10px;
}

/* Gallery Navigation Arrows */
.qzen-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--n900);
  z-index: 3;
  transition: all 0.2s;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.qzen-gallery__nav:hover {
  background: var(--white);
  color: var(--earth);
}

.qzen-gallery__nav--prev {
  left: 16px;
}

.qzen-gallery__nav--next {
  right: 16px;
}

/* Add to Cart Section */
.qzen-addtocart-section {
  margin-top: 28px;
}

.qzen-addtocart-form {
  margin: 0;
}

.qzen-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Quantity override for single product */
.qzen-product-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--n100);
  border-radius: var(--radius-pill);
  background: var(--white);
  overflow: hidden;
}

.qzen-product-quantity button {
  width: 44px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--n900);
  font-size: 18px;
  transition: background 0.2s;
  background: none;
  border: none;
  cursor: pointer;
}

.qzen-product-quantity button:hover {
  background: var(--n50);
}

.qzen-product-quantity input[type="number"] {
  width: 50px;
  height: 48px;
  text-align: center;
  font-weight: 600;
  font-size: 15px;
  border: none;
  background: transparent;
  -moz-appearance: textfield;
}

.qzen-product-quantity input[type="number"]::-webkit-outer-spin-button,
.qzen-product-quantity input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Color Tooltip */
.qzen-product-color {
  position: relative;
}

.qzen-product-color__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.9);
  background: var(--n900);
  color: var(--white);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  pointer-events: none;
}

.qzen-product-color:hover .qzen-product-color__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) scale(1);
}

/* Out of Stock */
.qzen-outofstock {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  background: var(--n50);
  border-radius: var(--radius-image);
  color: var(--n500);
  font-size: 14px;
}

/* Meta Items */
.qzen-meta-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.qzen-meta-item__icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--earth);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Secondary Actions */
.qzen-action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--n700);
  transition: color 0.2s;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

.qzen-action-btn:hover {
  color: var(--earth);
}

.qzen-action-btn svg {
  transition: transform 0.2s;
}

.qzen-action-btn:hover svg {
  transform: scale(1.1);
}

/* Wishlist button active state */
.qzen-wishlist-btn.is-active svg {
  fill: var(--coral);
  stroke: var(--coral);
}

/* Trust Badges */
.qzen-trust-badges {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--n100);
  flex-wrap: wrap;
}

.qzen-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--n700);
  font-weight: 500;
}

.qzen-trust-item svg {
  color: var(--olive);
  flex-shrink: 0;
}

/* Tab Buttons (modern override) */
.qzen-tab__btn {
  padding: 16px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--n500);
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  transition: all 0.25s;
  background: none;
  cursor: pointer;
}

.qzen-tab__btn:hover {
  color: var(--n900);
}

.qzen-tab__btn.is-active {
  color: var(--n900);
  border-bottom-color: var(--earth);
}

.qzen-tab__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--n100);
  color: var(--n700);
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  margin-left: 4px;
}

/* Tab Content */
.qzen-tabs__content {
  padding-top: 32px;
}

.qzen-tab__text {
  font-size: 16px;
  line-height: 1.8;
  color: var(--n700);
}

.qzen-tab__text p {
  margin-bottom: 16px;
}

.qzen-tab__empty {
  font-size: 15px;
  color: var(--n500);
  font-style: italic;
  padding: 24px 0;
}

/* Details Table */
.qzen-details-table {
  width: 100%;
  max-width: 600px;
  border-collapse: collapse;
}

.qzen-details-table th,
.qzen-details-table td {
  padding: 14px 16px;
  text-align: left;
  font-size: 15px;
  border-bottom: 1px solid var(--n100);
}

.qzen-details-table th {
  width: 40%;
  color: var(--n700);
  font-weight: 500;
}

.qzen-details-table td {
  color: var(--n900);
}

.qzen-details-table tr:last-child th,
.qzen-details-table tr:last-child td {
  border-bottom: none;
}

/* Wishlist Button Heart Animation */
@keyframes heartPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.2);
  }

  100% {
    transform: scale(1);
  }
}

.qzen-wishlist-btn.is-active {
  animation: heartPulse 0.3s ease;
}


/* ============================================
   FINALIZATION PATCH v2.0.1
   ============================================ */
.qzen-header-spacer {
  height: 72px;
}

.qzen-mobile-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.qzen-mobile-menu__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--n900);
}

.qzen-product-card__image-wrap {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-image);
  overflow: hidden;
  background: var(--n50);
}

.qzen-product-card__image-wrap .qzen-product-card__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 0;
}

.qzen-product-card__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.qzen-product-card:hover .qzen-product-card__image-wrap img {
  transform: scale(1.05);
}

.qzen-product-card__title {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

/* Hero title override removed — see modern hero block above */
.qzen-section-title h2 {
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.qzen-btn,
.qzen-nav-btn,
.qzen-action-btn,
.qzen-add-to-cart {
  -webkit-tap-highlight-color: transparent;
}

.qzen-product-card a:focus-visible,
.qzen-nav-btn:focus-visible,
.qzen-btn:focus-visible,
.qzen-add-to-cart:focus-visible {
  outline: 2px solid var(--earth);
  outline-offset: 3px;
}

@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================
   FINAL HEADER + SINGLE PRODUCT REFINEMENT v2.0.2
   ============================================ */
.qzen-header {
  height: 78px;
  background: rgba(249, 248, 246, 0.86);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(44, 44, 44, 0.06);
}

.qzen-header--scrolled {
  height: 68px;
  background: rgba(249, 248, 246, 0.94);
  box-shadow: 0 12px 34px rgba(44, 44, 44, 0.05);
}

/* Dark hero header override */
.qzen-header--on-dark {
  background: transparent;
  border-bottom-color: transparent;
}

.qzen-header--on-dark .qzen-logo__mark {
  background: #F0EDE8;
  color: #2C2C2C;
}

.qzen-header--on-dark .qzen-logo__text {
  color: #F0EDE8;
}

.qzen-header--on-dark .qzen-menu__list>li>a {
  color: rgba(240, 237, 232, 0.72);
}

.qzen-header--on-dark .qzen-menu__list>li:hover>a,
.qzen-header--on-dark .qzen-menu__list>li.current-menu-item>a,
.qzen-header--on-dark .qzen-menu__list>li.current-menu-ancestor>a {
  background: rgba(196, 168, 130, 0.2);
  color: #F0EDE8;
}

.qzen-header--on-dark .qzen-nav-btn {
  background: rgba(240, 237, 232, 0.1);
  border-color: rgba(240, 237, 232, 0.1);
  color: #F0EDE8;
}

.qzen-header--on-dark .qzen-nav-btn:hover {
  background: rgba(240, 237, 232, 0.18);
  color: #F0EDE8;
}

.qzen-header--on-dark .qzen-nav-link {
  background: #F0EDE8;
  color: #2C2C2C;
}

.qzen-header--on-dark .qzen-nav-link:hover {
  background: var(--earth);
  color: #2C211B;
}

.qzen-header--on-dark .qzen-menu-toggle {
  color: #F0EDE8;
}

.qzen-nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 24px;
}

.qzen-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-style: normal;
  letter-spacing: -0.02em;
}

.qzen-logo__mark {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--n900);
  color: var(--cream);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 20px;
  line-height: 1;
}

.qzen-logo__text {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 25px;
  color: var(--n900);
}

.qzen-menu {
  justify-content: center;
}

.qzen-menu__list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.qzen-menu__list>li {
  position: relative;
}

.qzen-menu__list>li>a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 15px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--n700);
}

.qzen-menu__list>li>a::after {
  display: none;
}

.qzen-menu__list>li:hover>a,
.qzen-menu__list>li.current-menu-item>a,
.qzen-menu__list>li.current-menu-ancestor>a {
  background: rgba(196, 168, 130, 0.16);
  color: var(--n900);
}

.qzen-menu__list .sub-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  min-width: 220px;
  list-style: none;
  margin: 0;
  padding: 10px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(44, 44, 44, 0.08);
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(44, 44, 44, 0.12);
  transform: translate(-50%, 8px);
  opacity: 0;
  visibility: hidden;
  transition: all .22s ease;
}

.qzen-menu__list li:hover>.sub-menu,
.qzen-menu__list li:focus-within>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.qzen-menu__list .sub-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 13px;
  color: var(--n700);
}

.qzen-menu__list .sub-menu a:hover {
  background: var(--sand);
  color: var(--n900);
}

.qzen-nav-actions {
  gap: 10px;
}

.qzen-nav-link {
  display: none;
  align-items: center;
  height: 42px;
  padding: 0 18px;
  border-radius: var(--radius-pill);
  background: var(--n900);
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
}

.qzen-nav-link:hover {
  background: var(--earth);
  color: var(--white);
}

@media (min-width: 1180px) {
  .qzen-nav-link {
    display: inline-flex;
  }
}

.qzen-nav-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(44, 44, 44, 0.07);
}

.qzen-nav-btn:hover {
  background: var(--white);
  color: var(--n900);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(44, 44, 44, 0.08);
}

.qzen-cart-badge[hidden] {
  display: none;
}

.qzen-menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.qzen-menu-toggle__line {
  width: 18px;
  height: 1.5px;
  background: currentcolor;
  border-radius: 999px;
  transition: transform .2s ease, opacity .2s ease;
}

.qzen-mobile-menu {
  width: 90vw;
  max-width: 420px;
  padding: 26px;
  background: linear-gradient(145deg, var(--white), var(--cream));
  box-shadow: 40px 0 90px rgba(44, 44, 44, 0.16);
  display: flex;
  flex-direction: column;
}

.qzen-mobile-overlay {
  background: rgba(26, 26, 26, 0.42);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.qzen-mobile-menu__head {
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(44, 44, 44, 0.07);
  margin-bottom: 18px;
}

.qzen-mobile-menu__body {
  flex: 1;
  overflow-y: auto;
}

.qzen-mobile-menu__nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qzen-mobile-menu a {
  border-bottom: 1px solid rgba(44, 44, 44, 0.07);
  font-size: 24px;
  line-height: 1.15;
  padding: 18px 0;
}

.qzen-mobile-menu .sub-menu a {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  padding-left: 16px;
  color: var(--n600);
}

.qzen-mobile-menu__foot {
  margin-top: 28px;
  padding: 20px;
  border-radius: 22px;
  background: var(--sand);
}

.qzen-mobile-menu__foot p {
  color: var(--n700);
  font-size: 14px;
  margin-bottom: 16px;
}

.qzen-mobile-menu__cta {
  display: inline-flex !important;
  justify-content: center;
  width: 100%;
  padding: 13px 18px !important;
  border: 0 !important;
  border-radius: var(--radius-pill);
  background: var(--n900);
  color: var(--white) !important;
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-size: 13px !important;
  font-weight: 700;
}

.qzen-header-spacer {
  height: 78px;
}

@media (max-width: 1023px) {
  .qzen-nav {
    display: flex;
  }

  .qzen-logo__text {
    font-size: 22px;
  }

  .qzen-header,
  .qzen-header--scrolled {
    height: 70px;
  }

  .qzen-header-spacer {
    height: 70px;
  }
}

.qzen-single-product {
  padding-top: 34px;
  padding-bottom: 90px;
  background: radial-gradient(circle at top left, rgba(196, 168, 130, 0.16), transparent 34%), var(--cream);
}

.qzen-breadcrumb {
  margin-bottom: 26px;
  font-size: 12px;
}

.qzen-breadcrumb__current {
  max-width: 360px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.qzen-single-product__wrapper {
  align-items: start;
  gap: clamp(32px, 5vw, 72px);
}

@media (min-width: 1024px) {
  .qzen-single-product__wrapper {
    grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  }
}

.qzen-product-gallery {
  position: sticky;
  top: 104px;
}

.qzen-product-gallery__main {
  aspect-ratio: 4 / 5;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--sand), var(--white));
  box-shadow: 0 30px 80px rgba(44, 44, 44, 0.09);
}

.qzen-product-gallery__main::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.52);
  border-radius: inherit;
}

.qzen-product-gallery__main img {
  transform: scale(1.001);
}

.qzen-product-gallery__thumbs {
  overflow-x: auto;
  padding: 4px 2px 10px;
  scrollbar-width: thin;
}

.qzen-product-gallery__thumb {
  width: 74px;
  height: 92px;
  flex: 0 0 auto;
  border-radius: 16px;
  border: 1px solid rgba(44, 44, 44, 0.08);
  background: var(--white);
  opacity: .72;
}

.qzen-product-gallery__thumb:hover,
.qzen-product-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--earth);
  box-shadow: 0 10px 24px rgba(196, 168, 130, 0.24);
}

.qzen-gallery__nav {
  width: 46px;
  height: 46px;
  font-size: 30px;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(44, 44, 44, 0.12);
}

.qzen-product-info {
  padding-top: 0;
}

.qzen-product-info__panel {
  position: sticky;
  top: 104px;
  padding: clamp(24px, 3vw, 36px);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(44, 44, 44, 0.07);
  box-shadow: 0 28px 90px rgba(44, 44, 44, 0.08);
  backdrop-filter: blur(14px);
}

.qzen-product-info__badges {
  margin-bottom: 18px;
}

.qzen-product-info__badge {
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.qzen-product-info__title {
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: .98;
  letter-spacing: -0.045em;
  max-width: 640px;
}

.qzen-product-info__summarybar {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 18px;
  color: var(--n600);
  font-size: 13px;
}

.qzen-product-info__rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--n700);
}

.qzen-product-info__stars {
  display: inline-flex;
  letter-spacing: 1px;
  color: var(--earth);
}

.qzen-product-info__stars .star--empty {
  color: var(--n100);
}

.qzen-product-info__stock .stock {
  margin: 0;
  color: var(--olive);
  font-weight: 700;
}

.qzen-product-info__stock .out-of-stock {
  color: var(--error);
}

.qzen-product-info__price {
  margin-top: 24px;
  font-size: clamp(28px, 3.4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--n900);
}

.qzen-product-info__price del {
  color: var(--n400, var(--n500));
  font-weight: 400;
  margin-right: 10px;
}

.qzen-product-info__price ins {
  text-decoration: none;
}

.qzen-product-info__desc {
  margin-top: 20px;
  font-size: 15.5px;
  line-height: 1.85;
  color: var(--n700);
}

.qzen-product-divider {
  margin: 26px 0;
  background: rgba(44, 44, 44, 0.08);
}

.qzen-purchase-title {
  font-family: var(--font-body);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--n500);
  margin-bottom: 14px;
}

.qzen-qty-row {
  display: grid;
  grid-template-columns: 138px 1fr;
  gap: 12px;
}

.qzen-product-quantity {
  height: 54px;
  border-color: rgba(44, 44, 44, 0.1);
}

.qzen-product-quantity button {
  height: 54px;
}

.qzen-product-quantity input[type="number"] {
  height: 54px;
}

.qzen-product-addtocart {
  min-height: 54px;
  border-radius: 18px;
  background: var(--n900);
  box-shadow: 0 16px 34px rgba(44, 44, 44, 0.16);
}

.qzen-product-addtocart:hover {
  background: var(--dark-earth);
  transform: translateY(-1px);
}

.qzen-variable-native-form table.variations {
  width: 100%;
  margin: 0 0 16px;
  border-collapse: separate;
  border-spacing: 0 12px;
}

.qzen-variable-native-form table.variations th,
.qzen-variable-native-form table.variations td {
  display: block;
  padding: 0;
  text-align: left;
}

.qzen-variable-native-form table.variations label {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--n900);
}

.qzen-variable-native-form select {
  width: 100%;
  height: 50px;
  border: 1px solid rgba(44, 44, 44, 0.12);
  border-radius: 16px;
  background: var(--white);
  padding: 0 14px;
  color: var(--n900);
}

.qzen-variable-native-form .reset_variations {
  display: inline-flex;
  margin-top: 8px;
  font-size: 12px;
  color: var(--earth);
}

.qzen-variable-native-form .single_variation_wrap {
  margin-top: 18px;
}

.qzen-variable-native-form .woocommerce-variation-price {
  margin-bottom: 12px;
  font-size: 22px;
  font-weight: 800;
}

.qzen-variable-native-form .single_add_to_cart_button {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 18px;
  background: var(--n900);
  color: var(--white);
  font-weight: 700;
}

.qzen-product-secondary {
  gap: 14px;
  margin-top: 18px;
}

.qzen-action-btn {
  padding: 10px 13px;
  border-radius: var(--radius-pill);
  background: rgba(196, 168, 130, 0.12);
  color: var(--n700);
  font-weight: 600;
}

.qzen-trust-badges {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 22px;
  padding-top: 22px;
}

.qzen-trust-item {
  display: block;
  padding: 14px 12px;
  border-radius: 18px;
  background: var(--sand);
  font-size: 12px;
  line-height: 1.35;
}

.qzen-trust-item strong {
  display: block;
  color: var(--n900);
}

.qzen-trust-item span {
  color: var(--n600);
}

.qzen-product-meta--editorial {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 54px;
  padding: 24px;
  border: 1px solid rgba(44, 44, 44, 0.07);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.58);
}

.qzen-product-meta--editorial .qzen-meta-item {
  display: block;
}

.qzen-product-tabs {
  margin-top: 64px;
  padding: 34px;
  border-radius: 30px;
  background: var(--white);
  border: 1px solid rgba(44, 44, 44, 0.07);
}

.qzen-product-tabs__nav {
  overflow-x: auto;
  margin-bottom: 0;
}

.qzen-product-tabs__panel {
  display: none;
}

.qzen-product-tabs__panel.is-active {
  display: block;
}

.qzen-related {
  margin-top: 86px;
}

@media (max-width: 1023px) {

  .qzen-product-gallery,
  .qzen-product-info__panel {
    position: relative;
    top: auto;
  }

  .qzen-single-product {
    padding-top: 24px;
  }

  .qzen-product-info__panel {
    border-radius: 24px;
  }

  .qzen-product-meta--editorial {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .qzen-qty-row {
    grid-template-columns: 1fr;
  }

  .qzen-product-quantity {
    width: 100%;
    justify-content: space-between;
  }

  .qzen-trust-badges {
    grid-template-columns: 1fr;
  }

  .qzen-product-meta--editorial {
    grid-template-columns: 1fr;
  }

  .qzen-product-tabs {
    padding: 22px;
  }

  .qzen-product-tabs__nav button {
    padding: 14px 16px;
    white-space: nowrap;
  }
}

.qzen-newsletter__note a,
.qzen-entry-content a:not(.qzen-btn) {
  color: #6F5940;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.qzen-contact-card {
  display: grid;
  gap: 24px;
  margin-top: 28px;
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid rgba(44, 44, 44, .1);
  border-radius: 24px;
  background: #FFFDFA;
}

.qzen-contact-card>p {
  max-width: 58ch;
  margin: 0;
}

.qzen-contact-card dl {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  margin: 0;
}

.qzen-contact-card dl>div {
  padding: 16px;
  border-radius: 16px;
  background: #F0EDE8;
}

.qzen-contact-card dt {
  color: #6C6C6C;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.qzen-contact-card dd {
  margin: 6px 0 0;
  color: #2C2C2C;
  font-weight: 700;
}

.qzen-contact-card .qzen-btn {
  width: fit-content;
}

/* ============================================
   CONTACT PAGE
   Radius rule: 28px panels, 14px fields, pill actions.
   ============================================ */
.qzen-contact-page {
  overflow: hidden;
  background: #F9F8F6;
  color: #2C2C2C;
}

.qzen-contact-hero {
  display: flex;
  align-items: center;
  min-height: 100dvh;
  padding: calc(var(--nav-height) + 30px) 0 42px;
}

.qzen-contact-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, .82fr) minmax(0, 1.18fr);
  gap: clamp(42px, 6vw, 88px);
  align-items: center;
  width: 100%;
}

.qzen-contact-hero__copy {
  max-width: 520px;
}

.qzen-contact-kicker {
  margin: 0 0 20px;
  color: #6F5940;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.qzen-contact-hero h1 {
  max-width: 9ch;
  margin: 0;
  color: #2C2C2C;
  font-family: var(--font-display);
  font-size: clamp(48px, 6.2vw, 84px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}

.qzen-contact-hero__lead {
  max-width: 43ch;
  margin: 26px 0 0;
  color: #5A5A5A;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.72;
}

.qzen-contact-channels {
  margin-top: clamp(32px, 5vh, 52px);
  border-top: 1px solid rgba(44, 44, 44, .12);
}

.qzen-contact-channels a {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  padding: 15px 0;
  border-bottom: 1px solid rgba(44, 44, 44, .12);
  transition: color .25s ease, padding-left .25s cubic-bezier(.16, 1, .3, 1);
}

.qzen-contact-channels a:hover,
.qzen-contact-channels a:focus-visible {
  padding-left: 8px;
  color: #6F5940;
}

.qzen-contact-channels a:focus-visible,
.qzen-contact-assurance a:focus-visible {
  border-radius: 4px;
  outline: 3px solid rgba(111, 89, 64, .3);
  outline-offset: 4px;
}

.qzen-contact-channels span {
  color: #6C6C6C;
  font-size: 12px;
}

.qzen-contact-channels strong {
  overflow-wrap: anywhere;
  font-size: 14px;
  font-weight: 700;
}

.qzen-contact-hero__media {
  margin: 0;
}

.qzen-contact-hero__media img {
  width: 100%;
  height: clamp(430px, calc(100dvh - 190px), 630px);
  border-radius: 28px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0 32px 80px rgba(73, 57, 39, .14);
}

.qzen-contact-hero__media figcaption {
  max-width: 54ch;
  margin: 14px 0 0;
  color: #6C6C6C;
  font-size: 12px;
  line-height: 1.6;
}

.qzen-contact-form-section {
  padding: clamp(78px, 10vw, 138px) 0;
  background: #F0EDE8;
}

.qzen-contact-form-layout {
  display: grid;
  grid-template-columns: minmax(260px, .68fr) minmax(0, 1.32fr);
  gap: clamp(48px, 8vw, 112px);
  align-items: start;
}

.qzen-contact-form-intro {
  position: sticky;
  top: calc(var(--nav-height) + 36px);
}

.qzen-contact-form-intro h2,
.qzen-contact-assurance h2 {
  margin: 0;
  color: #2C2C2C;
  font-family: var(--font-display);
  font-size: clamp(38px, 4.8vw, 62px);
  font-weight: 400;
  letter-spacing: -.045em;
  line-height: 1.06;
}

.qzen-contact-form-intro>p {
  max-width: 38ch;
  margin: 20px 0 0;
  color: #5A5A5A;
  font-size: 16px;
  line-height: 1.75;
}

.qzen-contact-notes {
  display: grid;
  gap: 0;
  margin-top: 42px;
  border-top: 1px solid rgba(44, 44, 44, .12);
}

.qzen-contact-notes>div {
  padding: 18px 0;
  border-bottom: 1px solid rgba(44, 44, 44, .12);
}

.qzen-contact-notes strong,
.qzen-contact-notes span {
  display: block;
}

.qzen-contact-notes strong {
  color: #2C2C2C;
  font-size: 14px;
}

.qzen-contact-notes span {
  margin-top: 5px;
  color: #6C6C6C;
  font-size: 13px;
  line-height: 1.55;
}

.qzen-contact-form-panel {
  min-width: 0;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid rgba(44, 44, 44, .08);
  border-radius: 28px;
  background: #FFFDFA;
  box-shadow: 0 28px 70px rgba(74, 58, 41, .09);
}

.qzen-contact-notice {
  margin-bottom: 28px;
  padding: 18px 20px;
  border: 1px solid currentColor;
  border-radius: 14px;
}

.qzen-contact-notice strong,
.qzen-contact-notice p {
  display: block;
  margin: 0;
}

.qzen-contact-notice p {
  margin-top: 4px;
  font-size: 14px;
}

.qzen-contact-notice--success {
  background: #EDF3E9;
  color: #3C5532;
}

.qzen-contact-notice--error {
  background: #FFF0ED;
  color: #7A3028;
}

.qzen-contact-form,
.qzen-contact-field {
  display: grid;
}

.qzen-contact-form {
  gap: 24px;
}

.qzen-contact-form__row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.qzen-contact-field {
  min-width: 0;
  gap: 8px;
}

.qzen-contact-field label {
  color: #3F3F3F;
  font-size: 13px;
  font-weight: 700;
}

.qzen-contact-field label span {
  color: #7A3028;
}

.qzen-contact-field input,
.qzen-contact-field select,
.qzen-contact-field textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(44, 44, 44, .22);
  border-radius: 14px;
  outline: none;
  background: #F9F8F6;
  color: #2C2C2C;
  font-size: 16px;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.qzen-contact-field input,
.qzen-contact-field select {
  padding: 0 16px;
}

.qzen-contact-field textarea {
  min-height: 164px;
  padding: 14px 16px;
  resize: vertical;
}

.qzen-contact-field input:hover,
.qzen-contact-field select:hover,
.qzen-contact-field textarea:hover {
  border-color: rgba(44, 44, 44, .38);
}

.qzen-contact-field input:focus-visible,
.qzen-contact-field select:focus-visible,
.qzen-contact-field textarea:focus-visible {
  border-color: #6F5940;
  background: #FFFDFA;
  box-shadow: 0 0 0 4px rgba(111, 89, 64, .14);
}

.qzen-contact-field small {
  color: #64605A;
  font-size: 12px;
  line-height: 1.5;
}

.qzen-contact-field [aria-invalid="true"] {
  border-color: #9B3F34;
  box-shadow: 0 0 0 3px rgba(155, 63, 52, .11);
}

.qzen-contact-field-error,
.qzen-contact-consent-error {
  display: block;
  margin: 0;
  color: #7A3028;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.qzen-contact-consent-error {
  margin-top: -14px;
  padding-left: 31px;
}

.qzen-contact-consent {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: #55514C;
  font-size: 12px;
  line-height: 1.6;
  cursor: pointer;
}

.qzen-contact-consent input {
  width: 18px;
  height: 18px;
  margin-top: 1px;
  accent-color: #6F5940;
}

.qzen-contact-consent a {
  color: #55402D;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.qzen-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 172px;
  min-height: 54px;
  padding: 0 28px;
  border-radius: var(--radius-pill);
  background: #2C2C2C;
  color: #F9F8F6;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform .2s cubic-bezier(.16, 1, .3, 1), background-color .2s ease;
}

.qzen-contact-submit:hover,
.qzen-contact-submit:focus-visible {
  background: #55402D;
  transform: translateY(-2px);
}

.qzen-contact-submit:focus-visible {
  outline: 3px solid rgba(111, 89, 64, .3);
  outline-offset: 3px;
}

.qzen-contact-submit:active {
  transform: translateY(1px) scale(.99);
}

.qzen-contact-submit:disabled {
  cursor: wait;
  opacity: .66;
  transform: none;
}

.qzen-contact-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.qzen-contact-assurance {
  padding: clamp(72px, 9vw, 118px) 0;
  background: #F9F8F6;
}

.qzen-contact-assurance__inner {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: clamp(40px, 8vw, 120px);
  align-items: end;
}

.qzen-contact-assurance p {
  max-width: 54ch;
  margin: 0;
  color: #5A5A5A;
  font-size: 16px;
  line-height: 1.8;
}

.qzen-contact-assurance a {
  grid-column: 2;
  width: fit-content;
  margin-top: -72px;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  color: #55402D;
  font-size: 14px;
  font-weight: 800;
}

@media (prefers-reduced-motion: no-preference) {
  .qzen-contact-enter {
    animation: qzenContactEnter .8s cubic-bezier(.16, 1, .3, 1) both;
  }

  .qzen-contact-enter--media {
    animation-delay: .12s;
  }
}

@keyframes qzenContactEnter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1023px) {
  .qzen-contact-hero {
    min-height: auto;
    padding-top: calc(var(--nav-height) + 48px);
    padding-bottom: 72px;
  }

  .qzen-contact-hero__grid,
  .qzen-contact-form-layout,
  .qzen-contact-assurance__inner {
    grid-template-columns: 1fr;
  }

  .qzen-contact-hero__copy {
    max-width: 650px;
  }

  .qzen-contact-hero h1 {
    max-width: 11ch;
  }

  .qzen-contact-hero__media img {
    height: auto;
    aspect-ratio: 16 / 10;
  }

  .qzen-contact-form-intro {
    position: static;
    max-width: 680px;
  }

  .qzen-contact-assurance a {
    grid-column: auto;
    margin-top: -20px;
  }
}

@media (max-width: 639px) {
  .qzen-contact-hero {
    padding-top: calc(var(--nav-height) + 32px);
    padding-bottom: 58px;
  }

  .qzen-contact-hero__grid {
    gap: 38px;
  }

  .qzen-contact-kicker {
    margin-bottom: 14px;
  }

  .qzen-contact-hero h1 {
    font-size: clamp(44px, 14vw, 62px);
  }

  .qzen-contact-hero__lead {
    margin-top: 20px;
    font-size: 15px;
  }

  .qzen-contact-channels {
    margin-top: 32px;
  }

  .qzen-contact-channels a {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 12px;
  }

  .qzen-contact-hero__media img {
    aspect-ratio: 4 / 5;
  }

  .qzen-contact-form-section,
  .qzen-contact-assurance {
    padding: 70px 0;
  }

  .qzen-contact-form-layout {
    gap: 40px;
  }

  .qzen-contact-form-panel {
    padding: 22px;
    border-radius: 24px;
  }

  .qzen-contact-form__row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .qzen-contact-submit {
    width: 100%;
  }

  .qzen-contact-assurance__inner {
    gap: 22px;
  }

  .qzen-contact-assurance a {
    margin-top: 2px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .qzen-contact-enter,
  .qzen-contact-channels a,
  .qzen-contact-submit {
    animation: none;
    transition: none;
  }
}

/* =========================================================
   QZEN 2.0.4 — Atelier Single Product Redesign
   ========================================================= */
.qzen-single-product--atelier {
  background:
    radial-gradient(circle at 12% 0%, rgba(201, 160, 80, .13), transparent 28%),
    linear-gradient(180deg, #F9F8F6 0%, #F0EDE8 48%, #F9F8F6 100%);
  padding: 34px 0 96px;
  overflow: hidden;
}

.qzen-product-crumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 34px;
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(74, 55, 40, .58);
}

.qzen-product-crumbs a {
  color: rgba(74, 55, 40, .68);
}

.qzen-product-crumbs a:hover {
  color: var(--earth);
}

.qzen-product-crumbs strong {
  color: var(--earth);
  font-weight: 600;
}

.qzen-atelier-product {
  display: grid;
  grid-template-columns: 84px minmax(0, 1.08fr) minmax(390px, .82fr);
  gap: clamp(18px, 3vw, 38px);
  align-items: start;
}

.qzen-atelier-rail {
  position: sticky;
  top: 120px;
  display: grid;
  gap: 12px;
}

.qzen-atelier-thumb {
  width: 78px;
  height: 94px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(74, 55, 40, .14);
  background: rgba(255, 255, 255, .58);
  padding: 4px;
  opacity: .68;
  transition: opacity .25s ease, transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.qzen-atelier-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.qzen-atelier-thumb:hover,
.qzen-atelier-thumb.is-active {
  opacity: 1;
  transform: translateY(-2px);
  border-color: rgba(139, 115, 85, .34);
  box-shadow: 0 18px 42px rgba(74, 55, 40, .13);
}

.qzen-atelier-stage {
  position: sticky;
  top: 105px;
}

.qzen-atelier-media {
  position: relative;
  min-height: min(74vh, 760px);
  border-radius: 34px;
  overflow: hidden;
  background: #E8E4DF;
  border: 1px solid rgba(74, 55, 40, .12);
  box-shadow: 0 34px 90px rgba(74, 55, 40, .18);
}

.qzen-atelier-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, .04), rgba(0, 0, 0, .12));
  pointer-events: none;
}

.qzen-atelier-media img {
  width: 100%;
  height: 100%;
  min-height: min(74vh, 760px);
  object-fit: cover;
  transition: transform .45s ease, opacity .25s ease;
}

.qzen-atelier-media.is-switching img {
  opacity: .2;
  transform: scale(1.015);
}

.qzen-gallery-zoom,
.qzen-gallery-arrows {
  position: absolute;
  z-index: 2;
}

.qzen-gallery-zoom {
  left: 22px;
  bottom: 22px;
  border-radius: 999px;
  padding: 12px 18px;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(16px);
  color: var(--earth);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(0, 0, 0, .11);
}

.qzen-gallery-arrows {
  right: 20px;
  bottom: 20px;
  display: flex;
  gap: 8px;
}

.qzen-gallery-arrows button {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(74, 55, 40, .82);
  color: #fff;
  font-size: 18px;
  transition: transform .2s ease, background .2s ease;
}

.qzen-gallery-arrows button:hover {
  transform: translateY(-2px);
  background: var(--earth);
}

.qzen-atelier-summary {
  position: sticky;
  top: 104px;
}

.qzen-atelier-card {
  border-radius: 30px;
  padding: clamp(24px, 3vw, 38px);
  background: rgba(255, 252, 246, .78);
  border: 1px solid rgba(74, 55, 40, .13);
  box-shadow: 0 28px 84px rgba(74, 55, 40, .13);
  backdrop-filter: blur(22px);
}

.qzen-atelier-topline {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
  color: rgba(74, 55, 40, .68);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.qzen-atelier-topline a {
  color: inherit;
}

.qzen-atelier-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.qzen-atelier-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(139, 115, 85, .09);
  color: var(--earth);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.qzen-atelier-title {
  margin: 0 0 18px;
  max-width: 9.5em;
  font-family: var(--font-display);
  font-size: clamp(42px, 4.8vw, 72px);
  line-height: .93;
  letter-spacing: -.055em;
  color: #2C2C2C;
}

.qzen-atelier-metrics {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin: 0 0 18px;
}

.qzen-atelier-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--earth);
  font-size: 13px;
}

.qzen-atelier-rating span {
  color: #E8A87C;
  letter-spacing: -.08em;
}

.qzen-atelier-rating em {
  font-style: normal;
  color: rgba(74, 55, 40, .68);
}

.qzen-atelier-stock .stock {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  color: #7A8B6E;
}

.qzen-atelier-price {
  margin: 0 0 18px;
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 800;
  color: var(--earth);
}

.qzen-atelier-price del {
  opacity: .42;
  font-size: .62em;
  margin-right: 8px;
}

.qzen-atelier-desc {
  margin: 0 0 24px;
  color: rgba(44, 44, 44, .72);
  font-size: 15px;
  line-height: 1.72;
}

.qzen-buybox {
  border-radius: 24px;
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(248, 242, 231, .72));
  border: 1px solid rgba(74, 55, 40, .16);
}

.qzen-buybox__head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: end;
  margin-bottom: 16px;
}

.qzen-buybox__head span {
  font-weight: 800;
  color: #2C2C2C;
}

.qzen-buybox__head small {
  color: rgba(74, 55, 40, .66);
  font-size: 12px;
}

.qzen-buybox__row {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 12px;
  align-items: end;
}

.qzen-quantity-control>span {
  display: block;
  margin: 0 0 7px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  color: rgba(74, 55, 40, .68);
  text-transform: uppercase;
}

.qzen-product-quantity {
  height: 58px;
  display: grid;
  grid-template-columns: 38px 1fr 38px;
  align-items: center;
  border: 1px solid rgba(74, 55, 40, .18);
  border-radius: 18px;
  overflow: hidden;
  background: rgba(255, 255, 255, .74);
}

.qzen-product-quantity input {
  width: 100%;
  height: 100%;
  border: 0;
  background: transparent;
  text-align: center;
  font-weight: 800;
  color: #2C2C2C;
  appearance: textfield;
}

.qzen-product-quantity input::-webkit-outer-spin-button,
.qzen-product-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.qzen-qty-btn {
  height: 100%;
  color: var(--earth);
  font-size: 22px;
  transition: background .2s ease;
}

.qzen-qty-btn:hover {
  background: rgba(139, 115, 85, .08);
}

.qzen-product-addtocart,
.single_add_to_cart_button.button.alt {
  width: 100%;
  min-height: 58px;
  border-radius: 18px !important;
  background: #2C2C2C !important;
  color: #fff !important;
  border: 1px solid #2C2C2C !important;
  display: inline-flex !important;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  box-shadow: 0 18px 36px rgba(44, 44, 44, .22);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.qzen-product-addtocart small {
  display: block;
  font-size: 11px;
  font-weight: 500;
  opacity: .72;
}

.qzen-product-addtocart:hover,
.single_add_to_cart_button.button.alt:hover {
  transform: translateY(-2px);
  background: var(--earth) !important;
  box-shadow: 0 24px 46px rgba(44, 44, 44, .28);
}

.qzen-product-addtocart.is-loading,
.single_add_to_cart_button.loading {
  opacity: .72;
  pointer-events: none;
}

.qzen-variable-buybox form.variations_form.cart {
  margin: 0;
}

.qzen-variable-buybox table.variations {
  width: 100%;
  margin: 0 0 14px;
  border: 0;
}

.qzen-variable-buybox table.variations tr {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.qzen-variable-buybox table.variations th,
.qzen-variable-buybox table.variations td {
  display: block;
  padding: 0;
  border: 0;
  text-align: left;
}

.qzen-variable-buybox table.variations label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(74, 55, 40, .68);
}

.qzen-variable-buybox table.variations select {
  width: 100%;
  min-height: 54px;
  border-radius: 16px;
  border: 1px solid rgba(74, 55, 40, .18);
  background: rgba(255, 255, 255, .78);
  color: #2C2C2C;
  padding: 0 14px;
  font-weight: 700;
}

.qzen-variable-buybox .reset_variations {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  color: var(--earth);
}

.qzen-variable-buybox .woocommerce-variation-price {
  margin: 14px 0;
  font-size: 24px;
  font-weight: 800;
  color: var(--earth);
}

.qzen-variable-buybox .single_variation_wrap .quantity {
  margin-bottom: 12px;
}

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

.qzen-assurance-grid div {
  border-radius: 18px;
  padding: 14px 12px;
  background: rgba(255, 255, 255, .52);
  border: 1px solid rgba(74, 55, 40, .12);
}

.qzen-assurance-grid strong {
  display: block;
  color: #2C2C2C;
  font-size: 12px;
}

.qzen-assurance-grid span {
  display: block;
  margin-top: 3px;
  color: rgba(74, 55, 40, .66);
  font-size: 11px;
  line-height: 1.35;
}

.qzen-product-secondary {
  display: flex;
  gap: 10px;
}

.qzen-action-btn {
  flex: 1;
  min-height: 44px;
  border-radius: 999px;
  border: 1px solid rgba(139, 115, 85, .22);
  background: rgba(255, 255, 255, .5);
  color: var(--earth);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.qzen-action-btn:hover {
  background: rgba(139, 115, 85, .08);
}

.qzen-atelier-tabs {
  margin-top: 70px;
}

.qzen-spec-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.qzen-spec-grid div {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, .58);
  border: 1px solid rgba(74, 55, 40, .12);
}

.qzen-spec-grid span {
  display: block;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(74, 55, 40, .66);
  margin-bottom: 6px;
}

.qzen-spec-grid strong {
  color: #2C2C2C;
  font-size: 14px;
}

.qzen-sticky-cart {
  position: fixed;
  left: 50%;
  bottom: 18px;
  z-index: 80;
  transform: translateX(-50%) translateY(18px);
  opacity: 0;
  width: min(620px, calc(100% - 28px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 12px 12px 18px;
  border-radius: 24px;
  background: rgba(44, 44, 44, .92);
  color: #fff;
  box-shadow: 0 22px 60px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px);
  transition: opacity .25s ease, transform .25s ease;
}

.qzen-sticky-cart.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.qzen-sticky-cart__info {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.qzen-sticky-cart__info strong {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 13px;
}

.qzen-sticky-cart__info span {
  color: rgba(255, 255, 255, .72);
  font-size: 12px;
}

.qzen-sticky-cart__info del {
  opacity: .5;
}

.qzen-sticky-cart__btn {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #fff;
  color: #2C2C2C;
  padding: 13px 18px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.qzen-cart-toast {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 100;
  max-width: 360px;
  border-radius: 22px;
  padding: 16px 18px;
  background: #2C2C2C;
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .26);
  transform: translateY(16px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease, transform .22s ease;
}

.qzen-cart-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.qzen-cart-toast strong {
  display: block;
  margin-bottom: 4px;
}

.qzen-cart-toast span {
  color: rgba(255, 255, 255, .76);
  font-size: 13px;
}

.qzen-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  background: rgba(20, 14, 10, .86);
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .22s ease;
}

.qzen-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.qzen-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 24px;
  box-shadow: 0 30px 90px rgba(0, 0, 0, .35);
}

.qzen-lightbox button {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: #2C2C2C;
  font-size: 24px;
}

@media (max-width: 1180px) {
  .qzen-atelier-product {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .qzen-atelier-summary {
    grid-column: 1 / -1;
    position: static;
  }

  .qzen-atelier-stage {
    position: static;
  }

  .qzen-atelier-title {
    max-width: 100%;
  }
}

@media (max-width: 760px) {
  .qzen-single-product--atelier {
    padding-top: 20px;
  }

  .qzen-atelier-product {
    grid-template-columns: 1fr;
  }

  .qzen-atelier-rail {
    position: static;
    display: flex;
    overflow-x: auto;
    order: 2;
    padding-bottom: 4px;
  }

  .qzen-atelier-thumb {
    flex: 0 0 72px;
    height: 82px;
  }

  .qzen-atelier-stage {
    order: 1;
  }

  .qzen-atelier-summary {
    order: 3;
  }

  .qzen-atelier-media,
  .qzen-atelier-media img {
    min-height: 460px;
  }

  .qzen-atelier-media {
    border-radius: 24px;
  }

  .qzen-atelier-card {
    border-radius: 24px;
    padding: 22px;
  }

  .qzen-atelier-title {
    font-size: clamp(38px, 13vw, 56px);
  }

  .qzen-buybox__row {
    grid-template-columns: 1fr;
  }

  .qzen-assurance-grid,
  .qzen-spec-grid {
    grid-template-columns: 1fr;
  }

  .qzen-product-secondary {
    flex-direction: column;
  }

  .qzen-gallery-zoom {
    left: 14px;
    bottom: 14px;
    padding: 10px 13px;
  }

  .qzen-gallery-arrows {
    right: 14px;
    bottom: 14px;
  }

  .qzen-sticky-cart {
    bottom: 10px;
    border-radius: 20px;
  }
}

/* ============================================
   FEATURED PRODUCT SECTION (front-page)
   ============================================ */
.qzen-featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: start;
}

@media (min-width: 1024px) {
  .qzen-featured {
    grid-template-columns: 55% 45%;
    gap: 64px;
  }
}

.qzen-featured__gallery {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.qzen-featured__main-image {
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  background: var(--n50);
}

.qzen-featured__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qzen-featured__thumbs {
  display: flex;
  gap: 12px;
}

.qzen-featured__thumb {
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: border-color 0.2s;
}

.qzen-featured__thumb.is-active,
.qzen-featured__thumb:hover {
  border-color: var(--earth);
}

.qzen-featured__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.qzen-featured__info {
  padding-top: 8px;
}

.qzen-featured__breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--n500);
  margin-bottom: 16px;
}

.qzen-featured__breadcrumb a:hover {
  color: var(--earth);
}

.qzen-featured__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}

.qzen-featured__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 32px;
  line-height: 1.2;
  color: var(--n900);
}

@media (min-width: 1024px) {
  .qzen-featured__title {
    font-size: 40px;
  }
}

.qzen-featured__price {
  margin-top: 12px;
  font-size: 24px;
  font-weight: 700;
  color: var(--n900);
}

.qzen-featured__price del {
  color: var(--n500);
  font-weight: 400;
  margin-left: 8px;
}

.qzen-featured__desc {
  margin-top: 16px;
  font-size: 16px;
  color: var(--n700);
  line-height: 1.7;
}

.qzen-featured__variants {
  margin-top: 24px;
}

.qzen-featured__variants-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--n900);
  margin-bottom: 10px;
}

.qzen-featured__variant-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.qzen-featured__variant-color {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
}

.qzen-featured__variant-color:hover {
  border-color: var(--n300);
}

.qzen-featured__variant-color.is-active {
  border-color: var(--n900);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 4px var(--n900);
}

.qzen-featured__actions {
  margin-top: 28px;
}

.qzen-featured__actions .cart {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
}

.qzen-featured__actions .single_add_to_cart_button {
  padding: 16px 32px !important;
  border-radius: var(--radius-pill) !important;
  font-size: 15px !important;
  font-weight: 600 !important;
  background: var(--n900) !important;
  color: var(--white) !important;
  transition: all 0.2s !important;
}

.qzen-featured__actions .single_add_to_cart_button:hover {
  background: var(--dark) !important;
  transform: scale(1.02);
}

.qzen-featured__meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--n100);
}

.qzen-featured__meta-label {
  font-size: 12px;
  color: var(--n500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.qzen-featured__meta-value {
  font-size: 14px;
  font-weight: 500;
  color: var(--n900);
  margin-top: 4px;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes badge-pop {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

/* ============================================
   TYPOGRAPHY FIXES
   ============================================ */
/* Legacy single-product selectors kept neutral for backward compatibility */
.qzen-hero__eyebrow,
.qzen-product-info__price,
.qzen-single-product--final .qzen-product-crumbs,
.qzen-single-product--final .qzen-art-eyebrow a,
.qzen-single-product--final .qzen-art-stock,
.qzen-single-product--final .qzen-art-stock .stock,
.qzen-single-product--final .qzen-art-price,
.qzen-single-product--final .qzen-art-rating strong,
.qzen-single-product--final .qzen-art-assurance b,
.qzen-single-product--final .qzen-art-specs strong,
.qzen-single-product--final .qzen-art-tabs__nav button,
.qzen-single-product--final .qzen-art-tabs__nav button.is-active,
.qzen-single-product--final .qzen-art-specs span {
  /* Reserved for older template compatibility. */
}

/* ============================================
   FINAL RESPONSIVE HARDENING v2.1.0
   ============================================ */
html {
  overflow-x: clip;
}

body.qzen-menu-open {
  overflow: hidden;
}

.qzen-js-ready .qzen-header,
.qzen-js-ready .qzen-mobile-menu,
.qzen-js-ready .qzen-hero__frame {
  will-change: transform;
}

.qzen-mobile-menu {
  height: 100vh;
  height: 100dvh;
  max-height: 100vh;
  max-height: 100dvh;
}

.qzen-mobile-menu__body {
  min-height: 0;
}

.qzen-products-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 1024px) {
  .qzen-products-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.qzen-products-grid>.qzen-product-card,
.qzen-product-card,
.qzen-product-card__image-wrap,
.qzen-product-card__info,
.qzen-product-card__title,
.qzen-product-card__price {
  min-width: 0;
}

.qzen-product-card__title,
.qzen-product-card__price {
  overflow-wrap: anywhere;
}

.qzen-product-card__title,
.qzen-btn--lg,
.qzen-logo,
.qzen-hero__title,
.qzen-section-title h2,
.qzen-product-info__title,
.qzen-product-info__price,
.qzen-atelier-title,
.qzen-atelier-rating span {
  letter-spacing: 0;
}

@media (min-width: 1101px) {
  .qzen-hero--atelier {
    min-height: calc(92svh - var(--nav-height));
  }

  .qzen-hero__inner {
    padding-top: clamp(28px, 4vw, 56px);
    padding-bottom: clamp(34px, 4vw, 58px);
  }

  .qzen-hero__visual {
    min-height: clamp(430px, 56vh, 620px);
  }

  .qzen-hero__frame {
    width: min(100%, 570px);
  }
}

@media (max-width: 680px) {
  .qzen-hero--atelier {
    padding-top: 70px;
    margin-top: -70px;
  }

  .qzen-hero__inner {
    gap: 24px;
    padding: 28px 18px 34px;
  }

  .qzen-hero__desc {
    margin-top: 18px;
    line-height: 1.62;
  }

  .qzen-hero__actions {
    margin-top: 22px;
  }

  .qzen-hero__proof {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 22px;
    border-radius: 16px;
  }

  .qzen-hero__proof div {
    display: block;
    padding: 10px 8px;
  }

  .qzen-hero__proof dt {
    margin-bottom: 4px;
    font-size: 9px;
    line-height: 1.2;
  }

  .qzen-hero__proof dd {
    font-size: 12px;
    line-height: 1.25;
    overflow-wrap: anywhere;
  }

  .qzen-hero__visual {
    min-height: 320px;
  }

  .qzen-hero__frame {
    aspect-ratio: 1.04;
    border-radius: 22px;
  }

  .qzen-hero__side-card {
    width: 86px;
    border-radius: 15px;
  }

  .qzen-hero__side-card span {
    display: none;
  }

  .qzen-hero__detail-card {
    right: 10px;
    bottom: 10px;
    width: min(236px, calc(100% - 20px));
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 10px;
    padding: 8px 10px 8px 8px;
    border-radius: 16px;
  }
}

/* ============================================
   INPUT SYSTEM v2.1.5
   ============================================ */
:root {
  --qzen-field-bg: #fff;
  --qzen-field-bg-soft: #F9F8F6;
  --qzen-field-border: rgba(35, 31, 25, 0.14);
  --qzen-field-border-hover: rgba(35, 31, 25, 0.28);
  --qzen-field-focus: #8B7355;
  --qzen-field-text: #2C2C2C;
  --qzen-field-muted: rgba(33, 31, 26, 0.56);
  --qzen-field-error: #7A8B6E;
  --qzen-field-ring: rgba(138, 93, 53, 0.14);
}

:where(input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]):not([name="quantity"]),
  textarea,
  select) {
  width: 100%;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--qzen-field-border);
  border-radius: 8px;
  background: var(--qzen-field-bg);
  color: var(--qzen-field-text);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.72), 0 10px 28px rgba(36, 30, 20, 0.04);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

:where(textarea) {
  min-height: 132px;
  padding-top: 14px;
  padding-bottom: 14px;
  resize: vertical;
}

:where(select) {
  padding-right: 44px;
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(33, 31, 26, 0.72) 50%),
    linear-gradient(135deg, rgba(33, 31, 26, 0.72) 50%, transparent 50%);
  background-position:
    calc(100% - 22px) 50%,
    calc(100% - 16px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

:where(input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]):not([name="quantity"]),
  textarea,
  select):hover {
  border-color: var(--qzen-field-border-hover);
  background-color: #fff;
}

:where(input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]):not([name="quantity"]),
  textarea,
  select):focus,
:where(input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]):not([name="quantity"]),
  textarea,
  select).qzen-field-focused {
  outline: none;
  border-color: var(--qzen-field-focus);
  background-color: #fff;
  box-shadow: 0 0 0 4px var(--qzen-field-ring), 0 14px 34px rgba(36, 30, 20, 0.08);
}

:where(input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]):not([name="quantity"]),
  textarea)::placeholder {
  color: var(--qzen-field-muted);
  opacity: 1;
}

:where(input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]):not([name="quantity"]),
  textarea,
  select):disabled {
  cursor: not-allowed;
  border-color: rgba(35, 31, 25, 0.08);
  background: #F0EDE8;
  color: rgba(33, 31, 26, 0.42);
  box-shadow: none;
}

:where(input, textarea, select).qzen-field-invalid,
.woocommerce-invalid :where(input, textarea, select) {
  border-color: var(--qzen-field-error);
  box-shadow: 0 0 0 4px rgba(155, 47, 36, 0.1);
}

:where(input[type="checkbox"], input[type="radio"]) {
  accent-color: var(--qzen-field-focus);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-text-fill-color: var(--qzen-field-text);
  box-shadow: 0 0 0 1000px #fff inset, 0 0 0 4px var(--qzen-field-ring);
  transition: background-color 9999s ease-in-out 0s;
}

.qzen-field-filled {
  border-color: rgba(35, 31, 25, 0.2);
}

.qzen-newsletter__form input[type="email"] {
  height: 56px;
  min-height: 56px;
  min-width: 0;
  padding: 0 18px;
  border-radius: 8px;
  border-color: var(--qzen-field-border);
  background: rgba(255, 255, 255, 0.96);
  font-size: 15px;
  box-shadow: 0 14px 34px rgba(36, 30, 20, 0.06);
}

.qzen-newsletter__form input[type="email"]:focus {
  border-color: var(--qzen-field-focus);
  box-shadow: 0 0 0 4px var(--qzen-field-ring), 0 16px 38px rgba(36, 30, 20, 0.08);
}

.qzen-sort select,
.woocommerce .product table.variations select,
.qzen-variable-native-form select,
.qzen-variable-buybox table.variations select {
  min-height: 50px;
  border-radius: 8px;
  border-color: var(--qzen-field-border);
  background-color: #fff;
  color: var(--qzen-field-text);
}

.qzen-product-quantity input,
.qzen-product-detail__qty input,
.qzen-qty input,
.woocommerce .quantity .qty {
  box-shadow: none;
}

@media (max-width: 640px) {

  :where(input:not([type="checkbox"]):not([type="radio"]):not([type="range"]):not([type="submit"]):not([type="button"]):not([type="reset"]):not([type="hidden"]):not([name="quantity"]),
    textarea,
    select) {
    min-height: 52px;
    font-size: 16px;
  }

  .qzen-newsletter__form input[type="email"],
  .qzen-newsletter__form button {
    width: 100%;
  }
}

/* =========================================================
   QZEN RENEWED HEADER v5.1.15
   PDF source preserved as a responsive SVG brand asset.
   ========================================================= */
.qzen-header,
.qzen-header--scrolled {
  height: 96px !important;
  background: rgba(255, 253, 250, .92) !important;
  border-bottom: 1px solid rgba(44, 44, 44, .12) !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  backdrop-filter: blur(20px) saturate(130%);
}

.qzen-header--scrolled {
  background: rgba(255, 253, 250, .97) !important;
  box-shadow: 0 12px 34px rgba(44, 44, 44, .07) !important;
}

.qzen-header-spacer {
  height: 96px !important;
}

.qzen-nav--renewed {
  width: min(1440px, 100%) !important;
  height: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 78px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: clamp(18px, 3vw, 52px) !important;
  padding-inline: clamp(18px, 4vw, 58px) !important;
}

.qzen-nav--renewed .qzen-nav__brand {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 78px !important;
  min-width: 78px !important;
}

.qzen-nav--renewed .qzen-logo--symbol {
  display: block !important;
  width: 68px !important;
  height: 63px !important;
  overflow: hidden !important;
  line-height: 0 !important;
  transition: transform .25s ease !important;
}

.qzen-nav--renewed .qzen-logo--symbol:hover {
  transform: translateY(-2px) !important;
}

.qzen-nav--renewed .qzen-logo--symbol .qzen-logo__svg,
.qzen-header--scrolled .qzen-nav--renewed .qzen-logo--symbol .qzen-logo__svg {
  display: block !important;
  /*width: 68px !important;*/
  max-width: none !important;
  height: auto !important;
  transform: none !important;
}

.qzen-nav--renewed .qzen-menu {
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  width: auto !important;
  min-width: 0 !important;
}

.qzen-nav--renewed .qzen-menu__list {
  width: auto !important;
  justify-content: flex-start !important;
  gap: clamp(18px, 2.2vw, 34px) !important;
}

.qzen-nav--renewed .qzen-menu__list>li>a {
  min-height: 42px !important;
  padding: 0 !important;
  color: #2C2C2C !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .01em !important;
}

.qzen-nav--renewed .qzen-menu__list>li>a:hover,
.qzen-nav--renewed .qzen-menu__list>li.current-menu-item>a,
.qzen-nav--renewed .qzen-menu__list>li.current-menu-ancestor>a {
  background: transparent !important;
  color: #8B7355 !important;
  box-shadow: none !important;
}

.qzen-nav--renewed .qzen-nav-actions {
  grid-column: 3 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  gap: 10px !important;
}

.qzen-nav--renewed .qzen-nav-btn {
  width: 36px !important;
  height: 36px !important;
  flex-basis: 36px !important;
  border: 1px solid rgba(44, 44, 44, .1) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .48) !important;
  color: #2C2C2C !important;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease !important;
}

.qzen-nav--renewed .qzen-nav-btn:hover {
  border-color: #8B7355 !important;
  background: #F0EDE8 !important;
  color: #7A8B6E !important;
  box-shadow: none !important;
  transform: translateY(-1px) !important;
}

.qzen-nav--renewed .qzen-language-link {
  min-height: 36px !important;
  padding-inline: 5px !important;
  color: #5A5A5A !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .04em !important;
}

.qzen-nav--renewed .qzen-language-link:hover {
  background: transparent !important;
  color: #8B7355 !important;
  box-shadow: none !important;
}

.qzen-nav--renewed .qzen-cart-badge {
  border-color: #8B7355 !important;
  background: #FFFDFA !important;
  color: #7A8B6E !important;
}

.qzen-nav--renewed .qzen-menu__list .sub-menu {
  border-color: rgba(44, 44, 44, .12) !important;
  background: #FFFDFA !important;
  box-shadow: 0 18px 46px rgba(44, 44, 44, .13) !important;
}

@media (max-width: 1120px) {

  .qzen-header,
  .qzen-header--scrolled,
  .qzen-header-spacer {
    height: 84px !important;
  }

  .qzen-nav--renewed {
    grid-template-columns: minmax(0, 1fr) 70px minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  .qzen-nav--renewed .qzen-nav__brand {
    width: 70px !important;
    min-width: 70px !important;
  }

  .qzen-nav--renewed .qzen-logo--symbol,
  .qzen-nav--renewed .qzen-logo--symbol .qzen-logo__svg,
  .qzen-header--scrolled .qzen-nav--renewed .qzen-logo--symbol .qzen-logo__svg {
    width: 62px !important;
  }

  .qzen-nav--renewed .qzen-logo--symbol {
    height: 58px !important;
  }

  .qzen-nav--renewed .qzen-menu {
    display: none !important;
  }
}

@media (max-width: 640px) {

  .qzen-header,
  .qzen-header--scrolled,
  .qzen-header-spacer {
    height: 74px !important;
  }

  .qzen-nav--renewed {
    grid-template-columns: minmax(0, 1fr) 62px minmax(0, 1fr) !important;
    padding-inline: 13px !important;
  }

  .qzen-nav--renewed .qzen-nav__brand {
    width: 62px !important;
    min-width: 62px !important;
  }

  .qzen-nav--renewed .qzen-logo--symbol,
  .qzen-nav--renewed .qzen-logo--symbol .qzen-logo__svg,
  .qzen-header--scrolled .qzen-nav--renewed .qzen-logo--symbol .qzen-logo__svg {
    width: 54px !important;
  }

  .qzen-nav--renewed .qzen-logo--symbol {
    height: 51px !important;
  }

  .qzen-nav--renewed .qzen-nav-actions {
    gap: 6px !important;
  }

  .qzen-nav--renewed .qzen-nav-btn {
    width: 33px !important;
    height: 33px !important;
    flex-basis: 33px !important;
  }

  .qzen-nav--renewed .qzen-language-link,
  .qzen-nav--renewed .qzen-nav-account {
    display: none !important;
  }
}

/* ============================================
   ENHANCEMENTS — Phase 1
   ============================================ */
.qzen-lightbox__close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: #2C2C2C;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  z-index: 10;
  transition: transform 0.2s ease;
}

.qzen-lightbox__close:hover {
  transform: scale(1.05);
}

/* ============================================
   MINI CART DRAWER
   ============================================ */
.qzen-mini-cart {
  position: fixed;
  inset: 0;
  z-index: 70;
  pointer-events: none;
}

.qzen-mini-cart.is-open {
  pointer-events: auto;
}

.qzen-mini-cart__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.45);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.qzen-mini-cart.is-open .qzen-mini-cart__overlay {
  opacity: 1;
}

.qzen-mini-cart__panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 90vw);
  background: var(--white);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.12);
}

.qzen-mini-cart.is-open .qzen-mini-cart__panel {
  transform: translateX(0);
}

.qzen-mini-cart__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--n50);
}

.qzen-mini-cart__head h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 22px;
  color: var(--n900);
  margin: 0;
}

.qzen-mini-cart__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--n50);
  color: var(--n900);
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.qzen-mini-cart__close:hover {
  background: var(--n100);
}

.qzen-mini-cart__body {
  flex: 1;
  overflow-y: auto;
  padding: 16px 24px;
}

.qzen-mini-cart__body .woocommerce-mini-cart {
  list-style: none;
  padding: 0;
  margin: 0;
}

.qzen-mini-cart__body .woocommerce-mini-cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--n50);
}

.qzen-mini-cart__body .woocommerce-mini-cart-item img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

.qzen-mini-cart__body .woocommerce-mini-cart-item a {
  font-size: 14px;
  font-weight: 600;
  color: var(--n900);
  text-decoration: none;
}

.qzen-mini-cart__body .woocommerce-mini-cart-item .quantity {
  font-size: 13px;
  color: var(--n500);
}

.qzen-mini-cart__body .woocommerce-mini-cart-item .remove {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--n50);
  color: var(--error);
  font-size: 16px;
  text-decoration: none;
}

.qzen-mini-cart__body .woocommerce-mini-cart__total {
  display: flex;
  justify-content: space-between;
  padding: 16px 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--n900);
  border-top: 1px solid var(--n100);
  margin-top: 8px;
}

.qzen-mini-cart__body .woocommerce-mini-cart__buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.qzen-mini-cart__body .woocommerce-mini-cart__buttons a {
  display: none;
}

/* Hide default buttons, use footer instead */
.qzen-mini-cart__body .woocommerce-mini-cart__empty-message {
  text-align: center;
  padding: 40px 0;
  color: var(--n500);
  font-size: 14px;
}

.qzen-mini-cart__foot {
  padding: 16px 24px 24px;
  border-top: 1px solid var(--n50);
  display: flex;
  gap: 10px;
}

.qzen-mini-cart__foot .qzen-btn {
  flex: 1;
  text-align: center;
}

body.qzen-cart-open {
  overflow: hidden;
}

/* ============================================
   BACK TO TOP
   ============================================ */
.qzen-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--n900);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 45;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.qzen-back-to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.qzen-back-to-top:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

@media (max-width: 1023px) {
  .qzen-back-to-top {
    right: 16px;
    bottom: 80px;
  }
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */
.qzen-scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--earth);
  z-index: 60;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================
   MOBILE BOTTOM NAVIGATION
   ============================================ */
.qzen-mobile-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 58;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(44, 44, 44, 0.07);
  padding-bottom: env(safe-area-inset-bottom);
}

.qzen-mobile-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 64px;
}

.qzen-mobile-nav a,
.qzen-mobile-nav button {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--n500);
  font-size: 10px;
  font-weight: 500;
  text-decoration: none;
  border: none;
  background: none;
  cursor: pointer;
  transition: color 0.2s;
}

.qzen-mobile-nav a.is-active,
.qzen-mobile-nav a:hover,
.qzen-mobile-nav button:hover {
  color: var(--n900);
}

.qzen-mobile-nav a.is-active svg {
  stroke: var(--earth);
}

@media (min-width: 1024px) {
  .qzen-mobile-nav {
    display: none !important;
  }
}

@media (max-width: 1023px) {
  body {
    padding-bottom: 64px;
  }
}

/* ============================================
   QUICK VIEW MODAL
   ============================================ */
.qzen-quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.qzen-quick-view-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.qzen-quick-view-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.5);
}

.qzen-quick-view-modal__panel {
  position: relative;
  background: var(--white);
  border-radius: var(--radius-card);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.qzen-quick-view-modal.is-open .qzen-quick-view-modal__panel {
  transform: translateY(0);
}

.qzen-quick-view-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--n50);
  color: var(--n900);
  border: none;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: background 0.2s;
}

.qzen-quick-view-modal__close:hover {
  background: var(--n100);
}

.qzen-quick-view {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 40px;
}

.qzen-quick-view__gallery img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-image);
  object-fit: cover;
}

.qzen-quick-view__title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 28px;
  color: var(--n900);
  margin: 0 0 12px;
}

.qzen-quick-view__price {
  font-size: 22px;
  font-weight: 700;
  color: var(--n900);
  margin-bottom: 16px;
}

.qzen-quick-view__desc {
  font-size: 15px;
  color: var(--n700);
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 640px) {
  .qzen-quick-view {
    grid-template-columns: 1fr;
    padding: 24px;
    gap: 24px;
  }
}

body.qzen-modal-open {
  overflow: hidden;
}

/* ============================================
   WISHLIST BUTTON
   ============================================ */
.qzen-wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  color: var(--n500);
  transition: all 0.25s ease;
}

.qzen-wishlist-btn:hover {
  background: var(--white);
  color: var(--coral);
}

.qzen-wishlist-btn.is-active {
  color: var(--coral);
}

.qzen-wishlist-btn.is-active svg {
  fill: var(--coral);
}

/* ============================================
   SEARCH OVERLAY
   ============================================ */
.qzen-search-overlay {
  position: fixed;
  inset: 0;
  z-index: 75;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 120px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.qzen-search-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.qzen-search-overlay__bg {
  position: absolute;
  inset: 0;
  background: rgba(249, 248, 246, 0.96);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
}

.qzen-search-overlay__panel {
  position: relative;
  width: min(640px, 90vw);
}

.qzen-search-overlay__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.qzen-search-overlay__head input {
  flex: 1;
  height: 56px;
  padding: 0 24px;
  border-radius: var(--radius-pill);
  border: 1px solid var(--n100);
  background: var(--white);
  font-size: 16px;
  font-family: inherit;
  box-shadow: 0 10px 28px rgba(36, 30, 20, 0.04);
}

.qzen-search-overlay__head input:focus {
  outline: none;
  border-color: var(--earth);
}

.qzen-search-overlay__head button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--n50);
  border: none;
  color: var(--n900);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.qzen-search-results__grid {
  display: grid;
  gap: 12px;
}

.qzen-search-result {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px;
  border-radius: 16px;
  background: var(--white);
  text-decoration: none;
  color: var(--n900);
  transition: box-shadow 0.2s;
}

.qzen-search-result:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.qzen-search-result img {
  width: 64px;
  height: 80px;
  object-fit: cover;
  border-radius: 12px;
}

.qzen-search-result strong {
  display: block;
  font-size: 15px;
  margin-bottom: 4px;
}

.qzen-search-result span {
  font-size: 14px;
  color: var(--n500);
}

.qzen-search-results__empty {
  text-align: center;
  padding: 40px 0;
  color: var(--n500);
}

body.qzen-search-open {
  overflow: hidden;
}

/* ============================================
   QUICK VIEW BUTTON
   ============================================ */
.qzen-quick-view-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  transition: all 0.25s ease;
  z-index: 3;
  padding: 10px 24px;
  background: var(--white);
  color: var(--n900);
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  border: 1px solid var(--n100);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  white-space: nowrap;
}

.qzen-product-card:hover .qzen-quick-view-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.qzen-quick-view-btn:hover {
  background: var(--n50);
}

.qzen-quick-view-btn.is-loading {
  opacity: 0.7;
  pointer-events: none;
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */
.qzen-countdown {
  display: flex;
  gap: 12px;
  margin: 20px 0;
}

.qzen-countdown div {
  text-align: center;
  min-width: 56px;
  padding: 10px 12px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  color: var(--white);
}

.qzen-countdown strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  line-height: 1;
}

.qzen-countdown span {
  display: block;
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.9;
  margin-top: 4px;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.qzen-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--n900);
  color: var(--cream);
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  transform: translateY(0);
  transition: transform 0.4s ease;
}

.qzen-cookie-banner.is-hidden {
  transform: translateY(100%);
}

.qzen-cookie-banner p {
  font-size: 13px;
  margin: 0;
}

.qzen-cookie-banner__actions {
  flex-shrink: 0;
}

.qzen-cookie-banner .qzen-btn {
  padding: 10px 24px;
  font-size: 13px;
}

@media (max-width: 640px) {
  .qzen-cookie-banner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
    padding: 16px;
  }
}

/* ============================================
   STOCK ALERT
   ============================================ */
.qzen-stock-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: rgba(232, 93, 93, 0.08);
  border: 1px solid rgba(232, 93, 93, 0.2);
  border-radius: 14px;
  color: var(--error);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.qzen-stock-alert svg {
  flex-shrink: 0;
}

/* ============================================
   TRUST BADGES
   ============================================ */
.qzen-trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin: 20px 0;
  padding: 16px;
  background: var(--sand);
  border-radius: 18px;
}

.qzen-trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--n700);
}

.qzen-trust-badge svg {
  flex-shrink: 0;
  color: var(--olive);
}

@media (min-width: 640px) {
  .qzen-trust-badges {
    grid-template-columns: repeat(4, 1fr);
  }
}


/* ============================================
   Stability fixes: cart drawer, mobile chrome, JS UI
   ============================================ */
body.qzen-menu-open,
body.qzen-cart-open,
body.qzen-modal-open {
  overflow: hidden;
}

.qzen-cart-badge.is-pulsing {
  animation: badge-pop 0.35s cubic-bezier(.2, 1.4, .35, 1);
}

@keyframes badge-pop {
  0% {
    transform: scale(.7);
  }

  60% {
    transform: scale(1.18);
  }

  100% {
    transform: scale(1);
  }
}

.qzen-toast-wrap {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  display: grid;
  gap: 10px;
  pointer-events: none;
}

.qzen-toast {
  min-width: min(340px, calc(100vw - 36px));
  padding: 14px 16px;
  border-radius: 18px;
  background: var(--white);
  color: var(--n900);
  box-shadow: 0 18px 45px rgba(0, 0, 0, .14);
  border: 1px solid rgba(44, 44, 44, .08);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity .22s ease, transform .22s ease;
}

.qzen-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.qzen-toast strong {
  display: block;
  font-size: 14px;
  line-height: 1.3;
}

.qzen-toast span {
  display: block;
  margin-top: 3px;
  font-size: 13px;
  color: var(--n600);
}

.qzen-toast--success {
  border-color: rgba(168, 181, 160, .45);
}

.qzen-toast--error {
  border-color: rgba(232, 93, 93, .35);
}

.qzen-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: rgba(20, 18, 16, .86);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.qzen-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.qzen-lightbox img {
  max-width: min(1100px, 94vw);
  max-height: 88vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, .3);
}

.qzen-lightbox__close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--n900);
  font-size: 28px;
  line-height: 1;
}

.qzen-quick-view-modal {
  position: fixed;
  inset: 0;
  z-index: 9997;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s ease, visibility .25s ease;
}

.qzen-quick-view-modal.is-open {
  opacity: 1;
  visibility: visible;
}

.qzen-quick-view-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, .52);
}

.qzen-quick-view-modal__panel {
  position: relative;
  width: min(860px, 96vw);
  max-height: 88vh;
  overflow: auto;
  background: var(--white);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .22);
}

.qzen-quick-view-modal__panel>button {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--n50);
  font-size: 26px;
  z-index: 2;
}

.qzen-mobile-nav {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 45;
  display: none;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, .94);
  border: 1px solid rgba(44, 44, 44, .08);
  border-radius: 22px;
  box-shadow: 0 14px 45px rgba(0, 0, 0, .12);
  overflow: hidden;
  backdrop-filter: blur(16px);
}

.qzen-mobile-nav a,
.qzen-mobile-nav button {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--n900);
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 767px) {
  .qzen-mobile-nav {
    display: grid;
  }

  .qzen-footer {
    padding-bottom: 88px;
  }

  .qzen-toast-wrap {
    bottom: 84px;
  }
}

@media (max-width: 640px) {
  .qzen-mini-cart__panel {
    width: min(100vw, 420px);
  }

  .qzen-mini-cart__foot {
    flex-direction: column;
  }

  .qzen-quick-view {
    display: grid;
    gap: 18px;
  }
}


/* ============================================
   Phase 2 layout repair — product cards, menu, cart, checkout
   ============================================ */
html,
body {
  max-width: 100%;
  overflow-x: clip;
}

.qzen-nav,
.qzen-container,
.woocommerce-page .site-main,
.woocommerce .qzen-commerce-hero,
.woocommerce .qzen-cart-layout,
.woocommerce .qzen-checkout-layout {
  width: min(var(--max-width), calc(100% - 32px));
  margin-inline: auto;
}

.qzen-nav {
  min-width: 0;
}

.qzen-nav__brand,
.qzen-logo {
  min-width: 0;
}

.qzen-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
}

.qzen-logo__text {
  display: inline-block;
  max-width: clamp(118px, 22vw, 260px);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.qzen-menu {
  min-width: 0;
}

.qzen-menu__list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 32px);
  list-style: none;
  min-width: 0;
}

.qzen-menu__list a {
  white-space: nowrap;
}

@media (max-width: 1180px) and (min-width: 1024px) {
  .qzen-nav {
    padding-inline: 22px;
  }

  .qzen-menu__list {
    gap: 14px;
  }

  .qzen-menu a {
    font-size: 13px;
  }

  .qzen-nav-link--shop {
    display: none;
  }
}

@media (max-width: 1023px) {
  .qzen-nav {
    width: 100%;
    padding-inline: 16px;
  }

  .qzen-logo__text {
    max-width: 56vw;
  }

  .qzen-mobile-menu {
    width: min(88vw, 380px);
    max-width: calc(100vw - 28px);
    padding: 20px;
    overflow-y: auto;
  }

  .qzen-mobile-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .qzen-mobile-menu__head .qzen-logo {
    max-width: calc(100% - 52px);
  }

  .qzen-mobile-menu__head .qzen-logo__text {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .qzen-mobile-menu__close {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--n50);
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

.qzen-product-card {
  min-width: 0;
}

.qzen-product-card__image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-image);
  background: var(--n50);
}

.qzen-product-card__image {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: inherit;
  overflow: hidden;
  background: var(--n50);
}

.qzen-product-card__actions {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .24s ease, transform .24s ease;
}

.qzen-product-card:hover .qzen-product-card__actions,
.qzen-product-card:focus-within .qzen-product-card__actions {
  opacity: 1;
  transform: translateY(0);
}

.qzen-product-card__quickadd,
.qzen-product-card__quickadd button,
.qzen-quick-view-btn,
.qzen-add-to-cart,
.qzen-card-detail-btn {
  position: static !important;
  inset: auto !important;
  transform: none !important;
  opacity: 1 !important;
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 11px 12px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 255, 255, .66) !important;
  background: rgba(255, 255, 255, .92) !important;
  color: var(--n900) !important;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .11) !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.15;
  white-space: nowrap;
  text-align: center;
  backdrop-filter: blur(12px);
}

.qzen-add-to-cart {
  background: rgba(44, 44, 44, .92) !important;
  color: #fff !important;
}

.qzen-add-to-cart svg {
  flex: 0 0 auto;
}

.qzen-quick-view-btn:hover,
.qzen-card-detail-btn:hover {
  background: #fff !important;
}

.qzen-add-to-cart:hover {
  background: #1a1a1a !important;
}

@media (hover: none),
(max-width: 767px) {
  .qzen-product-card:hover {
    transform: none;
  }

  .qzen-product-card__actions {
    position: static;
    opacity: 1;
    transform: none;
    margin-top: 10px;
    padding: 0 2px 2px;
    grid-template-columns: 1fr;
  }

  .qzen-product-card__image-wrap {
    overflow: visible;
  }

  .qzen-product-card__image {
    border-radius: 18px;
  }

  .qzen-quick-view-btn,
  .qzen-add-to-cart,
  .qzen-card-detail-btn {
    min-height: 42px;
    font-size: 12px !important;
    box-shadow: none !important;
    border-color: rgba(44, 44, 44, .10) !important;
  }

  .qzen-add-to-cart span {
    display: inline;
  }
}

@media (max-width: 420px) {

  .qzen-products-grid,
  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }

  .qzen-product-card__title {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }
}

.woocommerce-cart .qzen-cart-layout,
.woocommerce-checkout .qzen-checkout-layout {
  max-width: 1180px;
}

.woocommerce-cart .qzen-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 380px);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.woocommerce-checkout .qzen-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(22px, 4vw, 48px);
  align-items: start;
}

.qzen-cart-main,
.qzen-checkout-main,
.qzen-cart-summary,
.qzen-checkout-sidebar {
  min-width: 0;
}

.qzen-commerce-hero {
  padding: clamp(32px, 6vw, 72px) 0 clamp(22px, 4vw, 42px);
}

.qzen-commerce-hero span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--dark-earth);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .14em;
}

.qzen-commerce-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(34px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.04em;
  color: var(--n900);
}

.qzen-commerce-hero p {
  max-width: 680px;
  margin-top: 14px;
  color: var(--n600);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
}

.qzen-cart-card,
.qzen-checkout-card,
.qzen-cart-collaterals .cart_totals,
.qzen-checkout-sticky,
.woocommerce-checkout-review-order {
  border-radius: 28px;
  border: 1px solid rgba(44, 44, 44, .08);
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 20px 60px rgba(50, 38, 28, .08);
}

.qzen-cart-card,
.qzen-checkout-card {
  padding: clamp(18px, 3vw, 30px);
  overflow: hidden;
}

.qzen-cart-collaterals .cart_totals,
.qzen-checkout-sticky {
  padding: clamp(18px, 3vw, 30px);
}

.qzen-checkout-sticky {
  position: sticky;
  top: calc(var(--nav-height) + 24px);
}

.qzen-checkout-sticky h2 {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 26px;
  margin-bottom: 16px;
}

.woocommerce table.shop_table {
  width: 100%;
  max-width: 100%;
}

.woocommerce-cart table.shop_table {
  table-layout: auto;
}

.woocommerce-cart table.shop_table .product-thumbnail {
  width: 94px;
}

.woocommerce-cart table.shop_table .product-remove {
  width: 44px;
}

.woocommerce-cart table.shop_table .product-name {
  min-width: 180px;
}

.woocommerce-cart table.shop_table .product-price,
.woocommerce-cart table.shop_table .product-subtotal {
  white-space: nowrap;
}

.woocommerce-cart table.shop_table .quantity .qty {
  max-width: 86px;
  height: 44px;
  border-radius: 14px;
}

.qzen-cart-actions-row .actions {
  padding-top: 22px !important;
}

.qzen-cart-coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.qzen-cart-coupon input {
  flex: 1 1 210px;
  min-width: 0;
}

.qzen-update-cart {
  margin-left: auto !important;
}

.woocommerce-checkout .form-row {
  margin-bottom: 16px;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  width: calc(50% - 8px);
}

.woocommerce-checkout input.input-text,
.woocommerce-checkout textarea,
.woocommerce-checkout select,
.woocommerce-cart input.input-text,
.woocommerce-cart .quantity .qty {
  max-width: 100%;
}

.woocommerce-checkout-review-order-table {
  table-layout: fixed;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  overflow-wrap: anywhere;
}

@media (max-width: 980px) {

  .woocommerce-cart .qzen-cart-layout,
  .woocommerce-checkout .qzen-checkout-layout {
    grid-template-columns: 1fr;
  }

  .qzen-checkout-sticky {
    position: static;
  }
}

@media (max-width: 767px) {

  .woocommerce-cart .qzen-cart-layout,
  .woocommerce-checkout .qzen-checkout-layout,
  .woocommerce .qzen-commerce-hero {
    width: min(100% - 24px, var(--max-width));
  }

  .woocommerce-cart table.shop_table_responsive thead {
    display: none;
  }

  .woocommerce-cart table.shop_table_responsive,
  .woocommerce-cart table.shop_table_responsive tbody,
  .woocommerce-cart table.shop_table_responsive tr,
  .woocommerce-cart table.shop_table_responsive td {
    display: block;
    width: 100%;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item {
    position: relative;
    padding: 16px 14px;
    margin-bottom: 14px;
    border: 1px solid rgba(44, 44, 44, .08);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 12px 34px rgba(50, 38, 28, .06);
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td {
    border: 0 !important;
    padding: 7px 0 !important;
    text-align: left !important;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item td::before {
    content: attr(data-title);
    display: block;
    float: none;
    margin-bottom: 3px;
    color: var(--n500);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .08em;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item .product-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto !important;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item .product-remove::before,
  .woocommerce-cart table.shop_table_responsive tr.cart_item .product-thumbnail::before,
  .woocommerce-cart table.shop_table_responsive tr.cart_item .product-name::before {
    display: none;
  }

  .woocommerce-cart table.shop_table_responsive tr.cart_item .product-thumbnail img {
    width: 96px;
    height: 120px;
  }

  .woocommerce-cart table.shop_table_responsive td.actions {
    padding: 0 !important;
  }

  .qzen-cart-coupon,
  .qzen-cart-coupon input,
  .qzen-cart-coupon button,
  .qzen-update-cart {
    width: 100%;
    margin-left: 0 !important;
  }

  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last {
    width: 100%;
    float: none;
  }

  .qzen-cart-card,
  .qzen-checkout-card,
  .qzen-cart-collaterals .cart_totals,
  .qzen-checkout-sticky {
    border-radius: 22px;
    padding: 16px;
  }
}

/* ============================================
   Phase 3 hard repair — product actions, cart, checkout typography
   ============================================ */
:root {
  --qzen-page-max: 1180px;
  --qzen-card-bg: rgba(255, 255, 255, .82);
  --qzen-border-soft: rgba(44, 44, 44, .09);
}

.qzen-commerce-page,
.woocommerce-cart,
.woocommerce-checkout {
  overflow-x: clip;
}

.qzen-commerce-page {
  width: 100%;
}

.qzen-commerce-hero,
.qzen-cart-layout,
.qzen-checkout-layout {
  width: min(var(--qzen-page-max), calc(100% - 32px));
  margin-inline: auto;
}

.qzen-commerce-hero {
  padding: clamp(34px, 6vw, 78px) 0 clamp(20px, 4vw, 44px);
}

.qzen-commerce-hero span {
  display: inline-flex;
  margin-bottom: 10px;
  font: 900 12px/1 var(--font-body);
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--dark-earth);
}

.qzen-commerce-hero h1 {
  max-width: 840px;
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  font-size: clamp(38px, 6vw, 76px);
  line-height: .94;
  letter-spacing: -.055em;
  color: #2C2C2C;
  text-wrap: balance;
}

.qzen-commerce-hero p {
  max-width: 680px;
  margin: 16px 0 0;
  color: #6C6C6C;
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.75;
}

.qzen-surface-card,
.qzen-cart-collaterals .cart_totals,
.qzen-checkout-review-order {
  border: 1px solid var(--qzen-border-soft);
  border-radius: 30px;
  background: var(--qzen-card-bg);
  box-shadow: 0 24px 70px rgba(50, 38, 28, .09);
}

/* Product card action buttons: no overlap, no absolute leakage */
.qzen-product-card__image-wrap {
  overflow: hidden !important;
}

.qzen-product-card__actions {
  left: 12px !important;
  right: 12px !important;
  bottom: 12px !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  width: auto !important;
  max-width: none !important;
}

.qzen-product-card__actions .qzen-quick-view-btn,
.qzen-product-card__actions .qzen-add-to-cart,
.qzen-product-card__actions .qzen-card-detail-btn {
  position: static !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  opacity: 1 !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 44px !important;
  padding: 10px 12px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 7px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
  line-height: 1.1 !important;
}

.qzen-product-card__actions .qzen-add-to-cart span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 767px),
(hover: none) {
  .qzen-product-card__image-wrap {
    overflow: visible !important;
  }

  .qzen-product-card__actions {
    position: static !important;
    grid-template-columns: 1fr !important;
    opacity: 1 !important;
    transform: none !important;
    margin-top: 10px !important;
    padding: 0 !important;
  }
}

/* Cart layout */
.woocommerce-cart .qzen-cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  gap: clamp(20px, 4vw, 46px);
  align-items: start;
}

.qzen-cart-main,
.qzen-cart-summary,
.qzen-checkout-fields,
.qzen-checkout-sidebar {
  min-width: 0;
}

.qzen-cart-form {
  padding: clamp(16px, 2.8vw, 30px);
  overflow: hidden;
}

.woocommerce-cart table.shop_table {
  width: 100% !important;
  margin: 0 !important;
  border: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0 10px !important;
  table-layout: auto;
}

.woocommerce-cart table.shop_table th {
  padding: 0 12px 10px !important;
  border: 0 !important;
  color: #6C6C6C;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.woocommerce-cart table.shop_table td {
  border: 0 !important;
  background: #fff;
  padding: 14px 12px !important;
  vertical-align: middle !important;
}

.woocommerce-cart table.shop_table tr.cart_item td:first-child {
  border-radius: 18px 0 0 18px;
}

.woocommerce-cart table.shop_table tr.cart_item td:last-child {
  border-radius: 0 18px 18px 0;
}

.woocommerce-cart .product-thumbnail {
  width: 92px;
}

.woocommerce-cart .product-thumbnail img {
  width: 74px !important;
  height: 92px !important;
  object-fit: cover;
  border-radius: 16px;
}

.woocommerce-cart .product-name a {
  display: inline-block;
  max-width: 280px;
  color: #2C2C2C;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.35;
}

.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal {
  color: #2C2C2C;
  font-weight: 900;
  white-space: nowrap;
}

.woocommerce-cart .product-remove .remove {
  width: 34px !important;
  height: 34px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #F3EDE4;
  color: #8B7355 !important;
  font-size: 22px !important;
  line-height: 1 !important;
}

.woocommerce-cart .quantity .qty {
  width: 78px !important;
  max-width: 100%;
  height: 42px !important;
  border: 1px solid rgba(44, 44, 44, .12) !important;
  border-radius: 999px !important;
  background: #F3EDE4;
  color: #2C2C2C;
  font: 900 14px/1 var(--font-body);
}

.qzen-cart-actions-row td.actions {
  background: transparent !important;
  padding: 14px 0 0 !important;
}

.qzen-cart-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
}

.qzen-cart-coupon {
  flex: 1 1 420px;
  display: flex;
  gap: 10px;
  min-width: 0;
}

.qzen-cart-coupon input {
  flex: 1 1 auto;
  min-width: 0;
  height: 52px;
  border: 1px solid rgba(44, 44, 44, .12);
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  font: 700 14px/1 var(--font-body);
}

.qzen-update-cart {
  flex: 0 0 auto;
}

.qzen-cart-collaterals .cart_totals {
  float: none !important;
  width: 100% !important;
  padding: clamp(18px, 2.8vw, 30px) !important;
}

.qzen-cart-collaterals .cart_totals h2 {
  margin: 0 0 18px;
  font-family: var(--font-display);
  font-size: 30px;
  font-style: italic;
  line-height: 1;
  color: #2C2C2C;
}

.qzen-cart-collaterals table {
  border: 0 !important;
  margin: 0 0 20px !important;
}

.qzen-cart-collaterals th,
.qzen-cart-collaterals td {
  border: 0 !important;
  padding: 13px 0 !important;
  font-size: 14px;
  font-weight: 850;
  color: #6C6C6C;
}

.qzen-cart-collaterals .order-total th,
.qzen-cart-collaterals .order-total td {
  font-size: 22px;
  color: #2C2C2C;
}

/* Checkout layout */
.woocommerce-checkout .qzen-checkout-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(20px, 4vw, 46px);
  align-items: start;
}

.woocommerce-checkout #customer_details.col2-set {
  float: none !important;
  width: auto !important;
}

.qzen-checkout-fields {
  display: grid;
  gap: 18px;
}

.qzen-checkout-card {
  padding: clamp(18px, 2.8vw, 30px);
  overflow: hidden;
}

.qzen-checkout-card .col-1,
.qzen-checkout-card .col-2 {
  float: none !important;
  width: 100% !important;
}

.woocommerce-checkout h3,
.woocommerce-billing-fields h3,
.woocommerce-shipping-fields h3,
.woocommerce-additional-fields h3,
#order_review_heading {
  margin: 0 0 20px !important;
  font-family: var(--font-display) !important;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 42px) !important;
  line-height: .98 !important;
  letter-spacing: -.04em !important;
  color: #2C2C2C !important;
}

.woocommerce-checkout .form-row {
  margin: 0 0 15px !important;
  padding: 0 !important;
}

.woocommerce-checkout .form-row-first,
.woocommerce-checkout .form-row-last {
  width: calc(50% - 8px) !important;
}

.woocommerce-checkout .form-row-first {
  float: left !important;
  clear: left !important;
}

.woocommerce-checkout .form-row-last {
  float: right !important;
}

.woocommerce-checkout .form-row-wide {
  clear: both !important;
  width: 100% !important;
}

.woocommerce form .form-row label {
  margin-bottom: 7px;
  color: #6C6C6C;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container .select2-selection--single {
  width: 100% !important;
  min-height: 52px !important;
  border: 1px solid rgba(44, 44, 44, .12) !important;
  border-radius: 16px !important;
  background: #fff !important;
  padding: 0 16px !important;
  color: #2C2C2C !important;
  font: 750 14px/1.4 var(--font-body) !important;
  box-shadow: none !important;
}

.woocommerce form .form-row textarea {
  min-height: 120px !important;
  padding-block: 14px !important;
}

.select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 50px !important;
  padding-left: 0 !important;
  color: #2C2C2C !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
  height: 50px !important;
  right: 10px !important;
}

.qzen-checkout-sticky {
  position: sticky;
  top: calc(var(--nav-height) + 22px);
  padding: clamp(18px, 2.8vw, 30px);
}

.woocommerce-checkout-review-order {
  border: 0;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
}

.woocommerce-checkout-review-order-table {
  width: 100% !important;
  border: 0 !important;
  table-layout: fixed;
  margin: 0 0 18px !important;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td {
  border-color: rgba(44, 44, 44, .09) !important;
  padding: 13px 0 !important;
  vertical-align: top;
  overflow-wrap: anywhere;
}

.woocommerce-checkout-review-order-table .product-name {
  width: 62%;
  color: #2C2C2C;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.45;
}

.woocommerce-checkout-review-order-table .product-total {
  text-align: right;
  color: #2C2C2C;
  font-weight: 900;
}

.woocommerce-checkout-review-order-table tfoot th {
  color: #6C6C6C;
  font-size: 14px;
  font-weight: 850;
}

.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
  color: #2C2C2C;
  font-size: 21px;
  font-weight: 950;
}

.woocommerce-checkout #payment {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
}

.woocommerce-checkout #payment ul.payment_methods {
  border: 0 !important;
  padding: 0 !important;
  display: grid;
  gap: 12px;
}

.woocommerce-checkout #payment .wc_payment_method {
  margin: 0 !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(44, 44, 44, .1);
  border-radius: 18px;
  background: #fff;
}

.woocommerce-checkout #payment div.form-row {
  padding: 18px 0 0 !important;
}

/* Woo buttons */
.woocommerce-cart .button,
.woocommerce-cart button.button,
.woocommerce-cart .checkout-button,
.woocommerce-checkout #place_order,
.woocommerce-checkout button.button {
  min-height: 52px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #2C2C2C !important;
  color: #fff !important;
  padding: 0 22px !important;
  font: 900 14px/1 var(--font-body) !important;
  box-shadow: 0 16px 34px rgba(47, 37, 31, .18) !important;
  text-decoration: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
}

.woocommerce-cart .checkout-button,
.woocommerce-checkout #place_order {
  width: 100% !important;
}

@media (max-width: 980px) {

  .woocommerce-cart .qzen-cart-layout,
  .woocommerce-checkout .qzen-checkout-layout {
    grid-template-columns: 1fr;
  }

  .qzen-checkout-sticky {
    position: static;
  }
}

@media (max-width: 720px) {

  .qzen-commerce-hero,
  .qzen-cart-layout,
  .qzen-checkout-layout {
    width: min(100% - 24px, var(--qzen-page-max));
  }

  .qzen-commerce-hero h1 {
    font-size: clamp(38px, 11vw, 54px);
  }

  .qzen-cart-form,
  .qzen-checkout-card,
  .qzen-checkout-sticky,
  .qzen-cart-collaterals .cart_totals {
    border-radius: 22px;
    padding: 16px !important;
  }

  .woocommerce-cart table.shop_table thead {
    display: none !important;
  }

  .woocommerce-cart table.shop_table,
  .woocommerce-cart table.shop_table tbody,
  .woocommerce-cart table.shop_table tr,
  .woocommerce-cart table.shop_table td {
    display: block !important;
    width: 100% !important;
  }

  .woocommerce-cart table.shop_table tr.cart_item {
    position: relative;
    display: grid !important;
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 8px 12px;
    margin: 0 0 12px;
    padding: 14px;
    border-radius: 22px;
    background: #fff;
  }

  .woocommerce-cart table.shop_table tr.cart_item td {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
  }

  .woocommerce-cart table.shop_table tr.cart_item td::before {
    display: none !important;
  }

  .woocommerce-cart table.shop_table .product-remove {
    position: absolute;
    top: 10px;
    right: 10px;
    width: auto !important;
  }

  .woocommerce-cart table.shop_table .product-thumbnail {
    grid-column: 1;
    grid-row: 1 / span 4;
  }

  .woocommerce-cart table.shop_table .product-thumbnail img {
    width: 82px !important;
    height: 104px !important;
  }

  .woocommerce-cart table.shop_table .product-name {
    grid-column: 2;
    padding-right: 40px !important;
  }

  .woocommerce-cart table.shop_table .product-price,
  .woocommerce-cart table.shop_table .product-quantity,
  .woocommerce-cart table.shop_table .product-subtotal {
    grid-column: 2;
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    font-size: 14px;
  }

  .woocommerce-cart table.shop_table .product-price::before {
    content: 'Fiyat';
    display: inline;
    color: #6C6C6C;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .woocommerce-cart table.shop_table .product-quantity::before {
    content: 'Adet';
    display: inline;
    color: #6C6C6C;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .woocommerce-cart table.shop_table .product-subtotal::before {
    content: 'Toplam';
    display: inline;
    color: #6C6C6C;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
  }

  .qzen-cart-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .qzen-cart-coupon {
    display: grid;
    grid-template-columns: 1fr;
    flex-basis: auto;
  }

  .woocommerce-checkout .form-row-first,
  .woocommerce-checkout .form-row-last {
    width: 100% !important;
    float: none !important;
    clear: both !important;
  }
}

/* =========================================================
   QZEN FINAL HARDENING v5.0.0
   Header, typography and storefront responsive cleanup
   ========================================================= */
:root {
  --qzen-ink: #2C2C2C;
  --qzen-muted: #6C6C6C;
  --qzen-line: rgba(44, 44, 44, .11);
  --qzen-card: #FFFDFA;
  --qzen-cream: #F3EDE4;
  --qzen-accent: #8B7355;
  --qzen-radius: 28px;
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.admin-bar .qzen-header {
  top: 32px
}

@media(max-width:782px) {
  body.admin-bar .qzen-header {
    top: 46px
  }
}

.qzen-header {
  height: 76px !important;
  background: rgba(248, 244, 238, .94) !important;
  border-bottom: 1px solid rgba(44, 44, 44, .08) !important;
  backdrop-filter: blur(18px);
  z-index: 999 !important;
}

.qzen-header-spacer {
  height: 76px !important;
}

.qzen-nav {
  width: min(1240px, 100%);
  max-width: none !important;
  height: 100%;
  padding-inline: clamp(16px, 3vw, 34px) !important;
  display: grid !important;
  grid-template-columns: minmax(170px, 260px) minmax(0, 1fr) auto !important;
  gap: 18px !important;
  align-items: center !important;
}

.qzen-nav__brand {
  min-width: 0;
}

.qzen-logo {
  max-width: 100%;
  min-width: 0;
  text-decoration: none !important;
}

.qzen-logo__mark {
  flex: 0 0 34px;
}

.qzen-logo__text {
  max-width: 190px !important;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: clamp(20px, 2vw, 25px) !important;
  line-height: 1.05;
}

.qzen-menu {
  min-width: 0;
  justify-self: center;
}

.qzen-menu__list {
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 4px !important;
  min-width: 0;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.qzen-menu__list>li {
  margin: 0 !important;
  white-space: nowrap;
}

.qzen-menu__list>li>a {
  display: flex !important;
  align-items: center;
  height: 40px;
  padding: 0 14px !important;
  border-radius: 999px;
  font-size: 13px !important;
  font-weight: 700 !important;
  letter-spacing: .01em;
  color: rgba(44, 44, 44, .72) !important;
  text-decoration: none !important;
  line-height: 1 !important;
}

.qzen-menu__list>li>a:hover,
.qzen-menu__list>li.current-menu-item>a {
  background: #fff;
  color: var(--qzen-ink) !important;
  box-shadow: 0 10px 26px rgba(44, 44, 44, .07);
}

.qzen-nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px !important;
  min-width: 0;
}

.qzen-nav-link--shop {
  display: inline-flex !important;
  height: 42px;
  padding-inline: 18px !important;
  border-radius: 999px;
  background: var(--qzen-ink) !important;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
}

.qzen-nav-btn {
  flex: 0 0 42px;
  width: 42px !important;
  height: 42px !important;
  border-radius: 999px !important;
  background: #fff !important;
  border: 1px solid rgba(44, 44, 44, .09) !important;
  color: var(--qzen-ink) !important;
}

.qzen-cart-badge {
  position: absolute;
  right: -4px;
  top: -5px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #8B7355;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.qzen-mobile-menu {
  z-index: 1001 !important;
  max-width: min(420px, 92vw) !important;
}

.qzen-mobile-overlay {
  z-index: 1000 !important;
}

.qzen-mobile-menu__head .qzen-logo__text {
  max-width: 230px !important;
}

@media(max-width:1120px) {
  .qzen-nav {
    grid-template-columns: minmax(160px, 1fr) auto !important
  }

  .qzen-menu {
    display: none !important
  }

  .qzen-nav-link--shop {
    display: none !important
  }

  .qzen-menu-toggle {
    display: inline-flex !important
  }
}

@media(max-width:560px) {

  .qzen-header,
  .qzen-header-spacer {
    height: 68px !important
  }

  .qzen-nav {
    padding-inline: 12px !important
  }

  .qzen-logo__mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px
  }

  .qzen-logo__text {
    max-width: 48vw !important;
    font-size: 21px !important
  }

  .qzen-nav-btn {
    width: 38px !important;
    height: 38px !important;
    flex-basis: 38px
  }
}

/* =========================================================
   QZEN CENTERED BRAND HEADER v5.1.9
   Monologue-inspired centered logo and editorial menu type
   ========================================================= */
.qzen-header {
  height: 108px !important;
  background: rgba(255, 253, 250, .97) !important;
  border-bottom: 1px solid rgba(44, 44, 44, .16) !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
}

.qzen-header--scrolled {
  height: 94px !important;
  background: rgba(255, 253, 250, .98) !important;
  box-shadow: 0 12px 34px rgba(44, 44, 44, .06) !important;
}

.qzen-header-spacer {
  height: 108px !important;
}

.qzen-nav {
  width: min(1380px, 100%) !important;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  gap: clamp(14px, 2.4vw, 34px) !important;
  padding-inline: clamp(18px, 3.8vw, 48px) !important;
}

.qzen-nav__brand {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  align-self: center !important;
  display: inline-flex !important;
  min-width: 0 !important;
  z-index: 2;
}

.qzen-logo {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  color: var(--qzen-ink) !important;
  line-height: 1 !important;
}

.qzen-logo__mark,
.qzen-logo__text {
  display: none !important;
}

.qzen-logo__svg {
  display: block !important;
  width: auto !important;
  height: 88px !important;
  max-width: 124px !important;
  object-fit: contain !important;
}

.qzen-header--scrolled .qzen-logo__svg {
  height: 76px !important;
}

.qzen-menu {
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  display: flex !important;
  min-width: 0 !important;
}

.qzen-menu__list {
  justify-content: flex-start !important;
  gap: clamp(18px, 2.6vw, 34px) !important;
}

.qzen-menu__list>li>a {
  position: relative !important;
  height: auto !important;
  min-height: 44px !important;
  padding: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--qzen-ink) !important;
  box-shadow: none !important;
  font-family: var(--font-body) !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.qzen-menu__list>li>a::after {
  content: '' !important;
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  bottom: 7px !important;
  display: block !important;
  height: 1px !important;
  background: currentColor !important;
  opacity: .9 !important;
  transform: scaleX(0) !important;
  transform-origin: left center !important;
  transition: transform .2s ease !important;
}

.qzen-menu__list>li>a:hover,
.qzen-menu__list>li.current-menu-item>a,
.qzen-menu__list>li.current-menu-ancestor>a {
  background: transparent !important;
  color: var(--qzen-ink) !important;
  box-shadow: none !important;
}

.qzen-menu__list>li>a:hover::after,
.qzen-menu__list>li.current-menu-item>a::after,
.qzen-menu__list>li.current-menu-ancestor>a::after {
  transform: scaleX(1) !important;
}

.qzen-nav-actions {
  grid-column: 3 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  gap: 14px !important;
}

.qzen-nav-link--shop {
  height: 34px !important;
  padding-inline: 18px !important;
  border: 1px solid rgba(139, 115, 85, .72) !important;
  border-radius: 999px !important;
  background: transparent !important;
  color: #7A8B6E !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
  box-shadow: none !important;
}

.qzen-nav-link--shop:hover {
  background: #7A8B6E !important;
  border-color: #7A8B6E !important;
  color: #fff !important;
}

.qzen-nav-btn {
  flex: 0 0 38px !important;
  width: 38px !important;
  height: 38px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--qzen-ink) !important;
}

.qzen-nav-btn:hover {
  background: transparent !important;
  color: #7A8B6E !important;
  box-shadow: none !important;
  transform: none !important;
}

.qzen-cart-badge {
  top: 0 !important;
  right: 0 !important;
  min-width: 17px !important;
  height: 17px !important;
  border: 1px solid #7A8B6E !important;
  background: #FFFDFA !important;
  color: #7A8B6E !important;
  font-size: 10px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
}

.qzen-mobile-menu {
  background: #FFFDFA !important;
}

.qzen-mobile-menu__head {
  align-items: flex-start !important;
  padding-bottom: 18px !important;
}

.qzen-mobile-menu__head .qzen-logo__svg {
  height: 58px !important;
  max-width: 94px !important;
}

.qzen-mobile-menu__nav a {
  font-family: var(--font-body) !important;
  font-style: normal !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  letter-spacing: 0 !important;
  line-height: 1.05 !important;
  color: var(--qzen-ink) !important;
}

@media (max-width: 1120px) {

  .qzen-header,
  .qzen-header--scrolled {
    height: 88px !important;
  }

  .qzen-header-spacer {
    height: 88px !important;
  }

  .qzen-nav {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  }

  .qzen-menu {
    display: none !important;
  }

  .qzen-nav-link--shop {
    display: none !important;
  }

  .qzen-menu-toggle {
    display: inline-flex !important;
  }

  .qzen-logo__svg,
  .qzen-header--scrolled .qzen-logo__svg {
    height: 68px !important;
    max-width: 104px !important;
  }
}

@media (max-width: 560px) {

  .qzen-header,
  .qzen-header--scrolled,
  .qzen-header-spacer {
    height: 82px !important;
  }

  .qzen-nav {
    padding-inline: 12px !important;
    gap: 8px !important;
  }

  .qzen-logo__svg,
  .qzen-header--scrolled .qzen-logo__svg {
    height: 60px !important;
    max-width: 90px !important;
  }

  .qzen-nav-actions {
    gap: 8px !important;
  }

  .qzen-nav-btn {
    flex-basis: 34px !important;
    width: 34px !important;
    height: 34px !important;
  }

  .qzen-mobile-menu__nav a {
    font-size: 21px !important;
  }
}

/* Product card final action layout */
.qzen-product-card {
  min-width: 0;
  overflow: hidden;
}

.qzen-product-card__media,
.qzen-product-card .qzen-product-image {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
}

.qzen-product-card__actions,
.qzen-product-actions {
  position: absolute !important;
  left: 12px !important;
  right: 12px !important;
  bottom: 12px !important;
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 8px !important;
  z-index: 4 !important;
  transform: none !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.qzen-product-card__actions a,
.qzen-product-card__actions button,
.qzen-product-actions a,
.qzen-product-actions button,
.qzen-add-to-cart,
.qzen-quick-view-btn {
  width: 100% !important;
  min-width: 0 !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 10px !important;
  border-radius: 999px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
}

@media(max-width:760px) {

  .qzen-product-card__actions,
  .qzen-product-actions {
    position: static !important;
    margin-top: 12px !important;
    grid-template-columns: 1fr !important
  }

  .qzen-product-card__actions a,
  .qzen-product-card__actions button,
  .qzen-product-actions a,
  .qzen-product-actions button,
  .qzen-add-to-cart,
  .qzen-quick-view-btn {
    height: 46px !important
  }
}

/* =========================================================
   QZEN MINI CART DRAWER v5.1.8
   Layering and hierarchy repair
   ========================================================= */
.qzen-mini-cart {
  position: fixed !important;
  inset: 0 !important;
  z-index: 1205 !important;
  pointer-events: none !important;
  visibility: hidden;
}

.qzen-mini-cart.is-open {
  pointer-events: auto !important;
  visibility: visible;
}

.qzen-mini-cart__overlay {
  position: fixed !important;
  inset: 0 !important;
  z-index: 0 !important;
  background: rgba(36, 30, 25, .52) !important;
  opacity: 0;
  backdrop-filter: blur(6px);
  transition: opacity .24s ease;
}

.qzen-mini-cart.is-open .qzen-mini-cart__overlay {
  opacity: 1;
}

.qzen-mini-cart__panel {
  position: fixed !important;
  top: max(12px, env(safe-area-inset-top)) !important;
  right: max(12px, env(safe-area-inset-right)) !important;
  bottom: max(12px, env(safe-area-inset-bottom)) !important;
  z-index: 1 !important;
  display: grid !important;
  grid-template-rows: auto minmax(0, 1fr) auto;
  width: min(430px, calc(100vw - 24px)) !important;
  height: auto !important;
  overflow: hidden;
  border: 1px solid rgba(44, 44, 44, .1);
  border-radius: 30px;
  background: #FFFDFA !important;
  box-shadow: 0 28px 90px rgba(30, 24, 20, .26) !important;
  transform: translateX(calc(100% + 28px)) scale(.985) !important;
  transition: transform .32s cubic-bezier(.16, 1, .3, 1);
}

.qzen-mini-cart.is-open .qzen-mini-cart__panel {
  transform: translateX(0) scale(1) !important;
}

.qzen-mini-cart__head {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 18px;
  padding: 22px 22px 18px !important;
  border-bottom: 1px solid rgba(44, 44, 44, .08) !important;
  background: linear-gradient(180deg, #FFFDFA 0%, #F3EDE4 100%);
}

.qzen-mini-cart__head span {
  display: block;
  margin-bottom: 5px;
  color: #6C6C6C;
  font-size: 10.5px;
  font-weight: 900;
  letter-spacing: .09em;
  line-height: 1;
  text-transform: uppercase;
}

.qzen-mini-cart__head h2 {
  margin: 0 !important;
  color: #2C2C2C !important;
  font-family: 'Playfair Display', Georgia, serif !important;
  font-size: 34px !important;
  font-style: italic !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: .98 !important;
}

.qzen-mini-cart__close {
  flex: 0 0 42px !important;
  width: 42px !important;
  height: 42px !important;
  border: 1px solid rgba(44, 44, 44, .1) !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #2C2C2C !important;
  box-shadow: 0 10px 24px rgba(44, 44, 44, .08);
}

.qzen-mini-cart__body {
  min-height: 0;
  overflow-y: auto !important;
  padding: 18px 22px !important;
  background: #FFFDFA;
}

.qzen-mini-cart__body .woocommerce-mini-cart {
  display: grid;
  gap: 12px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.qzen-mini-cart__body .woocommerce-mini-cart-item {
  position: relative;
  display: grid !important;
  grid-template-columns: 74px minmax(0, 1fr) !important;
  gap: 13px !important;
  align-items: center !important;
  min-height: 92px;
  padding: 12px 44px 12px 12px !important;
  border: 1px solid rgba(44, 44, 44, .08) !important;
  border-radius: 22px;
  background: #fff !important;
  box-shadow: 0 12px 28px rgba(44, 44, 44, .045);
}

.qzen-mini-cart__body .woocommerce-mini-cart-item>a:not(.remove) {
  display: grid !important;
  grid-template-columns: 74px minmax(0, 1fr);
  grid-column: 1 / -1;
  gap: 13px;
  align-items: center;
  min-width: 0;
  color: #2C2C2C !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.3;
  text-decoration: none !important;
}

.qzen-mini-cart__body .woocommerce-mini-cart-item img {
  grid-column: 1;
  width: 74px !important;
  height: 84px !important;
  margin: 0 !important;
  border-radius: 17px !important;
  object-fit: cover !important;
  background: #F0EDE8;
}

.qzen-mini-cart__body .woocommerce-mini-cart-item .quantity {
  grid-column: 2;
  display: block;
  margin-top: -30px;
  color: #6C6C6C !important;
  font-size: 12.5px !important;
  font-weight: 750;
  line-height: 1.35;
}

.qzen-mini-cart__body .woocommerce-mini-cart-item .remove {
  position: absolute !important;
  top: 12px;
  right: 12px;
  display: grid !important;
  place-items: center;
  width: 30px !important;
  height: 30px !important;
  border-radius: 999px !important;
  background: #F3EDE4 !important;
  color: #7A8B6E !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  text-decoration: none !important;
}

.qzen-mini-cart__body .woocommerce-mini-cart__total {
  display: flex !important;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 0 !important;
  padding: 16px 2px 0 !important;
  border-top: 1px solid rgba(44, 44, 44, .1) !important;
  color: #2C2C2C !important;
}

.qzen-mini-cart__body .woocommerce-mini-cart__total strong {
  color: #6C6C6C;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.qzen-mini-cart__body .woocommerce-mini-cart__total .amount {
  color: #2C2C2C;
  font-size: 20px;
  font-weight: 950;
}

.qzen-mini-cart__body .woocommerce-mini-cart__buttons {
  display: none !important;
}

.qzen-mini-cart__body .woocommerce-mini-cart__empty-message {
  display: grid;
  place-items: center;
  min-height: 280px;
  padding: 28px !important;
  color: #6C6C6C !important;
  font-size: 14px !important;
  text-align: center;
}

.qzen-mini-cart__foot {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  gap: 10px !important;
  padding: 16px 22px 22px !important;
  border-top: 1px solid rgba(44, 44, 44, .08) !important;
  background: #FFFDFA;
}

.qzen-mini-cart__foot .qzen-btn {
  width: 100%;
  min-height: 52px;
  padding: 0 16px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 950 !important;
  white-space: nowrap;
}

.qzen-mini-cart__foot .qzen-btn--outline {
  border-color: rgba(44, 44, 44, .22) !important;
  background: #fff !important;
  color: #2C2C2C !important;
}

.qzen-mini-cart__foot .qzen-btn--primary {
  background: #2C2C2C !important;
  color: #fff !important;
}

@media (max-width: 640px) {
  .qzen-mini-cart__panel {
    top: max(10px, env(safe-area-inset-top)) !important;
    right: 10px !important;
    left: 10px !important;
    bottom: calc(10px + env(safe-area-inset-bottom)) !important;
    width: auto !important;
    border-radius: 26px;
  }

  .qzen-mini-cart__head {
    padding: 18px 18px 15px !important;
  }

  .qzen-mini-cart__head h2 {
    font-size: 31px !important;
  }

  .qzen-mini-cart__body {
    padding: 14px 14px 16px !important;
  }

  .qzen-mini-cart__body .woocommerce-mini-cart-item,
  .qzen-mini-cart__body .woocommerce-mini-cart-item>a:not(.remove) {
    grid-template-columns: 64px minmax(0, 1fr) !important;
  }

  .qzen-mini-cart__body .woocommerce-mini-cart-item img {
    width: 64px !important;
    height: 74px !important;
  }

  .qzen-mini-cart__foot {
    grid-template-columns: 1fr;
    padding: 12px 14px 14px !important;
  }
}

/* =========================================================
   QZEN UI FIXES v5.1.1
   Interaction and responsive polish
   ========================================================= */
.qzen-hero--atelier .qzen-hero__btn--secondary {
  background: rgba(255, 255, 255, .58) !important;
  border-color: rgba(44, 44, 44, .14) !important;
  color: #2C2C2C !important;
  box-shadow: 0 12px 32px rgba(44, 44, 44, .08);
}

.qzen-hero--atelier .qzen-hero__btn--secondary:hover {
  background: #fff !important;
  border-color: rgba(44, 44, 44, .24) !important;
  color: #2C2C2C !important;
}

.qzen-quick-view__actions {
  display: grid;
  grid-template-columns: minmax(112px, 138px) minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  margin-top: 22px;
}

.qzen-quick-view__qty {
  min-height: 50px;
  display: grid;
  grid-template-columns: 1fr 30px 38px 30px;
  align-items: center;
  gap: 4px;
  padding: 7px 9px;
  border: 1px solid rgba(44, 44, 44, .12);
  border-radius: 999px;
  background: #F9F8F6;
}

.qzen-quick-view__qty span {
  color: #6C6C6C;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.qzen-quick-view__qty button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #fff;
  color: #2C2C2C;
  font-size: 16px;
  font-weight: 900;
}

.qzen-quick-view__qty input {
  width: 38px;
  border: 0;
  background: transparent;
  color: #2C2C2C;
  font-size: 14px;
  font-weight: 900;
  text-align: center;
}

.qzen-quick-view__cart,
.qzen-quick-view__details {
  min-height: 50px;
}

.qzen-quick-view__details {
  grid-column: 1 / -1;
}

body.qzen-modal-open .qzen-toast-wrap {
  top: calc(var(--nav-height) + 14px);
  right: 18px;
  bottom: auto;
}

@media (max-width: 767px) {
  body.qzen-modal-open .qzen-toast-wrap {
    top: 82px;
    right: 20px;
    left: 20px;
  }

  body.qzen-modal-open .qzen-toast {
    min-width: 0;
    width: 100%;
  }

  body.qzen-product-page {
    padding-bottom: 154px;
  }

  body.qzen-product-page .qzen-sticky-cart {
    bottom: calc(88px + env(safe-area-inset-bottom));
    width: min(362px, calc(100% - 28px));
    z-index: 70;
  }

  body.qzen-product-page .qzen-mobile-nav {
    z-index: 60;
  }
}

@media (max-width: 420px) {
  .qzen-quick-view__actions {
    grid-template-columns: 1fr;
  }

  .qzen-quick-view__qty {
    grid-template-columns: 1fr 34px 44px 34px;
  }

  .qzen-quick-view__qty button {
    width: 34px;
    height: 34px;
  }

  .qzen-quick-view__qty input {
    width: 44px;
  }

  .woocommerce ul.products {
    grid-template-columns: 1fr !important;
  }

  .woocommerce ul.products li.product,
  .woocommerce ul.products .qzen-product-card {
    width: 100% !important;
  }
}

/* =========================================================
   QZEN Client Revision v5.1.11
   Header, menu, footer and homepage polish
   ========================================================= */
.qzen-nav {
  width: min(1480px, 100%) !important;
  grid-template-columns: minmax(132px, 220px) minmax(360px, 1fr) auto minmax(190px, 1fr) !important;
  gap: clamp(16px, 2.6vw, 42px) !important;
}

.qzen-wordmark {
  grid-column: 1 !important;
  justify-self: start !important;
  font-family: var(--font-display) !important;
  font-size: clamp(26px, 2.5vw, 38px) !important;
  font-style: italic !important;
  font-weight: 700 !important;
  letter-spacing: 0 !important;
  line-height: 1 !important;
  color: var(--qzen-ink, var(--n900)) !important;
  white-space: nowrap !important;
}

.qzen-nav__brand {
  grid-column: 3 !important;
}

.qzen-logo--symbol {
  width: 74px !important;
  height: 70px !important;
  overflow: hidden !important;
  align-items: flex-start !important;
}

.qzen-logo--symbol .qzen-logo__svg,
.qzen-header--scrolled .qzen-logo--symbol .qzen-logo__svg {
  width: 76px !important;
  max-width: 76px !important;
  height: auto !important;
  transform: translateY(0) !important;
}

.qzen-menu {
  grid-column: 2 !important;
  justify-self: end !important;
  width: 100% !important;
}

.qzen-menu__list {
  width: 100% !important;
  justify-content: flex-end !important;
  gap: clamp(18px, 2vw, 30px) !important;
}

.qzen-menu__list>li>a {
  font-size: 13px !important;
  letter-spacing: 0 !important;
}

.qzen-menu__list .sub-menu {
  left: 0 !important;
  min-width: 236px !important;
  transform: translateY(8px) !important;
}

.qzen-menu__list li:hover>.sub-menu,
.qzen-menu__list li:focus-within>.sub-menu {
  transform: translateY(0) !important;
}

.qzen-menu__list .sub-menu .sub-menu {
  top: -10px !important;
  left: calc(100% + 10px) !important;
  transform: translate(8px, 0) !important;
}

.qzen-menu__list .sub-menu li:hover>.sub-menu,
.qzen-menu__list .sub-menu li:focus-within>.sub-menu {
  transform: translate(0, 0) !important;
}

.qzen-menu__list .sub-menu a {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  line-height: 1.2 !important;
}

.qzen-nav-actions {
  grid-column: 4 !important;
}

.qzen-language-link {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 38px !important;
  padding-inline: 8px !important;
  color: var(--qzen-ink, var(--n900)) !important;
  font-size: 12px !important;
  font-weight: 900 !important;
  letter-spacing: 0 !important;
  white-space: nowrap !important;
}

@media (min-width: 1121px) {
  .qzen-menu-toggle {
    display: none !important;
  }
}

/* Legacy palette restored from the original v5.1.9 theme. Layout rules remain unchanged. */
:root {
  --cream: #F9F8F6;
  --sand: #F0EDE8;
  --warm-gray: #E8E4DF;
  --earth: #C4A882;
  --dark-earth: #8B7355;
  --coral: #E8A87C;
  --dark-coral: #D4845A;
  --olive: #A8B5A0;
  --dark-olive: #7A8B6E;
  --n900: #2C2C2C;
  --n800: #3A3A3A;
  --n700: #5A5A5A;
  --n600: #6C6C6C;
  --n500: #8A8A8A;
  --qzen-ink: #2C2C2C;
  --qzen-muted: #6C6C6C;
  --qzen-line: rgba(44, 44, 44, .12);
  --qzen-card: #FFFDFA;
  --qzen-cream: #F9F8F6;
  --qzen-accent: #8B7355;
}

/* Collection banner: editorial call-to-action within the restored heritage palette. */
.qzen-banner {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) 0;
  background:
    radial-gradient(circle at 82% 42%, rgba(139, 115, 85, .2), transparent 32%),
    radial-gradient(circle at 6% 92%, rgba(196, 168, 130, .08), transparent 28%),
    linear-gradient(110deg, #171715 0%, #1C1C1A 58%, #29251F 100%);
}

.qzen-banner::before {
  content: '';
  position: absolute;
  inset: 20px;
  z-index: -1;
  border: 1px solid rgba(196, 168, 130, .32);
  border-radius: 18px;
  pointer-events: none;
}

.qzen-banner__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: clamp(40px, 6vw, 92px);
}

.qzen-banner__content {
  max-width: 700px;
  text-align: left;
}

.qzen-banner__badge {
  display: block;
  margin: 0 0 26px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #C98F69;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.qzen-banner__title {
  max-width: 10ch;
  color: #F9F8F6;
  font-family: var(--font-display);
  font-size: clamp(48px, 5.6vw, 82px);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -.035em;
  line-height: .92;
  text-wrap: balance;
}

.qzen-banner__desc {
  max-width: 47rem;
  margin-top: 28px;
  color: rgba(249, 248, 246, .68);
  font-size: clamp(15px, 1.25vw, 17px);
  font-weight: 400;
  letter-spacing: -.01em;
  line-height: 1.8;
}

.qzen-banner .qzen-btn--white {
  margin-top: 34px !important;
  min-height: 54px;
  padding: 15px 26px;
  background: #D4B487 !important;
  border-color: #D4B487 !important;
  color: #2C2C2C !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 16px 40px rgba(0, 0, 0, .18);
}

.qzen-banner .qzen-btn--white:hover {
  background: #E8A87C !important;
  border-color: #E8A87C !important;
  color: #2C2C2C !important;
  transform: translateY(-2px);
}

.qzen-banner .qzen-btn--white:active {
  transform: translateY(0);
}

.qzen-banner__inner>.qzen-banner__image {
  position: relative;
  width: min(100%, 570px);
  aspect-ratio: 1000 / 855;
  justify-self: start;
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: #171715;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .18);
}

.qzen-banner__inner>.qzen-banner__image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  box-shadow: inset 0 0 44px 14px rgba(23, 23, 21, .56);
  pointer-events: none;
}

.qzen-banner__inner>.qzen-banner__image>img,
.qzen-banner__inner>.qzen-banner__image>.qzen-banner__image--fallback {
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  object-fit: cover;
  object-position: center;
}

.qzen-banner__inner>.qzen-banner__image>.qzen-banner__image--fallback {
  background: linear-gradient(145deg, #C4A882 0%, #8B7355 53%, #E8A87C 100%) !important;
}

@media (min-width: 900px) {
  .qzen-banner__inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    gap: clamp(44px, 6vw, 88px);
  }

  .qzen-banner__inner>.qzen-banner__image {
    justify-self: end;
  }
}

@media (max-width: 640px) {
  .qzen-banner {
    padding: 64px 0 54px;
  }

  .qzen-banner::before {
    inset: 10px;
  }

  .qzen-banner__title {
    font-size: clamp(40px, 12vw, 56px);
  }

  .qzen-banner__desc {
    font-size: 15px;
  }

  .qzen-banner__desc br {
    display: none;
  }

  .qzen-banner__inner>.qzen-banner__image {
    border-radius: 18px;
  }
}

@media (max-width: 1220px) {
  .qzen-nav {
    grid-template-columns: minmax(132px, 190px) minmax(0, 1fr) auto minmax(176px, auto) !important;
    gap: 18px !important;
  }

  .qzen-menu__list {
    gap: 14px !important;
  }

  .qzen-menu__list>li>a {
    font-size: 12px !important;
  }
}

@media (max-width: 1120px) {
  .qzen-nav {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  }

  .qzen-wordmark {
    grid-column: 1 !important;
    font-size: clamp(22px, 5vw, 30px) !important;
  }

  .qzen-nav__brand {
    grid-column: 2 !important;
  }

  .qzen-nav-actions {
    grid-column: 3 !important;
  }

  .qzen-language-link {
    display: none !important;
  }

  .qzen-logo--symbol,
  .qzen-logo--symbol .qzen-logo__svg,
  .qzen-header--scrolled .qzen-logo--symbol .qzen-logo__svg {
    width: 64px !important;
    max-width: 64px !important;
  }

  .qzen-logo--symbol {
    height: 60px !important;
  }
}

@media (max-width: 560px) {
  .qzen-wordmark {
    max-width: 42vw !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
  }

  .qzen-logo--symbol,
  .qzen-logo--symbol .qzen-logo__svg,
  .qzen-header--scrolled .qzen-logo--symbol .qzen-logo__svg {
    width: 56px !important;
    max-width: 56px !important;
  }

  .qzen-logo--symbol {
    height: 52px !important;
  }
}

.qzen-mobile-menu__sub {
  padding-left: 18px !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-style: normal !important;
  font-weight: 700 !important;
  color: var(--n600) !important;
}

.qzen-mobile-nav {
  display: none !important;
}

body.qzen-product-page {
  padding-bottom: 0 !important;
}

.qzen-hero__title {
  text-wrap: balance;
}

.qzen-hero__title .qzen-hero__word {
  display: inline-block;
}

.qzen-category-card__desc {
  max-width: 24rem;
  font-style: italic;
}

.qzen-banner__desc {
  max-width: 46rem;
}

.qzen-story__text strong {
  color: var(--n900);
  font-weight: 700;
}

.qzen-footer__grid {
  grid-template-columns: minmax(180px, 1.1fr) repeat(3, minmax(140px, .8fr)) !important;
  align-items: start !important;
}

.qzen-footer__brand {
  display: flex;
  align-items: flex-start;
}

.qzen-footer__logo {
  display: inline-flex;
  width: min(210px, 56vw);
}

.qzen-footer__logo img {
  width: 100%;
  height: auto;
  max-width: 100%;
  filter: none;
  object-fit: contain;
}

.qzen-footer__bottom {
  align-items: flex-start !important;
}

.qzen-footer__legal {
  margin-left: auto;
}

.qzen-search-overlay__bg {
  cursor: default;
}

.qzen-search-overlay__results {
  position: relative;
}

@media (max-width: 767px) {
  .qzen-footer {
    padding-bottom: 32px !important;
  }

  .qzen-footer__grid {
    grid-template-columns: 1fr !important;
  }

  .qzen-footer__legal {
    margin-left: 0;
  }
}

/* ==================== QZEN NIL PALETTE + RENEWED HERO v5.1.12 ==================== */
:root {
  --cream: #F9F8F6;
  --sand: #F0EDE8;
  --warm-gray: #E8E4DF;
  --earth: #C4A882;
  --dark-earth: #8B7355;
  --coral: #E8A87C;
  --dark-coral: #7A8B6E;
  --olive: #A8B5A0;
  --dark-olive: #8B7355;
  --n900: #2C2C2C;
  --n800: #3A3A3A;
  --n700: #5A5A5A;
  --n600: #6C6C6C;
  --n500: #7E6F64;
  --qzen-ink: #2C2C2C;
  --qzen-muted: #6C6C6C;
  --qzen-line: rgba(44, 44, 44, .12);
  --qzen-card: #FFFDFA;
  --qzen-cream: #F9F8F6;
  --qzen-accent: #8B7355;
}

html,
body {
  background: #F9F8F6;
  color: #2C2C2C !important;
}

body,
button,
input,
select,
textarea,
.qzen-menu__list>li>a,
.qzen-language-link,
.qzen-category-card__badge,
.qzen-section-title p,
.qzen-product-card__price,
.qzen-footer,
.woocommerce,
.woocommerce-page {
  letter-spacing: 0 !important;
}

.qzen-header,
.qzen-header--scrolled,
.qzen-mobile-menu,
.qzen-mini-cart__panel,
.qzen-search-overlay__panel {
  background: rgba(249, 248, 246, .94) !important;
  border-color: rgba(44, 44, 44, .1) !important;
  color: #2C2C2C !important;
  box-shadow: 0 18px 55px rgba(44, 44, 44, .08) !important;
}

.qzen-menu__list>li>a,
.qzen-menu__list .sub-menu a,
.qzen-mobile-menu a,
.qzen-nav-btn,
.qzen-language-link,
.qzen-wordmark {
  color: #2C2C2C !important;
}

.qzen-menu__list>li>a:hover,
.qzen-menu__list>li.current-menu-item>a,
.qzen-nav-btn:hover,
.qzen-language-link:hover {
  background: #F0EDE8 !important;
  color: #3A3A3A !important;
  box-shadow: 0 12px 30px rgba(44, 44, 44, .08) !important;
}

.qzen-menu__list .sub-menu,
.qzen-mobile-menu__sub,
.qzen-search-overlay__results,
.qzen-mini-cart__item,
.qzen-mini-cart__footer,
.qzen-cart-form,
.qzen-cart-summary .cart_totals,
.qzen-checkout-card,
.qzen-checkout-sticky,
.qzen-surface-card,
.woocommerce table.shop_table,
.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  background: #FFFDFA !important;
  border-color: rgba(44, 44, 44, .11) !important;
  color: #2C2C2C !important;
  box-shadow: 0 24px 70px rgba(44, 44, 44, .07) !important;
}

.qzen-cart-badge,
.qzen-update-cart,
.qzen-cart-summary .checkout-button,
.qzen-payment-box #place_order,
.woocommerce #respond input#submit.alt,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt,
.woocommerce .button,
.button,
.qzen-btn {
  background: #8B7355 !important;
  border-color: #8B7355 !important;
  color: #FFFFFF !important;
  box-shadow: 0 16px 38px rgba(139, 115, 85, .22) !important;
}

.qzen-cart-summary .checkout-button:hover,
.qzen-payment-box #place_order:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.button:hover,
.qzen-btn:hover {
  background: #7A8B6E !important;
  border-color: #7A8B6E !important;
  color: #FFFFFF !important;
}

.qzen-section--sand,
.qzen-product-section,
.qzen-newsletter,
.qzen-story,
body.woocommerce-cart,
body.woocommerce-checkout,
body.woocommerce-account {
  background: #F9F8F6;
}

.qzen-category-card,
.qzen-product-card,
.qzen-cart-table tbody tr.cart_item,
.qzen-cart-table .quantity,
.qzen-payment-box,
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select,
.select2-container .select2-selection--single {
  background: #FFFDFA !important;
  border-color: rgba(44, 44, 44, .12) !important;
  color: #2C2C2C !important;
}

.qzen-footer {
  background:
    radial-gradient(circle at 16% 12%, rgba(196, 168, 130, .22), transparent 30%),
    linear-gradient(135deg, #2C2C2C 0%, #3A3A3A 58%, #7A8B6E 100%) !important;
  color: rgba(249, 248, 246, .88) !important;
}

.qzen-footer a,
.qzen-footer strong,
.qzen-footer h2,
.qzen-footer h3 {
  color: #F9F8F6 !important;
}

.qzen-hero--renewed {
  position: relative;
  min-height: min(820px, calc(100vh + 10px));
  margin-top: calc(var(--nav-height, 92px) * -1);
  padding: calc(var(--nav-height, 92px) + 56px) clamp(20px, 4vw, 70px) 72px;
  overflow: hidden;
  isolation: isolate;
  color: #2C2C2C;
  background:
    radial-gradient(circle at 12% 18%, rgba(196, 168, 130, .48), transparent 32%),
    radial-gradient(circle at 86% 18%, rgba(232, 168, 124, .28), transparent 28%),
    linear-gradient(135deg, #F9F8F6 0%, #F0EDE8 52%, #E8E4DF 100%) !important;
}

.qzen-hero--renewed::before {
  content: "";
  position: absolute;
  inset: 7% 4% auto auto;
  width: min(42vw, 520px);
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, .42);
  border: 1px solid rgba(44, 44, 44, .08);
  filter: blur(.2px);
  pointer-events: none;
  z-index: -1;
}

.qzen-hero--renewed::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 38%;
  background: linear-gradient(180deg, rgba(249, 248, 246, 0), #F9F8F6 90%);
  pointer-events: none;
  z-index: -1;
}

.qzen-hero--renewed .qzen-hero__inner {
  width: min(1240px, 100%);
  margin-inline: auto;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(420px, 1.1fr);
  align-items: center;
  gap: clamp(34px, 6vw, 86px);
}

.qzen-hero--renewed .qzen-hero__content {
  max-width: 650px;
}

.qzen-hero__kicker {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  margin: 0 0 22px;
  padding: 0 16px;
  border: 1px solid rgba(44, 44, 44, .14);
  border-radius: 999px;
  background: rgba(255, 255, 255, .58);
  color: #5A5A5A;
  font: 800 12px/1 var(--font-body);
  letter-spacing: 0 !important;
  text-transform: uppercase;
  font-family: 'Playfair Display', Georgia, serif !important;

}

.qzen-hero--renewed .qzen-hero__title {
  margin: 0;
  max-width: 11ch;
  color: #2C2C2C !important;
  font-family: var(--font-display);
  font-size: clamp(54px, 7.8vw, 112px);
  font-weight: 500;
  line-height: .9;
  letter-spacing: 0 !important;
}

.qzen-hero__title-accent {
  display: block;
  color: #8B7355;
  font-style: italic;
}

.qzen-hero--renewed .qzen-hero__desc {
  max-width: 560px;
  margin: 28px 0 0;
  color: #5A5A5A !important;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.65;
  letter-spacing: 0 !important;
}

.qzen-hero--renewed .qzen-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.qzen-hero--renewed .qzen-hero__btn {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 22px;
  border-radius: 999px;
  font: 900 14px/1 var(--font-body);
  letter-spacing: 0 !important;
  text-decoration: none !important;
}

.qzen-hero--renewed .qzen-hero__btn--primary {
  background: #8B7355 !important;
  border: 1px solid #8B7355 !important;
  color: #FFFFFF !important;
  box-shadow: 0 18px 42px rgba(139, 115, 85, .24) !important;
}

.qzen-hero--renewed .qzen-hero__btn--secondary {
  background: rgba(255, 255, 255, .62) !important;
  border: 1px solid rgba(44, 44, 44, .14) !important;
  color: #2C2C2C !important;
  box-shadow: 0 12px 32px rgba(44, 44, 44, .08) !important;
}

.qzen-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
}

.qzen-hero__chips li {
  padding: 10px 14px;
  border: 1px solid rgba(44, 44, 44, .12);
  border-radius: 999px;
  background: rgba(255, 255, 255, .48);
  color: #3A3A3A;
  font: 800 13px/1 var(--font-body);
  letter-spacing: 0 !important;
}

.qzen-hero__gallery {
  position: relative;
  min-height: clamp(520px, 55vw, 660px);
  display: grid;
  grid-template-columns: 1fr .72fr;
  grid-template-rows: 1fr 1fr;
  gap: clamp(14px, 2vw, 24px);
}

.qzen-hero__product {
  position: relative;
  display: flex;
  min-height: 210px;
  overflow: hidden;
  border: 1px solid rgba(44, 44, 44, .1);
  border-radius: 34px;
  background: #FFFDFA;
  color: #FFFFFF !important;
  text-decoration: none !important;
  box-shadow: 0 28px 80px rgba(44, 44, 44, .14);
}

.qzen-hero__product--main {
  grid-row: 1 / 3;
  min-height: 100%;
}

.qzen-hero__product--offset {
  min-height: 0;
}

.qzen-hero__product img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform .8s cubic-bezier(.2, .8, .2, 1);
}

.qzen-hero__product:hover img {
  transform: scale(1.055);
}

.qzen-hero__product::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(44, 44, 44, .02) 18%, rgba(44, 44, 44, .74) 100%);
}

.qzen-hero__product span,
.qzen-hero__product strong,
.qzen-hero__product em {
  position: relative;
  z-index: 1;
}

.qzen-hero__product span {
  align-self: flex-end;
  margin: auto 22px 74px;
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(249, 248, 246, .18);
  color: rgba(255, 255, 255, .86);
  font: 800 11px/1 var(--font-body);
  letter-spacing: 0 !important;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.qzen-hero__product strong {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 32px;
  color: #FFFFFF;
  font-family: var(--font-display);
  font-size: clamp(22px, 2.2vw, 34px);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0 !important;
}

.qzen-hero__product em {
  position: absolute;
  right: 18px;
  top: 18px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(249, 248, 246, .86);
  color: #2C2C2C;
  font: 900 13px/1 var(--font-body);
  letter-spacing: 0 !important;
  font-style: normal;
}

.qzen-hero__note {
  position: absolute;
  left: clamp(18px, 3vw, 34px);
  bottom: clamp(18px, 3vw, 34px);
  width: min(250px, 62%);
  padding: 18px 20px;
  border: 1px solid rgba(249, 248, 246, .42);
  border-radius: 26px;
  background: rgba(249, 248, 246, .72);
  color: #2C2C2C;
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 55px rgba(44, 44, 44, .12);
}

.qzen-hero__note span {
  display: block;
  margin-bottom: 6px;
  color: #8B7355;
  font: 900 11px/1 var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0 !important;
}

.qzen-hero__note strong {
  display: block;
  color: #2C2C2C;
  font: 800 18px/1.15 var(--font-body);
  letter-spacing: 0 !important;
}

@media (max-width: 1020px) {
  .qzen-hero--renewed {
    min-height: auto;
    padding-top: calc(var(--nav-height, 82px) + 42px);
  }

  .qzen-hero--renewed .qzen-hero__inner {
    grid-template-columns: 1fr;
  }

  .qzen-hero--renewed .qzen-hero__title {
    max-width: 12ch;
    font-size: clamp(48px, 11vw, 86px);
  }

  .qzen-hero__gallery {
    min-height: 560px;
  }
}

@media (max-width: 640px) {
  .qzen-hero--renewed {
    padding-inline: 16px;
    padding-bottom: 48px;
  }

  .qzen-hero__gallery {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .qzen-hero__product,
  .qzen-hero__product--main,
  .qzen-hero__product--offset {
    grid-row: auto;
    min-height: 320px;
  }

  .qzen-hero__note {
    position: relative;
    left: auto;
    bottom: auto;
    width: auto;
  }
}

/* Final header cascade: this intentionally sits after legacy header revisions. */
:root {
  --nav-height: 108px;
}

.qzen-header,
.qzen-header--scrolled {
  height: 108px !important;
  background: rgba(255, 253, 250, .92) !important;
  border-bottom: 1px solid rgba(44, 44, 44, .12) !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: blur(20px) saturate(130%);
  backdrop-filter: blur(20px) saturate(130%);
}

.qzen-header--scrolled {
  background: rgba(255, 253, 250, .97) !important;
  box-shadow: 0 12px 34px rgba(44, 44, 44, .07) !important;
}

.qzen-header-spacer {
  height: 108px !important;
}

.qzen-nav.qzen-nav--renewed {
  width: min(1440px, 100%) !important;
  height: 100% !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) 90px minmax(0, 1fr) !important;
  align-items: center !important;
  gap: clamp(18px, 3vw, 52px) !important;
  padding-inline: clamp(18px, 4vw, 58px) !important;
}

.qzen-nav.qzen-nav--renewed .qzen-nav__brand {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 90px !important;
  min-width: 90px !important;
}

.qzen-nav.qzen-nav--renewed .qzen-logo--symbol {
  display: block !important;
  width: 80px !important;
  height: auto !important;
  overflow: visible !important;
  line-height: 0 !important;
  transition: transform .25s ease !important;
}

.qzen-nav.qzen-nav--renewed .qzen-logo--symbol:hover {
  transform: translateY(-2px) !important;
}

.qzen-nav.qzen-nav--renewed .qzen-logo--symbol .qzen-logo__svg,
.qzen-header--scrolled .qzen-nav.qzen-nav--renewed .qzen-logo--symbol .qzen-logo__svg {
  display: block !important;
  width: 80px !important;
  max-width: none !important;
  height: auto !important;
  transform: none !important;
}

.qzen-nav.qzen-nav--renewed .qzen-menu {
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  width: auto !important;
  min-width: 0 !important;
}

.qzen-nav.qzen-nav--renewed .qzen-menu__list {
  width: auto !important;
  justify-content: flex-start !important;
  gap: clamp(18px, 2.2vw, 34px) !important;
}

.qzen-nav.qzen-nav--renewed .qzen-menu__list>li>a {
  min-height: 42px !important;
  padding: 0 !important;
  color: #2C2C2C !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  letter-spacing: .01em !important;
}

.qzen-nav.qzen-nav--renewed .qzen-menu__list>li>a:hover,
.qzen-nav.qzen-nav--renewed .qzen-menu__list>li.current-menu-item>a,
.qzen-nav.qzen-nav--renewed .qzen-menu__list>li.current-menu-ancestor>a {
  background: transparent !important;
  color: #8B7355 !important;
  box-shadow: none !important;
}

.qzen-nav.qzen-nav--renewed .qzen-nav-actions {
  grid-column: 3 !important;
  grid-row: 1 !important;
  justify-self: end !important;
  gap: 10px !important;
}

.qzen-nav.qzen-nav--renewed .qzen-nav-btn {
  width: 36px !important;
  height: 36px !important;
  flex-basis: 36px !important;
  border: 1px solid rgba(44, 44, 44, .1) !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, .48) !important;
  color: #2C2C2C !important;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease !important;
}

.qzen-nav.qzen-nav--renewed .qzen-nav-btn:hover {
  border-color: #8B7355 !important;
  background: #F0EDE8 !important;
  color: #7A8B6E !important;
  box-shadow: none !important;
  transform: translateY(-1px) !important;
}

.qzen-nav.qzen-nav--renewed .qzen-language-link {
  min-height: 36px !important;
  padding-inline: 5px !important;
  color: #5A5A5A !important;
  font-size: 11px !important;
  font-weight: 900 !important;
  letter-spacing: .04em !important;
}

.qzen-nav.qzen-nav--renewed .qzen-language-link:hover {
  background: transparent !important;
  color: #8B7355 !important;
  box-shadow: none !important;
}

.qzen-nav.qzen-nav--renewed .qzen-cart-badge {
  border-color: #8B7355 !important;
  background: #FFFDFA !important;
  color: #7A8B6E !important;
}

.qzen-nav.qzen-nav--renewed .qzen-menu__list .sub-menu {
  border-color: rgba(44, 44, 44, .12) !important;
  background: #FFFDFA !important;
  box-shadow: 0 18px 46px rgba(44, 44, 44, .13) !important;
}

@media (min-width: 1121px) {
  .qzen-nav.qzen-nav--renewed .qzen-menu-toggle {
    display: none !important;
  }
}

@media (max-width: 1120px) {
  :root {
    --nav-height: 88px;
  }

  .qzen-header,
  .qzen-header--scrolled,
  .qzen-header-spacer {
    height: 88px !important;
  }

  .qzen-nav.qzen-nav--renewed {
    grid-template-columns: minmax(0, 1fr) 76px minmax(0, 1fr) !important;
    gap: 8px !important;
  }

  .qzen-nav.qzen-nav--renewed .qzen-nav__brand {
    width: 76px !important;
    min-width: 76px !important;
  }

  .qzen-nav.qzen-nav--renewed .qzen-logo--symbol,
  .qzen-nav.qzen-nav--renewed .qzen-logo--symbol .qzen-logo__svg,
  .qzen-header--scrolled .qzen-nav.qzen-nav--renewed .qzen-logo--symbol .qzen-logo__svg {
    width: 68px !important;
  }

  .qzen-nav.qzen-nav--renewed .qzen-logo--symbol {
    height: auto !important;
  }

  .qzen-nav.qzen-nav--renewed .qzen-menu {
    display: none !important;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 78px;
  }

  .qzen-header,
  .qzen-header--scrolled,
  .qzen-header-spacer {
    height: 78px !important;
  }

  .qzen-nav.qzen-nav--renewed {
    grid-template-columns: minmax(0, 1fr) 66px minmax(0, 1fr) !important;
    padding-inline: 13px !important;
  }

  .qzen-nav.qzen-nav--renewed .qzen-nav__brand {
    width: 66px !important;
    min-width: 66px !important;
  }

  .qzen-nav.qzen-nav--renewed .qzen-logo--symbol,
  .qzen-nav.qzen-nav--renewed .qzen-logo--symbol .qzen-logo__svg,
  .qzen-header--scrolled .qzen-nav.qzen-nav--renewed .qzen-logo--symbol .qzen-logo__svg {
    width: 58px !important;
  }

  .qzen-nav.qzen-nav--renewed .qzen-logo--symbol {
    height: auto !important;
  }

  .qzen-nav.qzen-nav--renewed .qzen-nav-actions {
    gap: 6px !important;
  }

  .qzen-nav.qzen-nav--renewed .qzen-nav-btn {
    width: 33px !important;
    height: 33px !important;
    flex-basis: 33px !important;
  }

  .qzen-nav.qzen-nav--renewed .qzen-language-link,
  .qzen-nav.qzen-nav--renewed .qzen-nav-account {
    display: none !important;
  }
}

/* =========================================================
   QZEN BRAND TYPOGRAPHY + LEFT LOCKUP HEADER v5.1.16
   The mark comes from the supplied PDF-derived SVG; the wordmark
   is set as live text for crisp rendering at every breakpoint.
   ========================================================= */
:root {
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --nav-height: 80px;
}

body {
  font-family: var(--font-body);
  color: #2C2C2C;
  font-size: 16px;
  line-height: 1.65;
}

.qzen-header.qzen-header--brand-left,
.qzen-header.qzen-header--brand-left.qzen-header--scrolled {
  height: 80px !important;
  background: rgba(255, 253, 250, .96) !important;
  border-bottom: 1px solid rgba(44, 44, 44, .11) !important;
  box-shadow: none !important;
}

.qzen-header.qzen-header--brand-left.qzen-header--scrolled {
  box-shadow: 0 10px 30px rgba(44, 44, 44, .07) !important;
}

.qzen-header--brand-left+.qzen-mobile-overlay~.qzen-header-spacer,
.qzen-header-spacer {
  height: 80px !important;
}

.qzen-nav.qzen-nav--brand-left {
  width: min(1440px, 100%) !important;
  display: grid !important;
  grid-template-columns: minmax(250px, 1fr) auto minmax(250px, 1fr) !important;
  gap: 26px !important;
  padding-inline: clamp(18px, 4vw, 58px) !important;
}

.qzen-nav.qzen-nav--brand-left .qzen-nav__brand {
  grid-column: 1 !important;
  grid-row: 1 !important;
  justify-self: start !important;
  width: auto !important;
  min-width: 0 !important;
}

.qzen-brand-lockup {
  display: inline-flex !important;
  align-items: center !important;
  gap: 11px !important;
  color: #2C2C2C !important;
  text-decoration: none !important;
}

.qzen-brand-lockup__symbol {
  display: block;
  width: 48px;
  height: 44px;
  overflow: hidden;
  flex: 0 0 48px;
  line-height: 0;
}

.qzen-brand-lockup__symbol .qzen-logo__svg {
  display: block !important;
  width: 48px !important;
  max-width: none !important;
  height: auto !important;
  transform: none !important;
}

.qzen-brand-lockup__wordmark {
  display: block;
  padding-bottom: 1px;
  font-family: var(--font-display);
  font-size: 30px;
  font-weight: 700;
  font-style: normal;
  letter-spacing: -.045em;
  line-height: .94;
  white-space: nowrap;
}

.qzen-nav.qzen-nav--brand-left .qzen-menu {
  grid-column: 2 !important;
  grid-row: 1 !important;
  justify-self: center !important;
  width: auto !important;
}

.qzen-nav.qzen-nav--brand-left .qzen-menu__list {
  justify-content: center !important;
  gap: clamp(20px, 2.2vw, 34px) !important;
}

.qzen-nav.qzen-nav--brand-left .qzen-menu__list>li>a {
  min-height: 38px !important;
  color: #5A5A5A !important;
  font-family: var(--font-body) !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: .075em !important;
  line-height: 1 !important;
  text-transform: uppercase !important;
}

.qzen-nav.qzen-nav--brand-left .qzen-menu__list>li>a::after {
  bottom: 3px !important;
  height: 1px !important;
}

.qzen-nav.qzen-nav--brand-left .qzen-menu__list>li>a:hover,
.qzen-nav.qzen-nav--brand-left .qzen-menu__list>li.current-menu-item>a,
.qzen-nav.qzen-nav--brand-left .qzen-menu__list>li.current-menu-ancestor>a {
  color: #2C2C2C !important;
}

.qzen-nav.qzen-nav--brand-left .qzen-nav-actions {
  grid-column: 3 !important;
  grid-row: 1 !important;
  justify-self: end !important;
}

.qzen-nav.qzen-nav--brand-left .qzen-nav-btn {
  width: 34px !important;
  height: 34px !important;
  flex-basis: 34px !important;
  border-color: rgba(44, 44, 44, .09) !important;
}

.qzen-nav.qzen-nav--brand-left .qzen-language-link {
  padding-inline: 4px !important;
  color: #5A5A5A !important;
  font-size: 10px !important;
  letter-spacing: .09em !important;
}

.qzen-hero--renewed .qzen-hero__content {
  max-width: 610px;
}

.qzen-hero--renewed .qzen-hero__kicker {
  margin-bottom: 18px;
  color: #5A5A5A;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em !important;
}

.qzen-hero--renewed .qzen-hero__title {
  max-width: 12ch;
  color: #2C2C2C !important;
  font-family: var(--font-display) !important;
  font-size: clamp(50px, 5.7vw, 82px) !important;
  font-weight: 600 !important;
  font-style: normal !important;
  letter-spacing: -.04em !important;
  line-height: .92 !important;
  text-wrap: balance;
}

.qzen-hero--renewed .qzen-hero__title-accent {
  margin-top: .08em;
  padding-bottom: .08em;
  color: #8B7355;
  font-style: italic;
}

.qzen-hero--renewed .qzen-hero__desc {
  max-width: 51ch;
  margin-top: 22px;
  color: #5A5A5A !important;
  font-family: var(--font-body) !important;
  font-size: clamp(15px, 1.2vw, 18px) !important;
  font-weight: 500;
  line-height: 1.7;
}

.qzen-section-title {
  margin-bottom: clamp(30px, 4vw, 52px);
}

.qzen-section-title h2 {
  max-width: 16ch;
  color: #2C2C2C !important;
  font-family: var(--font-display) !important;
  font-size: clamp(38px, 4.5vw, 62px) !important;
  font-weight: 600 !important;
  font-style: normal !important;
  letter-spacing: -.04em !important;
  line-height: .96 !important;
  text-wrap: balance;
}

.qzen-section-title p {
  max-width: 48ch;
  color: #6C6C6C !important;
  font-family: var(--font-body) !important;
  font-size: 15px !important;
  font-weight: 500;
  line-height: 1.65;
}

.qzen-category-card__title {
  font-family: var(--font-display) !important;
  font-size: clamp(32px, 3.4vw, 46px) !important;
  font-weight: 600 !important;
  font-style: normal !important;
  letter-spacing: -.035em !important;
  line-height: .95 !important;
}

.qzen-category-card__desc,
.qzen-category-card__link,
.qzen-product-card__title,
.qzen-product-card__price {
  font-family: var(--font-body) !important;
  font-style: normal !important;
}

@media (max-width: 1120px) {
  :root {
    --nav-height: 76px;
  }

  .qzen-header.qzen-header--brand-left,
  .qzen-header.qzen-header--brand-left.qzen-header--scrolled,
  .qzen-header-spacer {
    height: 76px !important;
  }

  .qzen-nav.qzen-nav--brand-left {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 12px !important;
  }

  .qzen-nav.qzen-nav--brand-left .qzen-nav__brand {
    grid-column: 1 !important;
  }

  .qzen-nav.qzen-nav--brand-left .qzen-nav-actions {
    grid-column: 2 !important;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 70px;
  }

  .qzen-header.qzen-header--brand-left,
  .qzen-header.qzen-header--brand-left.qzen-header--scrolled,
  .qzen-header-spacer {
    height: 70px !important;
  }

  .qzen-nav.qzen-nav--brand-left {
    padding-inline: 14px !important;
  }

  .qzen-brand-lockup {
    gap: 8px !important;
  }

  .qzen-brand-lockup__symbol {
    width: 40px;
    height: 37px;
    flex-basis: 40px;
  }

  .qzen-brand-lockup__symbol .qzen-logo__svg {
    width: 40px !important;
  }

  .qzen-brand-lockup__wordmark {
    font-size: 26px;
  }

  .qzen-hero--renewed .qzen-hero__title {
    max-width: 11ch;
    font-size: clamp(46px, 13vw, 62px) !important;
    line-height: .94 !important;
  }

  .qzen-hero--renewed .qzen-hero__desc {
    font-size: 15px !important;
  }
}

/* =========================================================
   QZEN B2B HEADER v5.1.22
   Compact, informational and intentionally non-editorial.
   ========================================================= */
:root {
  --nav-height: 78px;
}

.qzen-header.qzen-header--b2b,
.qzen-header.qzen-header--b2b.qzen-header--scrolled {
  height: 78px !important;
  border-top: 4px solid #2C2C2C !important;
  border-bottom: 1px solid rgba(44, 44, 44, .16) !important;
  background: #FFFDFA !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.qzen-header.qzen-header--b2b.qzen-header--scrolled {
  box-shadow: 0 8px 20px rgba(44, 44, 44, .08) !important;
}

.qzen-header.qzen-header--b2b~.qzen-header-spacer,
.qzen-header-spacer {
  height: 78px !important;
}

.qzen-nav.qzen-nav--b2b {
  width: min(1480px, 80%) !important;
  grid-template-columns: minmax(260px, 1fr) auto minmax(260px, 1fr) !important;
  gap: clamp(20px, 3vw, 54px) !important;
  padding-inline: clamp(20px, 4vw, 60px) !important;
}

.qzen-nav.qzen-nav--b2b .qzen-nav__brand {
  align-self: center !important;
}

.qzen-brand-lockup.qzen-brand-lockup--b2b {
  width: 193px;
  height: 59px;
  gap: 0 !important;
}

.qzen-brand-lockup--b2b .qzen-brand-lockup__symbol {
  width: 193px;
  height: 59px;
  flex: 0 0 193px;
  overflow: visible;
}

.qzen-brand-lockup--b2b .qzen-brand-lockup__symbol .qzen-logo__svg {
  width: 193px !important;
  height: 59px !important;
  max-width: 100% !important;
  object-fit: contain;
}

.qzen-brand-lockup__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 3px;
}

.qzen-brand-lockup--b2b .qzen-brand-lockup__wordmark {
  padding: 0;
  color: #2C2C2C;
  font-family: var(--font-body);
  font-size: 19px;
  font-weight: 800;
  font-style: normal;
  letter-spacing: -.045em;
  line-height: 1;
  text-transform: uppercase;
}

.qzen-brand-lockup__descriptor {
  color: #6C6C6C;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .1em;
  line-height: 1;
  text-transform: uppercase;
  white-space: nowrap;
}

.qzen-nav.qzen-nav--b2b .qzen-menu__list {
  gap: clamp(18px, 2vw, 30px) !important;
}

.qzen-nav.qzen-nav--b2b .qzen-menu__list>li>a {
  min-height: 36px !important;
  color: #5A5A5A !important;
  font-family: var(--font-body) !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
  text-transform: uppercase !important;
}

.qzen-nav.qzen-nav--b2b .qzen-menu__list>li>a::after {
  bottom: 2px !important;
  height: 2px !important;
  background: #8B7355 !important;
}

.qzen-nav.qzen-nav--b2b .qzen-nav-actions {
  gap: 6px !important;
  padding-left: 18px;
  border-left: 1px solid rgba(44, 44, 44, .14);
}

.qzen-nav.qzen-nav--b2b .qzen-nav-btn {
  width: 32px !important;
  height: 32px !important;
  flex-basis: 32px !important;
  border: 0 !important;
  border-radius: 4px !important;
  background: transparent !important;
  color: #5A5A5A !important;
}

.qzen-nav.qzen-nav--b2b .qzen-nav-btn:hover {
  background: #F0EDE8 !important;
  color: #2C2C2C !important;
  transform: none !important;
}

.qzen-nav.qzen-nav--b2b .qzen-language-link {
  min-height: 32px !important;
  padding-inline: 7px !important;
  color: #6C6C6C !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: .08em !important;
}

.qzen-b2b-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid #2C2C2C;
  border-radius: 4px;
  background: #2C2C2C;
  color: #FFFFFF !important;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .05em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
  white-space: nowrap;
}

.qzen-b2b-cta:hover {
  border-color: #8B7355;
  background: #8B7355;
  color: #FFFFFF !important;
}

.qzen-b2b-cta:active {
  transform: translateY(1px);
}

@media (max-width: 1120px) {
  :root {
    --nav-height: 72px;
  }

  .qzen-header.qzen-header--b2b,
  .qzen-header.qzen-header--b2b.qzen-header--scrolled,
  .qzen-header-spacer {
    height: 72px !important;
  }

  .qzen-nav.qzen-nav--b2b {
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 16px !important;
  }

  .qzen-nav.qzen-nav--b2b .qzen-nav-actions {
    grid-column: 2 !important;
  }

  .qzen-brand-lockup.qzen-brand-lockup--b2b,
  .qzen-brand-lockup--b2b .qzen-brand-lockup__symbol {
    width: 156px;
    height: auto;
    aspect-ratio: 193 / 59;
  }

  .qzen-brand-lockup--b2b .qzen-brand-lockup__symbol {
    flex-basis: 156px;
  }

  .qzen-brand-lockup--b2b .qzen-brand-lockup__symbol .qzen-logo__svg {
    width: 100% !important;
    height: auto !important;
  }
}

/* =========================================================
   QZEN completion v5.1.36
   Accessibility, resilient actions and final interaction polish
   ========================================================= */
.qzen-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.qzen-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 120;
  padding: 12px 16px;
  border-radius: 10px;
  background: #2C2C2C;
  color: #FFFFFF !important;
  font-size: 14px;
  font-weight: 800;
  transform: translateY(-160%);
  transition: transform .2s ease;
}

.qzen-skip-link:focus {
  transform: translateY(0);
}

:where(a, button, input, select, textarea, [tabindex]):focus-visible {
  outline: 3px solid #8B7355;
  outline-offset: 3px;
}

.qzen-mobile-menu__cta {
  color: #FFFFFF !important;
}

.qzen-nav-actions .qzen-nav-btn,
.qzen-mobile-menu__close {
  width: 44px !important;
  min-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
}

.qzen-sticky-cart__link {
  flex: 0 0 auto;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 13px 18px;
  border-radius: 999px;
  background: #FFFFFF;
  color: #2C2C2C !important;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: background .2s ease, transform .2s ease;
}

.qzen-sticky-cart__link:hover {
  background: #E8E4DF;
  transform: translateY(-1px);
}

.qzen-sticky-cart__link:active {
  transform: translateY(1px);
}

@media (max-width: 640px) {
  .qzen-nav.qzen-nav--b2b .qzen-nav-actions {
    gap: 4px !important;
  }

  .qzen-nav-actions .qzen-nav-btn {
    width: 42px !important;
    min-width: 42px !important;
    height: 42px !important;
    min-height: 42px !important;
  }
}

@media (max-width: 640px) {
  :root {
    --nav-height: 68px;
  }

  .qzen-header.qzen-header--b2b,
  .qzen-header.qzen-header--b2b.qzen-header--scrolled,
  .qzen-header-spacer {
    height: 68px !important;
  }

  .qzen-nav.qzen-nav--b2b {
    padding-inline: 14px !important;
  }

  .qzen-brand-lockup.qzen-brand-lockup--b2b {
    width: clamp(108px, 34vw, 132px);
    height: auto;
    gap: 0 !important;
  }

  .qzen-brand-lockup--b2b .qzen-brand-lockup__symbol {
    width: clamp(108px, 34vw, 132px);
    height: auto;
    flex-basis: clamp(108px, 34vw, 132px);
    aspect-ratio: 193 / 59;
  }

  .qzen-brand-lockup--b2b .qzen-brand-lockup__symbol .qzen-logo__svg {
    width: 100% !important;
    height: auto !important;
  }

  .qzen-brand-lockup--b2b .qzen-brand-lockup__wordmark {
    font-size: 16px;
  }

  .qzen-brand-lockup__descriptor {
    font-size: 7px;
    letter-spacing: .075em;
  }

  .qzen-nav.qzen-nav--b2b .qzen-nav-actions {
    padding-left: 10px;
  }

  .qzen-b2b-cta {
    display: none;
  }
}

.qzen-mobile-menu__head .qzen-logo__svg,
.qzen-header--scrolled .qzen-mobile-menu__head .qzen-logo__svg {
  width: 160px !important;
  height: auto !important;
  max-width: min(160px, 58vw) !important;
  object-fit: contain !important;
}

/* B2B desktop alignment: navigation left, brand centered, actions right. */
@media (min-width: 1121px) {
  .qzen-nav.qzen-nav--b2b {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) !important;
  }

  .qzen-nav.qzen-nav--b2b .qzen-menu {
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
  }

  .qzen-nav.qzen-nav--b2b .qzen-nav__brand {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
  }

  .qzen-nav.qzen-nav--b2b .qzen-nav-actions {
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
  }
}

/* Warm ivory site canvas: keeps cards and the dark footer visually distinct. */
:root {
  --qzen-site-bg: #F7F3ED;
  --cream: var(--qzen-site-bg);
  --qzen-cream: var(--qzen-site-bg);
}

html,
body,
.site,
#page,
.qzen-section--cream,
.qzen-section--sand,
.qzen-product-section,
.qzen-newsletter,
.qzen-story,
body.woocommerce-cart,
body.woocommerce-checkout,
body.woocommerce-account {
  background-color: var(--qzen-site-bg) !important;
}

/* A short, centered coffee-toned shadow below the hero. */
.qzen-hero-edge-shadow {
  position: relative;
  z-index: 2;
  width: min(1080px, calc(100vw - 40px));
  height: 34px;
  margin: 0 auto -34px;
  overflow: hidden;
  pointer-events: none;
}

.qzen-hero-edge-shadow::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 12px;
  width: calc(100% - 24px);
  height: 20px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(91, 64, 43, 0) 0%, rgba(91, 64, 43, .14) 12%, rgba(91, 64, 43, .14) 88%, rgba(91, 64, 43, 0) 100%);
  filter: blur(10px);
}

@media (max-width: 640px) {
  .qzen-hero-edge-shadow {
    width: calc(100vw - 40px);
    height: 26px;
    margin-bottom: -26px;
  }

  .qzen-hero-edge-shadow::before {
    top: -6px;
    left: 10px;
    width: calc(100% - 20px);
    height: 16px;
    background: linear-gradient(90deg, rgba(91, 64, 43, 0) 0%, rgba(91, 64, 43, .11) 14%, rgba(91, 64, 43, .11) 86%, rgba(91, 64, 43, 0) 100%);
    filter: blur(8px);
  }
}
