/* :root {
    --color-bg-main: #fff7f3;
    --color-bg-header: #fff9ec;
    --color-bg-spotlight: #fff9ec;
    --color-bg-intro: #eaf5ff;
    --color-bg-highlight: #fff6d6;
    --color-bg-products: #fff9ec;
    --color-btn: #f78c8c;
    --color-btn-hover: #e96f6f;
    --color-text-main: #4b2c20;
    --color-text-footer: #666;
} */
:root {
    --color-bg-main: white;
    --color-bg-header: white;
    --color-bg-spotlight: white;
    --color-bg-intro: white;
    --color-bg-highlight: #dcf7f4;
    --color-bg-products: #adede6;
    --color-btn: #a1d6d0;
    --color-btn-hover: #88b5b0;
    --color-text-main: #0b302c;
    --color-btn-order: #f78c8c;
    --color-text-footer: #666;
}

body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    line-height: 1.6;
}

header {
    background-color: var(--color-bg-header);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

header .logo {
    font-weight: bold;
    font-size: 1.2rem;
    text-align: center;
}

header .logo img {
    width: auto;
    max-width: 6rem;
    height: auto;
    max-height: 6rem;
}

nav {
    display: flex;
    flex-wrap: wrap;
}

nav a {
    margin: 0.5rem 1rem;
    text-decoration: none;
    color: var(--color-text-main);
    font-weight: 500;
}

.spotlight {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 3rem 2rem;
    background-color: var(--color-bg-spotlight);
    flex-wrap: wrap;
    gap: 2rem;
}

.spotlight-text {
    flex: 1;
    min-width: 280px;
}

.spotlight-text h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.spotlight img {
    width: auto;
    max-width: 40%;
    border-radius: 10px;
    /* flex: 1; */
    height: auto;
    /* max-height: 300rem; */
    object-fit: contain;
}

.spotlight #order-now {
    background-color: var(--color-btn-order);
}

.btn,.nav-btn {
    background-color: var(--color-btn);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 18px;
    color: var(--color-text-main);
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
}

/* .nav-btn {
    border: solid 0.1rem;
    padding: 0.4rem 1rem;
    border-radius: 18px;
    color: var(--color-text-main);
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.3s;
} */

.btn:hover,.nav-btn:hover {
    background-color: var(--color-btn-hover);
}


.features {
    display: flex;
    gap: 1.5rem;
    margin-top: 1rem;
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.intro {
    background-color: var(--color-bg-intro);
    margin: 2rem;
    padding: 2rem;
    border-radius: 12px;
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.intro img {
    width: 200px;
    max-width: 100%;
    border-radius: 8px;
}

.intro-text {
    flex: 1;
    min-width: 260px;
}

.intro-text h2 {
    margin-top: 0;
}

.highlight {
    background-color: var(--color-bg-highlight);
    padding: 1rem;
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.products {
    padding: 2rem;
    background-color: var(--color-bg-products);
    border-radius: 12px;
    margin: 2rem;
}

.products h2 {
    margin-bottom: 1rem;
}

.product-list {
    display: flex;
    gap: 1.5rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

.product {
    flex: 1 1 250px;
    background: white;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.product img {
    width: 100%;
    max-height: 150px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

footer {
    text-align: center;
    padding: 2rem;
    font-size: 0.9rem;
    color: var(--color-text-footer);
}

.btn-small {
    margin-top: 0.5rem;
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
}

    /* 📱 Mobile responsive tweaks */
@media (max-width: 768px) {
    .spotlight {
    flex-direction: column;
    text-align: center;
    }

    .spotlight-text {
    max-width: 100%;
    }

    .spotlight img {
    width: auto;
    max-width: 90%;

    .features {
    justify-content: center;
    }

    .intro {
    flex-direction: column;
    text-align: center;
    }

    .intro img {
    margin-bottom: 1rem;
    }

    .products {
    margin: 1rem;
    padding: 1rem;
    }

    .product-list {
    flex-direction: column;
    }
}