:root {
    /* Brand Colors */
    --color-primary-orange: #CF9145;
    --color-deep-gold: #D09433;
    --color-teal-blue: #3A7081;
    --color-deep-teal: #27444F;
    --color-charcoal: #352A1F;
    --color-cream: #F3E7CF;
    --color-bg-light: #F7F7F7;
    --color-white: #FFFFFF;

    /* Typography */
    --font-main: 'Outfit', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 4rem;
    --spacing-xxl: 6rem;

    /* UI Tokens */
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --box-shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.05);
    --box-shadow-md: 0 10px 20px rgba(0, 0, 0, 0.1);
    --transition-fast: 0.2s ease;
    --container-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--color-bg-light);
    color: var(--color-charcoal);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    font-family: inherit;
}

/* Typography Utilities */
h1,
h2,
h3,
h4,
h5,
h6 {
    line-height: 1.2;
    font-weight: 700;
    color: var(--color-deep-teal);
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

.text-center {
    text-align: center;
}

.text-uppercase {
    text-transform: uppercase;
}

.small-text {
    font-size: 0.9rem;
    opacity: 0.8;
}

.mt-2 {
    margin-top: var(--spacing-sm);
}

.mb-3 {
    margin-bottom: var(--spacing-md);
}

/* Container */
.container {
    width: 90%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

/* Buttons Refined */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    border-radius: 12px;
    /* Less rounded, more structured */
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-fast);
    text-decoration: none;
    gap: 10px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.btn:active {
    transform: scale(0.98);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-primary {
    background: var(--color-primary-orange);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(207, 145, 69, 0.4);
    /* Colored shadow */
    border: 1px solid transparent;
}

.btn-primary:hover {
    background: var(--color-deep-gold);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(207, 145, 69, 0.6);
}

.btn-secondary {
    background: var(--color-deep-teal);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(39, 68, 79, 0.4);
}

.btn-secondary:hover {
    background: var(--color-teal-blue);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 68, 79, 0.6);
}

.btn-outline {
    border: 2px solid var(--color-white);
    color: var(--color-white);
    background: transparent;
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-deep-teal);
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    background: transparent;
    transition: background 0.3s ease, padding 0.3s ease;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--box-shadow-sm);
    padding: var(--spacing-xs) 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.header.scrolled .logo a {
    color: var(--color-deep-teal);
}

.nav-desktop {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-desktop a {
    color: var(--color-white);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.header.scrolled .nav-desktop a {
    color: var(--color-charcoal);
}

.header.scrolled .nav-desktop a.btn {
    color: var(--color-white);
}

.nav-desktop a:hover {
    color: var(--color-primary-orange);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--color-white);
    transition: 0.3s;
}

.header.scrolled .mobile-menu-toggle span {
    background-color: var(--color-deep-teal);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: var(--color-white);
    padding: var(--spacing-xl) var(--spacing-md);
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s ease;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-deep-teal);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    /* Fallback */
    height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-white);
    background-image: url('/assets/hero image.png');
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.7));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    color: var(--color-white);
    margin-bottom: var(--spacing-sm);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero .subheadline {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-lg);
    color: rgba(255, 255, 255, 0.9);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-lg);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
    font-size: 0.9rem;
    font-weight: 600;
}

.badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    backdrop-filter: blur(5px);
}

/* General Section Styles */
section {
    padding: var(--spacing-xl) 0;
}

.section-title {
    margin-bottom: var(--spacing-lg);
    font-size: 2.25rem;
    color: var(--color-deep-teal);
}

/* Best Sellers */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.product-card {
    background: var(--color-white);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    overflow: hidden;
    transition: transform var(--transition-fast);
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-md);
}

.card-image {
    height: 200px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: var(--spacing-md);
    text-align: center;
}

.card-content h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.card-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: var(--spacing-md);
}

/* Gallery */
.section-gallery {
    background-color: var(--color-white);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xs);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 16px;
    border-radius: 20px;
    background: var(--color-bg-light);
    color: var(--color-charcoal);
    font-weight: 500;
    transition: 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
    background: var(--color-primary-orange);
    color: var(--color-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

/* How to Order */
.section-steps {
    background-color: var(--color-bg-light);
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-lg);
    text-align: center;
}

