/* ══════════════════════════════════════════
   LIFT U UP — Main Stylesheet
   ══════════════════════════════════════════ */

/* ── RESET ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--ivory); color: var(--ink); font-family: var(--font-body); overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; }

/* ── ACCESSIBILITY ── */
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(1px,1px,1px,1px); white-space: nowrap; }
.skip-link:focus { position: fixed; top: 8px; left: 8px; z-index: 999; background: var(--deep-indigo); color: white; padding: 12px 24px; clip: auto; width: auto; height: auto; }

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

/* ── DECORATIVE MOTIFS ── */
.motif-border {
    height: 8px;
    background: repeating-linear-gradient(
        90deg,
        var(--saffron) 0px, var(--saffron) 20px,
        var(--rich-maroon) 20px, var(--rich-maroon) 40px,
        var(--peacock) 40px, var(--peacock) 60px,
        var(--turmeric) 60px, var(--turmeric) 80px
    );
}
/* Pin the top motif border above the fixed nav */
.motif-border:first-child {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 101;
}

/* ── NAV ── */
.nav {
    position: fixed; top: 8px; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    background: rgba(250,246,240,0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--jali);
    transition: all 0.4s ease;
}
.nav.scrolled {
    top: 8px;
    padding: 14px 48px;
    box-shadow: 0 4px 24px rgba(27,23,68,0.06);
}

.paisley-divider {
    text-align: center;
    padding: 20px 0;
    color: var(--old-gold);
    font-size: 22px;
    letter-spacing: 16px;
    opacity: 0.5;
    user-select: none;
}

/* ── NAV ── */
.nav {
    position: fixed; top: 8px; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 18px 48px;
    background: rgba(250,246,240,0.9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--jali);
    transition: all 0.4s ease;
}
.nav.scrolled {
    top: 0;
    padding: 14px 48px;
    box-shadow: 0 4px 24px rgba(27,23,68,0.06);
}
.nav-logo {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 500;
    color: var(--deep-indigo);
    display: flex; align-items: center; gap: 8px;
    text-decoration: none;
}
/* WordPress custom logo image inside nav-logo */
.nav-logo .custom-logo-link { display: flex; align-items: center; }
.nav-logo .custom-logo { max-height: 40px; width: auto; }

.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a,
.nav-links .menu-item a {
    font-family: var(--font-body); font-size: 13px; font-weight: 400;
    letter-spacing: 1.2px; text-transform: uppercase;
    color: var(--clay); text-decoration: none;
    position: relative; transition: color 0.3s;
}
.nav-links a::after,
.nav-links .menu-item a::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--saffron);
    transition: width 0.3s ease;
}
.nav-links a:hover,
.nav-links .menu-item a:hover { color: var(--deep-indigo); }
.nav-links a:hover::after,
.nav-links .menu-item a:hover::after { width: 100%; }
/* Active state for current page */
.nav-links .current-menu-item a,
.nav-links .current_page_item a { color: var(--deep-indigo); }
.nav-links .current-menu-item a::after,
.nav-links .current_page_item a::after { width: 100%; }

.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icon-btn {
    background: none; border: none; padding: 0;
    display: flex; align-items: center; justify-content: center;
}
.nav-icon {
    width: 20px; height: 20px; color: var(--clay);
    cursor: pointer; transition: color 0.3s;
}
.nav-icon-btn:hover .nav-icon,
.nav-icon:hover { color: var(--saffron); }

.cart-badge { position: relative; }
.cart-badge .cart-count {
    position: absolute; top: -6px; right: -8px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--rich-maroon); color: white;
    font-size: 9px; display: flex; align-items: center; justify-content: center;
    font-weight: 500; line-height: 1;
}
.cart-badge .cart-count:empty { display: none; }

/* Hamburger menu toggle (hidden on desktop) */
.menu-toggle {
    display: none;
    background: none; border: none; padding: 8px;
    flex-direction: column; gap: 5px; cursor: pointer;
}
.hamburger-line {
    display: block; width: 24px; height: 2px;
    background: var(--deep-indigo);
    transition: all 0.3s ease;
}

