/* ==========================================
   RESET
========================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}

html,
body {

    width: 100%;

    overflow-x: hidden;

}

html {

    scroll-behavior: smooth;

}

body {

    font-family: Arial, Helvetica, sans-serif;

    background: #F8F8F8;

    color: #333;

    line-height: 1.6;

}


/* ==========================================
   LINKS
========================================== */

a {

    text-decoration: none;

    color: inherit;

    transition: .25s;

}


/* ==========================================
   IMAGES
========================================== */

img {

    display: block;

    max-width: 100%;

}


/* ==========================================
   CONTAINER
========================================== */

.container {

    width: 100%;

    max-width: 1200px;

    margin: 0 auto;

    padding: 0 20px;

}


/* ==========================================
   MAIN
========================================== */

main {

    min-height: 70vh;

}


/* ==========================================
   BUTTONS
========================================== */

button {

    border: none;

    outline: none;

    cursor: pointer;

    font-family: inherit;

}


/* ==========================================
   FORM ELEMENTS
========================================== */

input,

select,

textarea {

    width: 100%;

    padding: 12px 14px;

    border: 1px solid #DDD;

    border-radius: 8px;

    outline: none;

    font-size: 15px;

    font-family: inherit;

}

input:focus,

select:focus,

textarea:focus {

    border-color: #2E7D32;

}


/* ==========================================
   HEADER
========================================== */

header {

    position: sticky;

    top: 0;

    z-index: 1000;

    background: #2E7D32;

    color: #FFF;

    box-shadow: 0 2px 10px rgba(0, 0, 0, .08);

}


/* ==========================================
HEADER CONTAINER
========================================== */

.header-container {

    display: flex;

    align-items: center;

    justify-content: space-between;

    flex-wrap: nowrap;

    min-height: 72px;

    padding: 16px 0;

}


/* ==========================================
LOGO
========================================== */

.logo {

    display: flex;

    align-items: center;

    flex: 1;

    min-width: 0;

}

.logo a {

    display: flex;

    align-items: center;

    gap: 8px;

    white-space: nowrap;

    font-size: 30px;

    font-weight: 700;

    color: #D4AF37;

}

.logo a:hover {

    color: #FFD54F;

}


/* ==========================================
   NAVIGATION
========================================== */

nav {

    display: flex;

    align-items: center;

    gap: 35px;

}

nav a {

    color: #FFF;

    font-size: 16px;

    font-weight: 600;

    position: relative;

}

nav a:hover {

    color: #D4AF37;

}


/* ==========================================
   HEADER ICONS
========================================== */

.header-icons {

    display: flex;

    align-items: center;

    gap: 20px;

}


/* ==========================================
   CART
========================================== */

.cart-icon {

    position: relative;

    font-size: 24px;

    color: #FFF;
    margin-left: 10px;

}

.cart-count {

    position: absolute;

    top: -8px;

    right: -10px;

    width: 20px;

    height: 20px;

    border-radius: 50%;

    background: #E91E63;

    color: #FFF;

    font-size: 11px;

    font-weight: 700;

    display: flex;

    justify-content: center;

    align-items: center;

}


/* ==========================================
   USER MENU
========================================== */

.user-menu {

    position: relative;

    display: flex;

    align-items: center;

}

.user-btn {

    background: none;

    color: #FFF;

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 8px 14px;

    border-radius: 30px;

    font-size: 15px;

    font-weight: 600;

    transition: .25s;

}

.user-btn:hover {

    background: rgba(255, 255, 255, .15);

}


/* ==========================================
   USER DROPDOWN
========================================== */

.dropdown {

    position: absolute;

    top: 110%;

    right: 0;

    min-width: 230px;

    background: #FFF;

    border-radius: 14px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, .15);

    overflow: hidden;

    opacity: 0;

    visibility: hidden;

    transform: translateY(10px);

    pointer-events: none;

    transition: .25s;

    z-index: 9999;

}

.user-menu:hover .dropdown {

    opacity: 1;

    visibility: visible;

    transform: translateY(0);

    pointer-events: auto;

}

.dropdown a {

    display: block;

    padding: 14px 20px;

    color: #333;

    font-size: 15px;

}

.dropdown a:hover {

    background: #F6F6F6;

    color: #2E7D32;

}


/* ==========================================
   BUNDLE + CATEGORY SECTION
========================================== */

.bundle-category {

    padding: 70px 0;

}

.bundle-grid {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    align-items: stretch;

}


/* ==========================================
   BUNDLE CARD
========================================== */

