﻿/* ===== RESET & BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green: #2e7d32;
    --green-light: #4caf50;
    --green-pale: #e8f5e9;
    --gold: #f9a825;
    --dark: #1a1a1a;
    --text: #333;
    --text-muted: #666;
    --white: #fff;
    --border: #e0e0e0;
    --radius: 12px;
    --shadow: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 32px rgba(0,0,0,0.14);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: var(--dark);
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ===== LAYOUT ===== */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 80px 0;
}

.bg-light {
    background: var(--green-pale);
}

.text-center {
    text-align: center;
}

.divider {
    width: 56px;
    height: 3px;
    background: var(--green);
    margin: 16px auto 32px;
    border-radius: 2px;
}

    .divider.left {
        margin-left: 0;
    }

.sub-text {
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 40px;
}

.lead-text {
    color: var(--text-muted);
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.9;
}

/* ===== NAVBAR ===== */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    background: var(--white);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
    height: 68px;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--green);
}

.logo-u, .logo-b {
    color: var(--green);
}

.logo-exp {
    color: var(--dark);
    font-size: 1.3rem;
}

.logo-leaf {
    font-style: normal;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .nav-links li a {
        padding: 8px 14px;
        border-radius: 6px;
        font-weight: 500;
        font-size: 0.95rem;
        color: var(--text);
        transition: var(--transition);
    }

        .nav-links li a:hover,
        .nav-links li a.active {
            color: var(--green);
            background: var(--green-pale);
        }

        .nav-links li a.active {
            border-bottom: 2px solid var(--green);
            border-radius: 0;
            background: transparent;
        }

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-hover);
    min-width: 160px;
    padding: 8px 0;
    z-index: 100;
}

    .dropdown-menu li a {
        display: block;
        padding: 10px 20px;
        font-size: 0.9rem;
        border-radius: 0;
    }

.dropdown:hover .dropdown-menu {
    display: block;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--green);
}

/* ===== HERO (HOME) ===== */
.hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1b5e20 0%, #388e3c 50%, #1b5e20 100%);
    overflow: hidden;
}

    .hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('https://images.unsplash.com/photo-1542838132-92c53300491e?w=1400&q=80') center/cover no-repeat;
        opacity: 0.35;
    }

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin: 0 auto;
    padding: 80px 24px;
    text-align: center;
    color: var(--white);
    animation: fadeUp 0.8s ease;
}

    .hero-content h1 {
        font-size: clamp(2rem, 5vw, 3.2rem);
        color: var(--white);
        margin-bottom: 16px;
        text-shadow: 0 2px 16px rgba(0,0,0,0.4);
    }

    .hero-content p {
        font-size: 1.15rem;
        margin-bottom: 32px;
        opacity: 0.9;
    }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
    position: relative;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1b5e20, #4caf50);
    overflow: hidden;
}

    .page-hero::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('https://images.unsplash.com/photo-1488459716781-31db52582fe9?w=1400&q=80') center/cover no-repeat;
        opacity: 0.25;
    }

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

    .page-hero-content h1 {
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        color: var(--white);
        margin-bottom: 8px;
    }

    .page-hero-content p {
        opacity: 0.85;
        font-size: 1.1rem;
    }

/* ===== BUTTONS ===== */
.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--green);
    color: var(--white);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 16px rgba(46,125,50,0.3);
}

    .btn-primary:hover {
        background: #1b5e20;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(46,125,50,0.4);
    }

.btn-outline {
    display: inline-block;
    padding: 13px 32px;
    border: 2px solid var(--green);
    color: var(--green);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

    .btn-outline:hover {
        background: var(--green);
        color: var(--white);
    }

.full-width {
    width: 100%;
    text-align: center;
}

/* ===== ABOUT SNIPPET ===== */
.about-snippet .logo-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.about-snippet h2 {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

/* ===== PRODUCTS (home) ===== */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin: 40px 0;
    max-width: 700px;
    margin: 40px auto;
}

.product-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .product-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }

.product-img {
    height: 220px;
    background-size: cover;
    background-position: center;
}

.fruits-bg {
    background-image: url('https://images.unsplash.com/photo-1490474418585-ba9bad8fd0ea?w=600&q=80');
}

.vegs-bg {
    background-image: url('https://images.unsplash.com/photo-1540420773420-3366772f4999?w=600&q=80');
}

