:root {
    --primary: #d4a373;
    --primary-dark: #bc8a5f;
    --secondary: #faedcd;
    --text-dark: #463f3a;
    --white: #ffffff;
    --bg-light: #fefae0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

body {
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Google Ads Policy: Clear Header */
header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.top-banner {
    background: var(--primary);
    color: var(--white);
    text-align: center;
    padding: 8px;
    font-weight: bold;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

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

.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 50px;
    width: 50px;
    object-fit: contain;
}

.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    text-transform: uppercase;
}

/* Sections */
section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Hero */
.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    min-height: 80vh;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: #666;
}

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

/* CTA Buttons */
.cta-button, .cta-final {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, background 0.3s;
    text-transform: uppercase;
}

.cta-button:hover, .cta-final:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

/* Process Grid */
.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    color: #555;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.process-step {
    background: var(--white);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    transition: translateY 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.process-step img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.process-step h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.icon-box {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

/* Ingredients Section */
.ingredients {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 20px;
}

.ingredients-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: -20px 20px 60px rgba(0,0,0,0.05);
}

.ingredient-detail {
    margin-top: 25px;
}

.ingredient-detail h3 {
    color: var(--primary-dark);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

/* Variety */
.variety {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    background: var(--secondary);
    border-radius: 30px;
    padding: 60px 40px;
}

.product-list {
    list-style: none;
    margin-top: 20px;
}

.product-list li {
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.product-list i {
    color: var(--primary-dark);
    margin-right: 10px;
}

.variety-image img {
    width: 100%;
    border-radius: 20px;
}

/* Locations & Social */
.info-section {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 50px;
}

.location-card {
    display: flex;
    gap: 20px;
    background: white;
    padding: 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.location-card i {
    font-size: 1.5rem;
    color: var(--primary);
}

.social-icons {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.social-btn {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    transition: opacity 0.3s;
}

.facebook { background: #3b5998; }
.instagram { background: #e1306c; }
.whatsapp { background: #25d366; }

/* Footer */
footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}



/* Mobile Responsive */
@media (max-width: 768px) {
    .hero, .variety, .info-section, .ingredients {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-image {
        order: -1;
    }
}