:root {
    --primary: #C85A1E;
    --primary-dark: #A84718;
    --bg: #F7E9D7;
    --accent: #6F7D3C;
    --text: #4A2B1A;
    --text-light: #7A5B4A;
    --neutral: #E9D5BE;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    --max-width: 480px;
    --radius: 12px;
    --shadow: 0 2px 12px rgba(74, 43, 26, 0.08);
}

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

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

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

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

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

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 24px;
    color: var(--text);
}

/* Nav */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(247, 233, 215, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(74, 43, 26, 0.06);
}

.nav-inner {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 32px;
    width: auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.btn:hover {
    background: var(--primary-dark);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 13px;
}

.btn-lg {
    padding: 14px 36px;
    font-size: 16px;
}

/* Hero */
.hero {
    padding: 48px 0 40px;
    text-align: center;
}

.hero-logo {
    width: 120px;
    margin: 0 auto 24px;
}

.hero-tagline {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 900;
    line-height: 1.3;
    color: var(--text);
    margin-bottom: 12px;
}

.hero-desc {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 28px;
    line-height: 1.7;
}

/* USP */
.usp {
    padding: 40px 0;
}

.usp-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.usp-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    text-align: center;
}

.usp-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}

.usp-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 4px;
}

.usp-card p {
    font-size: 13px;
    color: var(--text-light);
}

/* Products */
.products {
    padding: 40px 0;
}

.product-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.product-info {
    padding: 16px;
    text-align: center;
}

.product-info h3 {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 700;
}

.product-desc {
    font-size: 13px;
    color: var(--text-light);
    margin: 4px 0 8px;
}

.product-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.product-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    margin-top: 16px;
}

.product-extras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.extra-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: var(--radius);
}

/* How to Order */
.howto {
    padding: 40px 0;
}

.steps {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.step {
    background: var(--white);
    border-radius: var(--radius);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    text-align: center;
    width: 100%;
    position: relative;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.step h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.step p {
    font-size: 13px;
    color: var(--text-light);
}

.step-arrow {
    font-size: 20px;
    color: var(--primary);
    opacity: 0.5;
    line-height: 1;
}

/* Testimonials */
.testimonials {
    padding: 40px 0;
}

.testi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.testi-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.testi-card img {
    width: 100%;
    height: auto;
    display: block;
}

/* FAQ */
.faq {
    padding: 40px 0;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    padding: 16px 40px 16px 16px;
    border: none;
    background: none;
    font-family: var(--font-body);
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    text-align: left;
    cursor: pointer;
    position: relative;
    -webkit-appearance: none;
}

.faq-q::after {
    content: '+';
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 300;
    color: var(--primary);
    transition: transform 0.3s;
}

.faq-item.open .faq-q::after {
    content: '\2212';
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
}

.faq-a p {
    padding: 0 16px 16px;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
}

/* Footer */
.footer {
    padding: 48px 0 32px;
    text-align: center;
    border-top: 1px solid rgba(74, 43, 26, 0.08);
}

.footer-logo {
    height: 32px;
    margin: 0 auto 12px;
}

.footer-name {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-links {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-link:hover {
    color: var(--primary);
}

.footer-sep {
    color: var(--neutral);
}

.footer-copy {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
}

/* Floating WA */
.wa-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
    z-index: 200;
    transition: transform 0.2s;
}

.wa-float:hover {
    transform: scale(1.08);
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

@media (min-width: 600px) {
    .container {
        max-width: 540px;
        padding: 0 24px;
    }

    .hero-tagline {
        font-size: 34px;
    }

    .usp-grid {
        flex-direction: row;
        gap: 12px;
    }

    .usp-card {
        flex: 1;
        padding: 20px 16px;
    }

    .product-grid {
        flex-direction: row;
        gap: 12px;
    }

    .product-card {
        flex: 1;
    }

    .testi-card {
        flex: 0 0 300px;
    }
}

@media (min-width: 800px) {
    .container {
        max-width: 560px;
    }
}
