/*
Theme Name: PandoraMarket
Description: Warm gold & blush pink jewelry e-commerce theme
Version: 2.0.4
Author: PandoraMarket
Text Domain: pandoramarket
*/

:root {
    --bg-cream: #FDF8F3;
    --bg-cream-soft: #FAF6F0;
    --bg-warm: #FFFCF8;
    --bg-champagne: #F0DCBC;
    --bg-blush: #FBF0F0;
    --silk: #F5ECE6;
    --rose-dust: #E8D5D8;
    --bg-card: #ffffff;
    --bg-muted: #F5F0EB;

    --gold: #CFAA4F;
    --gold-light: #E5CB89;
    --gold-dark: #B08828;
    --gold-pale: #F0E4C8;
    --rose-gold: #C9828A;
    --blush: #C97B84;
    --blush-dark: #A85D66;
    --blush-light: #E8BCC2;
    --blush-pale: #F5E4E6;
    --blush-glow: rgba(201, 123, 132, 0.12);

    --text-primary: #2C1810;
    --text-secondary: #4A3428;
    --text-muted: #8B7355;
    --text-light: #C4A97D;

    --border: rgba(139, 115, 85, 0.12);
    --border-hover: rgba(207, 170, 79, 0.35);

    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Figtree', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 2px 8px rgba(44, 24, 16, 0.06);
    --shadow-md: 0 4px 20px rgba(44, 24, 16, 0.08);
    --shadow-lg: 0 8px 40px rgba(44, 24, 16, 0.1);
    --shadow-gold: 0 6px 24px rgba(207, 170, 79, 0.2);
    --shadow-blush: 0 6px 24px rgba(201, 123, 132, 0.15);
    --shadow-soft: 0 4px 20px rgba(44, 24, 16, 0.05);
    --bg-footer: #2A181A;
    --bg-elevated: #FAF6F0;
    --bg-primary: #FFFCF8;
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 24px;
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-warm);
    color: var(--text-secondary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

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

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 100px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 28px rgba(207, 170, 79, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(207, 170, 79, 0.4);
}
.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--gold-pale);
}
.btn-secondary:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}
.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--gold-pale);
}
.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}
.btn-blush {
    background: var(--blush);
    color: #fff;
    box-shadow: 0 8px 28px rgba(201, 123, 132, 0.25);
}
.btn-blush:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 36px rgba(201, 123, 132, 0.35);
}

/* ─── Section Header ─── */
.section-header {
    text-align: center;
    margin-bottom: 56px;
}
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--blush);
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: 40px;
    margin-bottom: 12px;
}
.section-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 480px;
    margin: 0 auto;
}

/* ─── Header ─── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 252, 248, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
}
.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}
.logo {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
}
.nav-links { display: flex; align-items: center; gap: 36px; }
.nav-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 0;
    border-bottom: 2px solid transparent;
    transition: all 0.25s;
}
.nav-link:hover,
.nav-link.active {
    color: var(--gold-dark);
    border-bottom-color: var(--gold);
}
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}
.cart-icon {
    position: relative;
    padding: 8px;
    color: var(--text-primary);
    transition: color 0.25s;
}
.cart-icon:hover { color: var(--gold-dark); }
.cart-badge {
    position: absolute;
    top: 0;
    right: 0;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--blush);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ─── Section / Page padding ─── */
.main-content { padding-top: 72px; }
.page-section {
    padding: 100px 0;
}
.page-section-alt {
    padding: 100px 0;
    background: var(--bg-cream-soft);
}

/* ─── Hero Particles ─── */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 6s ease-in-out infinite;
}
.p1  { width: 10px; height: 10px; background: var(--blush); top: 15%; left: 10%; animation-delay: 0s; }
.p2  { width: 6px; height: 6px; background: var(--gold); top: 30%; right: 15%; animation-delay: 0.8s; }
.p3  { width: 14px; height: 14px; background: var(--blush); opacity: 0.5; bottom: 25%; left: 5%; animation-delay: 1.6s; }
.p4  { width: 8px; height: 8px; background: var(--gold); top: 55%; right: 8%; animation-delay: 2.4s; }
.p5  { width: 5px; height: 5px; background: var(--blush); top: 10%; right: 30%; animation-delay: 3.2s; }
.p6  { width: 12px; height: 12px; background: var(--gold); opacity: 0.4; bottom: 15%; left: 20%; animation-delay: 4s; }

