/* =============================================
   Ougin — Main Stylesheet
   Celestial Crystal Energy
   ============================================= */

/* ── CSS Custom Properties ───────────────────────────────────────────────── */
:root {
    --gold: #D4AF37;
    --gold-glow: rgba(212, 175, 55, 0.5);
    --gold-soft: rgba(212, 175, 55, 0.15);
    --midnight: #1B263B;
    --midnight-soft: rgba(27, 38, 59, 0.92);
    --sage: #F5F7F5;
    --amethyst: #A291B5;
    --amethyst-soft: rgba(162, 145, 181, 0.2);
    --amethyst-deep: #7B6A9E;
    --alabaster: #FCFAFA;
    --white-soft: rgba(255, 255, 255, 0.7);
    --glass-bg: rgba(27, 38, 59, 0.35);
    --glass-border: rgba(212, 175, 55, 0.18);
    --glass-blur: blur(24px) saturate(140%);
    --glass-blur-light: blur(18px) saturate(130%);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-card: 0 4px 24px rgba(27, 38, 59, 0.08), 0 1px 4px rgba(27, 38, 59, 0.04);
    --shadow-elevated: 0 12px 48px rgba(27, 38, 59, 0.14), 0 2px 8px rgba(27, 38, 59, 0.06);
    --shadow-gold: 0 0 40px rgba(212, 175, 55, 0.3), 0 0 80px rgba(212, 175, 55, 0.12);
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-slow: cubic-bezier(0.25, 0.1, 0.25, 1);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--sage);
    color: var(--midnight);
    line-height: 1.7;
    overflow-x: hidden;
    cursor: default;
}

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

a {
    color: inherit;
    text-decoration: none;
}

/* ── Custom Scrollbar ──────── */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--sage);
}
::-webkit-scrollbar-thumb {
    background: var(--amethyst);
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ── Selection ──────── */
::selection {
    background: var(--gold-soft);
    color: var(--midnight);
}

/* ══════════════════════════════════════
   NAVIGATION — Glass Morphism
   ══════════════════════════════════════ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 2rem;
    transition: all 0.45s var(--transition-smooth);
    pointer-events: none;
}
.nav__inner {
    margin: 1rem auto;
    max-width: 1320px;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    padding: 0.65rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    pointer-events: auto;
    transition: all 0.45s var(--transition-smooth);
    box-shadow: 0 4px 24px rgba(27, 38, 59, 0.06);
}
.nav--scrolled .nav__inner {
    margin-top: 0.5rem;
    padding: 0.5rem 1.8rem;
    background: rgba(27, 38, 59, 0.72);
    box-shadow: 0 8px 32px rgba(27, 38, 59, 0.14);
    border-radius: 40px;
}
.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.65rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.03em;
    transition: all 0.35s var(--transition-smooth);
    position: relative;
}
.nav__logo:hover {
    text-shadow: 0 0 28px var(--gold-glow);
    transform: scale(1.04);
}
.nav__logo-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}
.nav__logo-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 0 8px rgba(212, 175, 55, 0.5));
    transition: filter 0.4s;
}
.nav__logo:hover .nav__logo-icon svg {
    filter: drop-shadow(0 0 18px rgba(212, 175, 55, 0.8));
}
.nav__links {
    display: flex;
    list-style: none;
    gap: 0.25rem;
    align-items: center;
}
.nav__link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 0.55rem 1.1rem;
    border-radius: 30px;
    transition: all 0.35s var(--transition-smooth);
    position: relative;
    white-space: nowrap;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 60%;
    height: 1.5px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.35s var(--transition-bounce);
}
.nav__link:hover {
    color: #fff;
    background: rgba(212, 175, 55, 0.1);
}
.nav__link:hover::after {
    transform: translateX(-50%) scaleX(1);
}
.nav__link--cta {
    background: var(--gold);
    color: var(--midnight) !important;
    font-weight: 600;
    padding: 0.55rem 1.4rem;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.nav__link--cta:hover {
    background: #e0c04d;
    box-shadow: 0 0 32px rgba(212, 175, 55, 0.5);
    transform: translateY(-1px);
}
.nav__link--cta::after {
    display: none;
}
.nav__cart {
    position: relative;
    display: flex;
    align-items: center;
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: 0.5rem;
}

.nav__search-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.3s var(--transition-smooth);
}

.nav__search-btn svg {
    width: 20px;
    height: 20px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    transition: stroke 0.3s;
}

.nav__search-btn:hover {
    background: rgba(212, 175, 55, 0.12);
}

.nav__search-btn:hover svg {
    stroke: var(--gold);
}

.nav__account {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav__account svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    transition: stroke 0.3s;
}

.nav__account:hover svg {
    stroke: var(--gold);
}
.nav__cart svg {
    width: 22px;
    height: 22px;
    stroke: #fff;
    fill: none;
    stroke-width: 1.8;
    transition: stroke 0.3s;
}
.nav__cart:hover svg {
    stroke: var(--gold);
}
.nav__cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    width: 18px;
    height: 18px;
    background: var(--gold);
    color: var(--midnight);
    font-size: 0.65rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 1001;
    pointer-events: auto;
}
.nav__hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.35s var(--transition-smooth);
    transform-origin: center;
}
.nav__hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.nav__hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav__hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ── Mobile Nav Panel ──────── */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 420px;
    height: 100vh;
    height: 100dvh;
    background: var(--midnight-soft);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.8rem;
    transition: right 0.5s var(--transition-smooth);
    padding: 2rem;
}
.mobile-nav.active {
    right: 0;
}
.mobile-nav a {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 0.05em;
    transition: all 0.35s;
    position: relative;
}
.mobile-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--gold);
    transition: width 0.4s var(--transition-smooth);
}
.mobile-nav a:hover::after {
    width: 100%;
}
.mobile-nav a:hover {
    color: var(--gold);
}
.mobile-nav__cta {
    background: var(--gold) !important;
    color: var(--midnight) !important;
    padding: 0.8rem 2rem !important;
    border-radius: 40px !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 1rem !important;
    font-weight: 600 !important;
}
.mobile-nav__cta::after {
    display: none !important;
}
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s;
}
.mobile-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

