/*
Theme Name: Lumiere
Theme URI: http://example.com/lumiere
Author: Developer
Author URI: http://example.com
Description: Lumiere WordPress Theme with WooCommerce support
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lumiere
*/

:root {
    --gold: #C9A96E;
    --gold-light: #E8D5A3;
    --gold-dark: #9A7A45;
    --rose-gold: #C4917A;
    --rose-light: #E8C4B0;
    --black: #0A0A0A;
    --deep: #111111;
    --charcoal: #1A1A1A;
    --warm-white: #FAF8F5;
    --beige: #F5EFE6;
    --beige-mid: #EDE4D7;
    --text-muted: #888880;
    --text-light: #B8B5AF;
    --header-h: 70px;
    --radius: 2px;
    --ease-luxury: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    font-size: 16px;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--warm-white);
    color: var(--black);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-bottom: 70px;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

/* ─── SCROLLBAR ─── */
::-webkit-scrollbar {
    width: 3px;
}

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

::-webkit-scrollbar-thumb {
    background: var(--gold);
}

/* ─── SELECTION ─── */
::selection {
    background: var(--gold-light);
    color: var(--black);
}

/* ─── TYPOGRAPHY ─── */
.font-display {
    font-family: 'Cormorant Garamond', serif;
}

.font-serif {
    font-family: 'Playfair Display', serif;
}

/* ─── GOLD TEXT ─── */
.gold-text {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── SECTION LABEL ─── */
.section-label {
    font-family: 'Jost', sans-serif;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    display: block;
    margin-bottom: 12px;
}

/* ─── GOLD DIVIDER ─── */
.gold-divider {
    width: 40px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    margin: 16px auto;
}

/* ══════════════════════════════════
     STICKY HEADER
  ══════════════════════════════════ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    transition: transform 0.4s var(--ease-luxury), background 0.4s ease, backdrop-filter 0.4s ease;
    background: rgba(10, 10, 10, 0);
}

#header.scrolled {
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

#header.hidden {
    transform: translateY(-100%);
}

.header-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 24px;
    font-weight: 300;
    letter-spacing: 8px;
    color: var(--warm-white);
    text-decoration: none;
    text-transform: uppercase;
}

.header-logo span {
    color: var(--gold);
}

.header-nav {
    display: none;
    gap: 32px;
    list-style: none;
}

@media (min-width: 768px) {
    .header-nav {
        display: flex;
    }
}

.header-nav a {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.75);
    text-decoration: none;
    transition: color 0.3s;
}

.header-nav a:hover {
    color: var(--gold);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-icon {
    width: 20px;
    height: 20px;
    cursor: pointer;
    opacity: 0.85;
    transition: opacity 0.3s;
    filter: invert(1);
}

.header-icon:hover {
    opacity: 1;
}

.cart-badge {
    position: relative;
}

.cart-badge::after {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 14px;
    height: 14px;
    background: var(--gold);
    border-radius: 50%;
    font-size: 8px;
    font-weight: 500;
    color: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 14px;
    text-align: center;
}

/* ══════════════════════════════════
     HERO SECTION
  ══════════════════════════════════ */
#hero {
    position: relative;
    width: 100%;
    height: 100svh;
    min-height: 600px;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 60% 40%, rgba(201, 169, 110, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 20% 70%, rgba(196, 145, 122, 0.08) 0%, transparent 50%),
        linear-gradient(160deg, #0A0A0A 0%, #1A1410 50%, #0A0A0A 100%);
    animation: heroPulse 8s ease-in-out infinite alternate;
}

@keyframes heroPulse {
    0% {
        opacity: 0.9;
    }

    100% {
        opacity: 1;
    }
}

/* Decorative orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: orbFloat 10s ease-in-out infinite alternate;
}

.hero-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.5), transparent);
    top: 10%;
    right: 5%;
    animation-delay: -2s;
}

.hero-orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(196, 145, 122, 0.4), transparent);
    bottom: 20%;
    left: 10%;
    animation-delay: -5s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(20px, -30px) scale(1.1);
    }
}

/* Luxury diamond grid pattern */
.hero-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(45deg, rgba(201, 169, 110, 0.03) 1px, transparent 1px),
        linear-gradient(-45deg, rgba(201, 169, 110, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

/* Jewelry image */
.hero-jewel {
    position: absolute;
    right: -5%;
    bottom: 0;
    width: 60%;
    max-width: 500px;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
}

.hero-jewel-svg {
    width: 100%;
    height: 90%;
    object-fit: contain;
    animation: jewelFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(201, 169, 110, 0.3));
}

@keyframes jewelFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

.hero-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 24px;
    max-width: 560px;
    z-index: 2;
}

@media (min-width: 768px) {
    .hero-content {
        padding: 0 60px;
        max-width: 640px;
    }
}

.hero-eyebrow {
    font-size: 10px;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s var(--ease-luxury) 0.3s forwards;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.hero-eyebrow::before,
.hero-eyebrow::after {
    content: '';
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(48px, 8vw, 88px);
    font-weight: 300;
    line-height: 1.0;
    color: var(--warm-white);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 1s var(--ease-luxury) 0.5s forwards;
    margin-bottom: 8px;
}

.hero-title em {
    font-style: italic;
    color: var(--gold);
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(14px, 2.5vw, 18px);
    font-weight: 300;
    color: rgba(250, 248, 245, 0.55);
    line-height: 1.7;
    max-width: 380px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s var(--ease-luxury) 0.7s forwards;
    margin-bottom: 40px;
    margin-top: 16px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.9s var(--ease-luxury) 0.9s forwards;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--black);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.4);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-primary span {
    position: relative;
    z-index: 1;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    background: transparent;
    color: var(--warm-white);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 400;
    text-decoration: none;
    border: 1px solid rgba(250, 248, 245, 0.3);
    cursor: pointer;
    transition: border-color 0.3s, color 0.3s, transform 0.3s;
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.hero-scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-luxury) 1.3s forwards;
    cursor: pointer;
}

