/* latin-ext */
@font-face {
    font-family: 'Courgette';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/courgette/v19/wEO_EBrAnc9BLjLQAUk1WPoK_kgXiYvO.woff2) format('woff2');
    unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

/* latin */
@font-face {
    font-family: 'Courgette';
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url(https://fonts.gstatic.com/s/courgette/v19/wEO_EBrAnc9BLjLQAUk1VvoK_kgXiQ.woff2) format('woff2');
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --primary: #0b6b3a;
    --primary-dark: #084a2a;
    --accent: #ffc107;
    --accent-warm: #ff9800;
    --success: #4caf50;
    --light-bg: #fffdf8;
    --text: #223;
    --text-light: #666;
}

* {
    box-sizing: border-box
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: var(--light-bg);
    color: var(--text);
    margin: 0;
    line-height: 1.6;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 1rem
}

/* Header */
.site-header {
    background: #fff;
    border-bottom: 2px solid var(--accent);
    padding: 0.75rem 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.logo-link img {
    transition: transform 0.3s ease;
}

.logo-link img:hover {
    transform: scale(1.05);
}

.site-header .nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.site-header a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
}

.site-header a:hover {
    color: var(--primary);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #ffd54f 0%, #ffb300 50%, #ff9800 100%);
    padding: 3rem 1rem;
    text-align: center;
    border-radius: 12px;
    margin: 1.5rem 0;
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.2);
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin: 0 0 0.75rem;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem auto;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    display: block;
}

.lead {
    color: rgba(255, 255, 255, 0.95);
    max-width: 50ch;
    margin: 0.75rem auto;
    font-size: 1.1rem;
    font-weight: 300;
}

.cta {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Trust Indicators */
.trust {
    background: linear-gradient(90deg, rgba(11, 107, 58, 0.05) 0%, rgba(255, 193, 7, 0.05) 100%);
    padding: 2rem 1rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.trust-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.trust-list li {
    background: linear-gradient(135deg, #fff 0%, #f5f5f5 100%);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.trust-list li:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* Featured & Grid Sections */
.featured {
    padding: 2rem 0;
}

.featured h2,
.highlights h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.featured h2:after,
.highlights h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-warm));
    border-radius: 2px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.product-card {
    background: #fff;
    border: none;
    padding: 1.25rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.product-card h3 {
    color: var(--primary);
    margin-top: 0.75rem;
    font-size: 1.1rem;
}

.product-card p {
    margin: 0.5rem 0;
}

.product-card p:last-of-type {
    margin-top: auto;
}

.product-img {
    height: 300px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 0.75rem;
    /* background: linear-gradient(135deg, #ffd54f, #ffb300); */
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.more {
    text-align: center;
    margin-top: 1.5rem;
}

.more a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.more a:hover {
    color: var(--accent-warm);
}

/* Highlights Section */
.highlights {
    background: linear-gradient(135deg, #e8f5e9 0%, #fff9c4 100%);
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
}

.highlights p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.highlights a {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.highlights a:hover {
    color: var(--accent-warm);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
    text-decoration: none;
    font-weight: 600;
    color: inherit;
    background: #f5f5f5;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.btn.primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    border-color: var(--primary);
}

.btn.primary:hover {
    box-shadow: 0 6px 16px rgba(11, 107, 58, 0.3);
}

/* Certifications */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.cert-grid figure {
    background: linear-gradient(135deg, #fff 0%, #fafafa 100%);
    padding: 1.5rem;
    border: 2px solid var(--accent);
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    margin: 0;
}

.cert-grid figure:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(255, 193, 7, 0.2);
}

.cert-grid img {
    max-width: 100%;
    height: 120px;
    object-fit: contain;
    margin-bottom: 0.75rem;
}

.cert-grid figcaption {
    font-weight: 600;
    color: var(--primary);
    font-size: 0.95rem;
}

/* About/Map Figures */
.about-figure,
.map-figure {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.map-figure a {
    text-decoration: none;
}

.about-figure img,
.map-figure img {
    width: 100%;
    border-radius: 12px;
    margin-bottom: 0;
    display: block;
}

.about-figure figcaption,
.map-figure figcaption {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    padding: 0.75rem;
    text-align: center;
    font-weight: 600;
    border-radius: 0 0 12px 12px;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    margin-top: 3rem;
    font-size: 0.95rem;
}

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

footer a:hover {
    text-decoration: underline;
}

/* WhatsApp floating button */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #25D366, #1ba647);
    color: #fff;
    border-radius: 999px;
    padding: 14px 18px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
    z-index: 999;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 28px rgba(37, 211, 102, 0.5);
}

/* Responsive */
@media (min-width: 700px) {
    .hero h1 {
        font-size: 2.8rem
    }

    .featured h2,
    .highlights h2 {
        font-size: 2.2rem;
    }

    .cta {
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .hero {
        padding: 2rem 0.75rem;
    }

    .hero h1 {
        font-size: 1.6rem;
    }

    .lead {
        font-size: 1rem;
    }

    .trust-list {
        gap: 0.75rem;
    }

    .trust-list li {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }

    .grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }

    .cta {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }
}


.logo {
    /* font-family: Courgette, cursive;
    font-size: 50px;
    font-weight: bolder;
    padding-right: 30px;
    color: red !important */
    font-family: Courgette, cursive;
        font-size: 50px;
        font-weight: bolder;
        padding-right: 30px;
        color: red !important;
}