:root {
    --primary-color: rgb(94, 213, 212); /* New Brand Teal */
    --secondary-color: #F5F5DC; /* Sand Beige - kept for reference, but not prominent */
    --text-color: #333;
    --dark-color: #000;
    --background-color: #fff;
    --light-grey: #f4f4f4;
    --medium-grey: #6c757d;
    --font-family: 'Montserrat', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-family);
    color: var(--text-color);
    background-color: var(--background-color);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
}

ul {
    list-style: none;
}

h1, h2, h3 {
    line-height: 1.2;
    font-weight: 600;
}

h1 { font-size: 3rem; margin-bottom: 1rem; }
h2 { font-size: 2.5rem; margin-bottom: 1rem; }
h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 700;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--dark-color);
    border: 2px solid var(--dark-color);
}
.btn-primary:hover {
    background-color: white;
    color: var(--dark-color);
}

.btn-secondary {
    background-color: var(--medium-grey);
    color: white;
}
.btn-secondary:hover {
    background-color: #5a6268;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--background-color);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease;
}
.loader {
    border: 4px solid var(--light-grey);
    border-top: 4px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Header */
#main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}
#main-header.scrolled {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    background-color: rgba(255, 255, 255, 0.95);
}
#main-header nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo { max-height: 40px; }
.nav-menu { display: flex; gap: 2rem; }
.nav-link {
    font-weight: 600;
    color: var(--text-color);
    position: relative;
    padding-bottom: 5px;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.header-right { display: flex; align-items: center; }
.cart-button {
    position: relative;
    background: none;
    border: none;
    cursor: pointer;
}
.cart-button img { height: 28px; }
#cart-count {
    position: absolute;
    top: -5px;
    right: -10px;
    background-color: var(--primary-color);
    color: var(--dark-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.75rem;
    font-weight: bold;
}
.mobile-menu-toggle { display: none; }

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: url('/hero-poster.png') no-repeat center center/cover;
    position: relative;
}
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
}
.hero-content { z-index: 1; }
.hero-content h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); font-weight: 700; }
.hero-content p { font-size: 1.25rem; max-width: 600px; margin: 0 auto 2rem; }
.animate-hero {
    opacity: 0;
    transform: translateY(20px);
}

/* Notify Page Hero Section */
.notify-hero-section {
    min-height: calc(100vh - 80px); /* 80px is an approximation of footer height */
    padding: 6rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: url('/notify-bg.png') no-repeat center center/cover;
    position: relative;
}

.notify-hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.notify-content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 600px;
    width: 90%;
}

.notify-content-wrapper .section-title,
.notify-content-wrapper .section-subtitle {
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.notify-content-wrapper .contact-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.notify-content-wrapper .contact-form input {
    background: rgba(255, 255, 255, 0.9);
    color: var(--text-color);
    border-color: transparent;
}

.notify-content-wrapper .contact-form input::placeholder {
    color: var(--medium-grey);
}

/* Product Section */
.product-section {
    padding: 6rem 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.product-image-gallery img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.product-price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin: 1rem 0;
}
.product-details > p { margin-bottom: 1.5rem; }
.product-accordion { margin-top: 2rem; border-top: 1px solid #eee; }
.accordion-item { border-bottom: 1px solid #eee; }
.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.accordion-header::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 400;
    transition: transform 0.3s ease;
}
.accordion-item.active .accordion-header::after {
    transform: rotate(45deg);
}
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.accordion-content p { padding: 0 0 1.5rem 0; }

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background-color: var(--light-grey);
}
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    text-align: center;
}
.benefit-item img {
    height: 60px;
    margin-bottom: 1rem;
}