.hero-scroll span {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.4);
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(201, 169, 110, 0.6), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        opacity: 0.4;
        transform: scaleY(1);
    }

    50% {
        opacity: 1;
        transform: scaleY(1.2);
    }
}

/* Hero stats bar */
.hero-stats {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 169, 110, 0.15);
    padding: 16px 24px;
    display: flex;
    justify-content: space-around;
    opacity: 0;
    animation: fadeUp 0.8s var(--ease-luxury) 1.1s forwards;
}

@media (min-width: 768px) {
    .hero-stats {
        padding: 20px 60px;
    }
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 22px;
    color: var(--gold);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.4);
}

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

/* ══════════════════════════════════
     TICKER / MARQUEE
  ══════════════════════════════════ */
.ticker-wrap {
    background: var(--gold);
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    gap: 0;
    animation: ticker 20s linear infinite;
}

.ticker-item {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    font-weight: 500;
    padding: 0 32px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ticker-item::before {
    content: '✦';
    font-size: 8px;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ══════════════════════════════════
     SECTIONS SHARED
  ══════════════════════════════════ */
section {
    padding: 80px 24px;
}

@media (min-width: 768px) {
    section {
        padding: 100px 60px;
    }
}

@media (min-width: 1200px) {
    section {
        padding: 120px 100px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--black);
}

.section-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.section-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 500px;
    margin: 12px auto 0;
    font-weight: 300;
}

/* Reveal animation */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-luxury), transform 0.8s var(--ease-luxury);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

/* ══════════════════════════════════
     FEATURED COLLECTIONS
  ══════════════════════════════════ */
#collections {
    background: var(--black);
    padding: 80px 0;
}

#collections .section-header {
    padding: 0 24px;
}

@media (min-width: 768px) {
    #collections .section-header {
        padding: 0 60px;
    }
}

#collections .section-title {
    color: var(--warm-white);
}

#collections .section-desc {
    color: var(--text-light);
}

.collections-swiper {
    padding: 20px 24px 40px !important;
}

@media (min-width: 768px) {
    .collections-swiper {
        padding: 20px 60px 50px !important;
    }
}