/* ══════════════════════════════════════
   HERO SECTION
   ══════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(ellipse at 50% 35%, #1e2d4a 0%, #0f1928 50%, #0a0f1a 100%);
    overflow: hidden;
    text-align: center;
    padding: 6rem 2rem 4rem;
}
.hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
}
.hero__content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.hero__badge {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    border: 1px solid rgba(212, 175, 55, 0.4);
    padding: 0.45rem 1.4rem;
    border-radius: 40px;
    margin-bottom: 1.8rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background: rgba(212, 175, 55, 0.06);
    animation: fadeInUp 0.9s var(--transition-smooth) 0.15s both;
}
.hero__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 6.5vw, 5.2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.12;
    letter-spacing: -0.01em;
    margin-bottom: 1.2rem;
    animation: fadeInUp 0.9s var(--transition-smooth) 0.3s both;
}
.hero__title em {
    font-style: italic;
    color: var(--gold);
    position: relative;
}
.hero__title em::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    opacity: 0.5;
    border-radius: 2px;
}
.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 2.4rem;
    line-height: 1.7;
    animation: fadeInUp 0.9s var(--transition-smooth) 0.45s both;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.9s var(--transition-smooth) 0.6s both;
}
.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    animation: float 3s ease-in-out infinite;
}
.hero__scroll-line {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    border-radius: 1px;
}

/* ── Buttons ──────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    transition: all 0.4s var(--transition-smooth);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.btn--gold {
    background: var(--gold);
    color: var(--midnight);
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.35);
}
.btn--gold:hover {
    background: #e4c85a;
    box-shadow: 0 8px 36px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}
.btn--ghost {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
}
.btn--ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}

/* ── Animations ──────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}
@keyframes pulseGlow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.55);
    }
}

/* ══════════════════════════════════════
   SECTION COMMONS
   ══════════════════════════════════════ */
.section {
    padding: 5rem 2rem;
}
.section__header {
    text-align: center;
    margin-bottom: 3.5rem;
}
.section__label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--amethyst);
    margin-bottom: 0.6rem;
}
.section__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--midnight);
    letter-spacing: -0.01em;
    line-height: 1.2;
}
.section__title--light {
    color: #fff;
}
.section__divider {
    width: 60px;
    height: 2px;
    background: var(--gold);
    margin: 1rem auto 0;
    border-radius: 2px;
}
.container {
    max-width: 1500px;
    margin: 0 auto;
}

/* ══════════════════════════════════════
   CATEGORIES GRID
   ══════════════════════════════════════ */
.categories {
    background: var(--alabaster);
}
.categories__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 1.2rem;
}
.cat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem 1.2rem 1.6rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.45s var(--transition-smooth);
    border: 1px solid transparent;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: block;
}
.cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--amethyst), var(--gold));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s var(--transition-smooth);
}
.cat-card:hover::before {
    transform: scaleX(1);
}
.cat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
    border-color: rgba(212, 175, 55, 0.2);
}
.cat-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1rem;
    transition: transform 0.45s var(--transition-bounce);
}
.cat-card:hover .cat-card__icon {
    transform: scale(1.12) rotate(-3deg);
}
.cat-card__icon svg {
    width: 100%;
    height: 100%;
}
.cat-card__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.cat-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 0.3rem;
    transition: color 0.35s;
}
.cat-card:hover .cat-card__name {
    color: var(--gold);
}
.cat-card__count {
    font-size: 0.78rem;
    color: var(--amethyst);
    font-weight: 500;
}

/* ══════════════════════════════════════
   FEATURED PRODUCTS
   ══════════════════════════════════════ */
.featured {
    background: var(--sage);
}
.featured__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 2rem;
}
.product-card {
    background: var(--alabaster);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.5s var(--transition-smooth);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
    cursor: pointer;
}
.product-card__image {
    width: 100%;
    height: 300px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(160deg, #1B263B 0%, #2a3a5c 40%, #3d4f72 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--transition-smooth);
}
.product-card:hover .product-card__image img {
    transform: scale(1.08);
}
.product-card__crystal {
    width: 120px;
    height: 160px;
    transition: transform 0.6s var(--transition-smooth);
    filter: drop-shadow(0 8px 24px rgba(212, 175, 55, 0.3));
}
.product-card:hover .product-card__crystal {
    transform: scale(1.08) translateY(-6px);
    filter: drop-shadow(0 14px 32px rgba(212, 175, 55, 0.5));
}
.product-card__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--amethyst);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    z-index: 2;
}
.product-card__badge--gold {
    background: var(--gold);
    color: var(--midnight);
}
.product-card__wishlist {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.35s var(--transition-smooth);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.product-card__wishlist:hover {
    background: #fff;
    transform: scale(1.1);
}
.product-card__wishlist svg {
    width: 18px;
    height: 18px;
    transition: all 0.35s;
    fill: none;
    stroke: var(--amethyst);
    stroke-width: 2;
}
.product-card__wishlist.liked svg {
    fill: #e0556a;
    stroke: #e0556a;
}
.product-card__body {
    padding: 1.4rem 1.4rem 1.6rem;
}
.product-card__category {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amethyst);
    margin-bottom: 0.3rem;
}
.product-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 0.4rem;
}
.product-card__name a {
    color: inherit;
    text-decoration: none;
}
.product-card__name a:hover {
    color: var(--gold);
}
.product-card__energy {
    font-size: 0.82rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.5;
}
.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.product-card__price {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--midnight);
}
.product-card__price del {
    font-size: 0.85rem;
    color: #9ca3af;
    margin-right: 0.3rem;
}
.product-card__price ins {
    text-decoration: none;
}
.product-card__btn {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    background: transparent;
    color: var(--midnight);
    border: 1.5px solid var(--midnight);
    cursor: pointer;
    transition: all 0.35s var(--transition-smooth);
    text-decoration: none;
    display: inline-block;
}
.product-card__btn:hover {
    background: var(--midnight);
    color: #fff;
}

/* ══════════════════════════════════════
   PHILOSOPHY SECTION
   ══════════════════════════════════════ */
.philosophy {
    background: var(--midnight);
    color: #fff;
    position: relative;
    overflow: hidden;
}
.philosophy::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(162, 145, 181, 0.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.philosophy__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}
.philosophy__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}
.philosophy__crystal-svg {
    width: 100%;
    max-width: 380px;
    filter: drop-shadow(0 0 60px rgba(212, 175, 55, 0.25));
    animation: floatCrystal 6s ease-in-out infinite;
}
@keyframes floatCrystal {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    33% {
        transform: translateY(-12px) rotate(1deg);
    }
    66% {
        transform: translateY(-6px) rotate(-0.5deg);
    }
}
.philosophy__text h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.2rem;
    line-height: 1.2;
}
.philosophy__text p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}
.philosophy__pillars {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.philosophy__pillar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}
.philosophy__pillar-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex-shrink: 0;
}
.philosophy__pillar-dot--gold {
    background: var(--gold);
    box-shadow: 0 0 12px var(--gold-glow);
}
.philosophy__pillar-dot--amethyst {
    background: var(--amethyst);
    box-shadow: 0 0 12px rgba(162, 145, 181, 0.6);
}

