/* ===== DELIA CHOCOLATE — WARM & FRIENDLY THEME ===== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Nunito:wght@300;400;500;600;700&display=swap');

:root {
    --bg-primary:    #FDF6EE;
    --bg-secondary:  #FFF9F2;
    --bg-card:       #FFFFFF;
    --terra:         #C4704F;
    --terra-light:   #D4896A;
    --terra-pale:    #F5E6DE;
    --honey:         #D4956A;
    --honey-light:   #E8C08A;
    --honey-pale:    #FDF0E0;
    --brown:         #3D2314;
    --brown-mid:     #7A4F36;
    --brown-light:   #A67856;
    --cream:         #FDF6EE;
    --text-primary:  #3D2314;
    --text-muted:    #9A7560;
    --border:        rgba(196,112,79,0.15);
    --border-hover:  rgba(196,112,79,0.4);
    --shadow-sm:     0 2px 12px rgba(61,35,20,0.08);
    --shadow-md:     0 6px 24px rgba(61,35,20,0.12);
    --shadow-lg:     0 12px 40px rgba(61,35,20,0.15);
    --r-sm:          8px;
    --r-md:          16px;
    --r-lg:          24px;
    --r-xl:          32px;
    --font-serif:    'Playfair Display', Georgia, serif;
    --font-sans:     'Nunito', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
}

/* ===== NAV ===== */
.delia-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    background: transparent;
    transition: background 0.4s, padding 0.3s, box-shadow 0.3s;
}
.delia-nav.scrolled {
    background: rgba(253,246,238,0.95);
    padding: 1rem 4rem;
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
}
.nav-logo {
    font-family: var(--font-serif);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--terra);
    text-decoration: none;
}
.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}
.nav-links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brown-mid);
    text-decoration: none;
    transition: color 0.25s;
    position: relative;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -3px;
    width: 0; height: 2px;
    background: var(--terra);
    border-radius: 2px;
    transition: width 0.25s;
}
.nav-links a:hover { color: var(--terra); }
.nav-links a:hover::after { width: 100%; }
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--terra);
    border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 4rem 4rem;
    overflow: hidden;
    background: var(--bg-primary);
}
.hero-bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 70% 60% at 80% 20%, rgba(212,149,106,0.18) 0%, transparent 65%),
        radial-gradient(ellipse 50% 70% at 15% 85%, rgba(196,112,79,0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(253,240,224,0.5) 0%, transparent 70%);
}
.hero-bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 30%, rgba(196,112,79,0.06) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(212,149,106,0.08) 0%, transparent 35%);
}
/* Decorative dots pattern */
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(196,112,79,0.08) 1px, transparent 1px);
    background-size: 40px 40px;
    opacity: 0.6;
}
.hero-content {
    position: relative;
    max-width: 760px;
    text-align: center;
}
.hero-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terra);
    background: var(--terra-pale);
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-family: var(--font-serif);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--brown);
    margin-bottom: 1.5rem;
}
.hero-title em {
    font-style: italic;
    font-weight: 400;
    color: var(--terra);
}
.hero-sub {
    font-size: 1rem;
    font-weight: 400;
    color: var(--brown-mid);
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.85;
}
.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    background: var(--terra);
    color: #fff;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: var(--r-md);
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(196,112,79,0.35);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.btn-primary:hover {
    background: var(--terra-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,112,79,0.4);
}
.btn-ghost {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    border: 2px solid var(--terra);
    color: var(--terra);
    font-family: var(--font-sans);
    font-size: 0.92rem;
    font-weight: 700;
    border-radius: var(--r-md);
    text-decoration: none;
    transition: all 0.25s;
}
.btn-ghost:hover {
    background: var(--terra-pale);
    transform: translateY(-2px);
}
.hero-scroll {
    position: absolute;
    bottom: 2.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}
.hero-scroll span {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--text-muted);
    text-transform: uppercase;
}
.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--terra), transparent);
    border-radius: 2px;
    animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.15); }
}

/* ===== SECTION COMMON ===== */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}
.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--terra);
    background: var(--terra-pale);
    padding: 0.35rem 1rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}
