/*
=========================================================
AQUAFARM
Premium Fish Farm Frontend UI
FILE: assets/css/style.css
=========================================================
*/

/* ======================================================
GOOGLE FONT
====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ======================================================
ROOT VARIABLES
====================================================== */

:root{
    --primary-green:#168A3A;
    --dark-green:#0A4E22;
    --green-hover:#0F6F2F;
    --light-bg:#F5F7F6;
    --text-dark:#1D1D1D;
    --text-light:#6F6F6F;
    --white:#FFFFFF;
    --border:#E8ECE9;

    --shadow-sm:0 10px 30px rgba(0,0,0,0.04);
    --shadow-md:0 20px 60px rgba(0,0,0,0.08);
    --shadow-lg:0 25px 80px rgba(0,0,0,0.12);

    --radius-sm:20px;
    --radius-md:24px;
    --radius-lg:30px;

    --transition:all .4s ease;
}

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

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:var(--light-bg);
    color:var(--text-dark);
    overflow-x:hidden;
    line-height:1.7;
}

img{
    max-width:100%;
    display:block;
}

a{
    text-decoration:none;
}

ul{
    list-style:none;
}

button,
input,
textarea{
    font-family:'Poppins',sans-serif;
    outline:none;
    border:none;
}

.container{
    width:100%;
    max-width:1280px;
    margin:auto;
    padding-inline:20px;
}

/* ======================================================
UTILITY CLASSES
====================================================== */

.section-padding{
    padding:120px 0;
}

.section-title{
    font-size:42px;
    line-height:1.2;
    font-weight:700;
    color:var(--text-dark);
    margin-bottom:20px;
}

.section-description{
    color:var(--text-light);
    max-width:620px;
}

.text-center{
    text-align:center;
}

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

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:16px 28px;
    border-radius:60px;
    font-size:15px;
    font-weight:600;
    transition:var(--transition);
    cursor:pointer;
}

.btn-primary{
    background:var(--primary-green);
    color:var(--white);
    box-shadow:0 10px 30px rgba(22,138,58,0.25);
}

.btn-primary:hover{
    background:var(--green-hover);
    transform:translateY(-3px);
}

.btn-secondary{
    background:var(--white);
    color:var(--text-dark);
    border:1px solid var(--border);
}

.btn-secondary:hover{
    transform:translateY(-3px);
    box-shadow:var(--shadow-sm);
}

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

.main-header{
    position:fixed;
    top:20px;
    left:0;
    width:100%;
    z-index:999;
    transition:var(--transition);
}

.main-header.scrolled{
    top:10px;
}

.navbar{
    background:rgba(255,255,255,0.88);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);
    border:1px solid rgba(255,255,255,0.4);
    box-shadow:var(--shadow-sm);
    border-radius:30px;
    padding:18px 28px;

    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:12px;
}

.logo img{
    width:48px;
}

.logo-text h2{
    font-size:24px;
    line-height:1;
    color:var(--dark-green);
}

.logo-text span{
    font-size:12px;
    color:var(--text-light);
}

.nav-menu{
    display:flex;
    align-items:center;
    gap:35px;
}

.nav-menu li a{
    color:var(--text-dark);
    font-size:15px;
    font-weight:500;
    transition:var(--transition);
    position:relative;
}

.nav-menu li a::after{
    content:'';
    position:absolute;
    left:0;
    bottom:-8px;
    width:0;
    height:2px;
    background:var(--primary-green);
    transition:var(--transition);
}

.nav-menu li a:hover{
    color:var(--primary-green);
}

.nav-menu li a:hover::after{
    width:100%;
}

.header-btn{
    display:flex;
    align-items:center;
    gap:15px;
}

.mobile-toggle{
    width:50px;
    height:50px;
    border-radius:50%;
    background:rgba(255,255,255,0.8);
    display:none;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    box-shadow:var(--shadow-sm);
}

.mobile-toggle i{
    font-size:20px;
    color:var(--dark-green);
}

/* ======================================================
HERO SECTION
====================================================== */