@keyframes floatParticle {
    0%   { opacity: 0; transform: translateY(0) scale(0.8); }
    20%  { opacity: 0.6; }
    50%  { opacity: 1; transform: translateY(-30px) scale(1.1); }
    80%  { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-60px) scale(0.8); }
}

/* ─── Hero Curves ─── */
.hero-curve-left,
.hero-curve-right {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.hero-curve-left  { left: 0; }
.hero-curve-right { right: 0; }
.hero-curve-left svg,
.hero-curve-right svg { width: 100%; height: 100%; }

/* ─── Hero Particles ─── */
.hero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0;
    animation: floatParticle 6s ease-in-out infinite;
}
.p1  { width: 10px; height: 10px; background: var(--blush); top: 15%; left: 10%; animation-delay: 0s; }
.p2  { width: 6px; height: 6px; background: var(--gold); top: 30%; right: 15%; animation-delay: 0.8s; }
.p3  { width: 14px; height: 14px; background: var(--blush); opacity: 0.5; bottom: 25%; left: 5%; animation-delay: 1.6s; }
.p4  { width: 8px; height: 8px; background: var(--gold); top: 55%; right: 8%; animation-delay: 2.4s; }
.p5  { width: 5px; height: 5px; background: var(--blush); top: 10%; right: 30%; animation-delay: 3.2s; }
.p6  { width: 12px; height: 12px; background: var(--gold); opacity: 0.4; bottom: 15%; left: 20%; animation-delay: 4s; }

@keyframes floatParticle {
    0%   { opacity: 0; transform: translateY(0) scale(0.8); }
    20%  { opacity: 0.6; }
    50%  { opacity: 1; transform: translateY(-30px) scale(1.1); }
    80%  { opacity: 0.6; }
    100% { opacity: 0; transform: translateY(-60px) scale(0.8); }
}

/* ─── Hero Curves ─── */
.hero-curve-left,
.hero-curve-right {
    position: absolute;
    top: 0;
    width: 200px;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}
.hero-curve-left  { left: 0; }
.hero-curve-right { right: 0; }
.hero-curve-left svg,
.hero-curve-right svg { width: 100%; height: 100%; }

/* ─── Hero ─── */
.hero {
    position: relative;
    padding: 140px 0 100px;
    text-align: center;
    overflow: hidden;
    background: linear-gradient(160deg, #FFFCF8 0%, #FBF0F0 40%, #FDF8F3 70%, #FFFCF8 100%);
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 1;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
    z-index: 1;
}
.hero-bottom-grad {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(to top, var(--bg-warm), transparent);
}
.hero-content {
    position: relative;
    z-index: 1;
    max-width: 760px;
    margin: 0 auto;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--blush);
    margin-bottom: 24px;
}
.hero-badge .badge-line {
    display: inline-block;
    width: 28px;
    height: 1px;
    background: var(--blush);
    opacity: 0.4;
}
.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}
.hero-title-accent {
    font-style: italic;
    font-weight: 400;
    color: var(--blush);
}
.hero-subtitle {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-style: italic;
    font-size: 1.3rem;
    color: var(--text-muted);
    margin-bottom: 36px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}