.section-header h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 1rem;
}
.section-header h2 em { font-style: italic; font-weight: 400; color: var(--terra); }
.section-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
}

/* ===== COLLECTION ===== */
.collection {
    padding: 8rem 4rem;
    background: var(--bg-secondary);
    position: relative;
}
/* Wavy top divider */
.collection::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-primary);
    clip-path: ellipse(55% 100% at 50% 0%);
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
    overflow: hidden;
}
.product-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}
.product-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}
.product-img-1 { background: linear-gradient(135deg, #E8C08A 0%, #C4704F 40%, #9E4E2A 100%); }
.product-img-2 { background: linear-gradient(135deg, #D4956A 0%, #B05535 40%, #E8C08A 100%); }
.product-img-3 { background: linear-gradient(135deg, #F5E6DE 0%, #D4956A 50%, #C4704F 100%); }
.product-img-4 { background: linear-gradient(135deg, #E8D5C0 0%, #C4956A 40%, #D4704F 100%); }

.product-img::after {
    content: '♡';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3.5rem;
    color: rgba(255,255,255,0.3);
}
.product-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61,35,20,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
    border-radius: 0;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-cta {
    display: inline-block;
    padding: 0.7rem 1.8rem;
    background: #fff;
    color: var(--terra);
    font-size: 0.85rem;
    font-weight: 700;
    border-radius: var(--r-md);
    text-decoration: none;
    transition: background 0.25s, color 0.25s;
}
.product-cta:hover {
    background: var(--terra);
    color: #fff;
}
.product-info {
    padding: 1.5rem;
}
.product-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--terra);
    background: var(--terra-pale);
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}
.product-tag--gold {
    color: #8B6000;
    background: var(--honey-pale);
}
.product-info h3 {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 0.5rem;
}
.product-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1rem;
}
.product-price {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--terra);
}
.product-card--featured {
    border-color: var(--honey);
    box-shadow: 0 0 0 2px rgba(212,149,106,0.2), var(--shadow-sm);
}

/* ===== STORY ===== */
.story {
    padding: 8rem 4rem;
    background: var(--bg-primary);
    position: relative;
}
.story::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-secondary);
    clip-path: ellipse(55% 100% at 50% 0%);
}
.story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.story-visual {
    position: relative;
}
.story-img-main {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(160deg, #F5E6DE 0%, #D4956A 30%, #C4704F 60%, #E8C08A 100%);
    border-radius: var(--r-xl);
    position: relative;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
}
.story-img-main::before {
    content: 'DELIA';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 8px;
    color: rgba(255,255,255,0.25);
}
.story-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 110px;
    height: 110px;
    background: var(--terra);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 4px solid #fff;
}
.badge-number {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
.badge-text {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.85);
    line-height: 1.4;
}
.story-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.story-content h2 em { font-style: italic; font-weight: 400; color: var(--terra); }
.story-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.story-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 2px dashed var(--border);
}
.stat {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.stat-num {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 700;
    color: var(--terra);
    line-height: 1;
}
.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 8rem 4rem;
    background: var(--terra-pale);
    position: relative;
}
.testimonials::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--bg-primary);
    clip-path: ellipse(55% 100% at 50% 0%);
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid rgba(255,255,255,0.8);
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}
.testimonial-card--highlight {
    background: linear-gradient(135deg, #fff 0%, var(--honey-pale) 100%);
    border-color: var(--honey-light);
    box-shadow: 0 0 0 2px rgba(212,149,106,0.15), var(--shadow-sm);
}
.stars {
    color: var(--honey);
    font-size: 1rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}
.testimonial-card p {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 400;
    font-style: italic;
    color: var(--brown-mid);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.reviewer {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}
.reviewer-avatar {
    width: 42px;
    height: 42px;
    background: var(--terra);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
}
.reviewer strong {
    display: block;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brown);
}
.reviewer span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ===== ORDER ===== */
.order {
    padding: 8rem 4rem;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}
.order::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--terra-pale);
    clip-path: ellipse(55% 100% at 50% 0%);
}
.order::after {
    content: '';
    position: absolute;
    bottom: -200px;
    right: -200px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(196,112,79,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.order-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.order-content h2 {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
.order-content h2 em { font-style: italic; font-weight: 400; color: var(--terra); }
.order-content > p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 2rem;
}
.order-perks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}
.order-perks li {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--brown-mid);
}
.perk-icon {
    color: var(--terra);
    font-size: 1rem;
    flex-shrink: 0;
}
.order-form {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brown-mid);
    margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    background: var(--bg-primary);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    padding: 0.75rem 1rem;
    color: var(--text-primary);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 400;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    -webkit-appearance: none;
}
.form-group select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4704F' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}
.form-group select option { background: #fff; color: var(--brown); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terra);
    box-shadow: 0 0 0 3px rgba(196,112,79,0.12);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group textarea { resize: vertical; min-height: 90px; }
.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--terra);
    color: #fff;
    border: none;
    border-radius: var(--r-md);
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(196,112,79,0.35);
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    margin-top: 0.5rem;
}
.btn-submit:hover {
    background: var(--terra-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(196,112,79,0.4);
}
.form-note {
    text-align: center;
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* ===== FOOTER ===== */
.delia-footer {
    background: var(--brown);
    padding: 3rem 4rem 2rem;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    flex-wrap: wrap;
}
.footer-logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--honey-light);
    display: block;
    margin-bottom: 0.75rem;
}
.footer-brand p {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.55);
    line-height: 1.7;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.footer-links a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.2s;
}
.footer-links a:hover { color: var(--honey-light); }
.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: all 0.2s;
}
.footer-social a:hover {
    border-color: var(--honey-light);
    color: var(--honey-light);
    background: rgba(232,192,138,0.1);
}
.footer-copy {
    max-width: 1200px;
    margin: 1.5rem auto 0;
    text-align: center;
}
.footer-copy p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .delia-nav { padding: 1.2rem 2rem; }
    .delia-nav.scrolled { padding: 0.9rem 2rem; }
    .nav-links { display: none; }
    .nav-toggle { display: flex; }
    .hero { padding: 7rem 2rem 4rem; }
    .collection, .story, .testimonials, .order { padding: 5rem 2rem; }
    .story-inner, .order-inner { grid-template-columns: 1fr; gap: 3rem; }
    .story-badge { right: -0.5rem; }
    .story-stats { gap: 1.5rem; }
    .delia-footer { padding: 2.5rem 2rem 1.5rem; }
    .footer-inner { flex-direction: column; gap: 1.5rem; }
}
@media (max-width: 600px) {
    .hero-title { font-size: 2.6rem; }
    .hero-cta { flex-direction: column; align-items: center; }
    .product-grid { grid-template-columns: 1fr; }
    .testimonial-grid { grid-template-columns: 1fr; }
    .order-form { padding: 1.5rem; }
}