.product-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(46,125,50,0.85);
    color: var(--white);
    padding: 10px 16px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

/* ===== WHY SECTION ===== */
.why-section {
    background: var(--green-pale);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.why-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-top: 3px solid var(--green);
}

    .why-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }

.why-icon {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.why-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ===== CERTIFICATIONS ===== */
.cert-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
}

.cert-badge {
    background: var(--white);
    border: 2px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    font-size: 1.8rem;
    text-align: center;
    line-height: 1.4;
    min-width: 120px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .cert-badge:hover {
        border-color: var(--green);
        transform: translateY(-3px);
    }

    .cert-badge small {
        font-size: 0.72rem;
        color: var(--text-muted);
        font-family: 'DM Sans', sans-serif;
        display: block;
        margin-top: 6px;
    }

/* Cert Cards (certificate page) */
.cert-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.cert-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 24px;
    box-shadow: var(--shadow);
    border-top: 3px solid var(--green-light);
    transition: var(--transition);
    text-align: center;
}

    .cert-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }

.cert-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.cert-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
}

.cert-card p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 16px;
}

.cert-tag {
    display: inline-block;
    background: var(--green-pale);
    color: var(--green);
    font-size: 0.78rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ===== CUSTOMERS ===== */
.customers-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.customer-logo {
    background: var(--dark);
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
    padding: 24px 40px;
    border-radius: var(--radius);
    letter-spacing: 1px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

    .customer-logo:hover {
        transform: translateY(-3px);
        box-shadow: var(--shadow-hover);
    }

    .customer-logo.cii {
        background: #003087;
    }

    .customer-logo.cyda {
        background: #e53935;
    }

/* ===== CTA BANNER ===== */
.cta-banner {
    background: linear-gradient(135deg, #1b5e20, #388e3c);
    position: relative;
    overflow: hidden;
    padding: 80px 24px;
    text-align: center;
}

    .cta-banner::before {
        content: '';
        position: absolute;
        inset: 0;
        background: url('https://images.unsplash.com/photo-1500937386664-56d1dfef3854?w=1400&q=80') center/cover;
        opacity: 0.12;
    }

    .cta-banner .container {
        position: relative;
        z-index: 2;
    }

    .cta-banner h2 {
        color: var(--white);
        font-size: 2rem;
        margin-bottom: 12px;
    }

    .cta-banner p {
        color: rgba(255,255,255,0.85);
        margin-bottom: 28px;
        font-size: 1.1rem;
    }

/* ===== ABOUT PAGE ===== */
.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.about-text h2 {
    font-size: 1.8rem;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 16px;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.stat-card {
    background: var(--green-pale);
    border-radius: var(--radius);
    padding: 28px;
    text-align: center;
    border-left: 3px solid var(--green);
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: var(--green);
    font-weight: 700;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 4px;
}

/* ===== PRODUCTS PAGE ===== */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.item-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px 24px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-bottom: 3px solid transparent;
}

    .item-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
        border-bottom-color: var(--green);
    }

.item-emoji {
    font-size: 2.8rem;
    margin-bottom: 16px;
}

.item-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.item-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===== CONTACT PAGE ===== */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 1.8rem;
}

.contact-info p {
    color: var(--text-muted);
    margin-bottom: 28px;
}

.contact-detail {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail strong {
    display: block;
    margin-bottom: 4px;
    color: var(--dark);
}

.contact-detail p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.contact-form-wrap h2 {
    font-size: 1.8rem;
}

.contact-form {
    margin-top: 8px;
}

.form-group {
    margin-bottom: 20px;
}

    .form-group label {
        display: block;
        font-weight: 500;
        margin-bottom: 6px;
        font-size: 0.9rem;
        color: var(--dark);
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 16px;
        border: 1.5px solid var(--border);
        border-radius: 8px;
        font-family: 'DM Sans', sans-serif;
        font-size: 0.95rem;
        color: var(--text);
        background: var(--white);
        transition: var(--transition);
        outline: none;
    }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--green);
            box-shadow: 0 0 0 3px rgba(76,175,80,0.12);
        }

    .form-group textarea {
        resize: vertical;
    }