/* ══════════════════════════════════════
   TESTIMONIALS
   ══════════════════════════════════════ */
.testimonials {
    background: var(--alabaster);
}
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.8rem;
}
.testimonial-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-card);
    transition: all 0.4s var(--transition-smooth);
    position: relative;
}
.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-elevated);
}
.testimonial-card__stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}
.testimonial-card__quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--midnight);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}
.testimonial-card__author {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--midnight);
}
.testimonial-card__author span {
    color: var(--amethyst);
    font-weight: 400;
    font-size: 0.78rem;
}

/* ══════════════════════════════════════
   NEWSLETTER
   ══════════════════════════════════════ */
.newsletter {
    background: linear-gradient(160deg, #1e2d4a 0%, #1B263B 60%, #162030 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 4rem 2rem;
}
.newsletter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}
.newsletter__form {
    display: flex;
    gap: 0.8rem;
    max-width: 480px;
    margin: 2rem auto 0;
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    justify-content: center;
}
.newsletter__input {
    flex: 1;
    min-width: 240px;
    padding: 0.9rem 1.4rem;
    border-radius: 50px;
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    outline: none;
    transition: all 0.35s;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.45);
}
.newsletter__input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.1);
}
.newsletter__submit {
    padding: 0.9rem 2rem;
    border-radius: 50px;
    background: var(--gold);
    color: var(--midnight);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--transition-smooth);
    white-space: nowrap;
}
.newsletter__submit:hover {
    background: #e4c85a;
    box-shadow: 0 0 28px rgba(212, 175, 55, 0.45);
    transform: translateY(-1px);
}

/* ══════════════════════════════════════
   FOOTER
   ══════════════════════════════════════ */
.footer {
    background: #0f1928;
    color: rgba(255, 255, 255, 0.6);
    padding: 4rem 2rem 2rem;
}
.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    max-width: 1500px;
    margin: 0 auto 2.5rem;
}
.footer__brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.8rem;
}
.footer__desc {
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 280px;
}
.footer__heading {
    font-weight: 600;
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}
.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.footer__links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s;
}
.footer__links a:hover {
    color: var(--gold);
}
.footer__bottom {
    max-width: 1500px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
}
.footer__social {
    display: flex;
    gap: 1rem;
}
.footer__social a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.85rem;
}
.footer__social a:hover {
    color: var(--gold);
}

/* ══════════════════════════════════════
   BREADCRUMB (Product Page)
   ══════════════════════════════════════ */
.breadcrumb {
    padding: 7rem 2rem 1rem;
    max-width: 1500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--amethyst);
    flex-wrap: wrap;
}
.breadcrumb a {
    color: var(--amethyst);
    text-decoration: none;
    transition: color 0.3s;
}
.breadcrumb a:hover {
    color: var(--gold);
}
.breadcrumb__sep {
    color: rgba(162, 145, 181, 0.4);
    font-size: 0.7rem;
}
.breadcrumb__current {
    color: var(--midnight);
    font-weight: 600;
}

/* ══════════════════════════════════════
   PRODUCT MAIN (Product Page)
   ══════════════════════════════════════ */
.product-main {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}

/* ── Gallery ──────── */
.gallery {
    position: sticky;
    top: 7rem;
}
.gallery__main {
    border-radius: var(--radius-lg);
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: zoom-in;
    transition: all 0.4s;
}
.gallery__main:hover {
    box-shadow: var(--shadow-elevated), 0 0 0 2px rgba(212, 175, 55, 0.2);
}
.gallery__main img {
    width: 65%;
    height: 75%;
    object-fit: contain;
    position: relative;
    z-index: 1;
    transition: transform 0.6s var(--transition-smooth);
    filter: drop-shadow(0 12px 36px rgba(212, 175, 55, 0.35));
}
.gallery__main:hover img {
    transform: scale(1.06);
}
.gallery__particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.gallery__crystal {
    position: relative;
    z-index: 1;
    transition: transform 0.6s var(--transition-smooth);
}
.gallery__crystal img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: opacity 0.15s ease-out;
}

.gallery__crystal.is-switching img {
    opacity: 0;
}
.gallery__main:hover .gallery__crystal {
    transform: scale(1.06);
}
.gallery__badge {
    position: absolute;
    top: 1.2rem;
    left: 1.2rem;
    background: var(--gold);
    color: var(--midnight);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    z-index: 2;
}
.gallery__zoom-hint {
    position: absolute;
    bottom: 1rem;
    right: 1.2rem;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.7rem;
    letter-spacing: 0.06em;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.35rem;
    pointer-events: none;
}
.gallery__thumbs {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}
.gallery__thumb {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-sm);
    background: linear-gradient(160deg, #1B263B 0%, #2a3a5c 100%);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.35s var(--transition-smooth);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0;
}
.gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery__thumb:hover {
    border-color: rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(27, 38, 59, 0.15);
}
.gallery__thumb--active {
    border-color: var(--gold) !important;
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.3);
}
.gallery__thumb svg {
    width: 60%;
    height: 70%;
}

/* ── Product Info ──────── */
.product-info {
    padding-top: 0.5rem;
}
.product-info__category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amethyst);
    margin-bottom: 0.4rem;
}
.product-info__title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    color: var(--midnight);
    line-height: 1.15;
    margin-bottom: 0.6rem;
}
.product-info__subtitle {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}
.product-info__price {
    display: flex;
    align-items: baseline;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}
.product-info__price-current {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--midnight);
}
.product-info__price-current del {
    font-size: 1rem;
    color: #9ca3af;
    margin-right: 0.4rem;
}
.product-info__price-current ins {
    text-decoration: none;
}
.product-info__price-original {
    font-size: 1rem;
    color: #9ca3af;
    text-decoration: line-through;
}
.product-info__price-badge {
    font-size: 0.7rem;
    font-weight: 600;
    background: rgba(212, 175, 55, 0.15);
    color: #b8941f;
    padding: 0.25rem 0.7rem;
    border-radius: 20px;
    letter-spacing: 0.04em;
}