.collection-card {
    position: relative;
    height: 420px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .collection-card {
        height: 480px;
    }
}

.collection-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s var(--ease-luxury);
}

.collection-card:hover .collection-bg {
    transform: scale(1.05);
}

.collection-bg-1 {
    background: linear-gradient(160deg, #2A1F0E 0%, #1A1208 40%, #0D0A05 100%);
}

.collection-bg-2 {
    background: linear-gradient(160deg, #1A1020 0%, #0F0A18 40%, #080508 100%);
}

.collection-bg-3 {
    background: linear-gradient(160deg, #1A0E0E 0%, #120808 40%, #080505 100%);
}

.collection-art {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.coll-jewel {
    width: 75%;
    max-width: 220px;
    filter: drop-shadow(0 10px 40px rgba(201, 169, 110, 0.25));
    transition: transform 0.6s var(--ease-luxury);
}

.collection-card:hover .coll-jewel {
    transform: translateY(-8px) scale(1.02);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(5, 5, 5, 0.95) 0%, rgba(5, 5, 5, 0.3) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
}

.collection-tag {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.collection-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--warm-white);
    line-height: 1.1;
    margin-bottom: 12px;
}

.collection-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.collection-count {
    font-size: 11px;
    color: rgba(250, 248, 245, 0.5);
    letter-spacing: 1px;
}

.collection-arrow {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s, border-color 0.3s;
}

.collection-card:hover .collection-arrow {
    background: var(--gold);
    border-color: var(--gold);
}

.collection-arrow svg {
    width: 14px;
    height: 14px;
    transition: transform 0.3s;
}

.collection-card:hover .collection-arrow svg {
    transform: translate(2px, -2px);
}

/* ══════════════════════════════════
     PRODUCT CARDS
  ══════════════════════════════════ */
.product-card {
    background: var(--warm-white);
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.4s;
}

.product-card:hover {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.product-img-wrap {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: var(--beige);
}

@media (min-width: 768px) {
    .product-img-wrap {
        height: 300px;
    }
}

.product-img-svg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    transition: transform 0.6s var(--ease-luxury);
}

.product-card:hover .product-img-svg {
    transform: scale(1.04);
}

.product-img-svg svg,
.product-img-svg img {
    width: 100%;
    max-width: 170px;
    height: auto;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.12));
}

.product-actions {
    position: absolute;
    top: 12px;
    right: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(10px);
    transition: opacity 0.3s, transform 0.3s;
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 36px;
    height: 36px;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, color 0.3s;
}

.product-action-btn:hover {
    background: var(--gold);
}

.product-action-btn:hover svg {
    stroke: white;
}

.product-action-btn svg {
    width: 15px;
    height: 15px;
    stroke: var(--charcoal);
    fill: none;
    transition: stroke 0.3s;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 9px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.badge-new {
    background: var(--gold);
    color: var(--black);
}

.badge-limited {
    background: var(--black);
    color: var(--gold);
}

.badge-sale {
    background: var(--rose-gold);
    color: white;
}

.product-info {
    padding: 18px 16px 20px;
}

.product-meta {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 6px;
}

.product-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 18px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.3;
    margin-bottom: 8px;
}

.product-price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.product-price {
    font-size: 15px;
    font-weight: 500;
    color: var(--black);
}

.product-price-old {
    font-size: 13px;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-left: 6px;
}

.product-colors {
    display: flex;
    gap: 5px;
}

.color-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: transform 0.2s;
}

.color-dot:hover {
    transform: scale(1.3);
}

.color-dot.gold {
    background: var(--gold);
}

.color-dot.rose {
    background: var(--rose-gold);
}

.color-dot.silver {
    background: #C0C0C0;
}

.color-dot.black {
    background: var(--black);
}

.add-cart-btn {
    width: 100%;
    padding: 12px;
    background: var(--black);
    color: var(--gold);
    border: none;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 14px;
    position: relative;
    overflow: hidden;
    transition: background 0.3s;
    font-family: 'Jost', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.add-cart-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-luxury);
}

.add-cart-btn:hover::before {
    transform: scaleX(1);
}

