/* ============================================================
   PERFUME SHOP — MAIN STYLESHEET
   ============================================================ */

/* ─── RESET & BASE ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ivory: #f2ece2;
    --black: #1a1714;
    --taupe: #c9a227;
    --sand: #e3c565;
    --white: #ffffff;
    --light-sand: #1a1714;
    --dark-panel: #2c2520;
    --text-muted: #a89686;
    --text-faint: #8f8071;

    --font-serif: "Cormorant Garamond", serif;
    --font-sans: "Inter", sans-serif;

    --transition: 0.25s ease;
    --radius: 4px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    background: var(--black);
    color: var(--ivory);
    font-size: 15px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    display: block;
}
a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

/* ─── TYPOGRAPHY ─── */
h1,
h2,
h3,
h4 {
    font-family: var(--font-serif);
    font-weight: 300;
}

/* ─── UTILITY ─── */
.container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

.section-eyebrow {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.section-eyebrow::before,
.section-eyebrow::after {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--sand);
    display: block;
}
.section-title {
    font-family: var(--font-serif);
    font-size: 40px;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--taupe);
    margin-bottom: 8px;
}
.section-rule {
    width: 40px;
    height: 1px;
    background: var(--sand);
    margin: 16px auto 0;
}
.section-header {
    text-align: center;
    margin-bottom: 56px;
}

/* ─── BUTTONS ─── */
.btn-primary {
    display: inline-block;
    background: var(--taupe);
    color: var(--black);
    padding: 14px 36px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--taupe);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-sans);
}
.btn-primary:hover {
    background: var(--sand);
    border-color: var(--sand);
    color: var(--black);
}

.btn-outline {
    display: inline-block;
    color: var(--ivory);
    padding: 14px 36px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    border: 1px solid var(--ivory);
    cursor: pointer;
    transition: all var(--transition);
    background: transparent;
    font-family: var(--font-sans);
}
.btn-outline:hover {
    background: var(--ivory);
    color: var(--black);
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--black);
    padding: 13px 32px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-white:hover {
    background: var(--sand);
}

.btn-dark {
    display: inline-block;
    background: var(--taupe);
    color: var(--black);
    padding: 13px 32px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
}
.btn-dark:hover {
    background: var(--sand);
}

/* ============================================================
   ANNOUNCEMENT BAR
   ============================================================ */
.announce-bar {
    background: var(--dark-panel);
    color: var(--white);
    text-align: center;
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
    background: var(--black);
    border-bottom: 1px solid var(--taupe);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    position: sticky;
    top: 0;
    z-index: 200;
}

.nav-logo {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--ivory);
    text-decoration: none;
}
.nav-logo span {
    color: var(--taupe);
}
.nav-logo img {
    display: block;
    max-height: 70px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 36px;
    align-items: center;
}
.nav-links a {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ivory);
    transition: color var(--transition);
    position: relative;
}
.nav-links a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--taupe);
    transition: width var(--transition);
}
.nav-links a:hover {
    color: var(--taupe);
}
.nav-links a:hover::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}
.nav-icon {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--ivory);
    transition: color var(--transition);
    background: none;
    border: none;
    font-family: var(--font-sans);
    display: flex;
    align-items: center;
    gap: 6px;
}
.nav-icon:hover {
    color: var(--taupe);
}
.nav-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

/* Wishlist heart */
.nav-wishlist {
    position: relative;
}
.wishlist-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: var(--taupe);
    color: var(--black);
    font-size: 8px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 1px;
    background: var(--ivory);
    transition: all var(--transition);
}
.nav-toggle.open span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.open span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.cart-count {
    font-size: 11px;
}

/* Mobile nav drawer */
.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    background: var(--black);
    border-top: 1px solid var(--taupe);
    padding: 8px 24px 24px;
    overflow-y: auto;
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        transform var(--transition),
        opacity var(--transition),
        visibility 0s linear var(--transition);
}
.mobile-nav.open {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition:
        transform var(--transition),
        opacity var(--transition),
        visibility 0s linear 0s;
}
.mobile-nav-links li {
    border-bottom: 1px solid var(--light-sand);
}
.mobile-nav-links a {
    display: block;
    padding: 16px 2px;
    font-family: var(--font-serif);
    font-size: 18px;
    letter-spacing: 0.03em;
    color: var(--ivory);
    transition: color var(--transition);
}
.mobile-nav-links a:hover {
    color: var(--taupe);
}

/* ============================================================
   CART DRAWER
   ============================================================ */
body.cart-drawer-open {
    overflow: hidden;
}

body.mobile-nav-open {
    overflow: hidden;
}

.cart-drawer {
    position: fixed;
    inset: 0;
    z-index: 500;
    visibility: hidden;
    pointer-events: none;
}
.cart-drawer.open {
    visibility: visible;
    pointer-events: auto;
}
.cart-drawer-overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 23, 20, 0.5);
    opacity: 0;
    transition: opacity var(--transition);
}
.cart-drawer.open .cart-drawer-overlay {
    opacity: 1;
}
.cart-drawer-panel {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 420px;
    max-width: 100%;
    background: var(--dark-panel);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s ease;
}
.cart-drawer.open .cart-drawer-panel {
    transform: translateX(0);
}
.cart-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 28px;
    border-bottom: 1px solid var(--taupe);
    flex-shrink: 0;
}
.cart-drawer-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.04em;
    color: var(--ivory);
}
.cart-drawer-close {
    background: none;
    border: none;
    font-size: 24px;
    line-height: 1;
    color: var(--taupe);
    cursor: pointer;
    padding: 4px;
}
.cart-drawer-close:hover {
    color: var(--ivory);
}
.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
}