/* ── Energy Indicators ──────── */
.energy-panel {
    background: var(--alabaster);
    border-radius: var(--radius-md);
    padding: 1.4rem 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(162, 145, 181, 0.15);
}
.energy-panel__title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amethyst);
    margin-bottom: 1rem;
}
.energy-bar {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 0.7rem;
}
.energy-bar:last-child {
    margin-bottom: 0;
}
.energy-bar__label {
    width: 100px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--midnight);
    flex-shrink: 0;
}
.energy-bar__track {
    flex: 1;
    height: 6px;
    background: rgba(162, 145, 181, 0.2);
    border-radius: 10px;
    overflow: hidden;
}
.energy-bar__fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1.2s var(--transition-smooth);
    position: relative;
}
.energy-bar__fill--gold {
    background: linear-gradient(90deg, #D4AF37, #e8c94d);
    box-shadow: 0 0 8px rgba(212, 175, 55, 0.4);
}
.energy-bar__fill--amethyst {
    background: linear-gradient(90deg, #A291B5, #c4b8d6);
    box-shadow: 0 0 8px rgba(162, 145, 181, 0.4);
}
.energy-bar__value {
    width: 36px;
    text-align: right;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--midnight);
    flex-shrink: 0;
}

/* ── Chakra Tags ──────── */
.chakra-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.chakra-tag {
    font-size: 0.72rem;
    font-weight: 500;
    padding: 0.35rem 0.9rem;
    border-radius: 20px;
    letter-spacing: 0.03em;
    cursor: default;
    transition: all 0.3s;
    border: 1px solid transparent;
}
.chakra-tag--crown {
    background: rgba(162, 145, 181, 0.15);
    color: var(--amethyst-deep);
    border-color: rgba(162, 145, 181, 0.3);
}
.chakra-tag--third-eye {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
    border-color: rgba(99, 102, 241, 0.25);
}
.chakra-tag--heart {
    background: rgba(236, 72, 153, 0.08);
    color: #db2777;
    border-color: rgba(236, 72, 153, 0.2);
}
.chakra-tag:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* ── Purchase Actions ──────── */
.purchase-row {
    display: flex;
    gap: 0.8rem;
    align-items: center;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
}
.qty-selector {
    display: flex;
    align-items: center;
    border: 1.5px solid rgba(27, 38, 59, 0.2);
    border-radius: 40px;
    overflow: hidden;
    background: #fff;
}
.qty-selector__btn {
    width: 40px;
    height: 44px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--midnight);
    transition: all 0.25s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}
.qty-selector__btn:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--gold);
}
.qty-selector__input {
    width: 48px;
    height: 44px;
    border: none;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--midnight);
    background: transparent;
    outline: none;
    -moz-appearance: textfield;
}
.qty-selector__input::-webkit-outer-spin-button,
.qty-selector__input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.attached.enabled {
    font-size: 1.5em;
}
.purchase-row .btn--gold {
    flex: 1;
    justify-content: center;
    min-width: 180px;
}

.purchase-row .variations_form {
    display: grid;
    align-items: flex-end;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.purchase-row .variations_form table.variations {
    margin-bottom: 15px;
    flex-shrink: 0;
}

.purchase-row .variations_form table.variations tbody {
    display: grid;
    gap: 0.8rem;
}

.purchase-row .variations_form table.variations tr {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.purchase-row .variations_form table.variations td {
    padding: 0;
    vertical-align: middle;
}

.purchase-row .variations_form table.variations td.label {
    display: none;
}

.purchase-row .variations_form table.variations select {
    height: 44px;
    padding: 0 2rem 0 1rem;
    border: 1.5px solid rgba(27, 38, 59, 0.2);
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    color: var(--midnight);
    background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%231B263B'/%3E%3C/svg%3E") no-repeat right 0.9rem center;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
}

.purchase-row .variations_form table.variations select:focus {
    border-color: var(--gold);
}

.purchase-row .variations_form .single_variation_wrap {
    display: grid;
    align-items: center;
    gap: 0.8rem;
}

.purchase-row .variations_form .woocommerce-variation-add-to-cart {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.purchase-row .variations_form .single_add_to_cart_button {
    height: 44px;
    padding: 0 2rem;
}

.btn--wishlist {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid rgba(27, 38, 59, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.35s var(--transition-smooth);
    flex-shrink: 0;
}
.btn--wishlist svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: var(--amethyst);
    stroke-width: 2;
    transition: all 0.35s;
}
.btn--wishlist:hover {
    border-color: var(--amethyst);
    transform: scale(1.08);
}
.btn--wishlist.liked svg {
    fill: #e0556a;
    stroke: #e0556a;
}
.btn--wishlist.liked {
    border-color: #e0556a;
}

/* ── Trust badges ──────── */
.trust-badges {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    font-size: 0.75rem;
    color: var(--amethyst);
    font-weight: 500;
    letter-spacing: 0.03em;
}
.trust-badges span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}
.trust-badges svg {
    width: 16px;
    height: 16px;
}

/* ══════════════════════════════════════
   PRODUCT DETAILS TABS
   ══════════════════════════════════════ */
.product-details {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}
.details-tabs {
    display: flex;
    gap: 0.3rem;
    border-bottom: 1px solid rgba(27, 38, 59, 0.1);
    margin-bottom: 1.8rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.details-tab {
    padding: 0.8rem 1.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #9ca3af;
    background: none;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.35s;
    position: relative;
}
.details-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.35s var(--transition-smooth);
    border-radius: 2px 2px 0 0;
}
.details-tab:hover {
    color: var(--midnight);
}
.details-tab--active {
    color: var(--midnight);
}
.details-tab--active::after {
    transform: scaleX(1);
}
.details-panel {
    display: none;
    animation: fadeSlideIn 0.5s var(--transition-smooth);
}
.details-panel--active {
    display: block;
}
@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.details-panel__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}
.details-panel h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--midnight);
}
.details-panel p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 0.8rem;
}
.specs-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.85rem;
}
.specs-table tr {
    border-bottom: 1px solid rgba(27, 38, 59, 0.06);
}
.specs-table td {
    padding: 0.7rem 0;
}
.specs-table td:first-child {
    font-weight: 600;
    color: var(--midnight);
    width: 40%;
}
.specs-table td:last-child {
    color: #6b7280;
}

/* ══════════════════════════════════════
   RELATED PRODUCTS
   ══════════════════════════════════════ */