.bundle-card {

    background: #FFF;

    border: 1px solid #E8E8E8;

    border-radius: 22px;

    padding: 35px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

    display: flex;

    flex-direction: column;

}

.bundle-tag {

    display: inline-block;

    width: max-content;

    background: #E91E63;

    color: #FFF;

    padding: 6px 14px;

    border-radius: 30px;

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 18px;

}

.bundle-card h2 {

    color: #2E7D32;

    margin-bottom: 15px;

    font-size: 32px;

}

.bundle-card p {

    color: #666;

    margin-bottom: 22px;

}

.bundle-card ul {

    list-style: none;

    padding: 0;

    margin-bottom: 30px;

}

.bundle-card li {

    margin-bottom: 12px;

}

.bundle-btn {

    display: inline-flex;

    justify-content: center;

    align-items: center;

    width: max-content;

    background: #2E7D32;

    color: #FFF;

    padding: 14px 26px;

    border-radius: 30px;

    font-weight: 600;

    transition: .25s;

}

.bundle-btn:hover {

    background: #256428;

}


/* ==========================================
   HOME CATEGORIES
========================================== */

.categories-home {

    height: 100%;

}

.categories-card {

    background: #FFF;

    border: 1px solid #E8E8E8;

    border-radius: 22px;

    padding: 35px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

    height: 100%;

    display: flex;

    flex-direction: column;

}

.categories-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 30px;

}

.categories-header h2 {

    color: #2E7D32;

    font-size: 32px;

}

.categories-header a {

    color: #2E7D32;

    font-weight: 600;

}

.categories-header a:hover {

    color: #256428;

}

.category-grid {

    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));

    gap: 18px;

}

.category-item {

    background: #FFF;

    border: 1px solid #ECECEC;

    border-radius: 16px;

    padding: 18px 14px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    text-align: center;

    min-height: 140px;

    transition: .25s;

    box-shadow: 0 4px 12px rgba(0, 0, 0, .05);

}

.category-item:hover {

    transform: translateY(-5px);

    border-color: #2E7D32;

    box-shadow: 0 10px 25px rgba(0, 0, 0, .10);

}

.category-icon {

    width: 68px;

    height: 68px;

    border-radius: 50%;

    background: #F3F8F4;

    display: flex;

    justify-content: center;

    align-items: center;

    font-size: 30px;

    margin-bottom: 16px;

}

.more-category-icon {

    background: #E8F5E9;

    color: #2E7D32;

    font-size: 36px;

    font-weight: 600;

}

.category-name {

    font-size: 18px;

    font-weight: 700;

    text-align: center;

    color: #222;

}

.category-item.more {

    background: #2E7D32;

    border-color: #2E7D32;

    color: #FFF;

}

.category-item.more .category-name {

    color: #FFF;

}


/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px) {

    .bundle-grid {

        grid-template-columns: 1fr;

    }

    .categories-header {

        flex-direction: column;

        align-items: flex-start;

        gap: 10px;

    }

    .category-grid {

        grid-template-columns: repeat(2, 1fr);

    }

}

/* ==========================================
   FOOTER
========================================== */

.footer {

    margin-top: 70px;

    background: #FFF;

    border-top: 3px solid #2E7D32;

}

.footer-top {

    display: flex;

    justify-content: space-between;

    align-items: flex-start;

    gap: 50px;

    padding: 45px 0 35px;

    flex-wrap: wrap;

}

.footer-brand {

    max-width: 340px;

}

.footer-brand h3 {

    color: #2E7D32;

    font-size: 26px;

    margin-bottom: 12px;

}

.footer-brand p {

    color: #666;

    line-height: 1.8;

}

.footer-links {

    display: flex;

    flex-wrap: wrap;

    gap: 18px 28px;

    align-items: center;

}

.footer-links a {

    color: #444;

    font-weight: 600;

    transition: .25s;

}

.footer-links a:hover {

    color: #2E7D32;

}

.footer-bottom {

    border-top: 1px solid #ECECEC;

    padding: 20px 0;

    display: flex;

    justify-content: space-between;

    align-items: center;

    flex-wrap: wrap;

    gap: 15px;

}

.footer-legal {

    display: flex;

    align-items: center;

    gap: 25px;

    flex-wrap: wrap;

}

.footer-legal a {

    color: #666;

    font-size: 14px;

    transition: .25s;

}

.footer-legal a:hover {

    color: #2E7D32;

}

.footer-bottom p {

    color: #777;

    font-size: 14px;

}