.subtitle-ornament {
    color: var(--blush);
    font-size: 1.1rem;
    margin: 0 8px;
}
.subtitle-ornament {
    color: var(--blush);
    font-size: 1.1rem;
    margin: 0 8px;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-hero {
    font-size: 12px;
    padding: 16px 36px;
    letter-spacing: 1.5px;
}

/* ─── Hero Entrance Animation ─── */
.hero-content > * {
    opacity: 0;
    animation: heroFadeIn 0.6s ease forwards;
}
.hero-badge         { animation-delay: 0.1s; }
.hero-title         { animation-delay: 0.3s; }
.hero-subtitle      { animation-delay: 0.5s; }
.hero-actions       { animation-delay: 0.7s; }

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

/* ─── Trust Bar ─── */
.trust-bar {
    padding: 20px 0 28px;
    border-top: 1px dotted var(--blush-light);
}
.trust-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 4px;
}
.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    border-radius: var(--radius-md);
    transition: background 0.25s;
}
.trust-item:hover { background: var(--blush-pale); }
.trust-symbol {
    color: var(--gold);
    font-size: 14px;
    flex-shrink: 0;
}
.trust-text strong {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}
.trust-text span { font-size: 12px; color: var(--text-muted); }

/* ─── Categories ─── */
.categories-section {
    padding: 100px 0;
    background: var(--rose-dust);
    position: relative;
}
.categories-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 256px 256px;
    pointer-events: none;
}
.categories-grid-asymmetric {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 16px;
    position: relative;
    z-index: 1;
}
.category-card-asymmetric {
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-decoration: none;
    position: relative;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.category-card-asymmetric:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-blush);
}
.cat-large {
    aspect-ratio: 3 / 4;
}
.cat-small {
    aspect-ratio: 1 / 1;
}
.cat-order-0 { grid-column: 1; grid-row: 1 / 3; }
.cat-order-1 { grid-column: 2; grid-row: 1; }
.cat-order-2 { grid-column: 3; grid-row: 1; }
.cat-order-3 { grid-column: 2 / 4; grid-row: 2; }
.cat-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.cat-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.category-card-asymmetric:hover .cat-image-wrap img {
    transform: scale(1.06);
}
.cat-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(255,252,248,0.9), transparent);
}
.cat-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

@media (max-width: 768px) {
    .categories-grid-asymmetric {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .cat-order-0 { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16/9; }
    .cat-order-1 { grid-column: 1; grid-row: auto; }
    .cat-order-2 { grid-column: 2; grid-row: auto; }
    .cat-order-3 { grid-column: 1 / 3; grid-row: auto; aspect-ratio: 16/9; }
}

/* ─── Products Grid ─── */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

/* ─── Product Card ─── */
.product-card {
    background: var(--silk);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: var(--blush-light);
    box-shadow: var(--shadow-blush);
}
.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    display: block;
    background: var(--bg-cream);
}
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image img { transform: scale(1.06); }
.product-image-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: linear-gradient(145deg, var(--bg-cream) 0%, var(--bg-champagne) 100%);
}
.product-image-fallback svg {
    width: 32px;
    height: 32px;
    color: var(--gold-pale);
}
.product-image-fallback span {
    font-family: var(--font-display);
    font-size: 20px;
    color: var(--gold);
    opacity: 0.5;
}
.product-content {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
    gap: 4px;
}
.product-title {
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text-primary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 0;
}
.product-title a {
    color: inherit;
    transition: color 0.25s;
}
.product-title a:hover { color: var(--gold-dark); }
.product-category {
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--blush);
    margin-bottom: 2px;
}
.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--blush);
    margin-top: auto;
    padding-top: 8px;
}
.product-price .price-original {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 8px;
}
.add-to-cart-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    height: 42px;
    margin-top: 12px;
    padding: 0 20px;
    border: 1.5px solid var(--gold-pale);
    border-radius: 100px;
    background: transparent;
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
}
.add-to-cart-btn:hover {
    background: var(--blush);
    border-color: var(--blush);
    color: #fff;
    box-shadow: 0 6px 20px var(--blush-glow);
}
.add-to-cart-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ─── Shop Layout ─── */
.shop-layout {
    display: flex;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}