/* Mini-cart contents (woocommerce_mini_cart) */
.woocommerce-mini-cart__empty-message {
    font-size: 13px;
    color: var(--text-faint);
    text-align: center;
    padding: 48px 0;
}
.woocommerce-mini-cart {
    list-style: none;
    flex: 1;
}
.woocommerce-mini-cart-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid var(--light-sand);
    position: relative;
    transition: opacity var(--transition);
}
.woocommerce-mini-cart-item.loading {
    opacity: 0.5;
    pointer-events: none;
}
.woocommerce-mini-cart-item:first-child {
    padding-top: 0;
}
.mini-cart-item-media {
    flex-shrink: 0;
}
.mini-cart-item-media img {
    width: 64px;
    height: 84px;
    object-fit: cover;
    display: block;
    background: var(--light-sand);
}
.mini-cart-item-details {
    flex: 1;
    min-width: 0;
    padding-right: 22px;
}
.mini-cart-item-name {
    font-family: var(--font-serif);
    font-size: 15px;
    color: var(--ivory);
    line-height: 1.3;
    display: block;
    margin-bottom: 4px;
}
.mini-cart-item-meta {
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 4px;
}
.mini-cart-item-notes {
    font-size: 11px;
    font-style: italic;
    color: var(--text-faint);
    margin-bottom: 10px;
}
.mini-cart-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 6px;
}
.mini-cart-qty {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--light-sand);
}
.mini-cart-qty-btn {
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    font-size: 13px;
    color: var(--ivory);
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background var(--transition);
}
.mini-cart-qty-btn:hover {
    background: var(--light-sand);
}
.mini-cart-qty-value {
    font-size: 12px;
    color: var(--ivory);
    min-width: 12px;
    text-align: center;
}
.mini-cart-item-price {
    font-size: 13px;
    color: var(--white);
    font-weight: 500;
    white-space: nowrap;
}
.woocommerce-mini-cart-item .remove {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 18px;
    line-height: 1;
    color: var(--text-faint);
    text-decoration: none;
    transition: color var(--transition);
}
.woocommerce-mini-cart-item .remove:hover {
    color: var(--ivory);
}
.woocommerce-mini-cart__total {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    margin-top: auto;
    border-top: 1px solid var(--taupe);
    font-size: 14px;
    color: var(--white);
    font-weight: 500;
}
.woocommerce-mini-cart__buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.woocommerce-mini-cart__buttons .button {
    display: block;
    text-align: center;
    padding: 14px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all var(--transition);
}
.woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout) {
    background: transparent;
    color: var(--ivory);
    border: 1px solid var(--ivory);
}
.woocommerce-mini-cart__buttons .button.wc-forward:not(.checkout):hover {
    background: var(--ivory);
    color: var(--black);
}
.woocommerce-mini-cart__buttons .button.checkout {
    background: var(--taupe);
    color: var(--black);
    border: 1px solid var(--taupe);
}
.woocommerce-mini-cart__buttons .button.checkout:hover {
    background: var(--sand);
    border-color: var(--sand);
}

/* Loading state while an AJAX add-to-cart request is in flight */
form.cart button[name="add-to-cart"].loading {
    opacity: 0.6;
    pointer-events: none;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 72px - 40px);
    overflow: hidden;
}

/* Left — 3D panel */
.hero-3d-panel {
    background: linear-gradient(160deg, #2c2520 0%, #3d3028 50%, #1e1a17 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 560px;
}

#hero-canvas {
    width: 100%;
    height: 100%;
    display: block;
    cursor: grab;
    position: absolute;
    inset: 0;
}
#hero-canvas:active {
    cursor: grabbing;
}

.hero-mobile-image {
    display: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.circular-text-wrap {
    position: absolute;
    top: -44px;
    left: 350px;
    pointer-events: none;
    z-index: 10;
    width: 150px;
    height: 150px;
}
.circular-text-wrap svg {
    width: 100%;
    height: 100%;
    animation: spin-circle 20s linear infinite;
}
.circular-text-wrap text {
    fill: rgba(139, 115, 85, 0.75);
    font-size: 20px;
    letter-spacing: 2.2px;
    font-family: var(--font-sans);
    font-weight: 300;
    text-transform: uppercase;
}
@keyframes spin-circle {
    to {
        transform: rotate(360deg);
    }
}

.hero-3d-label {
    position: absolute;
    bottom: 28px;
    left: 28px;
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(201, 185, 154, 0.35);
}
.hero-3d-hint {
    position: absolute;
    top: 28px;
    right: 28px;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(201, 185, 154, 0.3);
    display: flex;
    align-items: center;
    gap: 7px;
}
.hint-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: rgba(201, 185, 154, 0.4);
    animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
    0%,
    100% {
        opacity: 0.3;
    }
    50% {
        opacity: 1;
    }
}

.hero-flare {
    position: absolute;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 185, 154, 0.05) 0%, transparent 70%);
    top: 15%;
    right: 10%;
    pointer-events: none;
}

/* Right — content */
.hero-content {
    background: var(--black);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 72px;
    position: relative;
}
.hero-deco-line {
    position: absolute;
    top: 0;
    left: 72px;
    width: 1px;
    height: 72px;
    background: linear-gradient(to bottom, transparent, var(--sand));
}
.hero-eyebrow {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.4s forwards;
}
.hero-title-wrap {
    position: relative;
    display: inline-block;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: 60px;
    font-weight: 300;
    line-height: 1.05;
    margin-bottom: 28px;
    color: var(--taupe);
    opacity: 0;
    animation: fadeUp 0.9s ease 0.6s forwards;
}
.hero-title em {
    font-style: italic;
    color: var(--sand);
}