.success-msg {
    display: none;
    margin-top: 16px;
    background: var(--green-pale);
    color: var(--green);
    padding: 14px 20px;
    border-radius: 8px;
    font-weight: 500;
    border: 1px solid #a5d6a7;
}

/* ===== FOOTER ===== */
.footer {
    background: #111;
    color: rgba(255,255,255,0.8);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
}

.footer-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 0.88rem;
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-col h4 {
    color: var(--white);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    margin-bottom: 16px;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

    .footer-col ul li a {
        font-size: 0.88rem;
        color: rgba(255,255,255,0.65);
        transition: var(--transition);
    }

        .footer-col ul li a:hover {
            color: var(--green-light);
        }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 24px;
    text-align: center;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

    .social-icons a {
        font-size: 1.4rem;
        transition: var(--transition);
    }

        .social-icons a:hover {
            transform: scale(1.15);
        }

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(32px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section {
    animation: fadeUp 0.6s ease both;
}

/* ===== MOBILE MENU ===== */
.mobile-open .nav-links {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .why-grid {
        grid-template-columns: 1fr;
    }

    .about-layout {
        grid-template-columns: 1fr;
    }

    .contact-layout {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 700px) {
    .navbar {
        padding: 0 20px;
    }

    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr 1fr;
    }

    .section {
        padding: 56px 0;
    }

    .navbar {
        position: sticky;
    }
}



/* ─── FOOTER ─── */
.footer {
    width: 100%;
    background: #1b3a1b;
    color: #c8e6c8;
    font-family: 'DM Sans', system-ui, sans-serif;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 52px 24px 36px;
}

/* ─── GRID ─── */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 40px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-contact-item {
        justify-content: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-badges {
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }
}

/* ─── BRAND COLUMN ─── */
.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 16px;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.footer-logo-name {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.15;
}

.footer-logo-sub {
    color: #7db87d;
    font-size: 11px;
    margin-top: 2px;
}

.footer-about {
    font-size: 13px;
    color: #7db87d;
    line-height: 1.75;
    margin: 0 0 16px;
    max-width: 260px;
}

/* ─── BADGES ─── */
.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 18px;
}

.footer-badge {
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 4px;
    padding: 3px 9px;
    font-size: 11px;
    color: #9dc89d;
    letter-spacing: 0.2px;
}

/* ─── SOCIAL BUTTONS ─── */
.footer-socials {
    display: flex;
    gap: 8px;
    margin-top: 4px;
}

.social-btn {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #c8e6c8;
    font-size: 13px;
    font-weight: 600;
    transition: background 0.18s, border-color 0.18s;
}

    .social-btn:hover {
        background: rgba(200, 150, 12, 0.3);
        border-color: #c8960c;
        color: #fff;
    }

/* ─── COLUMN HEADINGS ─── */
.footer-col-heading {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin: 0 0 16px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ─── LINK LISTS ─── */
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 9px;
    }

    .footer-links a {
        color: #9dc89d;
        text-decoration: none;
        font-size: 13.5px;
        display: flex;
        align-items: center;
        gap: 7px;
        transition: color 0.18s;
    }

        .footer-links a::before {
            content: "›";
            color: #c8960c;
            font-size: 15px;
            line-height: 1;
            flex-shrink: 0;
        }

        .footer-links a:hover {
            color: #fff;
        }

/* ─── CONTACT ITEMS ─── */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.footer-contact-item {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.contact-icon {
    width: 34px;
    height: 34px;
    background: rgba(200, 150, 12, 0.15);
    border: 1px solid rgba(200, 150, 12, 0.25);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
}

.contact-label {
    font-size: 10px;
    color: #7db87d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    margin-bottom: 3px;
}

.contact-val {
    font-size: 13px;
    color: #b8d9b8;
    line-height: 1.55;
}

.contact-link {
    font-size: 13px;
    color: #c8e6c8;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.18s;
}

    .contact-link:hover {
        color: #fff;
    }

/* ─── FOOTER BOTTOM ─── */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 12px;
    color: #4a6e4a;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

    .footer-bottom-links a {
        color: #4a6e4a;
        text-decoration: none;
        font-size: 12px;
        transition: color 0.18s;
    }

        .footer-bottom-links a:hover {
            color: #9dc89d;
        }

@media (max-width: 576px) {
    .footer-bottom-inner {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 14px;
    }
}