.add-cart-btn:hover {
    color: var(--black);
}

.add-cart-btn span {
    position: relative;
    z-index: 1;
}

/* ══════════════════════════════════
     TRENDING
  ══════════════════════════════════ */
#trending {
    background: var(--warm-white);
}

.trending-tabs {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 40px;
    border-bottom: 1px solid var(--beige-mid);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0;
}

.trending-tabs::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 10px 20px;
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-muted);
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
    white-space: nowrap;
    font-family: 'Jost', sans-serif;
    margin-bottom: -1px;
}

.tab-btn.active {
    color: var(--black);
    border-bottom-color: var(--gold);
}

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

@media (min-width: 600px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* ══════════════════════════════════
     BRAND STORY
  ══════════════════════════════════ */
#story {
    background: var(--black);
    padding: 80px 0;
    overflow: hidden;
}

.story-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 1400px;
    margin: 0 auto;
}

@media (min-width: 900px) {
    .story-inner {
        grid-template-columns: 1fr 1fr;
    }
}

.story-visual {
    position: relative;
    height: 450px;
    overflow: hidden;
}

@media (min-width: 900px) {
    .story-visual {
        height: auto;
        min-height: 600px;
    }
}

.story-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 70% at 50% 50%, rgba(201, 169, 110, 0.15) 0%, transparent 70%),
        linear-gradient(135deg, #1A1410 0%, #0A0805 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-jewel-art {
    width: 70%;
    max-width: 300px;
    animation: storyFloat 7s ease-in-out infinite;
    filter: drop-shadow(0 20px 60px rgba(201, 169, 110, 0.3));
}

@keyframes storyFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-2deg);
    }

    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.story-content {
    padding: 60px 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

@media (min-width: 768px) {
    .story-content {
        padding: 80px 60px;
    }
}

.story-content .section-title {
    color: var(--warm-white);
    text-align: left;
    margin-bottom: 24px;
}

.story-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: rgba(250, 248, 245, 0.6);
    line-height: 1.9;
    margin-bottom: 16px;
    font-weight: 300;
}

.story-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 40px;
}

.pillar {
    border-top: 1px solid rgba(201, 169, 110, 0.3);
    padding-top: 16px;
}

.pillar-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    color: var(--gold);
}

.pillar-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: var(--warm-white);
    margin-bottom: 6px;
}

.pillar-desc {
    font-size: 12px;
    color: rgba(250, 248, 245, 0.45);
    line-height: 1.6;
}

/* ══════════════════════════════════
     BEST SELLERS
  ══════════════════════════════════ */
#bestsellers {
    background: var(--beige);
}

/* ══════════════════════════════════
     LIMITED EDITION BANNER
  ══════════════════════════════════ */
#limited {
    background: var(--black);
    padding: 0;
    overflow: hidden;
}

.limited-inner {
    position: relative;
    min-height: 460px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.limited-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 120% 120% at 70% 50%, rgba(201, 169, 110, 0.18) 0%, transparent 60%),
        radial-gradient(ellipse 60% 80% at 10% 80%, rgba(196, 145, 122, 0.1) 0%, transparent 50%),
        linear-gradient(135deg, #0A0A0A 0%, #1A1208 100%);
}

.limited-art-wrap {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

@media (max-width: 768px) {
    .limited-art-wrap {
        opacity: 0.2;
        width: 100%;
    }
}

.limited-content {
    position: relative;
    z-index: 2;
    padding: 80px 24px;
    max-width: 560px;
}

@media (min-width: 768px) {
    .limited-content {
        padding: 80px 60px;
    }
}

.limited-edition-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid var(--gold);
    margin-bottom: 24px;
}

.limited-edition-badge span {
    font-size: 9px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
}

.limited-edition-badge .dot {
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    animation: blink 1.5s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

.limited-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(36px, 5vw, 62px);
    font-weight: 300;
    color: var(--warm-white);
    line-height: 1.1;
    margin-bottom: 20px;
}

.limited-title em {
    font-style: italic;
    color: var(--gold);
    display: block;
}