.hero-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.85;
    max-width: 340px;
    margin-bottom: 44px;
    opacity: 0;
    animation: fadeUp 0.9s ease 0.8s forwards;
}
.hero-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.9s ease 1s forwards;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
    background: var(--dark-panel);
    border-top: 1px solid var(--taupe);
    border-bottom: 1px solid var(--taupe);
    display: flex;
    justify-content: center;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    border-right: 1px solid var(--sand);
    font-size: 11px;
    letter-spacing: 0.08em;
    flex: 1;
    justify-content: center;
}
.trust-item:last-child {
    border-right: none;
}
.trust-item svg {
    width: 18px;
    height: 18px;
    stroke: var(--taupe);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
}

/* ============================================================
   CATEGORIES SECTION
   ============================================================ */
.categories-section {
    padding: 96px 48px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.category-card {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    background: var(--light-sand);
    display: block;
}
.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.category-card:hover img {
    transform: scale(1.04);
}

.category-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 32px 28px;
    background: linear-gradient(transparent, rgba(26, 23, 20, 0.72));
}
.category-card-label {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}
.category-card-name {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 300;
    color: var(--sand);
    letter-spacing: 0.05em;
}
.category-card-link {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sand);
    margin-top: 8px;
    display: block;
    transition: color var(--transition);
}
.category-card:hover .category-card-link {
    color: var(--white);
}

/* ============================================================
   FEATURED PRODUCTS
   ============================================================ */
.featured-section {
    background: var(--dark-panel);
    padding: 96px 48px;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    border-bottom: 1px solid var(--taupe);
    margin-bottom: 56px;
}
.filter-tab {
    padding: 12px 32px;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all var(--transition);
    color: var(--text-faint);
    background: none;
    border-top: none;
    border-left: none;
    border-right: none;
    font-family: var(--font-sans);
    flex-shrink: 0;
}
.filter-tab.active,
.filter-tab:hover {
    border-bottom-color: var(--taupe);
    color: var(--taupe);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 7px;
}

/* ─── PRODUCT CARD (shared between homepage + shop) ─── */
.product-card {
    background: var(--black);
    cursor: pointer;
}
.product-card-image {
    display: block;
    aspect-ratio: 3/4;
    background: var(--light-sand);
    position: relative;
    overflow: hidden;
}
.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-card-image img {
    transform: scale(1.04);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--black);
    color: var(--white);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 4px 10px;
    z-index: 1;
}
.product-badge.sale {
    background: var(--taupe);
    color: var(--black);
}

/* Wishlist heart on card */
.product-wishlist-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--white);
    border: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: opacity var(--transition);
    z-index: 1;
}
.product-card:hover .product-wishlist-btn {
    opacity: 1;
}
.product-wishlist-btn svg {
    width: 14px;
    height: 14px;
    stroke: var(--black);
    fill: none;
    stroke-width: 1.5;
}
.product-wishlist-btn.wishlisted svg {
    fill: var(--taupe);
    stroke: var(--taupe);
}

.product-card-info {
    padding: 18px 10px 24px;
}
.product-card-category {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 6px;
}
.product-card-name {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.3;
    margin-bottom: 4px;
    color: var(--taupe);
}
.product-card-notes {
    font-size: 12px;
    color: var(--text-faint);
    margin-bottom: 12px;
    font-style: italic;
}
.product-card-price {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--white);
}
.product-card-price del {
    color: var(--text-faint);
    font-weight: 300;
    margin-right: 6px;
}
.product-card-add {
    width: 100%;
    margin-top: 10px;
    padding: 11px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--taupe);
    color: var(--ivory);
    cursor: pointer;
    transition: all var(--transition);
    font-family: var(--font-sans);
}
.product-card-add:hover {
    background: var(--taupe);
    color: var(--black);
    border-color: var(--taupe);
}

/* ─── WOOCOMMERCE QUANTITY INPUT (product-card / single-product forms) ───
   Scoped to form.cart specifically — WooCommerce reuses the bare ".quantity"
   class for the plain-text "2 × $52.00" span in the mini-cart too, which is
   NOT an input and must not get this boxed styling (see mini-cart override
   further down). */
form.cart .quantity {
    display: inline-flex;
    align-items: stretch;
    height: 46px;
    border: 1px solid var(--taupe);
    background: var(--dark-panel);
}
form.cart .quantity .qty {
    width: 56px;
    border: none;
    background: transparent;
    padding: 0 8px;
    text-align: center;
    font-family: var(--font-sans);
    font-size: 13px;
    color: var(--ivory);
    outline: none;
    -moz-appearance: textfield;
    appearance: textfield;
    transition: background var(--transition);
}
form.cart .quantity .qty::-webkit-outer-spin-button,
form.cart .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
form.cart .quantity .qty:focus {
    background: var(--light-sand);
}
form.cart .quantity .qty-step {
    width: 34px;
    flex-shrink: 0;
    border: none;
    background: none;
    font-size: 15px;
    color: var(--ivory);
    cursor: pointer;
    font-family: var(--font-sans);
    transition: background var(--transition);
}
form.cart .quantity .qty-step:hover {
    background: var(--light-sand);
}
form.cart .quantity .qty-step-minus {
    border-right: 1px solid var(--sand);
}
form.cart .quantity .qty-step-plus {
    border-left: 1px solid var(--sand);
}

/* ============================================================
   INSTAGRAM / HIGHLIGHTS CAROUSEL
   ============================================================ */
