@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&display=swap');

:root{
    --green:#00ff4c; /* bright green */
    --black:#050505;
    --white:#ffffff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Montserrat',sans-serif;
}

body{
    /* Homepage background */
    background:var(--black);
    color:var(--white);
    overflow-x:hidden;
}

.hero{
    min-height:calc(100vh - 88px);
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    padding:30px 80px 80px;
    background:var(--black);
}

.hero-content{
    max-width:600px;
}

.hero h1{
    font-size:5rem;
    line-height:1;
    font-weight:800;
}

.hero h1 span{
    color:var(--green);
}

.tag{
    color:var(--green);
    font-weight:700;
}

.hero p{
    margin-top:20px;
    color:#ccc;
    font-size:1.1rem;
}

.hero-buttons{
    margin-top:35px;
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}

.btn-green{
    background:var(--green);
    color:var(--white);
    padding:16px 35px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
}

.btn-outline{
    border:2px solid var(--green);
    color:var(--green);
    text-decoration:none;
    padding:16px 35px;
    border-radius:50px;
    background:transparent;
}

.hero-image img{
    width:650px;
}

.categories{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:25px;
    padding:50px 80px;
}

.card{
    position:relative;
    overflow:hidden;
    border:1px solid var(--green);
    border-radius:20px;
}

.card img{
    width:100%;
    display:block;
}

.overlay{
    position:absolute;
    bottom:20px;
    left:20px;
}

.overlay h2{
    font-size:2rem;
}

.products{
    padding:80px;
}