.hero{
    padding-top:170px;
    padding-bottom:140px;
    position:relative;
}

.hero-wrapper{
    position:relative;
    overflow:hidden;
    border-radius:var(--radius-lg);
    background:var(--white);
    box-shadow:var(--shadow-md);

    min-height:760px;

    display:flex;
    align-items:center;
}

.hero-content{
    width:50%;
    padding:80px;
    position:relative;
    z-index:2;
}

.hero-content h1{
    font-size:64px;
    line-height:1.1;
    margin-bottom:28px;
    font-weight:700;
    color:var(--dark-green);
}

.hero-content p{
    max-width:520px;
    color:var(--text-light);
    margin-bottom:40px;
    font-size:17px;
}

.hero-buttons{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.hero-image{
    position:absolute;
    right:0;
    top:0;
    width:58%;
    height:100%;
}

.hero-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-image::before{
    content:'';
    position:absolute;
    left:0;
    top:0;
    width:45%;
    height:100%;
    background:linear-gradient(
        to right,
        rgba(255,255,255,1),
        rgba(255,255,255,0)
    );
    z-index:2;
}

/* ======================================================
FEATURES
====================================================== */

.features{
    margin-top:-90px;
    position:relative;
    z-index:10;
}

.features-wrapper{
    background:rgba(255,255,255,0.85);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border-radius:30px;
    padding:40px;
    box-shadow:var(--shadow-md);

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.feature-card{
    display:flex;
    align-items:flex-start;
    gap:18px;
}

.feature-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:rgba(22,138,58,0.08);

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
}

.feature-icon i{
    font-size:26px;
    color:var(--primary-green);
}

.feature-content h4{
    font-size:18px;
    margin-bottom:8px;
}

.feature-content p{
    color:var(--text-light);
    font-size:14px;
}

/* ======================================================
PRODUCTS
====================================================== */

.products{
    padding-top:120px;
}

.section-top{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:30px;
    margin-bottom:50px;
}

.products-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.product-card{
    background:var(--white);
    border-radius:24px;
    overflow:hidden;
    box-shadow:var(--shadow-sm);
    transition:var(--transition);
}

.product-card:hover{
    transform:translateY(-10px);
    box-shadow:var(--shadow-md);
}

.product-image{
    overflow:hidden;
    height:280px;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:var(--transition);
}

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

.product-content{
    padding:24px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.product-content h4{
    font-size:22px;
    margin-bottom:5px;
}

.product-content span{
    font-size:14px;
    color:var(--text-light);
}

.product-arrow{
    width:48px;
    height:48px;
    border-radius:50%;
    background:var(--primary-green);
    color:var(--white);

    display:flex;
    align-items:center;
    justify-content:center;

    flex-shrink:0;
    transition:var(--transition);
}

.product-card:hover .product-arrow{
    transform:rotate(-45deg);
}

/* ======================================================
WHY CHOOSE US
====================================================== */

.why-choose{
    padding:120px 0;
}

.why-wrapper{
    position:relative;
    overflow:hidden;

    border-radius:30px;

    background:linear-gradient(
        135deg,
        #063A18,
        #0A4E22,
        #116B33
    );

    padding:70px;
}

.why-wrapper::before{
    content:'';
    position:absolute;
    right:-100px;
    top:-100px;
    width:350px;
    height:350px;
    background:rgba(255,255,255,0.06);
    border-radius:50%;
    filter:blur(30px);
}

.why-content{
    position:relative;
    z-index:2;
}

.why-content .section-title{
    color:var(--white);
}

.why-features{
    display:flex;
    gap:40px;
    flex-wrap:wrap;
    margin-top:40px;
}

.why-item{
    display:flex;
    align-items:flex-start;
    gap:16px;
}

.why-icon{
    width:60px;
    height:60px;
    border-radius:18px;
    background:rgba(255,255,255,0.08);

    display:flex;
    align-items:center;
    justify-content:center;
}

.why-icon i{
    font-size:24px;
    color:#8EF2AE;
}

.why-text h4{
    color:var(--white);
    margin-bottom:8px;
}

.why-text p{
    color:rgba(255,255,255,0.7);
    max-width:220px;
    font-size:14px;
}

.glass-testimonial{
    position:absolute;
    right:70px;
    bottom:60px;

    width:420px;

    background:rgba(255,255,255,0.08);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border:1px solid rgba(255,255,255,0.1);

    border-radius:24px;
    padding:35px;
}

.glass-testimonial p{
    color:var(--white);
    margin-bottom:20px;
}

.glass-testimonial span{
    color:#8EF2AE;
}

.why-fish{
    position:absolute;
    right:0;
    bottom:0;
    width:420px;
    opacity:0.3;
}

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

.footer{
    background:#041A0C;
    color:var(--white);
    padding-top:100px;
}

.footer-wrapper{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1.5fr;
    gap:60px;
    padding-bottom:70px;
}

.footer-about p{
    color:rgba(255,255,255,0.7);
    margin-top:25px;
}

.footer-title{
    font-size:22px;
    margin-bottom:25px;
}

.footer-links{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-links a{
    color:rgba(255,255,255,0.7);
    transition:var(--transition);
}

.footer-links a:hover{
    color:#8EF2AE;
    padding-left:5px;
}

.footer-contact li{
    margin-bottom:15px;
    color:rgba(255,255,255,0.7);
}

.social-links{
    display:flex;
    gap:14px;
    margin-top:25px;
}

.social-links a{
    width:48px;
    height:48px;
    border-radius:50%;
    background:rgba(255,255,255,0.08);

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--white);
    transition:var(--transition);
}

.social-links a:hover{
    background:var(--primary-green);
    transform:translateY(-5px);
}

.footer-bottom{
    border-top:1px solid rgba(255,255,255,0.08);
    padding:25px 0;
    text-align:center;
}

.footer-bottom p{
    color:rgba(255,255,255,0.6);
}

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

.mobile-menu{
    position:fixed;
    top:0;
    right:-100%;
    width:75%;
    max-width:360px;
    height:100vh;

    background:rgba(255,255,255,0.15);
    backdrop-filter:blur(20px);
    -webkit-backdrop-filter:blur(20px);

    border-left:1px solid rgba(255,255,255,0.2);

    z-index:9999;

    transition:0.4s ease;

    padding:30px;
}

.mobile-menu.active{
    right:0;
}

.mobile-menu-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:50px;
}

.mobile-close{
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(255,255,255,0.2);

    display:flex;
    align-items:center;
    justify-content:center;

    cursor:pointer;
}

.mobile-links{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.mobile-links a{
    color:var(--text-dark);
    font-size:18px;
    font-weight:600;
}

.mobile-btn{
    margin-top:40px;
}

/* ======================================================
ANIMATIONS
====================================================== */

@keyframes floatUp{
    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

.fade-up{
    animation:floatUp 1s ease forwards;
}

/* ======================================================
ABOUT FARM SECTION
====================================================== */

.about-farm{
    padding-top:40px;
    padding-bottom:100px;
}

.about-farm-wrapper{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:center;
}

.about-farm-image{
    position:relative;
}

.about-farm-image img{
    width:100%;
    border-radius:30px;
    box-shadow:0 20px 60px rgba(0,0,0,0.08);
}

.experience-card{
    position:absolute;
    left:30px;
    bottom:30px;

    background:rgba(255,255,255,0.92);
    backdrop-filter:blur(15px);
    -webkit-backdrop-filter:blur(15px);

    border-radius:24px;
    padding:24px;

    width:240px;

    box-shadow:0 15px 40px rgba(0,0,0,0.08);
}

.experience-card h3{
    font-size:54px;
    color:#168A3A;
    line-height:1;
    margin-bottom:12px;
}

.experience-card p{
    color:#6F6F6F;
    font-size:15px;
    line-height:1.7;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0;
}

.about-feature-item{
    display:flex;
    align-items:center;
    gap:12px;
}

.about-feature-item i{
    color:#168A3A;
    font-size:18px;
}

/* ======================================================
TESTIMONIALS
====================================================== */

.testimonials{
    padding-top:30px;
    padding-bottom:120px;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#FFFFFF;
    padding:35px;
    border-radius:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
    transition:all .4s ease;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card.green{
    background:#168A3A;
}

.testimonial-stars{
    display:flex;
    gap:5px;
    margin-bottom:20px;
    color:#FFC107;
}

.testimonial-card p{
    color:#6F6F6F;
    margin-bottom:30px;
}

.testimonial-card.green p{
    color:#FFFFFF;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:15px;
}

.testimonial-user img{
    width:60px;
    height:60px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h4{
    margin-bottom:4px;
}

.testimonial-user span{
    color:#6F6F6F;
    font-size:14px;
}

.testimonial-card.green h4,
.testimonial-card.green span{
    color:#FFFFFF;
}

/* ======================================================
TESTIMONIALS SECTION
====================================================== */

.testimonials{
    padding:80px 0 110px;
    background:#FFFFFF;
}

.testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    margin-top:60px;
}

.testimonial-card{
    background:#F8FAF9;
    border-radius:30px;
    padding:35px;
    transition:0.4s ease;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);

    display:flex;
    flex-direction:column;
    justify-content:space-between;

    min-height:100%;
}

.testimonial-card:hover{
    transform:translateY(-8px);
}

.testimonial-card.green{
    background:#168A3A;
}

.testimonial-stars{
    display:flex;
    align-items:center;
    gap:5px;
    margin-bottom:22px;
}

.testimonial-stars i{
    color:#FFC107;
    font-size:18px;
}

.testimonial-text{
    font-size:17px;
    line-height:1.9;
    color:#6F6F6F;
    margin-bottom:35px;
}

.testimonial-card.green .testimonial-text{
    color:#FFFFFF;
}

.testimonial-user{
    display:flex;
    align-items:center;
    gap:16px;
}

.testimonial-user img{
    width:62px;
    height:62px;
    border-radius:50%;
    object-fit:cover;
    flex-shrink:0;
}

.testimonial-card.green .testimonial-user img{
    border:3px solid rgba(255,255,255,0.25);
}

.testimonial-user h4{
    font-size:20px;
    margin-bottom:4px;
    line-height:1.2;
}

.testimonial-user span{
    font-size:14px;
    color:#6F6F6F;
}

.testimonial-card.green h4,
.testimonial-card.green span{
    color:#FFFFFF;
}

/* ======================================================
CHECKOUT PAGE
====================================================== */

.checkout-section{
    padding:90px 0;
}

.checkout-wrapper{
    display:grid;
    grid-template-columns:1.2fr 0.8fr;
    gap:40px;
    align-items:start;
}

.checkout-form-card,
.summary-card{
    background:#FFFFFF;
    border-radius:30px;
    padding:40px;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.section-heading{
    margin-bottom:35px;
}

.section-heading h2{
    font-size:42px;
    margin-top:15px;
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
    margin-bottom:24px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group label{
    font-size:16px;
    font-weight:600;
    margin-bottom:12px;
    color:#1D1D1D;
}

.form-group input,
.form-group textarea{
    width:100%;
    border:none;
    outline:none;
    background:#F5F7F6;
    border-radius:18px;
    padding:18px 20px;
    font-size:15px;
    color:#1D1D1D;
}

.form-group textarea{
    resize:none;
}

.summary-header{
    margin-bottom:30px;
}

.summary-header h3{
    margin-top:15px;
    font-size:34px;
}

.summary-product{
    display:flex;
    align-items:center;
    gap:18px;
    padding:18px 0;
    border-bottom:1px solid rgba(0,0,0,0.08);
}

.summary-product img{
    width:85px;
    height:85px;
    object-fit:cover;
    border-radius:18px;
    flex-shrink:0;
}

.summary-product h4{
    font-size:18px;
    margin-bottom:5px;
}

.summary-product span{
    color:#777777;
    font-size:14px;
}

.summary-product strong{
    margin-left:auto;
    font-size:18px;
}

.summary-totals{
    padding:25px 0;
}

.summary-totals div{
    display:flex;
    justify-content:space-between;
    margin-bottom:18px;
    font-size:16px;
}

.grand-total{
    padding-top:20px;
    border-top:1px solid rgba(0,0,0,0.1);
    font-size:22px !important;
    font-weight:700;
}

.payment-methods{
    margin-top:25px;
}

.payment-methods h4{
    margin-bottom:20px;
    font-size:24px;
}

.payment-option{
    display:flex;
    align-items:flex-start;
    gap:16px;
    padding:18px;
    background:#F8FAF9;
    border-radius:20px;
    margin-bottom:16px;
    cursor:pointer;
}

.payment-option input{
    margin-top:5px;
}

.payment-option strong{
    display:block;
    margin-bottom:5px;
    font-size:17px;
}

.payment-option span{
    color:#777777;
    font-size:14px;
}

.place-order-btn{
    width:100%;
    margin-top:20px;
}

.support-section{
    padding:0 0 100px;
}

.support-wrapper{
    background:#FFFFFF;
    border-radius:35px;
    padding:60px;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;
}

.support-wrapper h2{
    font-size:48px;
    margin:20px 0;
    line-height:1.2;
}

.support-wrapper p{
    max-width:600px;
    color:#666666;
    line-height:1.9;
}

.support-buttons{
    display:flex;
    gap:18px;
}

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

.cart-page{
    background: var(--light-bg);
}

.cart-layout{
    display:grid;
    grid-template-columns: 1.5fr 0.7fr;
    gap:40px;
    align-items:start;
}

.cart-items-wrapper{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.cart-item-card{
    background:var(--white);
    border-radius:30px;
    padding:24px;
    display:flex;
    gap:24px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.cart-item-image{
    width:220px;
    min-width:220px;
    height:220px;
    border-radius:24px;
    overflow:hidden;
}

.cart-item-image img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.cart-item-content{
    flex:1;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
}

.cart-item-top{
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.cart-category{
    display:inline-block;
    padding:8px 16px;
    border-radius:50px;
    background:rgba(22,138,58,0.08);
    color:var(--primary-green);
    font-size:14px;
    font-weight:600;
    margin-bottom:16px;
}

.cart-item-top h3{
    font-size:30px;
    margin-bottom:12px;
}

.remove-cart-item{
    width:52px;
    height:52px;
    border:none;
    border-radius:50%;
    background:#FFF2F2;
    color:#E53935;
    cursor:pointer;
    transition:0.3s;
}

.remove-cart-item:hover{
    transform:translateY(-3px);
}

.cart-item-description{
    color:#666;
    line-height:1.8;
    margin:20px 0;
}

.cart-item-bottom{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    flex-wrap:wrap;
}

.cart-price,
.cart-total{
    font-size:28px;
    font-weight:700;
    color:var(--dark-green);
}

.cart-quantity{
    display:flex;
    align-items:center;
    background:#F5F7F6;
    border-radius:50px;
    padding:8px;
    gap:10px;
}

.cart-quantity button{
    width:42px;
    height:42px;
    border:none;
    border-radius:50%;
    background:var(--white);
    font-size:18px;
    cursor:pointer;
}

.cart-quantity input{
    width:40px;
    border:none;
    background:none;
    text-align:center;
    font-weight:700;
    font-size:16px;
}

.cart-summary-sidebar{
    background:var(--white);
    border-radius:30px;
    padding:35px;
    position:sticky;
    top:120px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.summary-header{
    margin-bottom:30px;
}

.summary-label{
    display:inline-block;
    padding:10px 20px;
    background:rgba(22,138,58,0.08);
    color:var(--primary-green);
    border-radius:50px;
    font-weight:600;
    margin-bottom:16px;
}

.summary-header h2{
    font-size:34px;
}

.summary-items{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin-bottom:30px;
}

.summary-item{
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.summary-item span{
    color:#666;
}

.summary-item strong{
    font-size:18px;
}

.summary-total{
    border-top:1px solid #EAEAEA;
    padding-top:24px;
    margin-bottom:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.summary-total span{
    font-size:18px;
    font-weight:600;
}

.summary-total h3{
    font-size:36px;
    color:var(--primary-green);
}

.summary-buttons{
    display:flex;
    flex-direction:column;
    gap:16px;
}

.summary-note{
    margin-top:24px;
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:20px;
    border-radius:20px;
    background:#F5F7F6;
}

.summary-note i{
    color:var(--primary-green);
    margin-top:3px;
}

.summary-note span{
    font-size:14px;
    line-height:1.7;
    color:#666;
}

/* =========================================================
CHECKOUT PAGE
========================================================= */

.checkout-page{
    background:var(--light-bg);
}

.checkout-layout{
    display:grid;
    grid-template-columns:1.4fr 0.7fr;
    gap:40px;
    align-items:start;
}

.checkout-left{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.checkout-card,
.checkout-summary{
    background:var(--white);
    border-radius:30px;
    padding:35px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.checkout-card-header{
    margin-bottom:30px;
}

.checkout-card-header span{
    display:inline-block;
    padding:10px 18px;
    background:rgba(22,138,58,0.08);
    color:var(--primary-green);
    border-radius:50px;
    font-weight:600;
    margin-bottom:14px;
}

.checkout-card-header h2{
    font-size:32px;
}

.checkout-form-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:24px;
}

.form-group{
    display:flex;
    flex-direction:column;
}

.form-group.full-width{
    grid-column:1 / -1;
}

.form-group label{
    margin-bottom:12px;
    font-weight:600;
    color:var(--text-dark);
}

.form-group input,
.form-group textarea,
.form-group select{
    width:100%;
    border:none;
    background:#F5F7F6;
    padding:18px 20px;
    border-radius:18px;
    font-size:15px;
    outline:none;
    resize:none;
}

.payment-methods{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.payment-option{
    display:block;
    cursor:pointer;
}

.payment-option input{
    display:none;
}

.payment-content{
    display:flex;
    align-items:center;
    gap:18px;
    padding:22px;
    border-radius:24px;
    border:2px solid #EAEAEA;
    transition:0.3s;
    background:#fff;
}

.payment-option.active .payment-content,
.payment-option:hover .payment-content{
    border-color:var(--primary-green);
    background:rgba(22,138,58,0.04);
}

.payment-content i{
    width:60px;
    height:60px;
    border-radius:50%;
    background:rgba(22,138,58,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary-green);
    font-size:22px;
}

.payment-content h4{
    font-size:20px;
    margin-bottom:6px;
}

.payment-content p{
    color:#666;
    font-size:14px;
}

.checkout-summary{
    position:sticky;
    top:120px;
}

.checkout-products{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin:30px 0;
}

.checkout-product{
    display:flex;
    align-items:center;
    gap:16px;
}

.checkout-product img{
    width:80px;
    height:80px;
    object-fit:cover;
    border-radius:20px;
}

.checkout-product h4{
    font-size:18px;
    margin-bottom:6px;
}

.checkout-product span{
    color:#666;
    font-size:14px;
}

.checkout-product strong{
    margin-left:auto;
    font-size:18px;
    color:var(--dark-green);
}

.checkout-totals{
    border-top:1px solid #EAEAEA;
    padding-top:24px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.checkout-total-item{
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.checkout-total-item.total{
    padding-top:20px;
    border-top:1px solid #EAEAEA;
    align-items:center;
}

.checkout-total-item.total h3{
    color:var(--primary-green);
    font-size:34px;
}

.place-order-btn{
    width:100%;
    margin-top:30px;
}

.checkout-security{
    margin-top:24px;
    padding:20px;
    border-radius:20px;
    background:#F5F7F6;
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.checkout-security i{
    color:var(--primary-green);
    margin-top:3px;
}

/* =========================================================
PAYMENT PAGE
========================================================= */

.payment-page{
    background:var(--light-bg);
}

.payment-layout{
    display:grid;
    grid-template-columns:1.4fr 0.7fr;
    gap:40px;
    align-items:start;
}

.payment-left{
    display:flex;
    flex-direction:column;
    gap:30px;
}

.payment-card,
.payment-summary{
    background:var(--white);
    border-radius:30px;
    padding:35px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.payment-method-card{
    display:block;
    margin-bottom:20px;
    cursor:pointer;
}

.payment-method-card input{
    display:none;
}

.payment-method-content{
    display:flex;
    align-items:center;
    gap:20px;
    border:2px solid #EAEAEA;
    border-radius:24px;
    padding:24px;
    transition:0.3s;
}

.payment-method-card.active .payment-method-content,
.payment-method-card:hover .payment-method-content{
    border-color:var(--primary-green);
    background:rgba(22,138,58,0.04);
}

.payment-method-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(22,138,58,0.08);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary-green);
    font-size:24px;
}

.payment-method-text h4{
    font-size:22px;
    margin-bottom:8px;
}

.payment-method-text p{
    color:#666;
    line-height:1.7;
}

.paystack-box{
    border-radius:30px;
    padding:40px;
    background:linear-gradient(
        135deg,
        #0A4E22,
        #168A3A
    );
    color:#fff;
}

.paystack-icon{
    width:80px;
    height:80px;
    border-radius:50%;
    background:rgba(255,255,255,0.15);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:24px;
}

.paystack-box h3{
    font-size:32px;
    margin-bottom:18px;
}

.paystack-box p{
    line-height:1.9;
    opacity:0.9;
    margin-bottom:30px;
}

.payment-features{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:16px;
}

.payment-features div{
    background:rgba(255,255,255,0.12);
    padding:16px;
    border-radius:16px;
    display:flex;
    align-items:center;
    gap:10px;
}

.payment-summary{
    position:sticky;
    top:120px;
}

.payment-products{
    display:flex;
    flex-direction:column;
    gap:20px;
    margin:30px 0;
}

.payment-product{
    display:flex;
    align-items:center;
    gap:16px;
}

.payment-product img{
    width:80px;
    height:80px;
    border-radius:20px;
    object-fit:cover;
}

.payment-product h4{
    font-size:18px;
    margin-bottom:6px;
}

.payment-product span{
    color:#666;
    font-size:14px;
}

.payment-product strong{
    margin-left:auto;
    font-size:18px;
    color:var(--dark-green);
}

.payment-totals{
    border-top:1px solid #EAEAEA;
    padding-top:24px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.payment-total-item{
    display:flex;
    justify-content:space-between;
    gap:20px;
}

.payment-total-item.total{
    border-top:1px solid #EAEAEA;
    padding-top:20px;
    align-items:center;
}

.payment-total-item.total h3{
    font-size:34px;
    color:var(--primary-green);
}

.payment-btn{
    width:100%;
    margin-top:30px;
}

.payment-security{
    margin-top:24px;
    padding:20px;
    background:#F5F7F6;
    border-radius:20px;
    display:flex;
    gap:12px;
    align-items:flex-start;
}

.payment-security i{
    color:var(--primary-green);
    margin-top:3px;
}
/* =========================================================
PAYMENT SUCCESS PAGE
========================================================= */

.payment-success-page{
    background:var(--light-bg);
}

.success-wrapper{
    max-width:950px;
    margin:auto;
    background:var(--white);
    border-radius:40px;
    padding:60px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
    text-align:center;
}

.success-icon{
    width:120px;
    height:120px;
    border-radius:50%;
    margin:auto;
    background:linear-gradient(
        135deg,
        #168A3A,
        #0A4E22
    );
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:42px;
    margin-bottom:30px;
}

.success-label{
    display:inline-block;
    padding:12px 22px;
    border-radius:50px;
    background:rgba(22,138,58,0.08);
    color:var(--primary-green);
    font-weight:600;
    margin-bottom:20px;
}

.success-wrapper h1{
    font-size:52px;
    line-height:1.2;
    margin-bottom:20px;
}

.success-wrapper p{
    max-width:700px;
    margin:auto;
    color:#666;
    line-height:1.9;
}

.success-order-info{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:24px;
    margin-top:50px;
}

.success-info-card{
    background:#F5F7F6;
    padding:28px;
    border-radius:24px;
}

.success-info-card span{
    display:block;
    color:#666;
    margin-bottom:12px;
}

.success-info-card h4{
    font-size:22px;
    color:var(--dark-green);
}

.success-summary{
    margin-top:50px;
    text-align:left;
    border:1px solid #EAEAEA;
    border-radius:30px;
    padding:35px;
}

.success-products{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:24px;
}

.success-product{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:20px;
}

.success-product-left{
    display:flex;
    align-items:center;
    gap:18px;
}

.success-product img{
    width:85px;
    height:85px;
    border-radius:20px;
    object-fit:cover;
}

.success-product h4{
    font-size:20px;
    margin-bottom:8px;
}

.success-product span{
    color:#666;
}

.success-product strong{
    font-size:22px;
    color:var(--dark-green);
}

.success-total{
    margin-top:30px;
    padding-top:24px;
    border-top:1px solid #EAEAEA;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.success-total span{
    font-size:18px;
    font-weight:600;
}

.success-total h3{
    font-size:38px;
    color:var(--primary-green);
}

.success-buttons{
    margin-top:40px;
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.success-note{
    margin-top:35px;
    padding:22px;
    border-radius:20px;
    background:#F5F7F6;
    display:flex;
    align-items:flex-start;
    justify-content:center;
    gap:12px;
    max-width:700px;
    margin-left:auto;
    margin-right:auto;
}

.success-note i{
    color:var(--primary-green);
    margin-top:3px;
}

/* =========================================================
ORDERS PAGE
========================================================= */

.orders-page{
    background:var(--light-bg);
}

.order-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:24px;
    margin-bottom:40px;
}

.order-stat-card{
    background:var(--white);
    border-radius:30px;
    padding:30px;
    display:flex;
    align-items:center;
    gap:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.order-stat-icon{
    width:70px;
    height:70px;
    border-radius:50%;
    background:rgba(22,138,58,0.1);
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--primary-green);
    font-size:24px;
}

.order-stat-icon.green{
    background:rgba(22,138,58,0.12);
    color:#168A3A;
}

.order-stat-icon.orange{
    background:rgba(255,153,0,0.12);
    color:#ff9900;
}

.order-stat-icon.blue{
    background:rgba(0,102,255,0.12);
    color:#0066ff;
}

.order-stat-card h3{
    font-size:34px;
    margin-bottom:6px;
    color:var(--dark-green);
}

.order-stat-card span{
    color:#666;
}

.orders-wrapper{
    background:var(--white);
    border-radius:35px;
    padding:40px;
    box-shadow:0 10px 40px rgba(0,0,0,0.06);
}

.orders-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    margin-bottom:35px;
}

.order-item{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    padding:28px 0;
    border-top:1px solid #EAEAEA;
}

.order-item:first-of-type{
    border-top:none;
    padding-top:0;
}

.order-left{
    display:flex;
    align-items:center;
    gap:22px;
}

.order-left img{
    width:110px;
    height:110px;
    border-radius:24px;
    object-fit:cover;
}

.order-left h3{
    font-size:24px;
    margin-bottom:10px;
}

.order-left span{
    display:block;
    color:var(--primary-green);
    font-weight:600;
    margin-bottom:10px;
}

.order-left p{
    color:#666;
}

.order-right{
    display:flex;
    flex-direction:column;
    align-items:flex-end;
    gap:14px;
}

.order-price{
    font-size:28px;
    font-weight:700;
    color:var(--dark-green);
}

.order-status{
    padding:10px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.order-status.processing{
    background:rgba(255,153,0,0.12);
    color:#ff9900;
}

.order-status.shipping{
    background:rgba(0,102,255,0.12);
    color:#0066ff;
}

.order-status.delivered{
    background:rgba(22,138,58,0.12);
    color:#168A3A;
}

.order-status.cancelled{
    background:rgba(255,0,0,0.1);
    color:#ff0000;
}

.track-link{
    color:var(--primary-green);
    font-weight:600;
    transition:0.3s;
}

.track-link:hover{
    opacity:0.7;
}