:root {
    /* Enables automatic theme switching based on system settings */
    color-scheme: light dark;

    /* Theme-aware colors using light-dark(LightMode, DarkMode) */
    --bg-body: light-dark(#ffffff, #0a5c43);
    --bg-card: light-dark(#f9fbfa, #3e8856);
    --bg-card-alt: light-dark(#ffffff, #6b5a5a);
    --text-main: light-dark(#2e7d32, #ffffff);
    --text-muted: light-dark(#666666, #bbbbbb);
    --border-color: light-dark(#eeeeee, #333333);
    --text-nav: light-dark(#2e7d32, #ffffff);
    --bg-nav: light-dark(#2e7d32, #ffffff3b);

    /* Brand Colors (Stay consistent or shift slightly for contrast) */
    --primary-green: #2e7d32;
    --primary-blue: #1565c0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", sans-serif;
}

body {
    background: var(--bg-body);
    color: var(--text-main);
}

/* ================= NAVBAR ================= */
.navbar {
    z-index: 9999;
    position: sticky;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 60px;
    background: #6e6c6c3b;
}

.logo {
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-main);
}

.logo img {
    height: 30px;

}

/* ================= NAV LINKS ================= */
.nav-links {
    display: flex;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-nav);
    font-size: 14px;
    transition: transform 0.3s ease, color 0.3s ease;
    font-weight: 500;
}

.nav-links a:hover {
    transform: scale(1.2);
    color: var(--text-nav);
}

/* ================= SIGN UP BUTTON ================= */
.login-btn {
    background: #2d4bff;
    border: none;
    padding: 8px 18px;
    color: #fff;
    border-radius: 4px;
    cursor: pointer;
}

.login-btn:hover {
    font-weight: bolder;
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.45), 0 0 40px rgba(59, 130, 246, 0.35);
}

.right {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 20px;
}

/* ================= CHECKBOX & HAMBURGER ================= */
#menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    position: relative;
    width: 32px;
    height: 32px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hamburger i {
    position: absolute;
    font-size: 26px;
    color: var(--text-main);
    /* Icon color flips automatically */
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger .open-icon {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

.hamburger .close-icon {
    opacity: 0;
    transform: rotate(-90deg) scale(0.8);
}

/* ================= MOBILE MENU ================= */
@media (max-width: 790px) {
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        flex-direction: column;
        align-items: center;

        /* Auto Switch Menu Background */
        background: light-dark(rgba(255, 255, 255, 0.95), rgba(0, 0, 0, 0.92));
        border-bottom: 1px solid var(--card-border);

        max-height: 0;
        overflow: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: max-height 0.4s ease, opacity 0.3s ease, transform 0.3s ease;
        z-index: 1000;
    }

    .nav-links a {
        padding: 14px 0;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid light-dark(rgba(0, 0, 0, 0.1), rgba(255, 255, 255, 0.08));
    }

    #menu-toggle:checked~.nav-links {
        max-height: 400px;
        opacity: 1;
        transform: translateY(0);
    }

    #menu-toggle:checked~.hamburger .open-icon {
        opacity: 0;
        transform: rotate(90deg) scale(0.8);
    }

    #menu-toggle:checked~.hamburger .close-icon {
        opacity: 1;
        transform: rotate(0deg) scale(1);
    }
}


/* HERO SECTION */
.hero {
    width: 100%;
    min-height: 60vh;
    background: url(../assets/15839d7cf46cf63372f4.png) no-repeat center center / cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: -1;
}

/* DARK OVERLAY */
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

/* CONTENT */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    color: #fff;
}

.hero-content h1 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
}

.hero-content h1 span {
    color: green;
}

.hero-content p {
    font-size: 17px;
    color: #f1f1f1;
    font-weight: bold;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* BUTTONS */
.hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: 0.3s ease;
}

.features h2 {
    text-align: center;
    margin-top: 10px;
    font-size: 2rem;
    color: light-dark(#2e7d32, #ffffff);
}

.features-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 15px 10%;
    background: light-dark(#ffffff, linear-gradient(135deg, #0f2027, #203a43, #2c5364));
    text-align: center;
}

.feature-card img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 15px;
}

.feature-card h3 {
    font-size: 18px;
    color: light-dark(#2e7d32, #ffffff);
    margin-bottom: 6px;
    font-weight: 600;
}

.feature-card p {
    font-size: 14px;
    color: light-dark(#5f5656, #ffffff);
    font-weight: bold;
}

/* product section */
.product-slider-section {
    padding: 80px 8%;
    text-align: center;
}

.product-slider-section h2 {
    font-size: 2rem;
    color: light-dark(#2e7d32, #ffffff);
    margin-bottom: 10px;
}

.subtitle {
    font-size: 16px;
    color: #666;
}

.slider-container {
    position: relative;
    overflow: hidden;
    margin-top: 50px;
}

.slider-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
    cursor: pointer;
}

.product-card {
    min-width: 250px;
    background: var(--bg-card);
    border-radius: 18px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(102, 102, 102, 0.1);
    text-align: center;
    flex-shrink: 0;
}

.product-card img {
    width: 100%;
    height: 180px;
    /* fixed height */
    object-fit: cover;
    /* maintain aspect ratio + fill */
    object-position: center;
    border-radius: 14px;
    margin-bottom: 15px;
    display: block;
}

.product-card h3 {
    font-size: 18px;
    color: var(--text-main);
    margin-bottom: 6px;
}

.category {
    font-size: 13px;
    color: #b1b1b1;
    margin-bottom: 10px;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #19f0a1;
    margin-bottom: 15px;
}

/* Prev / Next Buttons */
.prev-btn,
.next-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    background: rgba(0, 0, 0, 0.3);
    color: var(--bg-body);
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 50%;
    z-index: 10;
    transition: background 0.3s ease;
}

.prev-btn:hover,
.next-btn:hover {
    background: rgba(0, 0, 0, 0.6);
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}


/* --- Products Section --- */
.products-section {
    padding: 40px 0;
    text-align: center;
}

.products-section h2 {
    color: light-dark(#2e7d32, #ffffff);
    margin-bottom: 40px;
    font-size: 2rem;
}

.process-flow {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    color: var(--primary-green);
    font-weight: 600;
}

.process-step {
    display: flex;
    align-items: center;
    gap: 5px;
}

.process-step:first-child {
    color: var(--text-main);
}

.process-step span {
    color: var(--text-dark);
}

.arrow {
    color: #888;
    font-size: 1.2rem;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
    gap: 5px;
    margin: 20px 120px 20px 120px;

}

.product-item {
    background: var(--bg-card);
    padding: 10px 2px 15px 2px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 10px;
}

.product-name {
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.9rem;
}

/* --- Why Choose Section --- */
.why-choose {
    padding: 20px 300px;

}

.why-choose-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.why-choose h2 {
    color: light-dark(#2e7d32, #ffffff);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.why-list {
    flex: 1;
    min-width: 300px;
}

.why-list li {
    margin-bottom: 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #959595;
}

.why-list i {
    color: var(#2e8b2e);
    font-size: 1.2rem;
}

.why-image {
    flex: 1;
    max-width: 400px;

}

.why-image img {
    width: 100%;
    border-radius: 5px;
}

/* --- About Section --- */
.about-section {
    background: light-dark(#ffffff, linear-gradient(135deg, #0f2027, #203a43, #2c5364));
    padding: 50px 0;
}

.about-section h2 {
    color: light-dark(#2e7d32, #ffffff);
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

.card-container {
    display: flex;
    gap: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.card {
    background: #ffffff;
    color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    overflow: hidden;
    position: relative;
    padding-bottom: 20px;
}

/* .card-header {
    padding: 15px;
    text-align: center;
    color: #00000;
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: 15px;
    clip-path: polygon(0 0, 100% 0, 95% 100%, 5% 100%);
    width: 80%;
    margin: 0 auto 20px auto;
} */

.green-card .card-header {
    background-color: var(--primary-green);
    color: light-dark(#ffffff, #cec8c8);
}

.blue-card .card-header {
    background-color: var(--primary-blue);
    color: light-dark(#ffffff, #cec8c8);
}

.card-list {
    padding: 0 30px;
}

.card-list li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.green-card i {
    color: var(--primary-green);
}

.blue-card i {
    color: var(--primary-blue);
}

.card-btn-container {
    text-align: center;
    margin-top: 20px;
}


/* --- CTA Footer --- */
.cta-footer {
    text-align: center;
    padding: 40px 0 60px 0;
    background-color: var(--bg-nav);
    border-top: 1px solid #ddd;
}

.cta-footer h3 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: #161515;
}

.cta-footer h3 span {
    color: #ffffff;
    font-weight: 700;
    font-family: "Momo Signature", cursive;
}


.logo-footer {
    margin-top: 30px;
    color: #161515;
}

.logo-footer h2 {
    color: #ffffff;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: "Momo Signature", cursive;
}



.footer-slogan {
    font-style: italic;
    color: #161515;
    margin-top: 10px;
    font-size: 0.9rem;
}

/* ================= SUPPORT MODAL ================= */
.support-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.support-modal.active {
    display: flex;
}

.modal-content {
    background: #ffffff;
    width: 90%;
    max-width: 400px;
    border-radius: 14px;
    padding: 24px 20px;
    position: relative;
    animation: popup 0.3s ease;
}

@keyframes popup {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 14px;
    font-size: 22px;
    cursor: pointer;
    color: #444;
}

.modal-content h2 {
    color: #2e7d32;
    margin-bottom: 8px;
}

.modal-content p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.support-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-form input {
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
}

.support-form button {
    margin-top: 10px;
    padding: 10px;
    background: #1565c0;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s ease;
}

.support-form button:hover {
    background: #0d47a1;
}



/* Responsive */
/* ===================== 360px MOBILE FIX ===================== */
@media (max-width: 360px) {

    /* NAVBAR */
    .navbar {
        padding: 12px 16px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .login-btn {
        padding: 6px 14px;
        font-size: 13px;
    }

    /* HERO */
    .hero {
        min-height: 65vh;
        padding: 20px 10px;
        background: url(../assets/15839d7cf46cf63372f4.png) no-repeat top / cover;
    }

    .hero-content h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
        line-height: 1.5;
    }

    /* FEATURES */
    .features-section {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 20px 12px;
    }

    .feature-card h3 {
        font-size: 15px;
    }

    .feature-card p {
        font-size: 12px;
    }

    /* PRODUCT SLIDER */
    .product-slider-section {
        padding: 40px 12px;
    }

    .product-card {
        min-width: 180px;
        padding: 14px;
    }

    .product-card img {
        height: 130px;
    }

    .product-card h3 {
        font-size: 15px;
    }

    .price {
        font-size: 17px;
    }

    .prev-btn,
    .next-btn {
        font-size: 22px;
        padding: 6px 10px;
    }

    /* DAILY PRODUCTS GRID */
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
        margin: 10px 12px;
        gap: 10px;
    }

    .product-item img {
        height: 80px;
    }

    .product-name {
        font-size: 0.8rem;
    }

    /* WHY CHOOSE */
    .why-choose {
        padding: 20px 5px;
    }

    .why-choose h2 {
        font-size: 1.6rem;
    }

    .why-list {
        min-width: 100%;
    }

    .why-list li {
        font-size: 14px;
    }

    .why-image img {
        padding: 0;
    }

    /* ABOUT SECTION */
    .about-section {
        padding: 40px 12px;
    }

    .card-container {
        margin: 0;
    }

    .card {
        min-width: 100%;
    }

    .card-header {
        font-size: 1rem;
        width: 90%;
    }

    .card-list {
        padding: 0 16px;
    }

    .card-list li {
        font-size: 0.85rem;
    }

    /* FOOTER */
    .cta-footer {
        padding: 30px 12px 40px 12px;
    }

    .cta-footer h3 {
        font-size: 1.2rem;
    }

    .logo-footer h2 {
        font-size: 1.4rem;
    }

    .footer-slogan {
        font-size: 0.8rem;
    }

    .modal-content {
        padding: 18px 14px;
    }

    .modal-content h2 {
        font-size: 1.2rem;
    }

    .support-form input {
        font-size: 13px;
    }
}


/* Responsive adjustments */
@media (max-width: 450px) {
    .why-choose-content {
        flex-direction: column;
        margin: 0px 100px 0px 0px;
    }

    .features-section {
        padding: 10px;
    }

    .process-flow {
        margin: 30px;
    }

    .why-choose .container {
        padding: 0px 70px 80px 70px;
    }

    .why-image img {
        padding: 50px 70px;
    }

    .why-list {
        padding-right: 50px;
    }

    .hero {
        align-items: start;
    }

    .hero-content {
        margin-top: 35px;
    }
}


/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-text {
        margin-bottom: 20px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .card-container {
        flex-direction: column;
        margin: 0px 0px 0px 130px;
    }

    .process-flow {
        margin: 30px 30px 30px 50px;
    }

    .product-card {
        min-width: 200px;
    }

    .product-grid {
        margin: 0px 60px 0px 60px;
    }

    .why-image img {
        padding: 0px 50px 70px 0px;
    }

    .why-choose {
        padding: 20px 20px;
    }

    .why-choose-content {
        flex-direction: column;
    }
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .hero-content {
        flex-direction: column;
        text-align: center;
        margin-top: 35px;
    }

    .hero-text {
        margin-bottom: 20px;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .card-container {
        flex-direction: column;
        margin: 0px 0px 0px 160px;
    }

    .process-flow {
        margin: 30px;
    }

    .why-image img {
        padding: 0px 50px 70px 0px;
    }

    .why-choose-content {
        flex-direction: column;
    }
}

@media (max-width: 1024px) {
    .card-container {
        margin: 0px 60px 0px 60px;
    }

}

/*# sourceMappingURL=main.6758443fe3cdf63d5fcd.css.map*/