/* ===== ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== NAV EXTRAS ===== */
.nav-actions { display: flex; align-items: center; gap: 0.75rem; }
.nav-cart {
    position: relative;
    display: flex;
    align-items: center;
    color: var(--brown-mid);
    text-decoration: none;
    transition: color 0.2s;
}
.nav-cart:hover { color: var(--terra); }
.cart-count {
    position: absolute;
    top: -6px; right: -8px;
    background: var(--terra);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    width: 18px; height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-count.hidden { display: none; }
.nav-active { color: var(--terra) !important; }
.nav-active::after { width: 100% !important; }

/* ===== WC MAIN WRAPPER ===== */
.delia-wc-main { min-height: 60vh; padding: var(--s6, 3rem) 0 var(--s16, 6rem); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ===== MOBILE NAV (warm theme fix) ===== */
@media (max-width: 900px) {
    .nav-links.open {
        display: flex !important;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0; right: 0;
        background: rgba(253,246,238,0.98);
        padding: 1.5rem 2rem;
        border-top: 1px solid var(--border);
        box-shadow: var(--shadow-md);
        gap: 1rem;
    }
}

/* ===== INNER PAGE HERO ===== */
.inner-hero {
    padding: 9rem 4rem 5rem;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    text-align: center;
}
.inner-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(196,112,79,0.07) 1px, transparent 1px);
    background-size: 36px 36px;
    pointer-events: none;
}
.inner-hero-content { position: relative; max-width: 640px; margin: 0 auto; }
.inner-hero .section-eyebrow { margin-bottom: 1rem; }
.inner-hero h1 {
    font-family: var(--font-serif);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.15;
    margin-bottom: 1rem;
}
.inner-hero h1 em { font-style: italic; font-weight: 400; color: var(--terra); }
.inner-hero p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.8;
}
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    justify-content: center;
    margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--terra); text-decoration: none; font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-muted); }

