/* --- CSS VARIABLES & RESET --- */
:root {
    --primary-color: #e87933;
    --primary-color-dark: #d16b2b;
    --dark-text: #333333;
    --light-text: #5f5f5f;
    --border-color: #e0e0e0;
    --background-light: #fafafa;
    --background-white: #ffffff;
    --font-family: 'Poppins', sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--dark-text);
    background-color: var(--background-white);
    background-image: radial-gradient(var(--border-color) 0.5px, transparent 0.5px);
    background-size: 15px 15px;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

h1, h2, h3, h4 {
    line-height: 1.2;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: var(--light-text);
}

a {
    color: var(--dark-text);
    text-decoration: none;
}

ul {
    list-style: none;
}

/* --- BUTTONS --- */
.btn {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
    font-weight: 500;
    text-align: center;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--background-white);
    border: 1px solid var(--primary-color);
}

.btn-primary:hover, .btn-primary:focus {
    background-color: var(--primary-color-dark);
    transform: translateY(-2px);
}

/* --- HEADER & NAVIGATION --- */
.main-header {
    width: 100%;
    background-color: var(--background-white);
    border-bottom: 1px solid var(--border-color);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1.5rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
}

.logo__icon {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.logo__text {
    display: none;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.profile-link svg {
    display: block;
}

/* Mobile Navigation */
.nav-toggle-checkbox {
    display: none;
}

.nav-toggle {
    display: block;
    cursor: pointer;
    z-index: 1001;
    color: var(--dark-text);
}

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: var(--background-white);
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease-in-out;
    padding-top: 5rem;
}

#nav-toggle-checkbox:checked ~ .main-nav {
    transform: translateX(0);
}

.main-nav ul {
    display: flex;
    flex-direction: column;
}

.main-nav ul a {
    display: block;
    padding: 1rem 1.5rem;
    font-weight: 600;
    color: var(--dark-text);
    transition: background-color 0.2s, color 0.2s;
    text-transform: capitalize;
}

.main-nav ul a:hover,
.main-nav ul a.active {
    background-color: #f8f8f8;
    color: var(--primary-color);
}

/* --- DESKTOP NAVIGATION --- */
@media (min-width: 992px) {
    .nav-toggle {
        display: none;
    }

    .logo__text {
        display: block;
    }

    .header-container {
        display: grid;
        grid-template-columns: auto 1fr auto;
        gap: 2rem;
        align-items: center;
    }

    .main-nav {
        position: static;
        transform: none;
        height: auto;
        width: auto;
        background: none;
        box-shadow: none;
        padding: 0;
        justify-self: center;
    }

    .main-nav ul {
        display: flex;
        flex-direction: row;
        gap: 1.5rem;
        justify-content: center;
        align-items: center;
        white-space: nowrap;
    }

    .main-nav ul a {
        padding: 0.25rem 0;
        position: relative;
        color: var(--dark-text);
        transition: color 0.3s ease;
    }

    .main-nav ul a:hover,
    .main-nav ul a.active {
        background-color: transparent;
        color: var(--primary-color);
    }

    .main-nav ul a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: var(--primary-color);
        transform: scaleX(0);
        transition: transform 0.3s ease;
    }

    .main-nav ul a:hover::after,
    .main-nav ul a.active::after {
        transform: scaleX(1);
    }
}

/* --- HERO SECTION --- */
.hero {
    background-color: var(--background-light);
    background-image: radial-gradient(var(--border-color) 1px, transparent 1px);
    background-size: 20px 20px;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    color: var(--dark-text);
}

/* --- MAIN CONTENT SECTIONS --- */
.product-section {
    padding: 3rem 0;
}
/* Product Image Wrapper - Beautiful Card with Soft Shadow */
.product-image-wrapper {
    text-align: center;
    margin-bottom: 2.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.product-image-wrapper:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 35px rgba(0, 0, 0, 0.12);
}

/* Product Image - Smaller with Smooth Hover */
.product-image-wrapper img {
    width: 80%;
    max-width: 300px;
    height: auto;
    border-radius: 14px;
    filter: drop-shadow(0 8px 12px rgba(0, 0, 0, 0.06));
    transition: transform 0.3s ease, filter 0.3s ease;
}

.product-image-wrapper img:hover {
    transform: scale(1.03);
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.1));
}

/* Section Headings - Bold and Elegant */
.product-info h2,
.nutritional-info h2,
.ordering-info h2,
.ordering-info h3 {
    margin-top: 2rem;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 0.75rem 1rem;
    background: linear-gradient(120deg, rgba(167, 201, 87, 0.1), rgba(255, 255, 255, 0.4));
    border-left: 5px solid var(--secondary-color);
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.04);
    transition: background 0.3s ease;
}

.product-info h2:hover,
.nutritional-info h2:hover,
.ordering-info h2:hover,
.ordering-info h3:hover {
    background: linear-gradient(120deg, rgba(167, 201, 87, 0.2), rgba(255, 255, 255, 0.6));
}

.ordering-info h3 {
    margin-top: 2rem;
    margin-bottom: 1.5rem;
}

/* Nutritional Grid */
.nutri-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1rem;
}

.nutri-item {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-color);
}

.nutri-item span:first-child {
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.nutri-item span:last-child {
    color: var(--light-text);
}

/* Order Options */
.order-options {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.option-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem;
    background-color: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.option-icon {
    background-color: #fef3ec;
    color: var(--primary-color);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.option-icon svg {
    width: 24px;
    height: 24px;
}

.option-text h4 {
    margin-bottom: 0.2rem;
}
.option-text p {
    margin-bottom: 0;
    font-size: 0.9rem;
}

.cta-bottom {
    margin-top: 2.5rem;
    display: block;
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
}

/* --- FOOTER --- */
.site-footer {
    background-color: var(--background-white);
    color: #f0f0f0;
    padding: 30px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    border-top: 1px solid #fff;
}

.footer-wrapper {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-link svg {
    width: 28px;
    height: 28px;
    fill: #ddd;
    transition: fill 0.3s ease;
    cursor: pointer;
}

.social-link:hover svg,
.social-link:focus svg {
    fill: #1da1f2;
    outline: none;
}

.social-link[aria-label="Facebook"]:hover svg {
    fill: #1877F2;
}

.social-link[aria-label="Instagram"]:hover svg {
    fill: #E4405F;
}

.social-link:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.site-footer p {
    margin: 0;
    font-weight: 500;
    letter-spacing: 0.03em;
}
/* Realistic & Professional Footer Styling */
.site-footer {
    background-color: var(--background-white);
    color: #f0f0f0;            /* Soft off-white for readability */
    padding: 30px 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    /*--border-top: 1px solid #444;  --*/
}

/* Inner Container */
.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Text */
.site-footer p {
    margin: 0;
    font-size: 15px;
    color: #888; /* Softer gray for less visual strain */
    letter-spacing: 0.3px;
}

.footer-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-nav a {
    color: var(--dark-text);
    font-weight: 500;
    transition: color 0.2s ease;
}

.footer-nav a:hover {
    color: var(--primary-color);
}

.footer {
    background-color: #f8f8f8;
    text-align: center;
    padding: 2.5rem 1rem;
    font-size: 0.9rem;
    color: var(--light-text);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-text);
    display: block;
    margin-bottom: 1.5rem;
}

/* --- RESPONSIVE --- */
@media (max-width: 991px) {
    .nutri-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}