/* ── SEARCH OVERLAY ── */
.search-overlay {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(27,23,68,0.95);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.search-overlay.active { opacity: 1; visibility: visible; }
.search-overlay-inner {
    width: 100%; max-width: 640px; padding: 0 24px;
    position: relative;
}
.search-overlay .search-form {
    display: flex; border-bottom: 2px solid rgba(255,255,255,0.3);
}
.search-overlay .search-field {
    flex: 1; background: none; border: none; outline: none;
    font-family: var(--font-display); font-size: 36px;
    color: white; padding: 16px 0;
    font-weight: 400;
}
.search-overlay .search-field::placeholder { color: rgba(255,255,255,0.3); }
.search-overlay .search-submit {
    background: none; border: none; color: var(--turmeric);
    font-size: 13px; letter-spacing: 2px; text-transform: uppercase;
    cursor: pointer; font-family: var(--font-body); font-weight: 500;
}
.search-close {
    position: absolute; top: -60px; right: 0;
    background: none; border: none; color: white;
    font-size: 36px; cursor: pointer; line-height: 1;
    opacity: 0.6; transition: opacity 0.3s;
}
.search-close:hover { opacity: 1; }

/* ── HERO ── */
.hero {
    min-height: 100vh; display: flex;
    padding: 240px 48px 80px;
    position: relative; overflow: hidden;
    background: var(--deep-indigo);
    color: white;
}
.hero-jali {
    position: absolute; inset: 0;
    opacity: 0.04;
    background-image:
        radial-gradient(circle at 50% 50%, white 1.5px, transparent 1.5px),
        radial-gradient(circle at 0% 50%, white 1.5px, transparent 1.5px),
        radial-gradient(circle at 50% 0%, white 1.5px, transparent 1.5px);
    background-size: 32px 32px;
}
.hero-shimmer {
    position: absolute; top: -200px; right: -200px;
    width: 700px; height: 700px;
    background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
    animation: shimmerFloat 8s ease-in-out infinite;
}
@keyframes shimmerFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-40px, 30px); }
}

.hero-content {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
    max-width: 1400px; margin: 0 auto; width: 100%;
    position: relative; z-index: 2;
}
.hero-left { animation: fadeSlideUp 1s ease forwards; opacity: 0; }
.hero-eyebrow {
    font-family: var(--font-body); font-size: 11px;
    letter-spacing: 5px; text-transform: uppercase;
    color: var(--turmeric); font-weight: 500;
    margin-bottom: 24px;
    display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before {
    content: '\2726'; font-size: 8px;
}
.hero-title {
    font-family: var(--font-display);
    font-size: 68px; font-weight: 400;
    line-height: 1.1; color: white;
    margin-bottom: 28px;
}
.hero-title em {
    font-style: italic; font-weight: 400;
    color: var(--turmeric);
    display: inline-block;
    text-decoration: underline;
    text-decoration-color: rgba(226,168,54,0.3);
    text-underline-offset: 8px;
}
.hero-title .hero-subtitle-text {
    font-size: 28px; display: block;
    color: rgba(255,255,255,0.35);
    font-style: italic; font-weight: 400;
    margin-top: 8px; letter-spacing: 1px;
}
.hero-desc {
    font-size: 16px; line-height: 1.75;
    color: rgba(255,255,255,0.65); max-width: 440px;
    margin-bottom: 40px; font-weight: 300;
}
.hero-ctas { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }

.btn-primary {
    display: inline-flex; align-items: center; gap: 10px;
    padding: 17px 38px;
    background: var(--saffron); color: white;
    font-family: var(--font-body); font-size: 12px;
    letter-spacing: 2px; text-transform: uppercase;
    border: none; cursor: pointer;
    transition: all 0.4s ease;
    font-weight: 500; text-decoration: none;
}
.btn-primary:hover {
    background: var(--turmeric);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(212,135,63,0.35);
    color: white;
}
.btn-secondary {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 17px 28px;
    background: transparent; color: white;
    font-family: var(--font-body); font-size: 12px;
    letter-spacing: 2px; text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer; transition: all 0.3s ease;
    font-weight: 400; text-decoration: none;
}
.btn-secondary:hover {
    border-color: var(--turmeric);
    color: var(--turmeric);
}

.hero-right {
    position: relative;
    animation: fadeSlideUp 1s 0.3s ease forwards; opacity: 0;
}
.hero-image-frame {
    position: relative; aspect-ratio: 4/5;
    overflow: hidden;
    border: 3px solid rgba(201,168,76,0.2);
}
.hero-image-frame::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(27,23,68,0.4));
    z-index: 2; pointer-events: none;
}
.hero-image-frame img,
.hero-image-frame .hero-img {
    width: 100%; height: 100%; object-fit: cover;
}
.hero-img-placeholder {
    width: 100%; height: 100%;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); gap: 12px;
    background: linear-gradient(145deg, #3D2B5A, #2B1F45);
}
.hero-img-placeholder svg { opacity: 0.3; }
.hero-img-placeholder span {
    font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
    opacity: 0.4; font-weight: 400;
}