.related {
    background: var(--alabaster);
    padding: 4rem 2rem;
}
.related__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}
.related-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: all 0.45s var(--transition-smooth);
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}
.related-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated);
}
.related-card__image {
    width: 100%;
    height: 200px;
    background: linear-gradient(160deg, #1B263B 0%, #2a3a5c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.5s;
}
.related-card:hover .related-card__image {
    background: linear-gradient(160deg, #1e2d4a 0%, #314368 100%);
}
.related-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s var(--transition-bounce);
}
.related-card:hover .related-card__image img {
    transform: scale(1.1);
}
.related-card__image svg {
    width: 60px;
    height: 80px;
    transition: transform 0.45s var(--transition-bounce);
}
.related-card:hover .related-card__image svg {
    transform: scale(1.1) translateY(-4px);
}
.related-card__body {
    padding: 1rem 1.2rem 1.3rem;
}
.related-card__name {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 0.2rem;
}
.related-card__price {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--midnight);
}

/* ══════════════════════════════════════
   SCROLL REVEAL
   ══════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--transition-smooth), transform 0.8s var(--transition-smooth);
}
.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;
}

/* ── Toast ──────── */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--midnight);
    color: #fff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.03em;
    z-index: 2000;
    box-shadow: 0 12px 40px rgba(27, 38, 59, 0.4);
    transition: transform 0.45s var(--transition-bounce);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.toast--visible {
    transform: translateX(-50%) translateY(0);
}
.toast__dot {
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-glow);
}

/* ══════════════════════════════════════
   CONTENT PAGE (Blog/Page)
   ══════════════════════════════════════ */
.content-page {
    padding: 5rem 2rem 0rem;
    max-width: 1500px;
    margin: 0 auto;
}
.content-page h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--midnight);
    margin-bottom: 1rem;
    line-height: 1.2;
}
.content-page h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--midnight);
    margin: 2rem 0 0.8rem;
}
.content-page h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--midnight);
    margin: 1.5rem 0 0.6rem;
}
.content-page p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4b5563;
    margin-bottom: 1rem;
}
.content-page ul,
.content-page ol {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.content-page li {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4b5563;
}
.content-page blockquote {
    border-left: 3px solid var(--gold);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: var(--alabaster);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    font-style: italic;
}
.content-page .post-meta {
    font-size: 0.8rem;
    color: var(--amethyst);
    margin-bottom: 2rem;
    letter-spacing: 0.04em;
}

/* ══════════════════════════════════════
   WOOCOMMERCE PAGES
   ══════════════════════════════════════ */
.woocommerce-shop,
.woocommerce-archive {
    padding: 5rem 2rem 0rem;
    max-width: 1500px;
    margin: 0 auto;
}
.woocommerce-shop .page-title,
.woocommerce-archive .page-title {
    padding: 0 0 2rem;
}
.woocommerce ul.products {
    display: grid !important;
    grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
    gap: 2rem;
    list-style: none;
    padding: 2rem 0 4rem;
}

.woocommerce-shop .page-title,
.woocommerce-archive .page-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--midnight);
    text-align: center;
    margin-bottom: 2rem;
    padding: 0 2rem;
}

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

/* ── Cart & Checkout ──────── */
.woocommerce-cart,
.woocommerce-checkout {
    padding: 5rem 2rem 0rem;
    max-width: 1500px;
    margin: 0 auto;
}
.woocommerce-cart .entry-title,
.woocommerce-checkout .entry-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--midnight);
}
.woocommerce .button,
.woocommerce button.button,
.woocommerce a.button {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    padding: 0.75rem 1.8rem;
    border-radius: 50px;
    transition: all 0.35s var(--transition-smooth);
}
.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce a.button:hover {
    transform: translateY(-1px);
}
.woocommerce button.button.alt {
    background: var(--gold) !important;
    color: var(--midnight) !important;
}
.woocommerce button.button.alt:hover {
    background: #e4c85a !important;
}
.woocommerce table.shop_table {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(27, 38, 59, 0.08);
}
.woocommerce table.shop_table th {
    background: var(--midnight);
    color: #fff;
    font-weight: 500;
}
.woocommerce-info {
    border-top-color: var(--gold) !important;
}
.woocommerce-message {
    border-top-color: var(--gold) !important;
}
.woocommerce-error {
    border-top-color: #e0556a !important;
}

/* ══════════════════════════════════════
   MY ACCOUNT — Login / Register
   ══════════════════════════════════════ */
.woocommerce-account {
    padding: 5rem 2rem 0rem;
    max-width: 1500px;
    margin: 0 auto;
}

.woocommerce-account .entry-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--midnight);
    text-align: center;
    margin-bottom: 2.5rem;
}

.woocommerce-account .u-columns {
    display: grid;
    max-width: 400px;
    gap: 2.5rem;
    margin: 0 auto;
    margin-bottom: 5rem;
    position: relative;
}

/* ── Login/Register Tab Switcher ──────── */
.wc-login-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 0;
    border-bottom: 1px solid rgba(27, 38, 59, 0.1);
    max-width: 1240px;
    margin-left: auto;
    margin-right: auto;
}

.wc-login-tab {
    flex: 1;
    padding: 1rem 1.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #9ca3af;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.4s var(--transition-smooth);
    text-align: center;
    letter-spacing: 0.02em;
    position: relative;
}

.wc-login-tab:hover {
    color: var(--midnight);
}

.wc-login-tab--active {
    color: var(--midnight);
    border-bottom-color: var(--gold);
}

.wc-login-tab--active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.wc-login-panel {
    display: none;
    animation: fadeSlideIn 0.5s var(--transition-smooth);
}

.wc-login-panel--active {
    display: block;
}

.woocommerce-account .u-column1,
.woocommerce-account .u-column2 {
    background: var(--alabaster);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(27, 38, 59, 0.04);
}

.woocommerce-account .u-column1 h2,
.woocommerce-account .u-column2 h2 {
    display: none;
}

.woocommerce-form-row {
    margin-bottom: 1.2rem;
}

.woocommerce-form-row label {
    display: block;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--midnight);
    margin-bottom: 0.4rem;
}