.ig-section {
    padding: 96px 0;
    background: var(--black);
    overflow: hidden;
}
.ig-section .section-header {
    padding: 0 48px;
}

.ig-swiper {
    width: 100%;
    padding: 16px 0 48px !important;
}

.swiper-slide {
    width: 290px !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.story-border {
    width: 290px;
    height: 486px;
    border-radius: 18px;
    padding: 3px;
    background: linear-gradient(160deg, #e3c565 0%, #c9a227 35%, #8a6f28 65%, #e3c565 100%);
    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease;
    cursor: pointer;
}
.swiper-slide:hover .story-border {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(26, 23, 20, 0.14);
}
.story-inner {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    border: 3px solid var(--black);
    overflow: hidden;
    background: var(--light-sand);
}
.story-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.story-label {
    text-align: center;
}
.story-label-name {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ivory);
    display: block;
}
.story-label-product {
    font-family: var(--font-serif);
    font-size: 14px;
    color: #b0a090;
    letter-spacing: 0.06em;
    margin-top: 3px;
    display: block;
    font-style: italic;
}

/* Swiper pagination */
.swiper-pagination-bullet {
    width: 5px !important;
    height: 5px !important;
    background: var(--sand) !important;
    opacity: 1 !important;
    transition: all 0.25s !important;
    border-radius: 3px !important;
}
.swiper-pagination-bullet-active {
    width: 20px !important;
    background: var(--taupe) !important;
}

.ig-cta {
    text-align: center;
    margin-top: 50px;
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.ig-cta-line {
    width: 48px;
    height: 1px;
    background: var(--sand);
    flex-shrink: 0;
}
.ig-cta a {
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--taupe);
    transition: color var(--transition);
}
.ig-cta a:hover {
    color: var(--ivory);
}

/* ============================================================
   SPLIT BANNER
   ============================================================ */
.split-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
}
.split-panel {
    min-height: 480px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 56px;
    position: relative;
    overflow: hidden;
}
.split-panel.dark {
    background: var(--dark-panel);
}
.split-panel.light {
    background: var(--light-sand);
}

.split-panel-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    transition: opacity 0.4s ease;
}
.split-panel:hover .split-panel-image {
    opacity: 0.45;
}

.split-content {
    position: relative;
    z-index: 1;
}
.split-eyebrow {
    font-size: 9px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin-bottom: 16px;
}
.split-panel.dark .split-eyebrow {
    color: var(--sand);
}
.split-panel.light .split-eyebrow {
    color: var(--taupe);
}

.split-title {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 20px;
}
.split-panel.dark .split-title {
    color: var(--taupe);
}
.split-panel.light .split-title {
    color: var(--taupe);
}

.split-desc {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 300px;
}
.split-panel.dark .split-desc {
    color: rgba(255, 255, 255, 0.55);
}
.split-panel.light .split-desc {
    color: var(--text-muted);
}

/* ============================================================
   ABOUT STRIP
   ============================================================ */
.about-strip {
    background: var(--black);
    padding: 96px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 96px;
    align-items: center;
}
.about-eyebrow {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--sand);
    margin-bottom: 24px;
}
.about-title {
    font-family: var(--font-serif);
    font-size: 44px;
    font-weight: 300;
    color: var(--taupe);
    line-height: 1.15;
    margin-bottom: 28px;
}
.about-title em {
    font-style: italic;
    color: var(--sand);
}
.about-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.9;
    margin-bottom: 36px;
}
.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.stat-number {
    font-family: var(--font-serif);
    font-size: 42px;
    font-weight: 300;
    color: var(--white);
    display: block;
}
.stat-label {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}
.about-image {
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
}
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
.newsletter-section {
    background: var(--dark-panel);
    padding: 80px 48px;
    text-align: center;
}
.newsletter-title {
    font-family: var(--font-serif);
    font-size: 38px;
    font-weight: 300;
    color: var(--taupe);
    margin-bottom: 12px;
}
.newsletter-desc {
    font-size: 13px;
    color: var(--text-faint);
    margin-bottom: 36px;
    letter-spacing: 0.03em;
}
/* ============================================================
   WPFORMS — NEWSLETTER OVERRIDE
   ============================================================ */

/* Hide WPForms default label since we use placeholder */
.newsletter-section .wpforms-field-label {
    display: none;
}

/* Remove WPForms container padding */
.newsletter-section .wpforms-container {
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-section .wpforms-form .wpforms-field {
    padding: 0;
    margin: 0;
}

/* The input field */
.newsletter-section .wpforms-form input[type="email"] {
    width: 100%;
    padding: 11px 20px;
    border: 1px solid var(--taupe);
    border-right: none;
    background: var(--black);
    font-size: 13px;
    font-family: var(--font-sans);
    color: var(--ivory);
    outline: none;
    border-radius: 0;
    box-shadow: none;
    height: auto;
}

.newsletter-section .wpforms-form input[type="email"]::placeholder {
    color: #c0b0a0;
}

.newsletter-section .wpforms-form input[type="email"]:focus {
    border-color: var(--taupe);
    box-shadow: none;
}

/* Submit button */
.newsletter-section .wpforms-form .wpforms-submit-container {
    padding: 0;
    margin: 0 !important;
}

.newsletter-section .wpforms-form button[type="submit"] {
    padding: 14px 32px;
    background-color: var(--taupe) !important;
    color: var(--black) !important;
    border: 1px solid var(--taupe);
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-sans);
    border-radius: 0;
    box-shadow: none;
    transition: all var(--transition);
    white-space: nowrap;
    height: auto;
    width: auto;
}