/* ==========================================
   CONTACT MODAL
========================================== */

.modal {

    display: none;

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    justify-content: center;

    align-items: center;

    z-index: 9999;

    padding: 20px;

}

.modal-content {

    width: 100%;

    max-width: 550px;

    background: #FFF;

    border-radius: 20px;

    padding: 35px;

    position: relative;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .20);

    animation: modalFade .25s ease;

}

@keyframes modalFade {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.modal-content h2 {

    color: #2E7D32;

    margin-bottom: 10px;

}

.modal-content p {

    color: #666;

    margin-bottom: 25px;

    line-height: 1.7;

}

.modal-content input,

.modal-content textarea {

    width: 100%;

    padding: 14px 16px;

    margin-bottom: 18px;

    border: 1px solid #DDD;

    border-radius: 10px;

    font-size: 15px;

}

.modal-content textarea {

    min-height: 140px;

    resize: vertical;

}

.modal-content input:focus,

.modal-content textarea:focus {

    border-color: #2E7D32;

}

#sendMessage {

    width: 100%;

    background: #2E7D32;

    color: #FFF;

    padding: 15px;

    border: none;

    border-radius: 10px;

    font-size: 16px;

    font-weight: 600;

    transition: .25s;

}

#sendMessage:hover {

    background: #256428;

}

#closeContactModal {

    position: absolute;

    top: 18px;

    right: 22px;

    font-size: 32px;

    color: #888;

    cursor: pointer;

    transition: .25s;

}

#closeContactModal:hover {

    color: #E53935;

}


/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:768px) {

    .footer-top {

        flex-direction: column;

        gap: 30px;

    }

    .footer-links {

        gap: 15px 20px;

    }

    .footer-bottom {

        flex-direction: column;

        text-align: center;

    }

    .footer-legal {

        justify-content: center;

    }

    .modal-content {

        padding: 25px;

    }

}


/* ==========================================
   PAGE CONTENT Help Center Privacy Policy Terms of Service
========================================== */

.page-content {

    background: #FFF;

    max-width: 900px;

    margin: 60px auto;

    padding: 40px;

    border-radius: 18px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);

}

.page-content h1 {

    color: #2E7D32;

    margin-bottom: 25px;

}

.page-content h2 {

    color: #222;

    margin: 30px 0 12px;

}

.page-content p {

    color: #666;

    line-height: 1.8;

}

.page-content ul {

    margin-left: 20px;

    color: #666;

    line-height: 2;

}


/* ==========================================
   PRODUCT REQUEST
========================================== */

.product-request-banner {

    margin: 60px 0;

    padding: 35px;

    background: #FFF;

    border: 1px solid #E5E7EB;

    border-radius: 20px;

    text-align: center;

    box-shadow: 0 8px 24px rgba(0, 0, 0, .08);

}

.product-request-banner h3 {

    color: #2E7D32;

    font-size: 30px;

    margin-bottom: 12px;

}

.product-request-banner p {

    color: #666;

    font-size: 16px;

    line-height: 1.7;

    margin-bottom: 22px;

}

.product-request-banner a {

    display: inline-block;

    color: #2E7D32;

    font-weight: 700;

    font-size: 16px;

    transition: .25s;

}

.product-request-banner a:hover {

    color: #256428;

    transform: translateX(4px);

}

/* MOBILE RESPONSIVENESS */
/* ==========================================
   GLOBAL RESPONSIVE
========================================== */

@media (max-width: 992px) {

    .container {

        width: 94%;

    }

    .header-container {

        flex-wrap: wrap;

        gap: 15px;

        justify-content: center;

    }

    nav {

        width: 100%;

        justify-content: center;

        flex-wrap: wrap;

        gap: 18px;

    }

    .header-icons {

        width: 100%;

        justify-content: center;

    }

}

@media (max-width: 768px) {

    .logo a {

        font-size: 24px;

    }

    nav {

        flex-direction: column;

        gap: 12px;

    }

    nav a {

        width: 100%;

        text-align: center;

        padding: 10px;

        border-radius: 8px;

    }

    .header-icons {

        gap: 15px;

    }

    .user-menu {

        width: 100%;

        justify-content: center;

    }

    .dropdown {

        right: 50%;

        transform: translateX(50%);
    }

    .page-content {

        margin: 30px auto;

        padding: 25px;

    }

}