.limited-desc {
    font-size: 14px;
    color: rgba(250, 248, 245, 0.55);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 380px;
    font-weight: 300;
}

.countdown {
    display: flex;
    gap: 16px;
    margin-bottom: 36px;
}

.countdown-item {
    text-align: center;
}

.countdown-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--gold);
    display: block;
    line-height: 1;
    min-width: 52px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.3);
    padding-bottom: 6px;
    margin-bottom: 6px;
}

.countdown-label {
    font-size: 9px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(250, 248, 245, 0.4);
}

/* ══════════════════════════════════
     TESTIMONIALS
  ══════════════════════════════════ */
#testimonials {
    background: var(--warm-white);
    overflow: hidden;
}

.testimonial-swiper {
    padding: 20px 24px 50px !important;
}

@media (min-width: 768px) {
    .testimonial-swiper {
        padding: 20px 60px 60px !important;
    }
}

.testimonial-card {
    background: white;
    padding: 36px 28px;
    border: 1px solid var(--beige-mid);
    position: relative;
    transition: box-shadow 0.4s, border-color 0.4s;
}

.testimonial-card:hover {
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--gold-light);
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 60px;
    color: var(--gold-light);
    line-height: 0.8;
    margin-bottom: 16px;
    font-weight: 400;
}

.testimonial-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: 17px;
    color: var(--charcoal);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
    font-weight: 400;
}

.testimonial-divider {
    width: 30px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--beige);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: 16px;
    color: var(--gold-dark);
    border: 1px solid var(--gold-light);
    flex-shrink: 0;
}

.author-name {
    font-size: 13px;
    font-weight: 500;
    color: var(--black);
    letter-spacing: 1px;
}

.author-location {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}

.star-row {
    position: absolute;
    top: 24px;
    right: 24px;
    display: flex;
    gap: 3px;
}

.star {
    color: var(--gold);
    font-size: 12px;
}

/* ══════════════════════════════════
     GALLERY
  ══════════════════════════════════ */
#gallery {
    background: var(--black);
    padding: 80px 0;
}

#gallery .section-header {
    padding: 0 24px;
}

@media (min-width: 768px) {
    #gallery .section-header {
        padding: 0 60px;
    }
}

#gallery .section-title {
    color: var(--warm-white);
}

#gallery .section-desc {
    color: var(--text-light);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    padding: 0 4px;
}

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

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
    background: var(--charcoal);
}

.gallery-item:nth-child(5) {
    grid-column: span 2;
    aspect-ratio: 2/1;
}

@media (min-width: 768px) {
    .gallery-item:nth-child(5) {
        grid-column: span 1;
        aspect-ratio: 1;
    }

    .gallery-item:nth-child(2) {
        grid-column: span 2;
        grid-row: span 2;
        aspect-ratio: auto;
    }
}