.newsletter-section .wpforms-form button[type="submit"]:hover {
    background: var(--sand) !important;
    border-color: var(--sand);
}

/* Make input and button sit side by side */
.newsletter-section .wpforms-form .wpforms-field-container,
.newsletter-section .wpforms-form .wpforms-submit-container {
    display: inline-block;
    vertical-align: top;
}

.newsletter-section .wpforms-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-section .wpforms-form .wpforms-field-container {
    flex: 1;
}

/* Hide WPForms error/success default styling and restyle */
.newsletter-section .wpforms-confirmation-container-full {
    background: transparent;
    border: 1px solid var(--sand);
    padding: 14px 20px;
    font-size: 13px;
    color: var(--taupe);
    text-align: center;
    max-width: 480px;
    margin: 0 auto;
    border-radius: 0;
}

.newsletter-section .wpforms-error-container {
    border-radius: 0;
    border-color: var(--sand);
}

.newsletter-section .wpforms-form .wpforms-field-error {
    font-size: 11px;
    color: #b05a5a;
    margin-top: 4px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.5);
    padding: 72px 48px 32px;
}
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}
.footer-brand {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 16px;
    display: block;
}
.footer-tagline {
    font-size: 12px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.3);
    max-width: 220px;
}
.footer-heading {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    transition: color var(--transition);
}
.footer-links a:hover {
    color: var(--sand);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}
.footer-copy {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
}
.footer-legal {
    display: flex;
    gap: 24px;
}
.footer-legal a {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.2);
}
.footer-legal a:hover {
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================================
   SHOP / CATEGORY ARCHIVE
   ============================================================ */
.shop-hero {
    background: var(--black);
    padding: 64px 48px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 40px;
    position: relative;
    overflow: hidden;
    min-height: 220px;
}
.shop-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 80% 50%, rgba(139, 115, 85, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 20% 80%, rgba(201, 185, 154, 0.06) 0%, transparent 50%);
    pointer-events: none;
}
.shop-hero-letter {
    position: absolute;
    right: 48px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-serif);
    font-size: 260px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    letter-spacing: -0.05em;
    pointer-events: none;
    user-select: none;
}
.shop-hero-left {
    position: relative;
    z-index: 1;
}
.shop-hero-breadcrumb {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.shop-hero-breadcrumb span {
    color: rgba(255, 255, 255, 0.15);
}
.shop-hero-title {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 300;
    color: var(--taupe);
    letter-spacing: 0.02em;
    line-height: 1.05;
    margin-bottom: 12px;
}
.shop-hero-title em {
    font-style: italic;
    color: var(--sand);
}
.shop-hero-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    max-width: 360px;
    line-height: 1.8;
}
.shop-hero-right {
    position: relative;
    z-index: 1;
    text-align: right;
    flex-shrink: 0;
}
.shop-hero-count {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.12);
    line-height: 1;
    display: block;
}
.shop-hero-count-label {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

/* Filter bar */
.filter-bar {
    background: var(--dark-panel);
    border-bottom: 1px solid var(--taupe);
    padding: 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: sticky;
    top: 72px;
    z-index: 100;
}
.filter-bar .filter-tabs {
    justify-content: flex-start;
    margin-bottom: 0;
}
.filter-bar-right {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}
.filter-divider {
    width: 1px;
    height: 20px;
    background: var(--sand);
}
.filter-result-count {
    font-size: 11px;
    letter-spacing: 0.08em;
    color: var(--text-faint);
    white-space: nowrap;
}
.view-toggle {
    display: flex;
    gap: 8px;
}
.view-btn {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: 1px solid transparent;
    background: none;
    transition: all var(--transition);
}
.view-btn.active {
    border-color: var(--sand);
}
.view-btn svg {
    width: 14px;
    height: 14px;
    stroke: var(--ivory);
    fill: none;
    stroke-width: 1.5;
}

/* WooCommerce catalog ordering select, styled to match the site's inputs */
.woocommerce-ordering {
    display: flex;
    align-items: center;
}
.woocommerce-ordering select {
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--ivory);
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: var(--font-sans);
    padding: 4px 16px 4px 0;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23C9A227' stroke-width='1.2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0 center;
}

/* Shop body */
.shop-body {
    padding: 48px 48px 96px;
    max-width: 1400px;
    margin: 0 auto;
}
.products-grid.three-col {
    grid-template-columns: repeat(3, 1fr);
}

/* Empty state */
.shop-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 96px 48px;
}
.shop-empty-title {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 12px;
}
.shop-empty-desc {
    font-size: 13px;
    color: var(--text-faint);
    margin-bottom: 32px;
}

/* Other categories strip */
.other-cats {
    background: var(--dark-panel);
    border-top: 1px solid var(--taupe);
    padding: 56px 48px;
}
.other-cats-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--taupe);
    text-align: center;
    margin-bottom: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.other-cats-label::before,
.other-cats-label::after {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--sand);
    display: block;
}
.other-cats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
    max-width: 800px;
    margin: 0 auto;
}
.other-cat-card {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/7;
    background: var(--light-sand);
    cursor: pointer;
    display: block;
}
.other-cat-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-sand);
    transition: background var(--transition);
}
.other-cat-card-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.other-cat-card:hover .other-cat-card-placeholder {
    background: var(--sand);
}
.other-cat-card-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    background: linear-gradient(180deg, rgba(26, 23, 20, 0.1) 0%, rgba(26, 23, 20, 0.55) 100%);
}
.other-cat-name {
    font-family: var(--font-serif);
    font-size: 26px;
    font-weight: 300;
    color: var(--sand);
    letter-spacing: 0.05em;
}
.other-cat-link {
    font-size: 10px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--sand);
    margin-top: 6px;
    transition: opacity var(--transition);
    opacity: 0;
}
.other-cat-card:hover .other-cat-link {
    opacity: 1;
}

