/* --- Global Settings & Variables --- */
:root {
    --primary-color: #87CEEB; /* Sky Blue */
    --secondary-color: #FFD700; /* Sunny Yellow */
    --accent-color: #FF7F50; /* Soft Coral */
    --text-color: #2F4F4F; /* Dark Slate */
    --bg-color: #FAF9F6; /* Off-White */
    --font-heading: 'Nunito', sans-serif;
    --font-body: 'Lato', sans-serif;
}

/* --- Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--bg-color);
    line-height: 1.6;
}

/* --- Utility Classes --- */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

/* --- Header & Navigation --- */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 50px;
    display: block;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 700;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* --- Hero Section --- */
.hero {
    background: var(--primary-color) url('https://unsplash.it/1200/400?image=5') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 6rem 0;
}
.hero h1 {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 900;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-button {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1.5rem;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* --- General Sections --- */
section {
    padding: 4rem 0;
}

h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

/* --- Featured Products --- */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}
.product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}
.product-card h3, .product-card p {
    padding: 0 1rem;
}
.product-card h3 {
    font-family: var(--font-heading);
    margin: 1rem 0 0.5rem;
}
.product-card p {
    padding-bottom: 1.5rem;
}

.secondary-button {
    display: inline-block;
    background-color: transparent;
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s, color 0.3s;
}
.secondary-button:hover {
    background-color: var(--accent-color);
    color: white;
}

/* --- About Short Section --- */
.about-short {
    background-color: #fff;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}
.features-grid h4 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* --- Footer --- */
footer {
    background-color: var(--text-color);
    color: #fff;
    padding: 3rem 0 1rem;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}
footer h4 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: 1rem;
}
footer ul {
    list-style: none;
}
footer a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
footer a:hover {
    color: var(--secondary-color);
}
.copyright {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 1rem;
    font-size: 0.9rem;
}

/* --- Cookie Consent Banner --- */
#cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    color: white;
    padding: 1rem;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    z-index: 2000;
}
#cookie-consent a {
    color: var(--secondary-color);
}
#cookie-accept {
    background-color: var(--primary-color);
    border: none;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 5px;
    cursor: pointer;
}

/* --- Responsive Design --- */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 71px; /* header height */
        left: 0;
        width: 100%;
        background-color: #fff;
        padding: 1rem 0;
        text-align: center;
        box-shadow: 0 4px 5px rgba(0,0,0,0.1);
    }
    .nav-links.active {
        display: flex;
    }
    .mobile-menu-button {
        display: block;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    #cookie-consent {
        flex-direction: column;
    }
}