.products h2{
    font-size:3rem;
    margin-bottom:40px;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

.product{
    background:white;
    color:black;
    border-radius:20px;
    padding:20px;
    transition:.4s;
}

.product:hover{
    transform:translateY(-10px);
}

.product img{
    width:100%;
}

.price{
    color:var(--green);
    font-weight:800;
    margin:10px 0;
}

.product button{
    width:100%;
    background:var(--green);
    color:var(--white);
    border:none;
    padding:14px;
    border-radius:50px;
    font-weight:800;
}

.limited-drop{
    background:var(--white);
    border-top:2px solid var(--green);
    border-bottom:2px solid var(--green);
    text-align:center;
    padding:80px;
}

.limited-drop h2{
    color:var(--green);
    font-size:4rem;
}

.about{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
}

.about img{
    width:100%;
}

.about-content{
    padding:60px;
}

.about-content h2{
    font-size:4rem;
}

.about-content span{
    color:var(--green);
}

.newsletter{
    background:var(--green);
    color:var(--white);
    padding:80px;
    text-align:center;
}

.newsletter h2{
    font-size:3rem;
}

.newsletter form{
    margin-top:30px;
    display:flex;
    justify-content:center;
    gap:15px;
    flex-wrap:wrap;
}

.newsletter input{
    width:400px;
    padding:18px;
    border:none;
    border-radius:50px;
}

.newsletter button{
    background:black;
    color:white;
    border:none;
    padding:18px 35px;
    border-radius:50px;
}

.top-admin-nav{
    position:sticky;
    top:0;
    z-index:50;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:16px;
    padding:12px 80px;
    background:#000000 !important;
    border-bottom:1px solid rgba(0,255,76,.25);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

.brand{
    display:flex;
    align-items:center;
    gap:12px;
    text-decoration:none;
    color:var(--green);
    min-width:0;
}

.logo{
    width:40px;
    height:40px;
    border:1px solid rgba(0,255,76,.7);
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--green);
    font-weight:800;
    line-height:1;
    overflow:hidden;
}

.logo-img{
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    display:block;
    /* keeps full logo visible inside the placeholder */
    background:transparent;
}



.brand-name{
    font-weight:900;
    letter-spacing:.2px;
}


.nav-menu{
    display:flex;
    align-items:center;
    gap:16px;
}

.admin-nav-link{
    color:var(--green);
    text-decoration:none;
    font-weight:800;
    padding:10px 16px;
    border:1px solid rgba(0,255,76,.35);
    border-radius:999px;
    background:transparent;
    white-space:nowrap;
}

.admin-nav-link:hover{
    border-color:rgba(0,255,76,.7);
    box-shadow:0 0 0 3px rgba(0,255,76,.15);
}

.nav-links{
    list-style:none;
    display:flex;
    gap:18px;
    margin:0;
    padding:0;
    align-items:center;
}

.nav-link{
    color:var(--green);
    text-decoration:none;
    font-weight:800;
    padding:10px 14px;
    border:1px solid rgba(0,255,76,.25);
    border-radius:999px;
    background:rgba(0,255,76,.06);
}

.nav-link:hover{
    border-color:rgba(0,255,76,.7);
    box-shadow:0 0 0 3px rgba(0,255,76,.12);
}

.mobile-nav-toggle{
    display:none;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    gap:4px;
    width:44px;
    height:44px;
    border:1px solid rgba(0,255,76,.25);
    border-radius:50%;
    background:rgba(0,255,76,.06);
    color:var(--green);
    cursor:pointer;
}

.mobile-nav-toggle span{
    display:block;
    width:18px;
    height:2px;
    background:currentColor;
    border-radius:999px;
}

.contact{
    padding:80px;
    text-align:center;
}

.contact h2{
    color:var(--green);
    font-size:4rem;
    margin-bottom:10px;
}

.contact-sub{
    color:#ccc;
    margin-bottom:30px;
    font-size:1.1rem;
}

.contact-form{
    max-width:700px;
    margin:0 auto;
    display:flex;
    flex-direction:column;
    gap:15px;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    padding:18px 20px;
    border-radius:14px;
    border:1px solid rgba(0,255,76,.25);
    background:#ffffff;
    color:#111;
    outline:none;
}

.contact-form textarea{ resize:vertical; }

@media (max-width: 900px){
    .top-admin-nav{ padding:12px 16px; flex-wrap:wrap; }
    .mobile-nav-toggle{ display:flex; }
    .nav-menu{
        display:none;
        width:100%;
        flex-direction:column;
        align-items:stretch;
        gap:12px;
        padding-top:8px;
    }
    .nav-menu.is-open{ display:flex; }
    .nav-links{ display:flex; flex-direction:column; align-items:stretch; gap:10px; }
    .nav-links li{ width:100%; }
    .nav-link,
    .admin-nav-link{ display:block; width:100%; text-align:center; }
}

/* Shop page */
.shop-hero{
    padding:40px 80px 30px;
    border-bottom:1px solid rgba(0,255,76,.25);
}

.shop-hero-content{
    position:relative;
}

.shop-hero-content h1{
    color:var(--green);
    font-size:5rem;
    line-height:1;
    font-weight:900;
}

.shop-hero-content p{
    margin-top:18px;
    color:#ccc;
    font-size:1.1rem;
}

.back-arrow{
    display:inline-flex;
    align-items:center;
    gap:6px;
    color:var(--green);
    text-decoration:none;
    font-weight:700;
    font-size:1rem;
    margin-bottom:16px;
    padding:8px 16px;
    border:1px solid rgba(0,255,76,.25);
    border-radius:999px;
    background:rgba(0,255,76,.06);
    transition:all .3s ease;
}

.back-arrow:hover{
    border-color:rgba(0,255,76,.7);
    box-shadow:0 0 0 3px rgba(0,255,76,.12);
    background:rgba(0,255,76,.10);
}

.shop-filter{
    padding:25px 80px;
}

.filter-row{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    align-items:center;
}

.filter-tab{
    display:inline-block;
    text-decoration:none;
    color:var(--white);
    font-weight:800;
    padding:10px 16px;
    border-radius:999px;
    border:1px solid rgba(255,255,255,.18);
    background:rgba(0,0,0,.15);
}

.filter-tab.is-active{
    color:black;
    background:var(--green);
    border-color:rgba(0,255,76,.7);
}

.filter-meta{
    margin-top:14px;
    color:#ccc;
}

.shop-products{
    padding:60px 80px 80px;
}

.shop-empty{
    grid-column:1 / -1;
    text-align:center;
    color:#ccc;
    padding:40px 0;
}

.muted{ color:#aaa; }
.muted.small{ font-size:.95rem; margin-top:10px; }

/* Order links (index.php) */
.order-now-link{
    display:inline-block;
    width:100%;
    text-align:center;
    margin-top:12px;
    background:transparent;
    border:2px solid var(--green);
    color:var(--green);
    text-decoration:none;
    padding:14px;
    border-radius:50px;
    font-weight:800;
}
.order-now-link:hover{
    background:rgba(0,255,76,.10);
}

/* Footer theme */
footer{
    background:var(--black);
    padding:60px 80px;
    border-top:1px solid rgba(0,255,76,.25);
    color:var(--white);
    text-align:center;
}
footer .footer-content h3{
    color:var(--green);
    font-size:2rem;
    margin-bottom:12px;
}
footer .footer-content p{
    color:#ccc;
    max-width:700px;
    margin:0 auto;
    line-height:1.6;
}

.footer-nav{
    display:flex;
    gap:20px;
    justify-content:center;
    margin-top:20px;
    flex-wrap:wrap;
}

.footer-nav a{
    color:var(--green);
    text-decoration:none;
    font-weight:700;
    padding:8px 12px;
    border-radius:50px;
    border:1px solid rgba(0,255,76,.25);
    transition:all .3s ease;
}

.footer-nav a:hover{
    border-color:rgba(0,255,76,.7);
    background:rgba(0,255,76,.06);
}

/* Back to top */
.back-to-top{
    position:fixed;
    right:24px;
    bottom:24px;
    width:44px;
    height:44px;
    border-radius:50%;
    background:rgba(0,0,0,.6);
    border:1px solid rgba(0,255,76,.45);
    color:var(--green);
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-weight:900;
    z-index:999;
}

.back-to-top:hover{
    background:rgba(0,255,76,.14);
    box-shadow:0 0 0 3px rgba(0,255,76,.12);
}

/* ===== Base responsive helpers ===== */
img{
    max-width:100%;
    height:auto;
    display:block;
}

/* ===== Checkout styles (checkout.php uses these classes) ===== */
.checkout{
    padding:70px 80px;
    background:var(--white);
}
.checkout-wrap{
    max-width:780px;
    margin:0 auto;
}
.checkout h1{
    font-size:3rem;
    color:var(--green);
}
.checkout-summary{
    display:flex;
    justify-content:space-between;
    gap:16px;
    flex-wrap:wrap;
}

.checkout-form{
    display:flex;
    flex-direction:column;
    gap:14px;
}
.checkout-form input{
    width:100%;
    padding:16px 18px;
    border-radius:14px;
    border:1px solid rgba(0,255,76,.25);
    background:#ffffff;
    color:#000;
    outline:none;
}

.form-row label{
    width:100%;
    display:flex;
    flex-direction:column;
    gap:8px;
    font-weight:800;
    color:#000;
}

.form-actions{
    display:flex;
    gap:12px;
    align-items:center;
    flex-wrap:wrap;
}

/* Ensure "btn btn-secondary" used in checkout doesn't look broken */
.btn{
    display:inline-block;
    padding:14px 30px;
    border-radius:50px;
    text-decoration:none;
    font-weight:800;
    border:2px solid transparent;
}
.btn-green{
    background:var(--green);
    color:var(--white);
    border-color:var(--green);
}
.btn-secondary{
    background:transparent;
    color:var(--green);
    border-color:var(--green);
}

/* ===== Responsive breakpoints ===== */
@media (max-width: 900px){
    .top-admin-nav{ padding:12px 16px; flex-wrap:wrap; }
    .mobile-nav-toggle{ display:flex; }
    .nav-menu{
        display:none;
        width:100%;
        flex-direction:column;
        align-items:stretch;
        gap:12px;
        padding-top:8px;
    }
    .nav-menu.is-open{ display:flex; }
    .nav-links{ display:flex; flex-direction:column; align-items:stretch; gap:10px; }
    .nav-links li{ width:100%; }
    .nav-link,
    .admin-nav-link{ display:block; width:100%; text-align:center; }

    /* hero */
    .hero{
        padding:40px 16px;
        flex-direction:column;
        gap:24px;
    }
    .hero h1{ font-size:clamp(2.2rem, 6vw, 3.2rem); }
    .hero-image img{ width:100%; max-width:100%; }

    /* cards + sections */
    .categories{ padding:30px 16px; grid-template-columns:repeat(2, 1fr); }
    .products{ padding:40px 16px; }
    .product-grid{ grid-template-columns:repeat(2, 1fr); }

    .shop-hero{ padding:60px 16px 20px; }
    .shop-filter{ padding:20px 16px; }
    .shop-products{ padding:40px 16px 60px; }

    /* footer */
    footer{ padding:40px 16px; }

    /* checkout */
    .checkout{ padding:50px 16px; }
    .checkout h1{ font-size:2.4rem; }
    .form-actions{ flex-direction:column; align-items:stretch; }
    .form-actions .btn,
    .form-actions button{ width:100%; }
}

@media (max-width: 600px){
    .hero h1{ font-size:clamp(2rem, 7vw, 2.6rem); }
    .hero p{ font-size:1rem; }
    .hero-buttons{ flex-direction:column; gap:12px; }
    .btn-green, .btn-outline{ width:100%; text-align:center; }

    .categories{ grid-template-columns:1fr; gap:16px; }
    .product-grid{ grid-template-columns:1fr; gap:15px; }

    .newsletter{ padding:50px 16px; }
    .newsletter h2{ font-size:2rem; }
    .newsletter form{ flex-direction:column; align-items:stretch; gap:10px; }
    .newsletter input{ width:100%; }
    .newsletter button{ width:100%; }

    .about{ grid-template-columns:1fr; }
    .about-content{ padding:30px 16px; }
    .about-content h2{ font-size:2.2rem; }
    .about-content p{ line-height:1.7; }

    .shop-hero-content h1{ font-size:2.5rem; }

    .contact-form input,
    .contact-form textarea{ color:#111; }

    /* checkout */
    .checkout-summary{ justify-content:flex-start; }
    .checkout h1{ font-size:2rem; }
    
    .footer-nav{ gap:10px; }
    .footer-nav a{ padding:6px 10px; font-size:0.9rem; }
}

@media (max-width: 400px){
    .contact{ padding:50px 16px; }
    .contact h2{ font-size:2.5rem; }
    .product{ padding:16px; }
}

/* ===== About Us Page Styles ===== */
.about-page{
    background:var(--black);
    color:var(--white);
}

.about-hero{
    padding:100px 80px;
    text-align:center;
    background:linear-gradient(135deg, rgba(0,255,76,.08) 0%, transparent 100%);
    border-bottom:1px solid rgba(0,255,76,.25);
}

.about-hero h1{
    font-size:5rem;
    font-weight:900;
    margin-bottom:15px;
    color:var(--green);
}

.about-hero p{
    font-size:1.2rem;
    color:#ccc;
    max-width:600px;
    margin:0 auto;
}

.our-story{
    padding:80px;
    max-width:1000px;
    margin:0 auto;
    border-bottom:1px solid rgba(0,255,76,.15);
}

.our-story h2{
    font-size:3rem;
    color:var(--green);
    margin-bottom:30px;
}

.our-story p{
    font-size:1.1rem;
    line-height:1.8;
    color:#ddd;
    margin-bottom:20px;
}

.founders-section{
    padding:80px;
}

.founders-section h2{
    font-size:3rem;
    color:var(--green);
    text-align:center;
    margin-bottom:15px;
}

.founders-intro{
    text-align:center;
    color:#ccc;
    margin-bottom:60px;
    font-size:1.1rem;
}

.founders-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:50px;
    max-width:1200px;
    margin:0 auto;
}

.founder-card{
    background:rgba(0,255,76,.06);
    border:1px solid rgba(0,255,76,.25);
    border-radius:20px;
    padding:40px;
    transition:all .3s ease;
    text-align:center;
}

.founder-card:hover{
    border-color:rgba(0,255,76,.7);
    box-shadow:0 8px 32px rgba(0,255,76,.12);
    transform:translateY(-5px);
}

.founder-image{
    margin-bottom:25px;
    border-radius:15px;
    overflow:hidden;
    height:250px;
}

.founder-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.founder-card h3{
    font-size:1.8rem;
    margin-bottom:8px;
    color:var(--green);
}

.founder-role{
    color:#00ff4c;
    font-weight:700;
    margin-bottom:20px;
    font-size:.95rem;
    text-transform:uppercase;
    letter-spacing:.5px;
}

.founder-bio{
    color:#bbb;
    line-height:1.7;
    font-size:1rem;
}

.mission-values{
    padding:80px;
    background:rgba(0,255,76,.04);
    border-top:1px solid rgba(0,255,76,.15);
    border-bottom:1px solid rgba(0,255,76,.15);
}

.mission-values h2{
    font-size:3rem;
    color:var(--green);
    text-align:center;
    margin-bottom:50px;
}

.mission-box{
    background:rgba(0,255,76,.08);
    border:1px solid rgba(0,255,76,.25);
    border-radius:20px;
    padding:40px;
    margin-bottom:40px;
    max-width:800px;
    margin-left:auto;
    margin-right:auto;
    text-align:center;
}

.mission-box h3{
    font-size:1.8rem;
    color:var(--green);
    margin-bottom:15px;
}

.mission-box p{
    color:#ddd;
    line-height:1.8;
    font-size:1.05rem;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(4, 1fr);
    gap:25px;
    max-width:1200px;
    margin:0 auto;
}

.value-card{
    background:rgba(0,255,76,.08);
    border:1px solid rgba(0,255,76,.25);
    border-radius:15px;
    padding:30px;
    transition:all .3s ease;
}

.value-card:hover{
    border-color:rgba(0,255,76,.7);
    box-shadow:0 8px 24px rgba(0,255,76,.12);
    transform:translateY(-3px);
}

.value-card h4{
    font-size:1.3rem;
    color:var(--green);
    margin-bottom:12px;
}

.value-card p{
    color:#bbb;
    line-height:1.6;
    font-size:.95rem;
}

.why-choose-us{
    padding:80px;
}

.why-choose-us h2{
    font-size:3rem;
    color:var(--green);
    text-align:center;
    margin-bottom:50px;
}

.benefits-grid{
    display:grid;
    grid-template-columns:repeat(2, 1fr);
    gap:40px;
    max-width:1000px;
    margin:0 auto;
}

.benefit{
    padding:30px;
    border-left:3px solid var(--green);
    background:rgba(0,255,76,.04);
    border-radius:5px;
}

.benefit h4{
    font-size:1.3rem;
    color:var(--green);
    margin-bottom:12px;
}

.benefit p{
    color:#bbb;
    line-height:1.6;
}

.cta-section{
    padding:80px;
    text-align:center;
    background:linear-gradient(135deg, rgba(0,255,76,.12) 0%, transparent 100%);
    border-top:1px solid rgba(0,255,76,.25);
}

.cta-section h2{
    font-size:3rem;
    color:var(--green);
    margin-bottom:30px;
}

.cta-section .btn-green{
    display:inline-block;
    padding:18px 50px;
    font-size:1rem;
}

@media (max-width: 480px){
    .top-admin-nav{ padding:10px 12px; }
    .brand-name{ font-size:0.9rem; }
    
    .hero{
        padding:20px 12px 40px;
    }
    .hero h1{ font-size:1.8rem; line-height:1.2; }
    .hero p{ font-size:0.95rem; margin-top:10px; }
    
    .products h2{ font-size:2rem; margin-bottom:20px; }
    .product{ padding:12px; }
    
    .contact{ padding:40px 12px; }
    .contact h2{ font-size:2rem; }
    .contact-sub{ font-size:1rem; }
    
    .limited-drop h2{ font-size:2.5rem; padding:40px 12px; }
    
    .footer{ padding:30px 12px; }
    footer .footer-content h3{ font-size:1.5rem; }
}

/* ===== About Us Page Responsive ===== */
@media (max-width: 900px){
    .about-hero{
        padding:60px 16px;
    }

    .about-hero h1{
        font-size:3.5rem;
    }

    .about-hero p{
        font-size:1rem;
    }

    .our-story{
        padding:50px 16px;
    }

    .our-story h2{
        font-size:2.5rem;
    }

    .our-story p{
        font-size:1rem;
    }

    .founders-section{
        padding:50px 16px;
    }

    .founders-section h2{
        font-size:2.5rem;
    }

    .founders-grid{
        grid-template-columns:1fr;
        gap:30px;
    }

    .founder-card{
        padding:30px;
    }

    .founder-image{
        height:200px;
    }

    .mission-values{
        padding:50px 16px;
    }

    .mission-values h2{
        font-size:2.5rem;
    }

    .values-grid{
        grid-template-columns:repeat(2, 1fr);
        gap:20px;
    }

    .value-card{
        padding:20px;
    }

    .why-choose-us{
        padding:50px 16px;
    }

    .why-choose-us h2{
        font-size:2.5rem;
    }

    .benefits-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .cta-section{
        padding:50px 16px;
    }

    .cta-section h2{
        font-size:2.5rem;
    }
}

@media (max-width: 600px){
    .about-hero{
        padding:50px 16px;
    }

    .about-hero h1{
        font-size:2.5rem;
    }

    .about-hero p{
        font-size:.95rem;
    }

    .our-story{
        padding:40px 16px;
    }

    .our-story h2{
        font-size:2rem;
    }

    .our-story p{
        font-size:.95rem;
        line-height:1.7;
    }

    .founders-section{
        padding:40px 16px;
    }

    .founders-section h2{
        font-size:2rem;
    }

    .founders-intro{
        font-size:1rem;
        margin-bottom:30px;
    }

    .founder-card{
        padding:20px;
    }

    .founder-image{
        height:180px;
    }

    .founder-card h3{
        font-size:1.4rem;
    }

    .mission-values{
        padding:40px 16px;
    }

    .mission-values h2{
        font-size:2rem;
    }

    .mission-box{
        padding:25px;
    }

    .mission-box h3{
        font-size:1.4rem;
    }

    .mission-box p{
        font-size:1rem;
    }

    .values-grid{
        grid-template-columns:1fr;
        gap:15px;
    }

    .value-card{
        padding:15px;
    }

    .value-card h4{
        font-size:1.1rem;
    }

    .benefit{
        padding:20px;
    }

    .benefit h4{
        font-size:1.1rem;
    }

    .cta-section{
        padding:40px 16px;
    }

    .cta-section h2{
        font-size:2rem;
    }

    .cta-section .btn-green{
        display:block;
        width:100%;
    }
}












