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

:root {
    --stova-orange: #FF6B35;
    --dark-gray: #2D3142;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--dark-gray);
    line-height: 1.6;
}

header {
    padding: 1.5rem 2rem;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--stova-orange);
    letter-spacing: 2px;
}

main {
    max-width: 1200px;
    margin: 0 auto;
}

.hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 4rem 2rem;
    min-height: 80vh;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1rem;
    color: var(--dark-gray);
}

.tagline {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.made-in-aus {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 2rem;
}

.aus-logo {
    height: 30px;
    width: auto;
}

.cta-button {
    background: var(--stova-orange);
    color: var(--white);
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 107, 53, 0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.products {
    padding: 5rem 2rem;
    background: var(--light-gray);
}

.products h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    align-items: start;
}

.product-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.product-card.featured {
    border: 3px solid var(--stova-orange);
}

.product-badge {
    display: inline-block;
    background: var(--dark-gray);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.product-badge.popular {
    background: var(--stova-orange);
}

.request-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.request-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem 0;
}

.request-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.request-text {
    color: #666;
    margin: 1rem 0 2rem 0;
    line-height: 1.6;
}

.cta-button.secondary {
    background: var(--white);
    color: var(--stova-orange);
    border: 2px solid var(--stova-orange);
}

.cta-button.secondary:hover {
    background: var(--stova-orange);
    color: var(--white);
}

.product-image {
    margin: -2.5rem -2.5rem 1.5rem -2.5rem;
    height: 400px;
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.carousel-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s;
    color: var(--dark-gray);
    z-index: 10;
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.carousel-btn svg {
    display: block;
}

.product-image:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: var(--stova-orange);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-image:hover .carousel-dots {
    opacity: 1;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0,0,0,0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--stova-orange);
    width: 24px;
    border-radius: 4px;
}

.product-card h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.product-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--stova-orange);
    margin-bottom: 1.5rem;
}

.features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
    padding-left: 1rem;
}

.features li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.features li:before {
    content: "✓";
    color: var(--stova-orange);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.safety-notice {
    padding: 3rem 2rem;
    background: var(--light-grey);
}

.safety-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid var(--stova-orange);
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.safety-content h3 {
    color: var(--dark-navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.safety-content p {
    color: var(--dark-navy);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.reviews {
    padding: 5rem 2rem;
    background: var(--white);
}

.reviews h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
}

.reviews-grid {
    display: flex;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.review-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    border: 1px solid #e0e0e0;
    border-left: 5px solid var(--stova-orange);
    max-width: 600px;
}

.stars {
    color: var(--stova-orange);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-style: italic;
}

.review-author {
    font-size: 0.9rem;
    font-weight: 600;
    color: #666;
}

footer {
    background: var(--dark-gray);
    color: var(--white);
    text-align: center;
    padding: 2.5rem 2rem;
}

.footer-email {
    color: var(--white);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.footer-email:hover {
    color: var(--stova-orange);
}

.footer-copyright {
    margin-top: 0.75rem;
    font-size: 0.95rem;
    opacity: 0.9;
}

.footer-privacy {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-privacy:hover {
    color: var(--stova-orange);
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    color: var(--dark-navy);
    padding: 1.5rem;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.1);
    border-top: 1px solid #e0e0e0;
    z-index: 1000;
    display: none;
    backdrop-filter: blur(10px);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.cookie-privacy-link {
    color: var(--stova-orange);
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-privacy-link:hover {
    color: #ff5722;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-decline {
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--stova-orange);
    color: var(--white);
}

.cookie-accept:hover {
    background: #ff5722;
    transform: translateY(-2px);
}

.cookie-decline {
    background: transparent;
    color: var(--dark-navy);
    border: 2px solid #e0e0e0;
}

.cookie-decline:hover {
    border-color: var(--dark-navy);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .price {
        font-size: 2.5rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .carousel-btn {
        opacity: 1;
    }

    .carousel-dots {
        opacity: 1;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .cookie-content p {
        font-size: 0.9rem;
    }

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-decline {
        width: 100%;
    }
}

/* Privacy Page Styles */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.privacy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.privacy-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.privacy-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--dark-navy);
}

.privacy-content p,
.privacy-content li {
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.privacy-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
    list-style: none;
}

.privacy-content li:before {
    content: "| ";
    color: var(--stova-orange);
    font-weight: bold;
    margin-right: 0.5rem;
}

.privacy-content a {
    color: var(--stova-orange);
    text-decoration: underline;
}

.privacy-content a:hover {
    color: #ff5722;
}

.last-updated {
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

header .logo {
    text-decoration: none;
}
