/* Tanamanara - Organic Minimal Shop */
:root {
    --sage: #5c7a5c;
    --sage-light: #e8f0e8;
    --sage-dark: #3d523d;
    --cream: #faf8f4;
    --dark: #1c1c1a;
    --text: #3d3d38;
    --muted: #7a7a72;
    --font-display: 'Fraunces', serif;
    --font-body: 'Work Sans', sans-serif;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--cream); color: var(--text); line-height: 1.6; }
a { text-decoration: none; color: inherit; }

.side-nav {
    position: fixed; left: 0; top: 0; bottom: 0; width: 220px;
    background: var(--dark); color: #fff; padding: 32px 24px;
    display: flex; flex-direction: column; z-index: 100;
}
.side-logo { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 48px; }
.side-logo span { color: #a8c5a8; }
.side-nav nav { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.side-nav nav a {
    display: flex; align-items: center; gap: 12px; padding: 12px 16px;
    border-radius: 10px; font-size: 0.9rem; font-weight: 500; color: rgba(255,255,255,0.6); transition: 0.2s;
}
.side-nav nav a:hover, .side-nav nav a.active { background: rgba(255,255,255,0.08); color: #fff; }
.side-nav nav a i { width: 18px; }
.side-cta {
    background: var(--sage); color: #fff; text-align: center; padding: 14px;
    border-radius: 10px; font-weight: 600; font-size: 0.9rem; transition: 0.2s;
}
.side-cta:hover { background: var(--sage-dark); }

.mobile-nav-btn {
    display: none; position: fixed; top: 16px; left: 16px; z-index: 101;
    width: 44px; height: 44px; background: var(--dark); color: #fff;
    border: none; border-radius: 10px; font-size: 1.1rem; cursor: pointer;
}

.main { margin-left: 220px; min-height: 100vh; }

.hero { padding: 80px 48px 60px; max-width: 900px; }
.hero-tag {
    display: inline-block; background: var(--sage-light); color: var(--sage-dark);
    padding: 6px 14px; border-radius: 20px; font-size: 0.8rem; font-weight: 600; margin-bottom: 24px;
}
.hero h1 { font-family: var(--font-display); font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 20px; color: var(--dark); }
.hero h1 em { font-style: italic; color: var(--sage); }
.hero > p { font-size: 1.05rem; color: var(--muted); max-width: 520px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

.btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 14px 28px; border-radius: 50px; font-weight: 600; font-size: 0.9rem;
    border: 2px solid transparent; cursor: pointer; transition: 0.2s;
}
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--sage-dark); }
.btn-outline { background: transparent; border-color: var(--dark); color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-full { width: 100%; }

.hero-cards { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-card {
    background: #fff; border: 1px solid #e8e4dc; border-radius: 16px;
    padding: 20px 28px; text-align: center;
}
.hero-card span { display: block; font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; color: var(--sage); }
.hero-card small { font-size: 0.8rem; color: var(--muted); }

.section { padding: 80px 48px; }
.section-sage { background: var(--sage-light); }
.section-head { margin-bottom: 40px; }
.section-head.center { text-align: center; }
.section-head span { font-size: 0.8rem; font-weight: 600; color: var(--sage); text-transform: uppercase; letter-spacing: 2px; }
.section-head h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem); margin-top: 8px; color: var(--dark); }

.product-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
}
.product-card {
    background: #fff; border-radius: 20px; overflow: hidden;
    border: 1px solid #e8e4dc; transition: 0.3s;
}
.product-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.06); }
.product-card.wide { grid-column: span 2; display: grid; grid-template-columns: 200px 1fr; }
.product-img {
    aspect-ratio: 1; background: linear-gradient(145deg, #f5efe6, #ebe4d8);
    display: flex; align-items: center; justify-content: center;
    font-size: 2.5rem; color: var(--sage); position: relative;
}
.product-img.green { background: linear-gradient(145deg, var(--sage-light), #d4e4d4); }
.product-img.amber { background: linear-gradient(145deg, #fef3e2, #fde8c8); color: #b45309; }
.product-img.brown { background: linear-gradient(145deg, #f0e6dc, #e2d4c4); color: #78350f; }
.product-img.sage { background: linear-gradient(145deg, var(--sage-light), #c8dcc8); aspect-ratio: auto; min-height: 200px; }
.product-img .badge {
    position: absolute; top: 12px; right: 12px; background: var(--dark); color: #fff;
    font-size: 0.7rem; font-weight: 700; padding: 4px 10px; border-radius: 20px;
}
.product-card h3 { font-family: var(--font-display); font-size: 1.1rem; padding: 16px 20px 4px; }
.product-card > p { padding: 0 20px; font-size: 0.85rem; color: var(--muted); }
.product-wide-text { padding: 24px; display: flex; flex-direction: column; justify-content: center; }
.product-foot {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px; margin-top: 12px; border-top: 1px solid #f0ece4;
}
.product-foot strong { font-size: 1.1rem; color: var(--sage-dark); }
.product-foot a {
    background: var(--sage-light); color: var(--sage-dark); padding: 8px 16px;
    border-radius: 20px; font-size: 0.8rem; font-weight: 600; transition: 0.2s;
}
.product-foot a:hover { background: var(--sage); color: #fff; }

.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; max-width: 1000px; }
.story-text span { font-size: 0.85rem; font-weight: 600; color: var(--sage); }
.story-text h2 { font-family: var(--font-display); font-size: clamp(1.75rem, 3vw, 2.25rem); margin: 12px 0 20px; }
.story-text p { color: var(--muted); margin-bottom: 12px; }
.story-badges { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }
.story-badges div {
    display: flex; align-items: center; gap: 8px; background: #fff;
    padding: 10px 16px; border-radius: 30px; font-size: 0.85rem; font-weight: 600;
}
.story-badges i { color: var(--sage); }
.story-visual { display: flex; justify-content: center; }
.story-circle {
    width: 280px; height: 280px; border-radius: 50%;
    background: linear-gradient(145deg, var(--sage), var(--sage-dark));
    display: flex; align-items: center; justify-content: center;
    font-size: 5rem; color: rgba(255,255,255,0.3);
}

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.reviews blockquote {
    background: #fff; border-radius: 16px; padding: 28px; border: 1px solid #e8e4dc;
    font-style: italic; color: var(--text); line-height: 1.7; font-size: 0.95rem;
}

.order-box {
    display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start;
    background: #fff; border-radius: 24px; padding: 48px; border: 1px solid #e8e4dc; max-width: 900px;
}
.order-text h2 { font-family: var(--font-display); font-size: 1.75rem; margin-bottom: 12px; }
.order-text > p { color: var(--muted); margin-bottom: 24px; }
.marketplace { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; font-size: 0.85rem; }
.marketplace a {
    background: var(--sage-light); color: var(--sage-dark); padding: 6px 14px;
    border-radius: 20px; font-weight: 600; font-size: 0.8rem;
}
.order-box form { display: flex; flex-direction: column; gap: 12px; }
.order-box input, .order-box textarea {
    padding: 14px 18px; border: 1px solid #e8e4dc; border-radius: 12px;
    font-family: var(--font-body); font-size: 0.9rem; background: var(--cream);
}
.order-box input:focus, .order-box textarea:focus { outline: none; border-color: var(--sage); }

.footer { padding: 32px 48px; text-align: center; font-size: 0.85rem; color: var(--muted); }
.footer a { color: var(--sage); }

.wa-float {
    position: fixed; bottom: 24px; right: 24px; width: 54px; height: 54px;
    background: #25d366; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 1.6rem; z-index: 99;
}

@media (max-width: 900px) {
    .side-nav { transform: translateX(-100%); transition: 0.3s; }
    .side-nav.open { transform: translateX(0); }
    .mobile-nav-btn { display: flex; align-items: center; justify-content: center; }
    .main { margin-left: 0; }
    .hero, .section { padding-left: 24px; padding-right: 24px; padding-top: 72px; }
    .product-grid { grid-template-columns: 1fr; }
    .product-card.wide { grid-column: span 1; grid-template-columns: 1fr; }
    .story-grid, .order-box { grid-template-columns: 1fr; }
    .reviews { grid-template-columns: 1fr; }
}
