
:root {
    --honey-gold: #fca311;
    --honey-dark: #e5a50a;
    --cream-bg: #fffdf5;
    --text-brown: #4a3b32;
    --accent-green: #606c38;
    --font-serif: 'Georgia', serif;
    --font-sans: 'Helvetica Neue', Arial, sans-serif;
}

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

body {
    background-color: var(--cream-bg);
    color: var(--text-brown);
    font-family: var(--font-sans);
    line-height: 1.6;
}

.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
}

.logo {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--honey-dark);
    letter-spacing: 2px;
}

nav a {
    text-decoration: none;
    color: var(--text-brown);
    margin-left: 2rem;
    font-weight: 500;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--honey-gold);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 4rem 0;
    min-height: 60vh;
}

.hero-content {
    flex: 1;
    padding-right: 2rem;
}

.badge {
    display: inline-block;
    background: var(--accent-green);
    color: white;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-brown);
}

.hero p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 400px;
}

.btn-primary {
    display: inline-block;
    background: var(--honey-gold);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background 0.3s;
}

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

.hero-visual {
    flex: 1;
    position: relative;
}

.hero-visual img {
    width: 100%;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: 0 20px 40px rgba(252, 163, 17, 0.2);
}

/* Products */
.product-showcase {
    padding: 4rem 0;
    text-align: center;
}

.product-showcase h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-brown);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.product-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-card.featured {
    border: 2px solid var(--honey-gold);
    position: relative;
}

.img-box {
    height: 200px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.price {
    color: var(--honey-dark);
    font-weight: bold;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.desc {
    font-size: 0.9rem;
    color: #777;
}

/* Origin Story */
.origin-story {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 4rem 0;
    background: #fff8e1;
    margin: 2rem -20px;
    padding: 4rem 20px;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.features-list {
    list-style: none;
    margin-top: 1.5rem;
}

.features-list li {
    margin-bottom: 0.8rem;
    font-weight: 500;
    color: var(--accent-green);
}

.story-image {
    flex: 1;
}

.story-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 3rem 0;
    color: #999;
    font-size: 0.9rem;
    border-top: 1px solid #eee;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }
    .hero-content {
        padding-right: 0;
        margin-top: 2rem;
    }
    .origin-story {
        flex-direction: column;
    }
    .top-bar {
        flex-direction: column;
        gap: 1rem;
    }
    nav a {
        margin: 0 10px;
    }
}