.gallery-bg {
    position: absolute;
    inset: 0;
    transition: transform 0.6s var(--ease-luxury);
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-item:hover .gallery-bg {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.4s;
}

.gallery-item:hover .gallery-overlay {
    background: rgba(0, 0, 0, 0.45);
}

.gallery-icon {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.4s, transform 0.4s;
    color: white;
    font-size: 22px;
}

.gallery-item:hover .gallery-icon {
    opacity: 1;
    transform: scale(1);
}

/* Gallery color backgrounds */
.gal-1 {
    background: linear-gradient(135deg, #1A1408 0%, #2A1E0A 100%);
}

.gal-2 {
    background: linear-gradient(135deg, #0F0A18 0%, #1A1020 100%);
}

.gal-3 {
    background: linear-gradient(135deg, #0A1018 0%, #0F1620 100%);
}

.gal-4 {
    background: linear-gradient(135deg, #180A0A 0%, #220F0F 100%);
}

.gal-5 {
    background: linear-gradient(135deg, #0E180A 0%, #162210 100%);
}

.gal-6 {
    background: linear-gradient(135deg, #18100A 0%, #221508 100%);
}

.gal-7 {
    background: linear-gradient(135deg, #0A0A18 0%, #0F1022 100%);
}

.gal-8 {
    background: linear-gradient(135deg, #18180A 0%, #22220F 100%);
}

/* ══════════════════════════════════
     NEWSLETTER
  ══════════════════════════════════ */
#newsletter {
    background: var(--beige);
    text-align: center;
}

.newsletter-inner {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 24px;
    color: var(--gold);
}

.newsletter-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 300;
    color: var(--black);
    margin-bottom: 12px;
    line-height: 1.2;
}

.newsletter-title em {
    font-style: italic;
    color: var(--gold-dark);
}

.newsletter-desc {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 36px;
    line-height: 1.7;
    font-weight: 300;
}

.newsletter-form {
    display: flex;
    gap: 0;
    max-width: 460px;
    margin: 0 auto 20px;
    border: 1px solid var(--beige-mid);
    background: white;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
}

.newsletter-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    outline: none;
    font-size: 13px;
    font-family: 'Jost', sans-serif;
    color: var(--black);
    background: transparent;
}

.newsletter-input::placeholder {
    color: var(--text-light);
}

.newsletter-btn {
    padding: 16px 24px;
    background: var(--black);
    color: var(--gold);
    border: none;
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    font-family: 'Jost', sans-serif;
    white-space: nowrap;
    transition: background 0.3s;
}

.newsletter-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.newsletter-note {
    font-size: 11px;
    color: var(--text-light);
}

/* ══════════════════════════════════
     FOOTER
  ══════════════════════════════════ */
footer {
    background: var(--black);
    padding: 60px 24px 100px;
    border-top: 1px solid rgba(201, 169, 110, 0.15);
}

@media (min-width: 768px) {
    footer {
        padding: 80px 60px 60px;
    }
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 600px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

@media (min-width: 1000px) {
    .footer-top {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.footer-brand .logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    font-weight: 300;
    color: var(--warm-white);
    letter-spacing: 8px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 16px;
}

.footer-brand .logo span {
    color: var(--gold);
}

.footer-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 14px;
    font-style: italic;
    color: rgba(250, 248, 245, 0.4);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.social-btn {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(201, 169, 110, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s, border-color 0.3s;
}

.social-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
}

.social-btn:hover svg {
    stroke: var(--black);
}

.social-btn svg {
    width: 15px;
    height: 15px;
    stroke: rgba(250, 248, 245, 0.5);
    fill: none;
    transition: stroke 0.3s;
}

.footer-col-title {
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 13px;
    color: rgba(250, 248, 245, 0.5);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.3s;
    letter-spacing: 0.5px;
}

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

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--gold);
    fill: none;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item span {
    font-size: 12px;
    color: rgba(250, 248, 245, 0.5);
    line-height: 1.5;
    font-weight: 300;
}

.footer-bottom {
    border-top: 1px solid rgba(201, 169, 110, 0.1);
    padding-top: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-copy {
    font-size: 11px;
    color: rgba(250, 248, 245, 0.25);
    letter-spacing: 0.5px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    font-size: 11px;
    color: rgba(250, 248, 245, 0.25);
    text-decoration: none;
    transition: color 0.3s;
}

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

/* ══════════════════════════════════
     MOBILE BOTTOM NAV
  ══════════════════════════════════ */
#mobile-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    height: 70px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0 8px;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

@media (min-width: 768px) {
    #mobile-nav {
        display: none;
    }
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px 16px;
    cursor: pointer;
    flex: 1;
    transition: color 0.3s;
    color: rgba(250, 248, 245, 0.4);
    text-decoration: none;
}

.nav-item.active {
    color: var(--gold);
}

.nav-item svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.5;
}

.nav-item span {
    font-size: 9px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav-item.active svg {
    stroke: var(--gold);
}

/* ══════════════════════════════════
     FLOATING WHATSAPP
  ══════════════════════════════════ */
#whatsapp-btn {
    position: fixed;
    right: 20px;
    bottom: 90px;
    z-index: 998;
    width: 52px;
    height: 52px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    animation: waBounce 3s ease-in-out infinite;
    text-decoration: none;
}

@media (min-width: 768px) {
    #whatsapp-btn {
        bottom: 30px;
    }
}

#whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes waBounce {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 8px 35px rgba(37, 211, 102, 0.6);
    }
}

#whatsapp-btn svg {
    width: 26px;
    height: 26px;
    fill: white;
}

/* ══════════════════════════════════
     SWIPER CUSTOM STYLES
  ══════════════════════════════════ */
.swiper-pagination-bullet {
    background: rgba(250, 248, 245, 0.4);
    opacity: 1;
    width: 6px;
    height: 6px;
    transition: width 0.3s, background 0.3s;
    border-radius: 3px;
}

.swiper-pagination-bullet-active {
    background: var(--gold);
    width: 20px;
}

.swiper-pagination-bullet-active-prev,
.swiper-pagination-bullet-active-next {
    background: rgba(201, 169, 110, 0.5);
}

/* ══════════════════════════════════
     LOADING SKELETON
  ══════════════════════════════════ */
.skeleton {
    background: linear-gradient(90deg, var(--beige) 25%, var(--beige-mid) 50%, var(--beige) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius);
}

@keyframes shimmer {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* ══════════════════════════════════
     UTILS
  ══════════════════════════════════ */
.text-center {
    text-align: center;
}

.mt-8 {
    margin-top: 8px;
}

.mt-16 {
    margin-top: 16px;
}

.mt-32 {
    margin-top: 32px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

/* ══════════════════════════════════
     SVG JEWELRY ILLUSTRATIONS
  ══════════════════════════════════ */

/* Page loader */
#page-loader {
    position: fixed;
    inset: 0;
    background: var(--black);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.6s, visibility 0.6s;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 36px;
    font-weight: 300;
    color: var(--warm-white);
    letter-spacing: 12px;
    text-transform: uppercase;
}

.loader-logo span {
    color: var(--gold);
}

.loader-line {
    width: 120px;
    height: 1px;
    background: rgba(201, 169, 110, 0.2);
    position: relative;
    overflow: hidden;
}

.loader-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(to right, var(--gold-dark), var(--gold));
    animation: loadProgress 1.8s var(--ease-luxury) forwards;
}

@keyframes loadProgress {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}

.loader-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 13px;
    font-style: italic;
    color: rgba(201, 169, 110, 0.6);
    letter-spacing: 2px;
}

/* View all link */
.view-all-wrap {
    text-align: center;
    margin-top: 40px;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--black);
    text-decoration: none;
    border-bottom: 1px solid var(--gold);
    padding-bottom: 4px;
    transition: color 0.3s, gap 0.3s;
}