.shop-sidebar {
    width: 240px;
    flex-shrink: 0;
}
.filter-section {
    margin-bottom: 32px;
}
.filter-section h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
}
.filter-link {
    display: block;
    padding: 8px 0;
    color: var(--text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s;
}
.filter-link:hover { color: var(--blush); }
.shop-toolbar {
    margin-bottom: 24px;
}
.shop-search {
    display: flex;
    max-width: 400px;
}
.shop-search input {
    flex: 1;
    padding: 12px 16px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: border-color 0.25s;
    background: var(--silk);
}
.shop-search input:focus {
    border-color: var(--blush);
}
.shop-search button {
    padding: 12px 16px;
    background: var(--blush);
    color: #fff;
    border: none;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    cursor: pointer;
}
.shop-main {
    flex: 1;
}

@media (max-width: 768px) {
    .shop-layout {
        flex-direction: column;
    }
    .shop-sidebar {
        width: 100%;
    }
}

/* ─── Section Footer ─── */
.section-footer {
    text-align: center;
    margin-top: 48px;
}

/* ─── Promo ─── */
.promo-section {
    padding: 80px 0;
    background: var(--bg-warm);
}
.promo-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}
.promo-card-wide,
.promo-card-narrow {
    border-radius: var(--radius-xl);
    padding: 48px 44px;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.promo-card-wide {
    width: 100%;
}
.promo-card-narrow {
    width: 75%;
    align-self: flex-end;
    margin-top: -40px;
    z-index: 2;
}
.promo-card-wide::after,
.promo-card-narrow::after {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}
.promo-gold {
    background: linear-gradient(145deg, var(--gold) 0%, var(--gold-dark) 100%);
}
.promo-blush {
    background: linear-gradient(145deg, var(--blush) 0%, var(--blush-dark) 100%);
}
.promo-label {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255,255,255,0.15);
    border-radius: 100px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
    width: fit-content;
    backdrop-filter: blur(4px);
}
.promo-card h3 {
    font-size: 30px;
    color: #fff;
    margin-bottom: 10px;
}
.promo-card p {
    color: rgba(255,255,255,0.85);
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.5;
}
.promo-btn {
    display: inline-flex;
    background: #fff;
    color: var(--text-primary);
    padding: 13px 28px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    width: fit-content;
    transition: all 0.3s;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
.promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

/* ─── Journal ─── */
.journal-section {
    padding: 100px 0;
    background: var(--bg-warm);
}
.journal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 32px;
}
.journal-card {
    background: var(--silk);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.journal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-blush);
}
.journal-image {
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.journal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.journal-card:hover .journal-image img { transform: scale(1.05); }
.journal-content {
    padding: 20px 24px 24px;
}
.journal-tag {
    display: inline-block;
    padding: 3px 10px;
    background: var(--blush);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 100px;
    margin-bottom: 10px;
}
.journal-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}
.journal-title a {
    color: var(--text-primary);
    text-decoration: none;
}
.journal-excerpt {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
}
.journal-link {
    color: var(--blush);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: gap 0.25s;
}
.journal-link:hover { gap: 10px; }

/* ─── Footer ─── */
.footer {
    background: var(--bg-footer);
    color: rgba(255,255,255,0.75);
    padding: 60px 24px 32px;
    margin-top: 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .logo {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 16px;
    display: block;
}
.footer-brand p { line-height: 1.7; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-column h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    margin-bottom: 20px;
    color: #fff;
}
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    transition: color 0.25s;
}
.footer-links a:hover { color: var(--blush-light); }
.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ─── Shop Page ─── */
.page-header {
    text-align: center;
    padding: 120px 24px 60px;
    background: linear-gradient(180deg, var(--bg-champagne) 0%, var(--bg-warm) 100%);
}
.page-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 12px;
}
.page-desc { color: var(--text-muted); max-width: 500px; margin: 0 auto; }
.shop-container { padding: 40px 24px 80px; }

/* ─── Pagination ─── */
.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 48px 0;
}
.pagination a,
.pagination span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 14px;
    transition: all 0.25s;
}
.pagination a:hover {
    border-color: var(--gold);
    color: var(--gold-dark);
}
.pagination .current {
    background: var(--blush);
    border-color: var(--blush);
    color: #fff;
}

