:root {
    --bg: #f7f3e8;
    --text: #2a2a2a;
    --muted: #6f6f6f;
    --accent: #b85c38;
    --accent-2: #556b2f;
    --surface: #ffffff;
    --shadow: rgba(0, 0, 0, 0.12);
}
* {
    box-sizing: border-box;
}
h1, h2, h3, h4 { font-family: 'Cormorant Garamond', serif; }
body {
    margin: 0;
    font-family: 'Inter', Arial, sans-serif;
    color: var(--text);
    background: var(--bg);
    min-height: 100vh;
}
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    color: var(--text);
}
header {
    background: var(--bg);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
}
.brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.logo {
    font-size: 1.8rem;
    color: var(--accent);
}
.brand-name {
    color: var(--text);
    font-weight: 700;
    font-size: 1.2rem;
}
nav {
    display: flex;
    align-items: center;
    position: relative;
}
.nav-links {
    display: flex;
    gap: 1.6rem;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 0.4rem 0.2rem;
    border-bottom: 2px solid transparent;
    transition: border-color 0.2s, color 0.2s;
}
.nav-links a:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    cursor: pointer;
    margin-left: 1rem;
    height: 32px;
    width: 32px;
}
.hamburger span {
    display: block;
    height: 4px;
    width: 24px;
    background: var(--accent);
    margin: 4px 0;
    border-radius: 2px;
    transition: all 0.3s;
}
.hero {
    background: var(--surface);
    color: var(--text);
    text-align: center;
    padding: 4rem 1rem 3rem 1rem;
    position: relative;
    border-radius: 20px;
    margin: 1.5rem 0 1rem 0;
    border: 1px solid rgba(0,0,0,0.06);
}
.hero h1 {
    font-size: 3rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
}
.hero p {
    font-size: 1.15rem;
    margin-bottom: 1.6rem;
    color: var(--muted);
}
.hero-badges {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.2rem;
}
.badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--bg);
    border: 1px dashed rgba(0,0,0,0.15);
    border-radius: 999px;
    padding: 0.45rem 0.8rem;
}
.badge i {
    color: var(--accent);
}
.cta-btn, .btn {
    background: var(--accent);
    color: #fff;
    padding: 0.85rem 1.4rem;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s, transform 0.1s;
}
.cta-btn:hover, .btn:hover {
    background: #a64e2e;
}
.cta-btn:active, .btn:active { transform: translateY(1px); }
section {
    padding: 3.5rem 1rem;
}
.container {
    max-width: 1100px;
    margin: 0 auto;
}
.collections-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.collection-card {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 16px;
    padding: 1.2rem 1rem;
    text-decoration: none;
    color: var(--text);
    transition: transform 0.2s, border-color 0.2s;
    display: block;
}
.collection-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.collection-icon {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 0.8rem;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}
.product-card {
    background: var(--surface);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 14px;
    padding: 1.1rem;
    transition: transform 0.2s, border-color 0.2s;
}
.product-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.product-thumb {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 140px;
    border-radius: 12px;
    background: #efe7db;
    color: var(--accent);
    font-size: 2rem;
    margin-bottom: 0.9rem;
}
.price {
    color: var(--accent);
    font-weight: 600;
}
#about {
    background: var(--surface);
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 2rem 1.5rem;
}
.newsletter-form {
    display: flex;
    gap: 0.8rem;
    margin-top: 1rem;
}
.newsletter-form input {
    flex: 1;
    padding: 0.9rem;
    border: 1px solid rgba(46,125,50,0.25);
    border-radius: 12px;
    font-size: 1rem;
    background: rgba(255,255,255,0.9);
}
#contact form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.4rem;
    background: var(--surface);
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,0.08);
    padding: 1.4rem 1.1rem;
}
#contact input, #contact textarea {
    padding: 0.9rem;
    border: 1px solid rgba(46,125,50,0.25);
    border-radius: 12px;
    font-size: 1rem;
    resize: none;
    background: rgba(255,255,255,0.9);
    transition: border 0.2s;
}
#contact input:focus, #contact textarea:focus {
    border: 1.5px solid var(--accent);
    outline: none;
}
footer {
    background: var(--bg);
    color: var(--text);
    text-align: center;
    padding: 1.5rem 0;
    margin-top: 2rem;
    border-top: 1px solid rgba(0,0,0,0.08);
}
.section-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #e8f3ea 0%, var(--accent) 50%, #e8f3ea 100%);
    opacity: 0.25;
    margin: 0 auto 2rem auto;
    border-radius: 2px;
}
@media (max-width: 900px) {
    .collections-grid, .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    header .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
        padding: 0.6rem 0;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 60px;
        right: 0;
        background: rgba(255,255,255,0.98);
        box-shadow: 0 8px 32px var(--shadow);
        border-radius: 0 0 16px 16px;
        flex-direction: column;
        width: 220px;
        padding: 1rem 0;
        z-index: 200;
        text-align: right;
    }
    .nav-links.open {
        display: flex;
    }
    .hamburger {
        display: flex;
    }
}
@media (max-width: 600px) {
    .hero h1 {
        font-size: 2rem;
    }
    .container {
        padding: 0 0.5rem;
    }
    section {
        padding: 2rem 0.5rem;
    }
    nav ul {
        flex-direction: column;
        gap: 0.5rem;
        width: 100%;
        align-items: flex-start;
    }
    .collections-grid, .product-grid {
        grid-template-columns: 1fr;
    }
}