.hero-mandala {
    position: absolute; top: -50px; right: -50px;
    width: 180px; height: 180px;
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: 50%; z-index: 1;
}
.hero-mandala::before {
    content: ''; position: absolute;
    top: 20px; left: 20px; right: 20px; bottom: 20px;
    border: 1px solid rgba(201,168,76,0.12);
    border-radius: 50%;
}
.hero-mandala::after {
    content: ''; position: absolute;
    top: 40px; left: 40px; right: 40px; bottom: 40px;
    border: 1px solid rgba(201,168,76,0.06);
    border-radius: 50%;
}

.hero-float-card {
    position: absolute; bottom: -16px; left: -36px;
    background: white; padding: 22px 28px;
    box-shadow: 0 16px 48px rgba(27,23,68,0.15);
    z-index: 3; color: var(--ink);
    border-left: 4px solid var(--saffron);
    animation: floatIn 0.8s 1s ease forwards; opacity: 0;
}
.hero-float-card .label {
    font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--clay);
    margin-bottom: 6px;
}
.hero-float-card .value {
    font-family: var(--font-display);
    font-size: 24px; font-weight: 500;
    color: var(--deep-indigo);
}
.hero-float-card .sub {
    font-size: 12px; color: var(--peacock);
    margin-top: 4px; font-weight: 400;
}

/* ── TRUST BAR ── */
.trust-bar {
    display: flex; justify-content: center;
    gap: 48px; padding: 36px 48px;
    background: var(--warm-cream);
    border-bottom: 1px solid var(--jali);
    flex-wrap: wrap;
}
.trust-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 12px; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--clay);
    font-weight: 400;
}
.trust-emoji { font-size: 18px; }

/* ── SECTION HEADERS ── */
.section-header {
    text-align: center; margin-bottom: 64px;
}
.section-eyebrow {
    font-size: 11px; letter-spacing: 5px;
    text-transform: uppercase; color: var(--saffron);
    font-weight: 500; margin-bottom: 16px;
}
.section-title {
    font-family: var(--font-display);
    font-size: 46px; font-weight: 400;
    color: var(--deep-indigo);
}
.section-title em {
    font-style: italic;
    color: var(--rich-maroon);
}
.section-subtitle {
    font-size: 15px; color: var(--clay);
    margin-top: 12px; font-weight: 300;
    line-height: 1.6;
}

/* ── CATEGORIES ── */
.categories {
    padding: 100px 48px;
    max-width: 1400px; margin: 0 auto;
}
.cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.cat-card {
    position: relative; cursor: pointer;
    overflow: hidden; display: block;
    border: 1px solid rgba(27,23,68,0.05);
    transition: border-color 0.3s;
    text-decoration: none;
}
.cat-card:hover { border-color: var(--saffron); }
.cat-card-img {
    aspect-ratio: 3/4;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px; transition: transform 0.6s ease;
    overflow: hidden;
}
.cat-card-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s ease;
}
.cat-card:hover .cat-card-img,
.cat-card:hover .cat-card-img img { transform: scale(1.06); }
.cat-card-img svg { opacity: 0.2; }
.cat-card-img span {
    font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; opacity: 0.35;
    color: white;
}
.cat-overlay {
    position: absolute; bottom: 0; left: 0; right: 0;
    padding: 24px 20px;
    background: linear-gradient(transparent, rgba(27,23,68,0.8));
    transition: padding 0.3s ease;
}
.cat-card:hover .cat-overlay { padding-bottom: 32px; }
.cat-name {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 500;
    color: white; margin-bottom: 2px;
}
.cat-name-hindi {
    font-family: var(--font-display);
    font-size: 13px; font-style: italic;
    color: rgba(255,255,255,0.5);
    margin-bottom: 6px;
}
.cat-count {
    font-size: 11px; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--turmeric);
}