/* ===== WAVE DIVIDER ===== */
.wave-top {
    height: 60px;
    background: inherit;
    position: relative;
    margin-top: -1px;
}
.wave-top::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0; top: 0;
    background: var(--wave-from, var(--bg-primary));
    clip-path: ellipse(55% 100% at 50% 0%);
}

/* ===== FEATURED PRODUCTS (home) ===== */
.featured {
    padding: 7rem 4rem;
    background: var(--bg-secondary);
}
.featured .section-header { margin-bottom: 3rem; }
.featured-footer {
    text-align: center;
    margin-top: 3rem;
}

/* ===== HOME STORY TEASER ===== */
.home-story {
    padding: 7rem 4rem;
    background: var(--terra-pale);
}
.home-story-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.home-story-visual {
    border-radius: var(--r-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 5/4;
    background: linear-gradient(145deg, #E8C08A 0%, #C4704F 50%, #9E4E2A 100%);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-story-visual span {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 8px;
}
.home-story-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.home-story-text h2 em { font-style: italic; font-weight: 400; color: var(--terra); }
.home-story-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1.25rem;
}
.home-story-text .btn-primary { margin-top: 0.5rem; display: inline-block; }

/* ===== ABOUT PAGE ===== */
.about-mission {
    padding: 7rem 4rem;
    background: var(--bg-primary);
    text-align: center;
}
.about-mission-text {
    max-width: 760px;
    margin: 0 auto;
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    font-weight: 400;
    font-style: italic;
    color: var(--brown-mid);
    line-height: 1.7;
}
.about-mission-text strong { color: var(--terra); font-style: normal; font-weight: 700; }

.about-values {
    padding: 7rem 4rem;
    background: var(--bg-secondary);
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: box-shadow 0.3s, transform 0.3s;
}
.value-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.value-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    display: block;
}
.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 0.6rem;
}
.value-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.75; }

.about-founder {
    padding: 7rem 4rem;
    background: var(--bg-primary);
}
.founder-inner {
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.founder-photo {
    border-radius: var(--r-xl);
    aspect-ratio: 3/4;
    background: linear-gradient(145deg, #F5E6DE 0%, #D4956A 40%, #C4704F 100%);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.founder-photo span {
    font-family: var(--font-serif);
    font-size: 5rem;
    color: rgba(255,255,255,0.3);
}
.founder-quote {
    background: var(--terra-pale);
    border-left: 4px solid var(--terra);
    border-radius: var(--r-sm);
    padding: 1.25rem 1.5rem;
    margin-bottom: 1.5rem;
    font-family: var(--font-serif);
    font-style: italic;
    color: var(--brown-mid);
    font-size: 1.05rem;
    line-height: 1.75;
}
.founder-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}
.founder-text .founder-role {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--terra);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
    display: block;
}
.founder-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }

.about-stats {
    background: var(--terra);
    padding: 4rem;
    text-align: center;
}
.stats-row {
    display: flex;
    justify-content: center;
    gap: 4rem;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.about-stats .stat-num { color: #fff; font-size: 2.8rem; }
.about-stats .stat-label { color: rgba(255,255,255,0.75); font-size: 0.8rem; }

/* ===== SHOP PAGE ===== */
.shop-section {
    padding: 5rem 4rem 8rem;
    background: var(--bg-primary);
}
.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}
.filter-pills {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}
.pill {
    padding: 0.4rem 1.1rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: 1.5px solid var(--border);
    background: var(--bg-card);
    color: var(--brown-mid);
    transition: all 0.2s;
}
.pill:hover, .pill.active {
    background: var(--terra);
    border-color: var(--terra);
    color: #fff;
}
.shop-count { font-size: 0.85rem; color: var(--text-muted); }
.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* ===== STORY PAGE ===== */
.story-intro {
    padding: 7rem 4rem;
    background: var(--bg-primary);
}
.story-intro-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}
.story-intro-visual {
    border-radius: var(--r-xl);
    aspect-ratio: 4/3;
    background: linear-gradient(145deg, #E8C08A 0%, #C4704F 60%, #3D2314 100%);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}
.story-intro-visual span {
    font-family: var(--font-serif);
    font-size: 3rem;
    font-weight: 700;
    color: rgba(255,255,255,0.2);
    letter-spacing: 4px;
}
.story-intro-text h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: var(--brown);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}
.story-intro-text h2 em { font-style: italic; font-weight: 400; color: var(--terra); }
.story-intro-text p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 1rem; }