.woocommerce-form-row input[type="text"],
.woocommerce-form-row input[type="email"],
.woocommerce-form-row input[type="password"],
.woocommerce-EditAccountForm input[type="text"],
.woocommerce-EditAccountForm input[type="email"],
.woocommerce-EditAccountForm input[type="password"],
.woocommerce-EditAccountForm input[type="tel"],
.woocommerce-form-row input.input-text,
.woocommerce-Input--text,
.woocommerce-Input--email,
.woocommerce-Input--password {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1.5px solid rgba(27, 38, 59, 0.15);
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--midnight);
    background: #fff;
    outline: none;
    transition: all 0.3s var(--transition-smooth);
}

.woocommerce-form-row input:focus,
.woocommerce-EditAccountForm input:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px var(--gold-soft);
}

.woocommerce-form-row .required {
    color: var(--gold);
    text-decoration: none;
}

.woocommerce-form__label-for-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--midnight);
    cursor: pointer;
    margin-bottom: 1rem;
}

.woocommerce-form__label-for-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
    border-radius: 4px;
    cursor: pointer;
}

.woocommerce-form__label-for-checkbox span {
    font-weight: 500;
}

.woocommerce-button,
.woocommerce-Button,
.woocommerce-account button.button,
.woocommerce-account a.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    background: var(--gold);
    color: var(--midnight);
    border: none;
    cursor: pointer;
    transition: all 0.35s var(--transition-smooth);
    text-decoration: none;
    width: auto;
    box-shadow: 0 4px 24px rgba(212, 175, 55, 0.35);
}

.woocommerce-button:hover,
.woocommerce-Button:hover,
.woocommerce-account button.button:hover,
.woocommerce-account a.button:hover {
    background: #e4c85a;
    box-shadow: 0 8px 36px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

.lost_password {
    margin-top: 1rem;
}

.lost_password a {
    color: var(--amethyst);
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s;
}

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

.woocommerce-privacy-policy-text {
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.woocommerce-privacy-policy-text p {
    margin-bottom: 0;
}

.woocommerce-privacy-policy-text a {
    color: var(--gold);
    text-decoration: underline;
}

/* ── Password Strength ──────── */
.woocommerce-password-strength {
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    margin-top: 0.5rem;
}

.woocommerce-password-strength.short {
    background: rgba(224, 85, 106, 0.1);
    color: #e0556a;
}

.woocommerce-password-strength.bad {
    background: rgba(245, 158, 11, 0.1);
    color: #d97706;
}

.woocommerce-password-strength.good {
    background: rgba(16, 185, 129, 0.1);
    color: #059669;
}

.woocommerce-password-strength.strong {
    background: rgba(16, 185, 129, 0.15);
    color: #047857;
}

.woocommerce-password-hint {
    font-size: 0.78rem;
    color: #6b7280;
    font-style: italic;
    margin-top: 0.3rem;
}

/* ══════════════════════════════════════
   MY ACCOUNT — Logged In (Dashboard)
   ══════════════════════════════════════ */

/* ── Navigation ──────── */
.woocommerce-MyAccount-navigation {
    margin-bottom: 2.5rem;
}

.woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    list-style: none;
    padding: 0;
    margin: 0;
    border-bottom: 1px solid rgba(27, 38, 59, 0.08);
}

.woocommerce-MyAccount-navigation-link {
    margin: 0;
}

.woocommerce-MyAccount-navigation-link a {
    display: block;
    padding: 0.7rem 1.4rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: #9ca3af;
    text-decoration: none;
    border-radius: 30px 30px 0 0;
    transition: all 0.3s var(--transition-smooth);
    position: relative;
}

.woocommerce-MyAccount-navigation-link a:hover {
    color: var(--midnight);
    background: rgba(212, 175, 55, 0.05);
}

.woocommerce-MyAccount-navigation-link.is-active a {
    color: var(--midnight);
    font-weight: 600;
    background: var(--alabaster);
}

.woocommerce-MyAccount-navigation-link.is-active a::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gold);
    border-radius: 2px 2px 0 0;
}

/* ── Content Area ──────── */
.woocommerce-MyAccount-content {
    background: var(--alabaster);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(27, 38, 59, 0.04);
}

.woocommerce-MyAccount-content p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: #4b5563;
    margin-bottom: 1rem;
}

.woocommerce-MyAccount-content strong {
    color: var(--midnight);
}

.woocommerce-MyAccount-content a {
    color: var(--gold);
    font-weight: 500;
    text-decoration: underline;
    transition: color 0.3s;
}

.woocommerce-MyAccount-content a:hover {
    color: #b8941f;
}

.woocommerce-MyAccount-content .button {
    text-decoration: none;
}

/* ── Dashboard ──────── */
.woocommerce-MyAccount-content .woocommerce-Message {
    margin-bottom: 1.5rem;
}

.woocommerce-MyAccount-content address {
    font-style: normal;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.7;
    background: var(--sage);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
}

/* ── Orders ──────── */
.woocommerce-orders-table {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(27, 38, 59, 0.08);
    font-size: 0.85rem;
}

.woocommerce-orders-table th {
    background: var(--midnight);
    color: #fff;
    font-weight: 500;
    padding: 0.8rem 1rem;
    text-align: left;
}

.woocommerce-orders-table td {
    padding: 0.8rem 1rem;
    color: #4b5563;
    border-bottom: 1px solid rgba(27, 38, 59, 0.05);
}

.woocommerce-orders-table tr:last-child td {
    border-bottom: none;
}

.woocommerce-orders-table .button {
    font-size: 0.78rem;
    padding: 0.4rem 1.2rem;
}

.woocommerce-orders-table .woocommerce-button {
    font-size: 0.78rem;
    padding: 0.4rem 1.2rem;
}

.woocommerce-orders-table__cell-order-number a {
    color: var(--midnight);
    font-weight: 600;
    text-decoration: none;
}

.woocommerce-orders-table__cell-order-number a:hover {
    color: var(--gold);
}

.woocommerce-orders-table__cell-order-status {
    font-weight: 500;
}

/* ── Order Details ──────── */
.woocommerce-order-details {
    margin-top: 2rem;
}

.woocommerce-order-details h2,
.woocommerce-customer-details h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--midnight);
    margin-bottom: 1rem;
}

.woocommerce-table--order-details {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(27, 38, 59, 0.08);
    font-size: 0.85rem;
}

.woocommerce-table--order-details th {
    background: var(--midnight);
    color: #fff;
    font-weight: 500;
    padding: 0.7rem 1rem;
    text-align: left;
}

.woocommerce-table--order-details td {
    padding: 0.7rem 1rem;
    color: #4b5563;
    border-bottom: 1px solid rgba(27, 38, 59, 0.05);
}

