:root {
    --primary: #1b5e20; /* Deep Organic Green */
    --accent: #f39c12;  /* African Gold/Orange */
    --dark: #2c3e50;
    --light-bg: #f4f7f6;
    --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Outfit', sans-serif; background: var(--light-bg); color: var(--dark); line-height: 1.6; }
.container { max-width: 1100px; margin: auto; padding: 0 20px; }

/* Contact Strip */
.contact-strip { background: var(--dark); color: white; padding: 8px 0; font-size: 13px; text-align: center; }
.contact-strip a { color: var(--accent); text-decoration: none; font-weight: bold; }

/* Header */
header { background: var(--white); padding: 15px 0; position: sticky; top: 0; z-index: 999; box-shadow: 0 2px 15px rgba(0,0,0,0.1); }
nav { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 700; }
.logo span { color: var(--primary); }

#cart-btn { background: var(--primary); color: white; border: none; padding: 12px 20px; border-radius: 50px; cursor: pointer; font-weight: 600; transition: 0.3s; }
#cart-btn:hover { background: var(--dark); }

/* Hero */
.hero { background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1605000797499-95a51c5269ae?w=1200'); background-size: cover; background-position: center; color: white; padding: 120px 0; text-align: center; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: 3.5rem; margin-bottom: 15px; }
.hero h1 span { color: var(--accent); }
.btn-primary { background: var(--accent); color: white; text-decoration: none; padding: 15px 30px; border-radius: 5px; display: inline-block; font-weight: 700; margin-right: 10px; }
.btn-outline { border: 2px solid white; color: white; text-decoration: none; padding: 13px 30px; border-radius: 5px; display: inline-block; font-weight: 700; }

/* How To Section */
.how-to { padding: 80px 0; background: white; text-align: center; }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 40px; margin-top: 40px; }
.step-num { background: var(--primary); color: white; width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 15px; font-weight: bold; }

/* Pricing & Search */
.pricing { padding: 80px 0; }
.section-title { text-align: center; margin-bottom: 40px; font-family: 'Playfair Display', serif; font-size: 2.5rem; }
.controls { display: flex; gap: 15px; margin-bottom: 25px; }
#searchInput { flex: 3; padding: 15px; border-radius: 8px; border: 1px solid #ddd; font-size: 16px; }
#categoryFilter { flex: 1; padding: 15px; border-radius: 8px; border: 1px solid #ddd; }

.table-wrapper { background: white; border-radius: 12px; box-shadow: 0 10px 30px rgba(0,0,0,0.05); overflow: hidden; }
.price-table { width: 100%; border-collapse: collapse; }
.price-table th { background: var(--primary); color: white; padding: 18px; text-align: left; }
.price-table td { padding: 18px; border-bottom: 1px solid #f0f0f0; }
.add-to-cart { background: var(--primary); color: white; border: none; padding: 8px 15px; border-radius: 5px; cursor: pointer; }

/* Sidebar Cart */
.sidebar { position: fixed; right: -400px; top: 0; width: 380px; height: 100%; background: white; box-shadow: -10px 0 30px rgba(0,0,0,0.2); transition: 0.4s cubic-bezier(0.17, 0.67, 0.83, 0.67); z-index: 1001; padding: 30px; display: flex; flex-direction: column; }
.sidebar.active { right: 0; }
.sidebar-header { display: flex; justify-content: space-between; border-bottom: 2px solid #eee; padding-bottom: 15px; }
#close-cart { background: none; border: none; font-size: 24px; cursor: pointer; }
.cart-item { display: flex; justify-content: space-between; padding: 15px 0; border-bottom: 1px solid #eee; }
.btn-whatsapp { background: #25d366; color: white; border: none; width: 100%; padding: 18px; font-weight: 700; border-radius: 8px; cursor: pointer; font-size: 16px; margin-top: 20px; }
.total-row { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 700; margin-top: 20px; color: var(--primary); }

footer { background: var(--dark); color: white; padding: 40px 0; text-align: center; }
.flavor-select {
    font-family: 'Outfit', sans-serif;
    font-size: 14px;
    outline: none;
    cursor: pointer;
    background-color: #fff;
}

@media (max-width: 600px) {
    .flavor-select {
        display: block; /* Stack on top of button on small phones */
        margin-bottom: 5px;
        width: 100%;
    }
}
:root {
    --primary: #1b5e20;
    --accent: #f39c12;
    --dark: #2c3e50;
    --white: #ffffff;
}

body { font-family: 'Outfit', sans-serif; background: #f4f7f6; margin: 0; }
.container { max-width: 1000px; margin: auto; padding: 0 20px; }

/* Table Styling */
.price-table { width: 100%; border-collapse: collapse; background: white; }
.price-table th { background: var(--primary); color: white; padding: 15px; text-align: left; }
.price-table td { padding: 15px; border-bottom: 1px solid #eee; }

/* Dropdown styling */
.flavor-select {
    padding: 8px;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-family: 'Outfit', sans-serif;
    width: 100%;
    max-width: 180px;
}

/* Cart & Sidebar */
.sidebar { position: fixed; right: -400px; top: 0; width: 350px; height: 100%; background: white; box-shadow: -5px 0 15px rgba(0,0,0,0.2); transition: 0.3s; z-index: 1000; padding: 20px; display: flex; flex-direction: column; }
.sidebar.active { right: 0; }
.btn-whatsapp { background: #25d366; color: white; border: none; width: 100%; padding: 15px; border-radius: 8px; cursor: pointer; font-weight: bold; margin-top: 10px; }

/* Mobile optimization */
@media (max-width: 600px) {
    .controls { flex-direction: column; }
    .hero h1 { font-size: 2rem; }
}