/* Testimonial Section */
.testimonial-section {
    padding: 8rem 0;
    background: url('/testimonial-bg.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    position: relative;
}
.testimonial-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}
.testimonial-content { position: relative; z-index: 1; }
.testimonial-content blockquote {
    font-size: 1.75rem;
    font-style: italic;
    font-weight: 600;
    max-width: 800px;
    margin: 0 auto 1rem;
}
.testimonial-content cite {
    font-style: normal;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Contact Section */
.contact-section { padding: 6rem 0; }
.section-subtitle { text-align: center; max-width: 600px; margin: -2.5rem auto 3rem; }
.contact-form {
    max-width: 600px;
    margin: 0 auto;
}
.form-group { margin-bottom: 1.5rem; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: var(--font-family);
    font-size: 1rem;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
    color: var(--medium-grey);
}
.contact-form button { width: 100%; }
#form-status { text-align: center; margin-top: 1rem; font-weight: 600; }

/* Footer */
#main-footer-bottom {
    background-color: #1a1a1a;
    color: #ccc;
    padding-top: 4rem;
}
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}
.footer-column h3 { font-size: 1.1rem; margin-bottom: 1rem; color: white; }
.footer-column p, .footer-column li { font-size: 0.9rem; margin-bottom: 0.5rem; }
.footer-column a { color: #ccc; transition: color 0.3s ease; }
.footer-column a:hover { color: white; }
.footer-logo { max-height: 40px; margin-bottom: 1rem; filter: brightness(0) invert(1); }
.social-icons a { margin-right: 1rem; }
.social-icons img { height: 24px; filter: grayscale(1); transition: filter 0.3s ease; }
.social-icons img:hover { filter: grayscale(0); }
.footer-bottom-bar {
    border-top: 1px solid #333;
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.8rem;
}

/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: -100%;
    left: 0;
    width: 100%;
    background-color: #262626;
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 2000;
    transition: bottom 0.5s ease;
}
#cookie-banner.show {
    bottom: 0;
}
#cookie-banner a { color: var(--secondary-color); text-decoration: underline; }

/* Cart Sidebar */
#page-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
#page-overlay.active { opacity: 1; visibility: visible; }
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: white;
    z-index: 1700;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
    display: flex;
    flex-direction: column;
}
.cart-sidebar.active { right: 0; }
.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--light-grey);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-header h3 { font-size: 1.25rem; margin: 0; }
#close-cart {
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
}
.cart-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 1.5rem;
}
.cart-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: center;
}
.cart-item img { width: 80px; height: 80px; object-fit: cover; border-radius: 5px; }
.cart-item-info { flex-grow: 1; }
.cart-item-info h4 { font-size: 1rem; margin-bottom: 0.25rem; }
.cart-item-price { color: var(--medium-grey); }
.cart-item-actions { display: flex; align-items: center; gap: 0.5rem; margin-top: 0.5rem; }
.cart-item-actions input { width: 40px; text-align: center; border: 1px solid #ddd; padding: 0.25rem; }
.remove-item { background: none; border: none; color: var(--text-color); cursor: pointer; text-decoration: underline; font-size: 0.8rem; }
.cart-footer { padding: 1.5rem; border-top: 1px solid var(--light-grey); }
.cart-total { display: flex; justify-content: space-between; font-weight: bold; font-size: 1.2rem; margin-bottom: 1rem; }
#checkout-btn { width: 100%; margin-bottom: 1rem; }
#checkout-btn:disabled { 
    background-color: var(--medium-grey);
    color: white;
    border-color: transparent;
    cursor: not-allowed; 
}

/* Static/Legal Page Styles */
.static-page-container {
    padding-top: 120px;
    padding-bottom: 6rem;
}

.legal-content {
    max-width: 800px;
}

.legal-content h1 {
    margin-bottom: 2rem;
    font-size: 2.8rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--light-grey);
    padding-bottom: 0.5rem;
}

.legal-content p, .legal-content li {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-content ul {
    list-style: disc;
    padding-left: 20px;
}

.legal-content a {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .product-section { 
        grid-template-columns: 1fr; 
        gap: 3rem; 
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    .section-title { margin-bottom: 2rem; }

    .product-section, .benefits-section, .contact-section { padding: 4rem 0; }
    .testimonial-section { padding: 5rem 0; }
    .static-page-container { padding-top: 100px; padding-bottom: 4rem; }

    .hero-content p { font-size: 1.1rem; }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--background-color);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2.5rem;
        transition: right 0.4s cubic-bezier(0.77, 0, 0.175, 1);
        z-index: 1001;
    }
    .nav-menu.active {
        right: 0;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    
    .nav-link { font-size: 1.2rem; }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        background: none;
        border: none;
        z-index: 1002;
    }
    .mobile-menu-toggle span {
        display: block;
        width: 25px;
        height: 3px;
        background: var(--text-color);
        transition: all 0.3s ease;
    }
    .mobile-menu-toggle.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-toggle.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
    
    .benefits-grid { grid-template-columns: 1fr; }
    
    .footer-container { text-align: center; }
    .social-icons { justify-content: center; }

    .cart-sidebar {
        width: 90%;
        max-width: 380px;
    }
}