/* ── FEATURED ── */
.featured {
    padding: 100px 48px;
    background: var(--warm-cream);
    position: relative;
}
.featured::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(180deg, var(--ivory), var(--warm-cream));
}
.featured-inner {
    max-width: 1400px; margin: 0 auto;
    position: relative; z-index: 2;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.product-card {
    cursor: pointer;
    transition: transform 0.3s ease;
    background: white;
    border: 1px solid rgba(27,23,68,0.04);
    display: block; text-decoration: none; color: inherit;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(27,23,68,0.08);
}
.product-img {
    aspect-ratio: 1;
    overflow: hidden;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px;
    position: relative;
}
.product-img img {
    width: 100%; height: 100%; object-fit: cover;
    position: absolute; inset: 0;
}
.product-img svg { opacity: 0.15; }
.product-img span {
    font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; opacity: 0.25;
    color: white;
}
.product-wishlist {
    position: absolute; top: 14px; right: 14px;
    width: 36px; height: 36px;
    background: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    color: var(--rich-maroon); z-index: 3;
}
.product-card:hover .product-wishlist { opacity: 1; }
.product-tag {
    position: absolute; top: 14px; left: 14px;
    padding: 5px 12px;
    font-size: 9px; letter-spacing: 2px;
    text-transform: uppercase; font-weight: 500;
    color: white; z-index: 3;
}
.product-info { padding: 20px 22px 24px; }
.product-origin {
    font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--peacock);
    margin-bottom: 6px; font-weight: 500;
    display: flex; align-items: center; gap: 6px;
}
.product-origin::before { content: '\25C6'; font-size: 5px; }
.product-name {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 500;
    color: var(--deep-indigo); margin-bottom: 10px;
}
.product-price {
    font-size: 15px; color: var(--ink);
    font-weight: 500;
}
.product-price .currency,
.product-price .woocommerce-Price-currencySymbol {
    font-size: 13px; color: var(--clay); font-weight: 400;
}
.product-price del {
    color: var(--clay); font-weight: 300; opacity: 0.6;
}
.product-price ins {
    text-decoration: none; color: var(--rich-maroon);
}

/* ── ARTISAN STORY ── */
.story {
    padding: 120px 48px;
    max-width: 1400px; margin: 0 auto;
}
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px; align-items: center;
}
.story-img-wrapper { position: relative; }
.story-img {
    aspect-ratio: 4/3;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px;
    overflow: hidden;
}
.story-img img {
    width: 100%; height: 100%; object-fit: cover;
}
.story-img svg { opacity: 0.2; }
.story-img span {
    font-size: 10px; letter-spacing: 2px;
    text-transform: uppercase; opacity: 0.3;
}
.story-img-accent {
    position: absolute;
    top: -16px; left: -16px; right: 16px; bottom: 16px;
    border: 2px solid var(--saffron);
    opacity: 0.2; z-index: -1;
}
.story-eyebrow {
    font-size: 11px; letter-spacing: 5px;
    text-transform: uppercase; color: var(--peacock);
    font-weight: 500; margin-bottom: 20px;
}
.story-title {
    font-family: var(--font-display);
    font-size: 40px; font-weight: 400;
    line-height: 1.2; color: var(--deep-indigo);
    margin-bottom: 24px;
}
.story-title em { font-style: italic; color: var(--rich-maroon); }
.story-text {
    font-size: 15px; line-height: 1.8;
    color: var(--clay); margin-bottom: 32px;
    font-weight: 300;
}
.story-values {
    display: flex; gap: 32px; margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid var(--jali);
}
.story-value-item {
    flex: 1;
    padding: 20px;
    background: var(--warm-cream);
    text-align: center;
}
.value-num {
    font-family: var(--font-display);
    font-size: 34px; font-weight: 400;
    color: var(--saffron);
}
.value-label {
    font-size: 11px; letter-spacing: 1.5px;
    text-transform: uppercase; color: var(--clay);
    margin-top: 6px;
}