.view-all-link:hover {
    color: var(--gold-dark);
    gap: 18px;
}

.view-all-link svg {
    width: 16px;
    height: 12px;
    stroke: currentColor;
    fill: none;
}

.view-all-link.light {
    color: rgba(250, 248, 245, 0.7);
    border-bottom-color: rgba(201, 169, 110, 0.5);
}

.view-all-link.light:hover {
    color: var(--gold);
}

/* ══════════════════════════════════
     SINGLE PRODUCT WOOCOMMERCE
  ══════════════════════════════════ */
.sp-container {
    padding: 120px 24px 60px;
    max-width: 1400px;
    margin: 0 auto;
    background: var(--warm-white);
}

@media (min-width: 768px) {
    .sp-container {
        padding: 140px 60px 80px;
    }
}

.sp-layout {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.sp-main-row {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

@media (min-width: 992px) {
    .sp-main-row {
        flex-direction: row;
        align-items: flex-start;
        gap: 80px;
    }
    .sp-gallery-wrap {
        width: 50%;
        position: sticky;
        top: 100px;
    }
    .sp-info-wrap {
        width: 50%;
        padding-top: 20px;
    }
}

/* Gallery & Zoom */
.sp-gallery-swiper {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
}

.zoom-img-wrap {
    position: relative;
    overflow: hidden;
    cursor: crosshair;
    margin: 0;
    padding: 0;
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 200%;
}

.zoom-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: opacity 0.2s;
    display: block;
    pointer-events: none;
}

.zoom-img-wrap:hover img {
    opacity: 0;
}

/* Swiper Nav */
.sp-gallery-swiper .swiper-pagination-bullet {
    background: var(--gold);
    opacity: 0.5;
}
.sp-gallery-swiper .swiper-pagination-bullet-active {
    opacity: 1;
}
.swiper-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 40px;
    height: 40px;
    background: rgba(250, 248, 245, 0.9);
    border: 1px solid var(--gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--black);
    cursor: pointer;
    transition: all 0.3s;
}
.swiper-nav-btn:hover {
    background: var(--gold);
    color: #fff;
}
.sp-gallery-prev { left: 16px; }
.sp-gallery-next { right: 16px; }
.swiper-nav-btn svg { width: 20px; height: 20px; }