/* ============================================================
   SINGLE PRODUCT PAGE
   ============================================================ */
.breadcrumb {
    padding: 18px 48px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-faint);
    border-bottom: 1px solid var(--light-sand);
    background: var(--black);
}
.breadcrumb a {
    color: var(--text-faint);
    transition: color var(--transition);
}
.breadcrumb a:hover {
    color: var(--taupe);
}
.breadcrumb-sep {
    color: rgba(201, 162, 39, 0.35);
    font-size: 10px;
}
.breadcrumb span:last-child {
    color: var(--ivory);
}

.product-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 72px - 47px);
}

/* Gallery */
.product-gallery {
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
    background: var(--light-sand);
    overflow: hidden;
}

/* Info column */
.product-info {
    padding: 56px 64px 80px;
    overflow-y: auto;
    background: var(--black);
}

.product-meta-top {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.product-category-tag {
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--taupe);
}
.product-gender-tag {
    font-size: 9px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    background: var(--taupe);
    padding: 3px 10px;
}
.meta-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--sand);
    flex-shrink: 0;
}

.product-name {
    font-family: var(--font-serif);
    font-size: 52px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: 0.01em;
    margin-bottom: 6px;
    color: var(--taupe);
}
.product-name-sub {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 300;
    font-style: italic;
    color: var(--text-muted);
    margin-bottom: 28px;
    letter-spacing: 0.05em;
}

.product-divider {
    width: 100%;
    height: 1px;
    background: var(--light-sand);
    margin: 28px 0;
}

.product-price-wrap {
    margin-bottom: 32px;
}
.product-price {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.02em;
    display: flex;
    align-items: baseline;
    gap: 12px;
}
.product-price del {
    font-size: 22px;
    color: var(--text-faint);
    font-weight: 300;
    text-decoration: line-through;
}
.product-price ins {
    text-decoration: none;
}
.product-price-note {
    font-size: 11px;
    color: var(--text-faint);
    margin-top: 4px;
    letter-spacing: 0.04em;
}

/* Scent pyramid */
.scent-notes {
    margin-bottom: 32px;
}
.scent-notes-label {
    font-size: 9px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 16px;
}
.scent-pyramid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--sand);
}
.scent-pyramid-cols-2 {
    grid-template-columns: repeat(2, 1fr);
}
.scent-pyramid-cols-1 {
    grid-template-columns: 1fr;
}
.scent-tier {
    background: var(--black);
    padding: 16px 14px;
    text-align: center;
}
.scent-tier-label {
    font-size: 8px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--taupe);
    margin-bottom: 8px;
    display: block;
}
.scent-tier-notes {
    font-family: var(--font-serif);
    font-size: 14px;
    font-style: italic;
    color: var(--ivory);
    line-height: 1.5;
}

/* Add to cart + wishlist */
.product-actions {
    margin-bottom: 24px;
}
.single-wishlist-wrap {
    margin-top: 12px;
}

/* Delivery info */
.delivery-info {
    background: var(--dark-panel);
    border: 1px solid var(--light-sand);
    padding: 20px 24px;
    margin-top: 28px;
}
.delivery-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--light-sand);
}
.delivery-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.delivery-row:first-child {
    padding-top: 0;
}
.delivery-icon {
    width: 16px;
    height: 16px;
    stroke: var(--taupe);
    fill: none;
    stroke-width: 1.5;
    flex-shrink: 0;
    margin-top: 1px;
}
.delivery-text {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.6;
}
.delivery-text strong {
    font-weight: 500;
    color: var(--ivory);
    font-size: 11px;
    letter-spacing: 0.04em;
    display: block;
    margin-bottom: 1px;
}

/* Accordion */
.product-accordion {
    margin-top: 32px;
    border-top: 1px solid var(--light-sand);
}
.accordion-item {
    border-bottom: 1px solid var(--light-sand);
}
.accordion-trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 0;
    cursor: pointer;
    background: none;
    border: none;
    font-family: var(--font-sans);
    text-align: left;
}
.accordion-trigger-label {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ivory);
}
.accordion-icon {
    width: 14px;
    height: 14px;
    stroke: var(--taupe);
    fill: none;
    stroke-width: 1.5;
    transition: transform var(--transition);
    flex-shrink: 0;
}
.accordion-item.open .accordion-icon {
    transform: rotate(45deg);
}
.accordion-body {
    display: none;
    padding-bottom: 20px;
}
.accordion-item.open .accordion-body {
    display: block;
}
.accordion-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.85;
}
.accordion-body ul {
    margin-top: 10px;
}
.accordion-body ul li {
    font-size: 13px;
    color: var(--text-muted);
    padding: 4px 0;
}

/* Related products (reuses .product-card from elsewhere in the site) */
.related.products {
    padding: 96px 48px;
    background: var(--dark-panel);
    border-top: 1px solid var(--taupe);
}
.related.products > h2 {
    font-family: var(--font-serif);
    font-size: 36px;
    font-weight: 300;
    color: var(--taupe);
    text-align: center;
    margin-bottom: 48px;
}
.related.products ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
}
.related.products ul.products li.product {
    list-style: none;
}

/* ============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================ */
.woocommerce-notices-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ─── Product gallery (woocommerce_show_product_images) ───
   WooCommerce renders the main image + thumbnails as flat siblings and
   turns them into a flexslider at runtime; grid-column placement puts the
   thumbnail strip on the left without touching that generated markup. */