.woocommerce-table--order-details .product-total {
    text-align: right;
}

.woocommerce-table--order-details tfoot tr:last-child td {
    font-weight: 700;
    color: var(--midnight);
    font-size: 1rem;
}

.woocommerce-customer-details {
    margin-top: 2rem;
}

.woocommerce-customer-details address {
    font-style: normal;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.7;
    background: var(--sage);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(27, 38, 59, 0.06);
}

/* ── Addresses ──────── */
.woocommerce-Address {
    margin-bottom: 2rem;
}

.woocommerce-Address-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.woocommerce-Address-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--midnight);
}

.woocommerce-Address-title a {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    text-decoration: none;
    padding: 0.4rem 1rem;
    border: 1.5px solid var(--gold);
    border-radius: 30px;
    transition: all 0.3s var(--transition-smooth);
}

.woocommerce-Address-title a:hover {
    background: var(--gold);
    color: var(--midnight);
}

.woocommerce-Address address {
    font-style: normal;
    font-size: 0.9rem;
    color: #4b5563;
    line-height: 1.7;
    background: var(--sage);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
}

/* ── Edit Account Form ──────── */
.woocommerce-EditAccountForm fieldset {
    border: 1px solid rgba(27, 38, 59, 0.08);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    margin: 1.5rem 0;
}

.woocommerce-EditAccountForm fieldset legend {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--midnight);
    padding: 0 0.5rem;
}

.woocommerce-EditAccountForm .woocommerce-form-row {
    margin-bottom: 1.2rem;
}

/* ── Address Edit Form ──────── */
.woocommerce-address-fields__field-wrapper .woocommerce-form-row {
    margin-bottom: 1.2rem;
}

.woocommerce-address-fields__field-wrapper select {
    width: 100%;
    padding: 0.8rem 1.2rem;
    border: 1.5px solid rgba(27, 38, 59, 0.15);
    border-radius: 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--midnight);
    background: #fff;
    outline: none;
    transition: border-color 0.3s;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
}

.woocommerce-address-fields__field-wrapper select:focus {
    border-color: var(--gold);
}

.woocommerce-address-fields__field-wrapper .select2-container .select2-selection--single {
    height: 48px;
    border: 1.5px solid rgba(27, 38, 59, 0.15);
    border-radius: 40px;
    padding: 0.5rem 1.2rem;
}

.woocommerce-address-fields__field-wrapper .select2-container .select2-selection__rendered {
    line-height: 32px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--midnight);
}

.woocommerce-address-fields__field-wrapper .select2-container .select2-selection__arrow {
    top: 10px;
    right: 10px;
}

.woocommerce-address-fields .button {
    margin-top: 1rem;
}

/* ── Downloads ──────── */
.woocommerce-MyAccount-downloads .download-file a {
    color: var(--gold);
    font-weight: 600;
}

.woocommerce-MyAccount-downloads .download-file a:hover {
    color: #b8941f;
}

/* ── Reset Password ──────── */
.woocommerce-ResetPassword {
    max-width: 500px;
    margin: 0 auto;
}

.woocommerce-ResetPassword .woocommerce-form-row {
    margin-bottom: 1.2rem;
}

.woocommerce-ResetPassword p {
    font-size: 0.9rem;
    color: #4b5563;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════
   SEARCH OVERLAY
   ══════════════════════════════════════ */
.search-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 25, 40, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 6rem 2rem 4rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--transition-smooth);
    overflow-y: auto;
}

.search-overlay--open {
    opacity: 1;
    pointer-events: auto;
}

.search-overlay__inner {
    width: 100%;
    max-width: 700px;
}

.search-overlay__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 40px;
    height: 40px;
    padding: 0;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.search-overlay__close svg {
    width: 24px;
    height: 24px;
    stroke: rgba(255, 255, 255, 0.6);
    transition: all 0.3s;
}

.search-overlay__close:hover {
    background: rgba(255, 255, 255, 0.08);
}

.search-overlay__close:hover svg {
    stroke: var(--gold);
    transform: rotate(90deg);
}

.search-overlay__search {
    margin-bottom: 2.5rem;
}

.search-overlay__search form {
    display: flex;
    gap: 0;
    width: 100%;
}

.search-overlay__search input[type="search"],
.search-overlay__search .woocommerce-product-search input[type="search"],
.search-overlay__search .search-field {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    background: transparent;
    color: #fff;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
}

.search-overlay__search input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.search-overlay__search input:focus {
    border-bottom-color: var(--gold);
}

.search-overlay__search button,
.search-overlay__search .woocommerce-product-search button {
    padding: 1rem 1.5rem;
    background: none;
    border: none;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    color: var(--gold);
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s;
}

.search-overlay__search button:hover {
    border-bottom-color: var(--gold);
    color: #e4c85a;
}

.search-overlay__label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 1rem;
}

.search-overlay__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
}

.search-tag {
    display: inline-block;
    padding: 0.4rem 1.1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    letter-spacing: 0.03em;
    transition: all 0.3s var(--transition-smooth);
}

.search-tag:hover {
    background: var(--gold);
    color: var(--midnight);
    border-color: var(--gold);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(212, 175, 55, 0.3);
}