/* ── REGIONS ── */
.regions {
    padding: 100px 48px;
    background: var(--deep-indigo);
    color: white;
    position: relative; overflow: hidden;
}
.regions-jali {
    position: absolute; inset: 0; opacity: 0.03;
    background-image:
        radial-gradient(circle at 50% 50%, white 1px, transparent 1px);
    background-size: 24px 24px;
}
.regions-inner {
    max-width: 1400px; margin: 0 auto;
    position: relative; z-index: 2;
}
.regions .section-eyebrow { color: var(--turmeric); }
.regions .section-title { color: white; }
.regions .section-title em { color: var(--turmeric); }

.region-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}
.region-card {
    text-align: center; padding: 32px 16px;
    border: 1px solid rgba(255,255,255,0.06);
    cursor: pointer;
    transition: all 0.3s ease;
    display: block; text-decoration: none; color: inherit;
}
.region-card:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(255,255,255,0.03);
    transform: translateY(-4px);
}
.region-icon {
    font-size: 36px; margin-bottom: 16px;
    display: block;
}
.region-name {
    font-family: var(--font-display);
    font-size: 18px; font-weight: 500;
    color: white; margin-bottom: 4px;
}
.region-craft {
    font-size: 11px; letter-spacing: 1.5px;
    color: rgba(255,255,255,0.4);
    text-transform: uppercase;
}

/* ── TESTIMONIALS ── */
.testimonials {
    padding: 100px 48px;
    background: var(--rich-maroon);
    color: white;
    overflow-x: hidden;
}
.testimonials .section-eyebrow { color: var(--turmeric); }
.testimonials .section-title { color: white; }
.testimonials .section-title em { color: var(--turmeric); }
.testi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    max-width: 1400px; margin: 0 auto;
}
.testi-card {
    padding: 36px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.04);
    transition: all 0.3s;
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
}
.testi-card:hover {
    border-color: rgba(226,168,54,0.3);
    background: rgba(255,255,255,0.07);
}
.testi-stars {
    color: var(--turmeric); font-size: 14px;
    letter-spacing: 4px; margin-bottom: 20px;
}
.testi-quote {
    font-family: var(--font-display);
    font-size: 17px; font-weight: 400;
    font-style: italic;
    line-height: 1.65;
    color: rgba(255,255,255,0.85);
    margin-bottom: 24px;
}
.testi-author {
    font-size: 12px; letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}
.testi-city {
    font-size: 11px; color: var(--turmeric);
    margin-top: 4px;
}

/* ── NEWSLETTER ── */
.newsletter {
    padding: 100px 48px;
    background: var(--ivory);
    text-align: center;
    position: relative;
}
.newsletter-inner {
    max-width: 560px; margin: 0 auto;
    position: relative; z-index: 2;
}
.newsletter .section-eyebrow { color: var(--peacock); }
.newsletter-desc {
    font-size: 15px; color: var(--clay);
    margin-top: 16px; font-weight: 300; line-height: 1.7;
}
.newsletter-form {
    display: flex; gap: 0;
    margin-top: 36px;
    border: 2px solid var(--deep-indigo);
    background: white;
}
.newsletter-input {
    flex: 1; padding: 18px 24px;
    border: none; outline: none;
    font-family: var(--font-body);
    font-size: 14px; color: var(--ink);
    background: transparent;
    font-weight: 300;
}
.newsletter-input::placeholder { color: var(--clay); }
.newsletter-btn {
    padding: 18px 32px;
    background: var(--deep-indigo); color: white;
    border: none; cursor: pointer;
    font-family: var(--font-body);
    font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    transition: background 0.3s;
}
.newsletter-btn:hover { background: var(--saffron); }
.newsletter-note {
    font-size: 12px; color: var(--clay);
    margin-top: 14px; font-weight: 300;
}