.woocommerce-product-gallery {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2px;
    height: 100%;
    opacity: 1 !important;
}
/* Single-image (or no-image) products: flexslider's own "allowOneSlide:
   false" option skips its normal init on a single slide, so .flex-viewport
   and .flex-control-thumbs never get created — only .wrapper exists. Collapse
   to one column so it isn't squeezed into the 80px thumbnail track. */
.woocommerce-product-gallery:not(:has(.flex-control-thumbs)) {
    grid-template-columns: 1fr;
}
/* flexslider moves __wrapper inside a JS-created .flex-viewport at runtime,
   so __wrapper is no longer a direct grid child — grid-column has to go on
   .flex-viewport instead, or auto-placement grabs column 1 for it (since it
   has no explicit column and comes before .flex-control-thumbs in the DOM).
   grid-row:1 is pinned explicitly on both too — otherwise placing the
   column-2 item first advances the auto-placement cursor past row 1,
   pushing .flex-control-thumbs to a second row instead of sitting beside it. */
.flex-viewport {
    grid-column: 2;
    grid-row: 1;
    cursor: grab;
}
.flex-viewport.dragging {
    cursor: grabbing;
    user-select: none;
}
.flex-viewport.dragging * {
    user-select: none;
}
.woocommerce-product-gallery__wrapper {
    height: 100%;
    position: relative;
    overflow: hidden;
    margin: 0;
}
.woocommerce-product-gallery__wrapper .flex-viewport,
.woocommerce-product-gallery__wrapper ul.slides {
    height: 100%;
}
.woocommerce-product-gallery__image,
.woocommerce-product-gallery__image--placeholder {
    height: 100%;
}
.woocommerce-product-gallery__image a,
.woocommerce-product-gallery__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.woocommerce-product-gallery__trigger {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.flex-control-thumbs {
    grid-column: 1;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: var(--black);
    overflow-y: auto;
    list-style: none;
    height: 100%;
}
.flex-control-thumbs li {
    width: 80px;
    height: 100px;
    flex-shrink: 0;
}
.flex-control-thumbs li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.55;
    border-left: 2px solid transparent;
    transition:
        opacity var(--transition),
        border-color var(--transition);
}
.flex-control-thumbs li img:hover,
.flex-control-thumbs li.flex-active img {
    opacity: 1;
    border-left-color: var(--taupe);
}

/* Star rating (woocommerce_template_single_rating) */
.woocommerce-product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}
.star-rating {
    position: relative;
    width: 5.3em;
    font-size: 13px;
    line-height: 1;
    letter-spacing: 2px;
    font-family: var(--font-sans);
}
.star-rating::before {
    content: "★★★★★";
    color: var(--text-faint);
    display: block;
}
.star-rating span {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
}
.star-rating span::before {
    content: "★★★★★";
    color: var(--taupe);
    display: block;
}
.woocommerce-review-link {
    font-size: 11px;
    color: var(--text-faint);
    letter-spacing: 0.06em;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Short description (woocommerce_template_single_excerpt) */
.woocommerce-product-details__short-description {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.85;
}
.woocommerce-product-details__short-description p {
    margin-bottom: 12px;
}
.woocommerce-product-details__short-description p:last-child {
    margin-bottom: 0;
}

/* Add to cart form (woocommerce_template_single_add_to_cart) */
.product-actions form.cart {
    display: flex;
    gap: 0;
    margin-bottom: 12px;
    height: 50px;
}
.product-actions form.cart .quantity {
    height: 50px;
    flex-shrink: 0;
}
.single_add_to_cart_button {
    flex: 1;
    background: var(--taupe);
    color: var(--black);
    border: 1px solid var(--taupe);
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    font-family: var(--font-sans);
    transition: all var(--transition);
}
.single_add_to_cart_button:hover {
    background: var(--sand);
    border-color: var(--sand);
}
.single_add_to_cart_button.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* Wishlist button (YITH shortcode) */
.single-wishlist-wrap .yith-wcwl-add-to-wishlist {
    width: 100%;
}
.single-wishlist-wrap a.add_to_wishlist,
.single-wishlist-wrap .yith-wcwl-wishlistaddedbrowse a,
.single-wishlist-wrap .yith-wcwl-wishlistexistsbrowse a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    background: transparent;
    color: var(--ivory);
    border: 1px solid var(--taupe);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-family: var(--font-sans);
    padding: 13px;
    transition: all var(--transition);
}
.single-wishlist-wrap a.add_to_wishlist:hover {
    border-color: var(--sand);
}

/* TI WooCommerce Wishlist — heart button after Add to Cart */
.product-actions .tinv-wraper.tinv-wishlist {
    display: flex;
    align-items: center;
    margin-left: 16px;
    flex-shrink: 0;
}

.product-actions .tinvwl_add_to_wishlist_button {
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--taupe) !important;
    border-radius: 50% !important;
    background: var(--dark-panel);
    transition: all var(--transition);
    margin: 0 !important;
}
.product-actions .tinvwl_add_to_wishlist_button:hover {
    border-color: var(--sand) !important;
    background: var(--light-sand);
}
.product-actions .tinvwl_add_to_wishlist_button.tinvwl-icon-heart:before,
.product-actions .tinvwl_add_to_wishlist_button.tinvwl-icon-heart-plus:before {
    font-size: 24px !important;
    color: var(--taupe) !important;
    margin: 0 !important;
    vertical-align: middle !important;
}