.search-overlay__products {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.search-product {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: all 0.3s var(--transition-smooth);
}

.search-product:hover {
    background: rgba(212, 175, 55, 0.08);
}

.search-product__thumb {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: linear-gradient(160deg, #1e2d4a 0%, #2a3a5c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    flex-shrink: 0;
}

.search-product__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-product__thumb svg {
    width: 32px;
    height: 42px;
}

.search-product__info {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
}

.search-product__name {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
}

.search-product__price {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gold);
}

.search-product__price del {
    color: rgba(255, 255, 255, 0.3);
    margin-right: 0.3rem;
    font-size: 0.72rem;
}

.search-product__price ins {
    text-decoration: none;
}

/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */
@media (max-width: 1024px) {
    .philosophy__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    .philosophy__visual {
        order: -1;
    }
    .philosophy__crystal-svg {
        max-width: 240px;
    }
    .philosophy__pillars {
        justify-content: center;
    }
    .footer__grid {
        grid-template-columns: 1fr 1fr;
    }
    .product-main {
        gap: 2rem;
    }
    .details-panel__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }
    .nav__hamburger {
        display: flex;
    }
    .nav__inner {
        padding: 0.55rem 1.4rem;
        border-radius: 36px;
    }
    .nav--scrolled .nav__inner {
        padding: 0.45rem 1.2rem;
        border-radius: 32px;
    }
    .hero__title {
        font-size: clamp(2.2rem, 8vw, 3.4rem);
    }
    .hero__subtitle {
        font-size: 0.95rem;
    }
    .section {
        padding: 3.5rem 1.2rem;
    }
    .categories__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    .cat-card {
        padding: 1.4rem 0.6rem 1.2rem;
    }
    .cat-card__icon {
        width: 40px;
        height: 40px;
    }
    .cat-card__name {
        font-size: 0.85rem;
    }
    .featured__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.2rem;
    }
    .product-card__image {
        height: 200px;
    }
    .product-card__crystal {
        width: 80px;
        height: 110px;
    }
    .testimonials__grid {
        grid-template-columns: 1fr;
    }
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 1.8rem;
    }
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
    .product-main {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1.2rem 2rem;
    }
    .gallery {
        position: static;
    }
    .gallery__main {
        aspect-ratio: 4/3;
    }
    .breadcrumb {
        padding: 6rem 1.2rem 0.8rem;
    }
    .purchase-row {
        flex-direction: column;
        align-items: stretch;
    }
    .purchase-row .btn--gold {
        width: 100%;
    }
    .qty-selector {
        align-self: flex-start;
    }
    .related__grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    .details-tabs {
        gap: 0;
    }
    .details-tab {
        padding: 0.7rem 1rem;
        font-size: 0.78rem;
    }
    .wc-login-tab {
        font-size: 1rem;
        padding: 0.85rem 1rem;
    }

    /* ── Search Overlay ──────── */
    .search-overlay {
        padding: 5rem 1.2rem 3rem;
    }
    .search-overlay__search input[type="search"] {
        font-size: 1.1rem;
        padding: 0.8rem 1rem;
    }
    .search-overlay__close {
        top: 1rem;
        right: 1rem;
    }
}
@media (max-width: 480px) {
    .nav {
        padding: 0 0.8rem;
    }
    .nav__inner {
        padding: 0.5rem 1rem;
        border-radius: 30px;
        margin-top: 0.6rem;
    }
    .nav__logo {
        font-size: 1.3rem;
    }
    .nav__logo-icon {
        width: 28px;
        height: 28px;
    }
    .hero {
        padding: 5rem 1rem 3rem;
    }
    .hero__actions {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        justify-content: center;
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
    }
    .categories__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem;
    }
    .cat-card {
        padding: 1.2rem 0.5rem 1rem;
        border-radius: var(--radius-md);
    }
    .cat-card__icon {
        width: 34px;
        height: 34px;
    }
    .cat-card__name {
        font-size: 0.78rem;
    }
    .cat-card__count {
        font-size: 0.68rem;
    }
    .featured__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .product-card__image {
        height: 150px;
    }
    .newsletter__form {
        flex-direction: column;
    }
    .newsletter__input {
        min-width: 100%;
    }
    .newsletter__submit {
        width: 100%;
    }
    .section__title {
        font-size: 1.6rem;
    }
    .breadcrumb {
        padding: 5rem 1rem 0.6rem;
        font-size: 0.7rem;
    }
    .product-main {
        padding: 0 1rem 2rem;
    }
    .product-info__title {
        font-size: 1.7rem;
    }
    .product-info__price-current {
        font-size: 1.7rem;
    }
    .gallery__main {
        aspect-ratio: 1/1;
    }
    .gallery__thumbs {
        gap: 0.5rem;
    }
    .gallery__thumb {
        width: 52px;
        height: 52px;
    }
    .related__grid {
        grid-template-columns: 1fr;
    }
    .related {
        padding: 3rem 1rem;
    }
    .trust-badges {
        flex-direction: column;
        gap: 0.5rem;
    }
    .wc-login-tab {
        font-size: 0.9rem;
        padding: 0.7rem 0.8rem;
    }
    .content-page {
        padding: 5rem 1rem 3rem;
    }
    .woocommerce-shop,
    .woocommerce-archive {
        padding: 5rem 0.5rem 3rem;
    }
    .woocommerce ul.products {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    .product-card__crystal {
        width: 70px;
        height: 95px;
    }
    .product-card__body {
        padding: 0.8rem 0.8rem 1rem;
    }
    .product-card__category {
        font-size: 0.5rem;
        letter-spacing: 0.06em;
    }
    .product-card__name {
        font-size: 0.8rem;
    }
    .product-card__energy {
        font-size: 0.7rem;
        margin-bottom: 0.6rem;
    }
    .product-card__price {
        font-size: 0.8rem;
    }
    .product-card__btn {
        font-size: 0.68rem;
        padding: 0.4rem 0.8rem;
    }
    .product-card__badge {
        font-size: 0.6rem;
        padding: 0.2rem 0.6rem;
        top: 0.5rem;
        left: 0.5rem;
    }
    .product-card__wishlist {
        width: 28px;
        height: 28px;
        top: 0.5rem;
        right: 0.5rem;
    }
    .product-card__wishlist svg {
        width: 14px;
        height: 14px;
    }
    .woocommerce-cart,
    .woocommerce-checkout {
        padding: 5rem 1rem 3rem;
    }

    /* ── My Account ──────── */
    .woocommerce-account {
        padding: 5rem 1rem 3rem;
    }
    .woocommerce-account .u-columns {
        grid-template-columns: 1fr;
    }
    .wc-login-tab {
        font-size: 0.9rem;
        padding: 0.7rem 0.8rem;
    }
    .woocommerce-account .u-column1,
    .woocommerce-account .u-column2 {
        padding: 1.5rem;
    }
    .woocommerce-MyAccount-content {
        padding: 1.2rem;
    }
    .woocommerce-MyAccount-content .woocommerce-orders-table {
        font-size: 0.78rem;
    }
    .woocommerce-orders-table th,
    .woocommerce-orders-table td {
        padding: 0.5rem 0.6rem;
    }
    .woocommerce-Address-title {
        flex-direction: column;
        align-items: flex-start;
    }
    .woocommerce-EditAccountForm fieldset {
        padding: 1rem;
    }

    /* ── Search Overlay ──────── */
    .search-overlay {
        padding: 5rem 1rem 2.5rem;
    }
    .search-overlay__search input[type="search"] {
        font-size: 1rem;
        padding: 0.7rem 0.8rem;
    }
    .search-product__thumb {
        width: 40px;
        height: 40px;
    }
    .search-product__name {
        font-size: 0.85rem;
    }
}