.step {
    flex: 1;
    min-width: 250px;
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

/* Platforms */
.platform-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--spacing-md);
}

.platform-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    text-align: center;
    color: var(--color-white);
    transition: transform 0.2s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.platform-card:hover {
    transform: translateY(-3px);
}

.platform-card.glovo {
    background: #FFC244;
    color: #00A082;
}

.platform-card.uber {
    background: #06C167;
    color: var(--color-white);
}

.platform-card.whatsapp {
    background: #25D366;
    color: var(--color-white);
}

.platform-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0px;
    color: inherit;
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
}

.review-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    box-shadow: var(--box-shadow-sm);
    font-style: italic;
    position: relative;
}

.review-card p {
    margin-bottom: var(--spacing-sm);
}

.review-card cite {
    display: block;
    font-weight: 700;
    color: var(--color-primary-orange);
    font-style: normal;
}

/* FAQs */
.accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

details {
    background: var(--color-white);
    border-radius: var(--border-radius-sm);
    padding: var(--spacing-sm);
    box-shadow: var(--box-shadow-sm);
    cursor: pointer;
}

summary {
    font-weight: 700;
    color: var(--color-deep-teal);
    list-style: none;
    /* Hide default arrow */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
}

details[open] summary::after {
    content: '-';
}

details p {
    margin-top: var(--spacing-sm);
    color: #555;
    border-top: 1px solid #eee;
    padding-top: var(--spacing-sm);
}

/* Contact */
.section-contact {
    background-color: var(--color-deep-teal);
    color: var(--color-white);
}

.section-contact .section-title {
    color: var(--color-primary-orange);
}

.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-lg);
    justify-content: center;
}

.contact-info,
.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.contact-form input,
.contact-form textarea {
    padding: 12px;
    border-radius: var(--border-radius-sm);
    border: none;
    font-family: inherit;
}

/* Footer */
.footer {
    background-color: var(--color-charcoal);
    color: var(--color-cream);
    padding: var(--spacing-lg) 0;
    text-align: center;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-links a:hover {
    color: var(--color-primary-orange);
}

.disclaimer {
    font-size: 0.8rem;
    opacity: 0.5;
    margin-top: var(--spacing-sm);
}

/* Media Query Adjustments */
/* Media Query Adjustments */
@media (max-width: 768px) {
    :root {
        --spacing-xl: 3rem;
    }

    .nav-desktop {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .hero h1 {
        font-size: 2.5rem;
        /* Slightly larger for impact but cleaner line height */
        line-height: 1.1;
    }

    .hero .subheadline {
        font-size: 1.1rem;
        padding: 0 1rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    /* Mobile Cleanup */
    .hero-badges {
        display: none;
        /* De-clutter */
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
        gap: 15px;
        /* More space */
    }

    .hero-ctas .btn {
        width: 100%;
    }
}

/* Lightbox */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: var(--border-radius-sm);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: none;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    font-size: 2rem;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 50%;
    transition: 0.2s;
    user-select: none;
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.3);
}

.lightbox-prev {
    left: -60px;
}

.lightbox-next {
    right: -60px;
}

@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 10px;
        right: 10px;
    }

    .mobile-bottom-bar {
        display: block;
        position: fixed;
        bottom: 20px;
        /* Floating look */
        left: 20px;
        right: 20px;
        width: auto;
        background: var(--color-deep-teal);
        /* Darker, more premium bar */
        padding: 10px;
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        z-index: 999;
        backdrop-filter: blur(10px);
    }

    .btn-full {
        width: 100%;
        justify-content: center;
        background: transparent;
        color: white;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 800;
        box-shadow: none;
        padding: 0;
    }

    .btn-full::after {
        content: '→';
        margin-left: 10px;
        font-size: 1.2rem;
    }

    body {
        padding-bottom: 90px;
    }
}

@media (min-width: 769px) {
    .mobile-bottom-bar {
        display: none;
    }
}