.product-actions .tinvwl_add_to_wishlist_button.tinvwl-icon-heart.no-txt.tinvwl-position-after:before {
    transform: translate(-50%, -50%) !important;
}

.product-actions .tinvwl_add_to_wishlist_button.tinvwl-product-already-on-wishlist:before {
    color: var(--sand) !important;
}

/* Product attributes table (wc_display_product_attributes) */
.woocommerce-product-attributes {
    width: 100%;
    border-collapse: collapse;
}
.woocommerce-product-attributes th,
.woocommerce-product-attributes td {
    padding: 8px 0;
    border-bottom: 1px solid var(--light-sand);
    font-size: 13px;
    color: var(--text-muted);
    text-align: left;
    font-weight: 400;
}
.woocommerce-product-attributes th {
    width: 40%;
    color: var(--ivory);
    letter-spacing: 0.04em;
}
.woocommerce-product-attributes th p,
.woocommerce-product-attributes td p {
    margin: 0;
}

/* WooCommerce default pagination, styled to match the site */
.woocommerce-pagination {
    margin-top: 72px;
    padding-top: 48px;
    border-top: 1px solid var(--sand);
}
.woocommerce-pagination ul.page-numbers {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4px;
}
.woocommerce-pagination .page-numbers a,
.woocommerce-pagination .page-numbers span {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    letter-spacing: 0.08em;
    font-family: var(--font-sans);
    color: var(--ivory);
    border: 1px solid transparent;
    transition: all var(--transition);
}
.woocommerce-pagination .page-numbers a:hover {
    border-color: var(--sand);
}
.woocommerce-pagination .page-numbers .current {
    background: var(--taupe);
    color: var(--black);
    border-color: var(--taupe);
}
.woocommerce-pagination .page-numbers .dots {
    color: var(--text-faint);
}
.woocommerce-pagination .page-numbers .next,
.woocommerce-pagination .page-numbers .prev {
    font-size: 16px;
    color: var(--taupe);
}
.woocommerce-pagination .page-numbers .next:hover,
.woocommerce-pagination .page-numbers .prev:hover {
    background: var(--light-sand);
    border-color: var(--sand);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .product-wrap {
        grid-template-columns: 1fr;
    }
    .product-gallery {
        position: relative;
        top: 0;
        height: 70vw;
        max-height: 560px;
    }
    .product-info {
        padding: 40px 32px 64px;
    }
    .product-name {
        font-size: 40px;
    }
    .related.products ul.products {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 900px) {
    .filter-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .hero {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .hero-3d-panel {
        min-height: max(400px, 60vw);
    }
    #hero-canvas {
        display: none;
    }
    .hero-mobile-image {
        display: block;
    }
    .circular-text-wrap {
        display: none;
    }
    .hero-content {
        padding: 48px 32px;
    }
    .hero-title {
        font-size: 42px;
    }
    .hero-deco-line {
        display: none;
    }
    .hero-actions {
        flex-wrap: wrap;
    }

    .categories-grid {
        grid-template-columns: 1fr 1fr;
    }
    .split-banner {
        grid-template-columns: 1fr;
    }
    .about-strip {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-hero {
        padding: 48px 32px;
        min-height: 180px;
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }
    .shop-hero-title {
        font-size: 40px;
    }
    .shop-hero-letter {
        display: none;
    }
    .shop-hero-right {
        text-align: left;
    }
    .filter-bar {
        padding: 0 32px;
        overflow-x: auto;
    }
    .shop-body {
        padding: 32px 32px 64px;
    }
    .other-cats {
        padding: 40px 32px;
    }
    .other-cats-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 875px) {
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 810px) {
    .trust-strip {
        flex-wrap: wrap;
    }
    .trust-item {
        flex: 0 0 50%;
        padding: 20px 24px;
        border-bottom: 1px solid var(--sand);
    }
}

@media (max-width: 800px) {
    .nav-links {
        display: none;
    }
    .nav-toggle {
        display: flex;
    }
}

@media (max-width: 600px) {
    .container {
        padding: 0 24px;
    }
    .nav-logo img {
        max-height: 50px;
    }
    .site-nav {
        padding: 0 24px;
    }
    .cart-drawer-panel {
        width: 100%;
    }

    .categories-section,
    .featured-section,
    .about-strip,
    .newsletter-section {
        padding: 64px 24px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1px;
    }
    .section-title {
        font-size: 30px;
    }
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-input {
        border-right: 1px solid var(--sand);
        border-bottom: none;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .swiper-slide {
        width: 160px !important;
    }
    .story-border {
        width: 160px;
        height: 284px;
    }

    .breadcrumb {
        padding: 14px 24px;
    }
    .product-gallery {
        height: 90vw;
    }
    .woocommerce-product-gallery {
        grid-template-columns: 60px 1fr;
    }
    .flex-control-thumbs li {
        width: 60px;
        height: 76px;
    }
    .product-info {
        padding: 28px 24px 48px;
    }
    .product-name {
        font-size: 34px;
    }
    .scent-pyramid {
        grid-template-columns: 1fr;
    }
    .related.products {
        padding: 64px 24px;
    }
    .related.products ul.products {
        grid-template-columns: repeat(2, 1fr);
    }

    .shop-hero {
        padding: 40px 24px;
    }
    .shop-hero-title {
        font-size: 34px;
    }
    .filter-bar {
        padding: 0 24px;
    }
    .filter-bar-right {
        display: none;
    }
    .shop-body {
        padding: 24px 24px 48px;
    }
    .other-cats {
        padding: 32px 24px;
    }
}

@media (max-width: 430px) {
    .trust-item {
        flex: 0 0 100%;
        border-right: none;
    }
}