/* ─── Cart Page ─── */
.cart-page { padding: 32px 24px 80px; }
.cart-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.cart-items-wrap { background: var(--bg-card); border-radius: var(--radius-lg); padding: 28px; }
.cart-item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 16px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}
.cart-item:last-child { border-bottom: none; }
.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-title { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { color: var(--gold-dark); font-weight: 600; font-size: 14px; }
.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-cream-soft);
    border-radius: var(--radius-sm);
    padding: 4px;
}
.qty-control button {
    width: 28px;
    height: 28px;
    background: transparent;
    border: none;
    color: var(--text-primary);
    cursor: pointer;
    border-radius: 4px;
    font-size: 16px;
    transition: background 0.2s;
}
.qty-control button:hover { background: var(--blush-light); }
.qty-control span { min-width: 32px; text-align: center; font-weight: 600; font-size: 14px; }
.cart-summary {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: fit-content;
    border: 1px solid var(--border);
}
.cart-summary h3 { font-size: 1.3rem; margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border); }
.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
    color: var(--text-muted);
}
.summary-row.total {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}
.checkout-btn { width: 100%; margin-top: 20px; }

/* ─── Blog ─── */
.blog-page { padding: 32px 24px 80px; }
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
}
.blog-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.35s;
}
.blog-card:hover {
    transform: translateY(-4px);
    border-color: var(--blush-light);
    box-shadow: var(--shadow-blush);
}
.blog-image { aspect-ratio: 16/10; overflow: hidden; }
.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}
.blog-card:hover .blog-image img { transform: scale(1.05); }
.blog-content { padding: 24px; }
.blog-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}
.blog-excerpt { color: var(--text-muted); font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.read-more { color: var(--blush); font-weight: 600; font-size: 13px; display: inline-flex; align-items: center; gap: 6px; }
.read-more:hover { gap: 10px; }

/* ─── Single Product ─── */
.single-product-page { padding: 32px 24px 80px; }
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    font-size: 14px;
    color: var(--text-muted);
}
.breadcrumb a { color: var(--text-primary); }
.breadcrumb a:hover { color: var(--gold-dark); }
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.product-gallery {
    background: var(--bg-cream);
    border-radius: var(--radius-xl);
    overflow: hidden;
}
.product-gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-info { padding: 20px 0; }
.product-info h1 { font-size: 32px; margin-bottom: 16px; }
.product-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--blush);
    margin-bottom: 24px;
}
.product-detail-price .original {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
    margin-left: 12px;
}
.product-detail-desc { color: var(--text-muted); line-height: 1.8; margin-bottom: 32px; }
.qty-selector {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.qty-selector button {
    width: 40px;
    height: 40px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    background: transparent;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.25s;
}
.qty-selector button:hover { border-color: var(--gold); color: var(--gold-dark); }
.qty-selector span { font-size: 18px; font-weight: 700; min-width: 36px; text-align: center; }

/* ─── Checkout ─── */
.checkout-page { padding: 32px 24px 80px; background: var(--bg-cream-soft); }

/* ─── Notification ─── */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
    padding: 14px 20px;
    border-radius: var(--radius-md);
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    animation: slideIn 0.3s ease;
}
@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ─── Blush Utilities ─── */
.text-blush { color: var(--blush); }
.text-blush-dark { color: var(--blush-dark); }
.bg-blush { background: var(--blush-pale); }
.border-blush { border-color: var(--blush); }
.badge-blush {
    display: inline-block;
    padding: 4px 12px;
    background: var(--blush);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    border-radius: 100px;
}

/* ─── Promo Blush ─── */
.promo-blush {
    background: linear-gradient(145deg, var(--blush) 0%, var(--blush-dark) 100%);
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .product-detail { grid-template-columns: 1fr; gap: 40px; }
    .cart-container { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .container { padding: 0 16px; }

    .section-header h2 { font-size: 28px; }
    .categories-section,
    .page-section,
    .page-section-alt { padding: 60px 0; }

    .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
    .categories-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }

    .trust-item { padding: 10px 16px; }
    .trust-items { gap: 2px; }

    .promo-section { padding: 60px 0; }
    .promo-card { padding: 36px 24px; min-height: 220px; }
    .promo-card h3 { font-size: 26px; }

    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .cart-item { grid-template-columns: 60px 1fr; gap: 12px; }
    .blog-grid { grid-template-columns: 1fr; }
}