.process-section {
    padding: 7rem 4rem;
    background: var(--bg-secondary);
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}
.process-steps::before {
    content: '';
    position: absolute;
    top: 2.5rem;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(to right, var(--terra-pale), var(--terra), var(--terra-pale));
    z-index: 0;
}
.process-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    position: relative;
    z-index: 1;
    transition: box-shadow 0.3s, transform 0.3s;
}
.process-step:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-num {
    width: 48px;
    height: 48px;
    background: var(--terra);
    color: #fff;
    border-radius: 50%;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 12px rgba(196,112,79,0.35);
}
.step-icon { font-size: 1.6rem; margin-bottom: 0.75rem; display: block; }
.process-step h3 {
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 0.5rem;
}
.process-step p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.7; }

.ingredients-section {
    padding: 7rem 4rem;
    background: var(--terra-pale);
}
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}
.ingredient-card {
    background: var(--bg-card);
    border-radius: var(--r-lg);
    padding: 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255,255,255,0.8);
}
.ingredient-card .icon { font-size: 2.5rem; margin-bottom: 0.75rem; display: block; }
.ingredient-card h3 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 0.4rem;
}
.ingredient-card p { font-size: 0.8rem; color: var(--text-muted); line-height: 1.65; }

/* ===== CONTACT PAGE ===== */
.contact-section {
    padding: 6rem 4rem 8rem;
    background: var(--bg-primary);
}
.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}
.contact-info h2 {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 1rem;
}
.contact-info > p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.85; margin-bottom: 2rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.25rem; margin-bottom: 2.5rem; }
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
.contact-icon {
    width: 42px;
    height: 42px;
    background: var(--terra-pale);
    border-radius: var(--r-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}
.contact-item-text strong {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brown);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.2rem;
}
.contact-item-text span { font-size: 0.9rem; color: var(--text-muted); }
.social-links {
    display: flex;
    gap: 0.75rem;
}
.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.1rem;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--brown-mid);
    text-decoration: none;
    transition: all 0.2s;
}
.social-link:hover {
    background: var(--terra);
    border-color: var(--terra);
    color: #fff;
}
.contact-form-wrap {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}
.contact-form-wrap h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 1.75rem;
}

/* ===== RESPONSIVE — MULTI PAGE ===== */
@media (max-width: 900px) {
    .inner-hero { padding: 7rem 2rem 4rem; }
    .home-story { padding: 5rem 2rem; }
    .home-story-inner { grid-template-columns: 1fr; gap: 3rem; }
    .featured { padding: 5rem 2rem; }
    .about-mission, .about-values, .about-founder { padding: 5rem 2rem; }
    .founder-inner { grid-template-columns: 1fr; gap: 3rem; }
    .about-stats { padding: 3rem 2rem; }
    .stats-row { gap: 2rem; }
    .shop-section { padding: 4rem 2rem 6rem; }
    .story-intro, .process-section, .ingredients-section { padding: 5rem 2rem; }
    .story-intro-inner { grid-template-columns: 1fr; gap: 3rem; }
    .contact-section { padding: 4rem 2rem 6rem; }
    .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
    .process-steps::before { display: none; }
}
@media (max-width: 600px) {
    .process-steps { grid-template-columns: 1fr 1fr; }
    .stats-row { gap: 1.5rem; }
    .about-stats .stat-num { font-size: 2rem; }
}
