/* ==================================================================
   SHARED COMMON STYLES (Header, Footer, and Variables)
   ================================================================== */

:root {
    --primary-green: #2d8a3e;
    --dark-green: #203a26;
    --dark-text: #1a1a1a;
    --body-text: #2a2a2a;
    --light-gray: #f8f9fa;
    --border-color: #e9ecef;
    --star-color: #ffc107;
    --discount-red: #e74c3c;
    --discount-orange: #ff6b35;
    --font-main: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-serif: 'Merriweather', Georgia, serif;
}

/* --- HEADER --- */
.site-header {
    background: var(--primary-green);
    /* border-bottom: 1px solid #e5e5e5; */
    padding: 11px 0;
    /* position: sticky; */
    top: 0;
    z-index: 100;
}

.container-header {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-inner {
    display: flex;
    justify-content: flex-start;
    align-items: center;
}

.logo {
    max-height: 44px;
    width: auto;
}

@media (max-width: 768px) {
    .logo {
        width: 65%;
        max-height: none;
        height: auto;
    }
}

/* --- FOOTER --- */
.site-footer {
    background: #1a1a1a;
    color: #cccccc;
    padding: 40px 0 30px;
    margin-top: 40px;
    text-align: center;
}

.footer-inner {
    text-align: center;
}

.footer-logo {
    max-height: 44px;
    margin: 0 auto 20px;
    filter: brightness(0) invert(1);
}

.footer-text {
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto 20px;
    color: #bbbbbb;
    line-height: 1.6;
}

.footer-contact {
    font-size: 14px;
    margin-bottom: 24px;
    color: #bbbbbb;
}

.footer-contact a {
    color: #13a15e;
}

.footer-links {
    border-top: 1px solid #333;
    padding-top: 20px;
    font-size: 14px;
}

.footer-links p {
    margin-bottom: 10px;
    color: #eeeeee;
}

.footer-links a {
    color: #bbbbbb;
    margin: 0 10px;
    text-decoration: none;
}

.footer-links a:hover {
    color: #ffffff;
    text-decoration: underline;
}


@media (min-width: 640px) {
    .site-header {
        background: var(--dark-green);
        /* border-bottom: 1px solid #e5e5e5; */
        padding: 11px 0;
        /* position: sticky; */
        top: 0;
        z-index: 100;
    }
}



@media (min-width: 960px) {
    .site-header {
        background: var(--dark-green);
        /* border-bottom: 1px solid #e5e5e5; */
        padding: 11px 0;
        /* position: sticky; */
        top: 0;
        z-index: 100;
    }
    
}


@media (min-width: 1200px) {
    .site-header {
        background: var(--dark-green);
        /* border-bottom: 1px solid #e5e5e5; */
        padding: 11px 0;
        /* position: sticky; */
        top: 0;
        z-index: 100;
    }
}