/* Info Section */
.sp-breadcrumbs nav {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 24px;
}
.sp-breadcrumbs a {
    color: var(--gold);
    text-decoration: none;
}

.sp-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: 16px;
}

.sp-price-wrap {
    margin-bottom: 30px;
}
.sp-price-wrap .price {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--gold-dark);
    font-weight: 400;
}
.sp-price-wrap del {
    color: var(--text-light);
    font-size: 18px;
    margin-right: 12px;
}
.sp-price-wrap ins {
    text-decoration: none;
}

.sp-excerpt {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.2);
}

/* Add to Cart */
.sp-add-to-cart form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
}

.sp-add-to-cart .quantity {
    display: flex;
    align-items: center;
    border: 1px solid rgba(201, 169, 110, 0.4);
    height: 52px;
}
.sp-add-to-cart .quantity input.qty {
    width: 60px;
    height: 100%;
    border: none;
    text-align: center;
    font-size: 15px;
    background: transparent;
    color: var(--black);
    -moz-appearance: textfield;
}
.sp-add-to-cart .quantity input.qty::-webkit-outer-spin-button,
.sp-add-to-cart .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.sp-add-to-cart button.single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 40px;
    height: 52px;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    color: var(--black);
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    flex-grow: 1;
}
.sp-add-to-cart button.single_add_to_cart_button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(201, 169, 110, 0.3);
}

.sp-add-to-cart table.variations {
    width: 100%;
    margin-bottom: 24px;
}
.sp-add-to-cart table.variations td {
    padding-bottom: 16px;
}
.sp-add-to-cart table.variations td.label {
    width: 100px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--black);
}
.sp-add-to-cart table.variations select {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(201, 169, 110, 0.4);
    background: transparent;
    color: var(--black);
    font-size: 14px;
    appearance: none;
}

/* Meta */
.sp-meta {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.sp-meta > span {
    display: block;
}
.sp-meta a {
    color: var(--gold-dark);
    text-decoration: none;
}

/* Tabs */
.sp-tabs-section {
    margin-top: 60px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
    padding-top: 50px;
}
.sp-tabs-section ul.wc-tabs {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(201, 169, 110, 0.1);
    padding-bottom: 16px;
}
.sp-tabs-section ul.wc-tabs li a {
    font-size: 12px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 500;
}
.sp-tabs-section ul.wc-tabs li.active a,
.sp-tabs-section ul.wc-tabs li a:hover {
    color: var(--gold-dark);
}

.sp-tabs-section .woocommerce-Tabs-panel {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-muted);
    max-width: 800px;
}
.sp-tabs-section .woocommerce-Tabs-panel h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 28px;
    color: var(--black);
    margin-bottom: 24px;
    font-weight: 400;
}

/* Related */
.sp-related-section {
    margin-top: 100px;
}
.sp-related-section > h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(32px, 4vw, 42px);
    font-weight: 300;
    color: var(--black);
    margin-bottom: 50px;
    text-align: center;
}

/* Align Related products with grid */
.sp-related-section ul.products {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
@media (min-width: 768px) {
    .sp-related-section ul.products {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
}
@media (min-width: 1024px) {
    .sp-related-section ul.products {
        grid-template-columns: repeat(4, 1fr);
        gap: 32px;
    }
}
.sp-related-section ul.products li.product {
    margin: 0;
    width: 100%;
}