/* Custom Properties & Reset (Done via classes to avoid * selector) */
.html-document {
    scroll-behavior: smooth;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.body-element {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    color: #024950;
}

/* Color Palette Classes */
.dark-green-bg { background-color: #024950; }
.dark-green-text { color: #024950; }
.copper-bg { background-color: #964734; }
.copper-text { color: #964734; }
.teal-blue-bg { background-color: #0FA4AF; }
.bright-turquoise-text { color: #0FA4AF; }
.light-blue-bg { background-color: #AFDDE5; }

/* Animated Background for the Body */
.animated-bg {
    background: linear-gradient(120deg, #F0F8FF, #AFDDE5, #E0F7FA);
    background-size: 200% 200%;
    animation: gradientShift 10s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #AFDDE5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}
.loader-spinner {
    width: 60px;
    height: 60px;
    border: 6px solid #024950;
    border-top: 6px solid #964734;
    border-radius: 50%;
    animation: spinRotate 1s linear infinite;
}
.loader-brand-text {
    margin-top: 20px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #024950;
}
@keyframes spinRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Advertisement Top Bar */
.advertisement-bar {
    background-color: #E8E8E8;
    text-align: center;
    padding: 8px 15px;
}
.advertisement-text {
    font-size: 0.85rem;
    color: #333;
    font-weight: 500;
}

/* Header */
.main-header {
    padding: 15px 5%;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(2, 73, 80, 0.2);
}
.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.brand-logo-text {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1.5px;
    display: inline-block;
}
.text-animated {
    animation: pulseText 3s infinite alternate;
}
@keyframes pulseText {
    0% { transform: scale(1); text-shadow: 0 0 5px rgba(255,255,255,0.5); }
    100% { transform: scale(1.03); text-shadow: 0 0 15px rgba(255,255,255,0.9); }
}

/* Navigation List */
.navigation-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    gap: 25px;
}
.navigation-link {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    transition: color 0.3s ease;
}
.navigation-link:hover {
    color: #024950;
}
.button-shop-now {
    color: #FFFFFF;
    padding: 10px 25px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: background-color 0.3s, transform 0.2s;
    display: inline-block;
    box-shadow: 0 4px 10px rgba(150, 71, 52, 0.4);
}
.button-shop-now:hover {
    background-color: #7A3828;
    transform: translateY(-2px);
}

/* Mobile Hamburger Buttons */
.hamburger-button, .close-button {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.hamburger-icon-text, .close-icon-text {
    color: #FFFFFF;
    font-size: 2.2rem;
}

/* Hero Section */
.hero-section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 80px 5%;
    min-height: 75vh;
}
.hero-content-box {
    flex: 1;
    padding-right: 40px;
}
.hero-main-title {
    font-size: 4.5rem;
    margin: 0 0 20px 0;
    line-height: 1.1;
}
.hero-subtitle {
    font-size: 1.4rem;
    margin: 0 0 40px 0;
    line-height: 1.5;
}
.button-primary {
    color: #FFFFFF;
    padding: 18px 35px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
}
.button-primary:hover {
    background-color: #7A3828;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(150, 71, 52, 0.3);
}
.hero-image-box {
    flex: 1;
    display: flex;
    justify-content: center;
}
.hero-product-image {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(2, 73, 80, 0.2);
}
.product-float-animation {
    animation: floatImage 4s ease-in-out infinite;
}
@keyframes floatImage {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Generic Sections */
.content-section {
    padding: 80px 5%;
    text-align: center;
}
.section-title {
    font-size: 2.8rem;
    margin: 0 0 30px 0;
}
.section-paragraph {
    font-size: 1.2rem;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Grid Layouts for Features & Reviews */
.features-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 40px;
}
.feature-card, .review-card {
    background-color: rgba(255, 255, 255, 0.8);
    padding: 40px 30px;
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    backdrop-filter: blur(10px);
}
.feature-card:hover, .review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(2, 73, 80, 0.15);
}
.feature-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}
.feature-card-title {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
}
.feature-card-desc, .review-comment {
    margin: 0;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* Review Specific */
.review-avatar {
    width: 70px;
    height: 70px;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin: 0 auto 20px auto;
}
.review-author {
    display: block;
    margin-top: 20px;
    font-weight: bold;
    font-size: 1.1rem;
}

/* FAQs */
.faq-container {
    max-width: 900px;
    margin: 40px auto 0 auto;
    text-align: left;
}
.faq-box {
    background-color: #FFFFFF;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 6px solid #0FA4AF;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.2s;
}
.faq-box:hover {
    transform: scale(1.01);
}
.faq-question {
    margin: 0 0 15px 0;
    font-size: 1.3rem;
}
.faq-answer {
    margin: 0;
    line-height: 1.6;
}

/* Footer */
.main-footer {
    padding: 60px 5% 30px 5%;
}
.footer-layout {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}
.footer-column {
    flex: 1;
    min-width: 260px;
}
.footer-heading {
    margin: 0 0 25px 0;
    font-size: 1.4rem;
}
.footer-text {
    margin: 0 0 12px 0;
    color: #E0E0E0;
    font-size: 1rem;
}
.footer-link {
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-link:hover { color: #AFDDE5; }
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-list-item { margin-bottom: 12px; }
.footer-button-link {
    background: none;
    border: none;
    color: #E0E0E0;
    text-decoration: underline;
    cursor: pointer;
    font-size: 1rem;
    padding: 0;
    margin-bottom: 15px;
    transition: color 0.3s;
}
.footer-button-link:hover { color: #AFDDE5; }

.footer-bottom-area {
    text-align: center;
    padding-top: 25px;
}
.border-top-teal { border-top: 1px solid #0FA4AF; }
.footer-disclaimer-text {
    font-size: 0.85rem;
    color: #AFDDE5;
    margin: 0 0 15px 0;
    font-weight: 500;
}
.footer-copyright-text {
    margin: 0;
    color: #B0B0B0;
}

/* Modals */
.modal-background {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(2, 73, 80, 0.85);
    justify-content: center;
    align-items: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}
.modal-inner-box {
    background-color: #FFFFFF;
    padding: 40px;
    border-radius: 12px;
    max-width: 600px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.modal-close-btn {
    position: absolute;
    top: 15px; right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #024950;
}
.modal-title { margin: 0 0 25px 0; font-size: 2rem; }
.modal-paragraph { margin: 0 0 15px 0; color: #333; line-height: 1.6; }

/* Cookie Consent */
.cookie-container {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    padding: 25px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1500;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
}
.cookie-message-text { margin: 0; flex: 1; padding-right: 30px; font-weight: 500; }
.cookie-actions { display: flex; gap: 15px; }
.cookie-btn-primary {
    color: #FFF;
    border: none;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s;
}
.cookie-btn-primary:hover { background-color: #7A3828; }
.cookie-btn-secondary {
    background-color: transparent;
    color: #0FA4AF;
    border: 2px solid #0FA4AF;
    padding: 12px 25px;
    cursor: pointer;
    border-radius: 5px;
    font-weight: bold;
    transition: all 0.3s;
}
.cookie-btn-secondary:hover {
    background-color: #0FA4AF;
    color: #024950;
}

/* Responsive Media Queries (Mobile & Hamburger 75%) */
@media (max-width: 900px) {
    .hamburger-button { display: block; }
    .close-button { display: block; align-self: flex-end; margin: 20px 20px 0 0; }
    
    .navigation-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%; /* Requested 75% width */
        height: 100vh;
        flex-direction: column;
        transition: right 0.4s ease-in-out;
        z-index: 1100;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .dark-green-bg-mobile { background-color: #024950; }
    .navigation-menu.menu-active { right: 0; }
    
    .navigation-list {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px;
        width: 100%;
        box-sizing: border-box; /* Safe use on specific element */
    }
    .navigation-item { margin-bottom: 25px; width: 100%; }
    
    .hero-section {
        flex-direction: column;
        text-align: center;
        padding-top: 50px;
    }
    .hero-content-box { padding-right: 0; margin-bottom: 50px; }
    .hero-main-title { font-size: 3rem; }
    
    .cookie-container {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    .cookie-message-text { padding-right: 0; }
}