@media (max-width: 480px) {

    .container {

        width: 95%;

    }

    .logo a {

        font-size: 22px;

    }

    nav a {

        font-size: 15px;

    }

    .modal-content {

        padding: 20px;

    }

    .page-content {

        padding: 20px;

    }

    .product-request-banner {

        padding: 25px 20px;

    }

    .product-request-banner h3 {

        font-size: 24px;

    }

}


/* ==========================================
   MOBILE HAMBURGER MENU
========================================== */

.mobile-menu-btn {

    display: none;

    width: 42px;

    height: 42px;

    margin-right: 10px;

    border: none;

    background: transparent;

    color: #ffffff;

    font-size: 30px;

    cursor: pointer;

    align-items: center;

    justify-content: center;

}

/* ==========================================
   MOBILE OVERLAY
========================================== */

.mobile-overlay {

    position: fixed;

    inset: 0;

    background: rgba(0, 0, 0, .45);

    opacity: 0;

    visibility: hidden;

    transition: .3s;

    z-index: 998;

}

.mobile-overlay.active {

    opacity: 1;

    visibility: visible;

}

/* ==========================================
   MOBILE NAVIGATION
========================================== */

.mobile-nav {

    position: fixed;

    top: 0;

    right: -320px;

    width: 300px;

    max-width: 85%;

    height: 100vh;

    background: #fff;

    box-shadow: -5px 0 20px rgba(0, 0, 0, .15);

    transition: right .3s ease;

    overflow-y: auto;

    z-index: 999;

}

.mobile-nav.active {

    right: 0;

}

/* ==========================================
   MOBILE NAV HEADER
========================================== */

.mobile-nav-header {

    display: flex;

    justify-content: space-between;

    align-items: center;

    padding: 20px;

    background: #2E7D32;

}

.mobile-nav-header h2 {

    margin: 0;

    color: #fff;

}

.mobile-nav-header button {

    background: none;

    border: none;

    color: #fff;

    font-size: 28px;

    cursor: pointer;

}

/* ==========================================
   MOBILE NAV LINKS
========================================== */

.mobile-nav a {

    display: flex;

    align-items: center;

    padding: 18px 25px;

    color: #333;

    text-decoration: none;

    border-bottom: 1px solid #eee;

    transition: .25s;

}

.mobile-nav a:hover {

    background: #f5f5f5;

    color: #2E7D32;

}

.mobile-nav hr {

    border: none;

    border-top: 1px solid #eee;

    margin: 8px 0;

}

.mobile-nav-footer {

    padding: 20px;

    background: #f8f8f8;

    border-top: 1px solid #eee;

}

.mobile-nav-footer p {

    margin-bottom: 8px;

    color: #666;

}

.mobile-nav-footer small {

    color: #999;

}

/* ==========================================
   RESPONSIVE HEADER
========================================== */

@media (max-width:768px) {

    nav {

        display: none;

    }

    .header-container {

        display: flex;

        align-items: center;

        justify-content: space-between;

        flex-wrap: nowrap;

        min-height: 65px;

        gap: 15px;

    }

    .logo {

        flex: 1;

    }

    .logo a {

        font-size: 22px;

    }

    .header-icons {

        display: flex;

        align-items: center;

        justify-content: flex-end;

        gap: 12px;

        flex-shrink: 0;

    }

    .cart-icon {

        font-size: 22px;

    }

    .user-menu {

        width: auto;

    }

    .user-btn {

        font-size: 22px;

    }

    .mobile-menu-btn {

        display: flex;

    }

}

@media (max-width:480px) {

    .logo a {

        font-size: 20px;

    }

    .cart-icon {

        font-size: 20px;

    }

    .user-btn {

        font-size: 20px;

    }

    .mobile-menu-btn {

        font-size: 26px;

    }

}


/* ==========================================
MORE CATEGORY CARD
========================================== */

.more-category {

    background: #2E7D32;

    color: #fff;

}

.more-category .category-icon {

    background: rgba(255, 255, 255, .18);

    color: #fff;

}

.more-category .category-name {

    color: #fff;

}

.more-category .category-count {

    color: #E8F5E9;

}

.more-category:hover {

    background: #256428;

}

.mobile-nav-header h2 a {
    color: inherit;
    text-decoration: none;
}

.mobile-nav-header h2 a:hover {
    text-decoration: none;
}


/* ==========================================
   MOBILE MENU
   ========================================== */

@media (max-width: 768px) {

    .header-container .logo {
        position: relative;
        z-index: 99999;
    }

    .header-container .logo a {
        position: relative;
        z-index: 100000;
        pointer-events: auto;
        touch-action: manipulation;
    }

}