/* ── FOOTER ── */
.footer {
    padding: 80px 48px 36px;
    background: var(--deep-indigo); color: rgba(255,255,255,0.45);
}
.footer-inner {
    max-width: 1400px; margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px; margin-bottom: 60px;
}
.footer-logo {
    font-family: var(--font-display);
    font-size: 22px; font-weight: 500;
    color: white; margin-bottom: 16px;
}
.footer-desc {
    font-size: 14px; line-height: 1.7;
    max-width: 320px; font-weight: 300;
}
.footer-heading {
    font-size: 11px; letter-spacing: 2px;
    text-transform: uppercase; color: var(--turmeric);
    margin-bottom: 20px; font-weight: 500;
}
.footer-link,
.footer a:not(.footer-logo) {
    display: block; font-size: 14px;
    color: rgba(255,255,255,0.4);
    text-decoration: none; margin-bottom: 12px;
    transition: color 0.3s; font-weight: 300;
}
.footer-link:hover,
.footer a:not(.footer-logo):hover { color: var(--saffron); }
/* WordPress menu items in footer */
.footer .menu-item a {
    display: block; font-size: 14px;
    color: rgba(255,255,255,0.4);
    text-decoration: none; margin-bottom: 12px;
    transition: color 0.3s; font-weight: 300;
}
.footer .menu-item a:hover { color: var(--saffron); }

.footer-payments {
    display: flex; gap: 12px; margin-top: 20px;
    flex-wrap: wrap;
}
.pay-badge {
    padding: 4px 10px;
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 10px; letter-spacing: 1px;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
}
.footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 12px;
}
.footer-made {
    color: rgba(255,255,255,0.3);
    font-style: italic;
}

/* ── SITE MAIN — offset for fixed nav ── */
.site-main {
    padding-top: 200px;
}

/* Shop page header */
.shop-header {
    text-align: center;
    margin-bottom: 48px;
}

/* ── GENERIC PAGE STYLES ── */
.page-content {
    max-width: 800px; margin: 0 auto;
    padding: 20px 48px 80px;
}
.page-content h1 {
    font-family: var(--font-display);
    font-size: 42px; font-weight: 400;
    color: var(--deep-indigo); margin-bottom: 32px;
}
.page-content p {
    font-size: 16px; line-height: 1.8;
    color: var(--clay); margin-bottom: 24px;
}

/* Posts grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding-top: 40px;
}
.post-card {
    background: white;
    border: 1px solid var(--jali);
    transition: transform 0.3s, box-shadow 0.3s;
}
.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(27,23,68,0.08);
}
.post-card-img { overflow: hidden; }
.post-card-img img { width: 100%; height: auto; transition: transform 0.6s; }
.post-card:hover .post-card-img img { transform: scale(1.04); }
.post-card-content { padding: 24px; }
.post-card-title {
    font-family: var(--font-display);
    font-size: 20px; font-weight: 500;
    color: var(--deep-indigo); margin-bottom: 8px;
}
.post-card-title a { text-decoration: none; color: inherit; }
.post-card-title a:hover { color: var(--saffron); }
.post-card-meta {
    font-size: 12px; color: var(--clay);
    margin-bottom: 12px; letter-spacing: 0.5px;
}
.post-card-excerpt {
    font-size: 14px; line-height: 1.7;
    color: var(--clay); font-weight: 300;
}

/* 404 page */
.error-404-content {
    text-align: center;
    padding: 60px 48px 120px;
    max-width: 600px; margin: 0 auto;
}
.error-404-number {
    font-family: var(--font-display);
    font-size: 120px; font-weight: 400;
    color: var(--saffron); line-height: 1;
    margin-bottom: 24px; opacity: 0.3;
}
.error-404-content h1 {
    font-family: var(--font-display);
    font-size: 36px; font-weight: 400;
    color: var(--deep-indigo); margin-bottom: 16px;
}
.error-404-content p {
    font-size: 16px; line-height: 1.7;
    color: var(--clay); margin-bottom: 32px;
}

/* Search results */
.search-results-header {
    text-align: center; margin-bottom: 48px;
}

/* Pagination */
.nav-links { display: flex; justify-content: center; gap: 8px; padding: 48px 0; }
.page-numbers {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px;
    border: 1px solid var(--jali); color: var(--clay);
    font-size: 14px; transition: all 0.3s;
    text-decoration: none;
}
.page-numbers:hover,
.page-numbers.current {
    background: var(--deep-indigo); color: white;
    border-color: var(--deep-indigo);
}

/* ── ANIMATIONS ── */
@keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes floatIn {
    from { opacity: 0; transform: translate(-20px, 20px); }
    to { opacity: 1; transform: translate(0, 0); }
}
.fade-section {
    opacity: 0; transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-section.visible {
    opacity: 1; transform: translateY(0);
}
