*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
    
}

/* HEADER */
header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 40px;
    background:white;
    box-shadow:0 2px 10px rgba(0,0,0,0.1);
    position:sticky;
    top:0;
    z-index:1000;
}

/* LOGO */
.logo{
    display:flex;
    align-items:center;
}

.logo img{
    width:70px;
    margin-right:10px;
}

.logo h2{
    color:#2e7d32;
}

/* NAVIGATION */
nav{
    display:flex;
    align-items:center;
    gap:25px;
}

nav a{
    text-decoration:none;
    color:#333;
    font-weight:500;
}

nav a:hover{
    color:#2e7d32;
}

/* ICONS */
.icons i{
    margin-left:15px;
    font-size:18px;
    cursor:pointer;
    color:#2e7d32;
}



/* HAMBURGER */
.menu-toggle{
    display:none;
    font-size:22px;
    cursor:pointer;
}

/* MOBILE RESPONSIVE */
@media(max-width:768px){

    nav{
        position:absolute;
        top:70px;
        right:-100%;
        background:white;
        flex-direction:column;
        width:200px;
        height:100vh;
        padding-top:20px;
        transition:0.3s;
    }

    nav.active{
        right:0;
    }

    .menu-toggle{
        display:block;
    }
}




/* Dropdown */
.dropdown {
    position: relative;
    display: inline;
}

.dropbtn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #333;
}

.dropdown-content {
    display: none;
    position: absolute;
  
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 10px rgba(0,0,0,0.1);

   
}

.dropdown-content a {
    display: block;
    padding: 10px;
    text-decoration: none;
    color: #333;
}

.dropdown-content a:hover {
    background: #2e7d32;
    color: white;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* FULL SCREEN BACKDROP */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    height: 100%;

    background: rgba(0,0,0,0.6);

    justify-content: center;
    align-items: center;

    z-index: 9999;
}

/* POPUP BOX */
.modal-box {
    width: 360px;
    background: white;

    padding: 25px;
    border-radius: 12px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);

    text-align:center;

    position:absolute;
    animation: pop 0.25s ease;
}

/* ANIMATION */
@keyframes pop {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* CLOSE BUTTON */
.close {
    position: absolute;
    right: 12px;
    top: 8px;

    font-size: 26px;
    cursor: pointer;
    color: #333;
}

/* TITLE */
.modal-box h2 {
    margin-bottom: 15px;
    color: #222;
}

/* INPUT + SELECT */
.modal-box input,
.modal-box select {
    width: 100%;
    padding: 10px;

    margin: 8px 0;

    border: 1px solid #ddd;
    border-radius: 6px;

    outline: none;
    transition: 0.3s;
}

.modal-box input:focus,
.modal-box select:focus {
    border-color: green;
}

/* LOGIN BUTTON */
.modal-box button {
    width: 100%;
    padding: 10px;

    margin-top: 10px;

    background: green;
    color: white;

    border: none;
    border-radius: 6px;

    cursor: pointer;
    font-size: 16px;

    transition: 0.3s;
}

.modal-box button:hover {
    background: darkgreen;
}

/* REGISTER TEXT */
.modal-box p {
    margin-top: 10px;
    color: green;
    cursor: pointer;
    font-size: 14px;
}

.modal-box p:hover {
    text-decoration: underline;
}

/* REGISTER BOX */
#registerBox {
    margin-top: 15px;
}


/* =========================
   CART PANEL (DO NOT CHANGE)
========================= */
.cart-panel {
    position: fixed;
    top: 0;
    right: -400px;
    width: 350px;
    height: 100%;

    background: white;
    box-shadow: -5px 0 20px rgba(0,0,0,0.2);

    transition: 0.3s ease;
    z-index: 9999;

    display: flex;
    flex-direction: column;

    overflow: hidden; /* REQUIRED FIX */
}

.cart-panel.active {
    right: 0;
}

/* =========================
   HEADER (SAFE TO EDIT COLOR)
========================= */
.cart-header {
    background: green; /* CHANGEABLE */
    color: white;

    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Close button */
.close-cart {
    font-size: 24px;
    cursor: pointer;
}

/* =========================
   CART BODY (DO NOT CHANGE)
   - FIXED SCROLL ISSUE HERE
========================= */
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 10px;
}

/* =========================
   TABLE STRUCTURE (DO NOT CHANGE)
========================= */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

/* Product image */
td img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

/* =========================
   TOTAL PRICE (SAFE STYLE)
========================= */
#totalPrice {
    text-align: center;
    margin: 10px 0;
    color: green; /* CHANGEABLE */
    font-weight: bold;
}

/* =========================
   EMPTY CART TEXT
========================= */
.empty {
    text-align: center;
    margin-top: 50px;
    color: gray;
}

/* =========================
   REMOVE BUTTON (FIXED)
========================= */
td button {
    background: red; /* CHANGEABLE */
    color: white;

    border: none;
    padding: 5px 8px;
    border-radius: 5px;

    cursor: pointer;
}

td button:hover {
    background: darkred;
}

/* =========================
   CART ICON
========================= */
.cart-icon {
    position: relative;
    display: inline-block;
    cursor: pointer;
    font-size: 22px;
    color: #2e7d32; /* CHANGEABLE */
}

/* =========================
   CART COUNT BADGE
========================= */
.cart-count {
    position: absolute;
    top: -8px;
    right: -10px;

    background: red; /* CHANGEABLE */
    color: white;

    width: 18px;
    height: 18px;

    font-size: 12px;
    border-radius: 50%;

    display: flex;
    justify-content: center;
    align-items: center;

    font-weight: bold;
}



/* FIX SCROLL AREA */
.cart-body {
    flex: 1;
    overflow-y: auto;   /* 🔥 important */
    padding: 10px;
}

/* TABLE */
table {
    width: 100%;
    border-collapse: collapse;
}

th, td {
    padding: 8px;
    text-align: center;
    border-bottom: 1px solid #ddd;
}

/* IMAGE */
td img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
}

/* REMOVE BUTTON */
td button {
    background: red;
    color: white;
    border: none;
    padding: 5px 8px;
    border-radius: 5px;
    cursor: pointer;
}

.checkout-btn {
    width: 90%;
    margin: 15px auto;
    padding: 12px;

    background: #2e7d32;
    color: white;

    border: none;
    border-radius: 8px;

    font-size: 16px;
    cursor: pointer;

    display: block;
    transition: 0.3s;
}

.checkout-btn:hover {
    background: #1b5e20;
    transform: scale(1.03);
}




.contact-section{
    padding:50px 10%;
    text-align:center;
    font-family: Arial, sans-serif;
    background:#f4f6f9;
}

/* Title */
.contact-section .title{
    font-size:32px;
    margin-bottom:30px;
    color:#2c3e50;
}

/* INFO BOXES */
.contact-section .contact-info{
    display:flex;
    justify-content:space-between;
    gap:20px;
    margin-bottom:40px;
    flex-wrap:wrap;
}

.contact-section .info-box{
    flex:1;
    min-width:250px;
    background:white;
    padding:25px;
    border-radius:15px;
    box-shadow:0 5px 15px rgba(0,0,0,0.1);
    transition:0.3s;
}

.contact-section .info-box i{
    font-size:40px;
    margin-bottom:10px;
}

.contact-section .whatsapp i{ color:#25D366; }
.contact-section .email i{ color:#e74c3c; }
.contact-section .address i{ color:#2980b9; }

.contact-section .info-box:hover{
    transform:translateY(-5px);
}





.big-footer{
    background:#0f172a;
    color:white;
    font-family:Arial, sans-serif;
}

/* 🔥 Subscribe Bar (Horizontal) */
.subscribe-bar{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:40px 10%;
    background:linear-gradient(90deg,#00c853,orange);
    flex-wrap:wrap;
    gap:20px;
}

.subscribe-text h2{
    margin:0;
    font-size:26px;
}

.subscribe-text p{
    margin:5px 0 0;
}

/* Subscribe form */
.subscribe-form{
    display:flex;
    gap:10px;
}

.subscribe-form input{
    padding:12px;
    width:250px;
    border:none;
    border-radius:5px;
    outline:none;
}

.subscribe-form button{
    padding:12px 20px;
    border:none;
    background:#000;
    color:white;
    cursor:pointer;
    border-radius:5px;
}

/* 🔥 Main Footer */
.footer-main{
    display:flex;
    justify-content:space-between;
    flex-wrap:wrap;
    padding:50px 10%;
    gap:30px;
}

.footer-col{
    flex:1;
    min-width:220px;
}

.footer-col h3{
    margin-bottom:15px;
    color:#00e676;
}

.footer-col a{
    display:block;
    color:white;
    text-decoration:none;
    margin:6px 0;
}

.footer-col a:hover{
    color:#00e676;
}

/* Social Icons */
.social-icons{
    margin-top:10px;
}

.social-icons a{
    font-size:22px;
    margin-right:10px;
    color:white;
    transition:0.3s;
}

.social-icons a:hover{
    color:#00e676;
    transform:scale(1.2);
}

/* Bottom */
.footer-bottom{
    text-align:center;
    padding:20px;
    border-top:1px solid #333;
    font-size:14px;
}

/* Responsive */
@media(max-width:768px){
    .subscribe-bar{
        flex-direction:column;
        text-align:center;
    }

    .subscribe-form{
        width:100%;
        justify-content:center;
    }

    .subscribe-form input{
        width:70%;
    }

    .footer-main{
        flex-direction:column;
        text-align:center;
    }
}


.footer-bottom{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:15px 10%;
    border-top:1px solid #333;
    background:#0f172a;
    color:white;
    flex-wrap:wrap;
}

/* Left side */
.footer-left{
    display:flex;
    align-items:center;
    gap:10px;
}

.footer-logo{
    width:60px;
    height:100px;
   
    object-fit:contain;
}

/* Right side */
.footer-right p{
    margin:0;
    color:#00e676;
    font-weight:bold;
}

/* Responsive */
@media(max-width:768px){
    .footer-bottom{
        flex-direction:column;
        text-align:center;
        gap:10px;
    }

    .footer-left{
        justify-content:center;
    }
}



body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f5f5f5;
}

/* About Section */
.about-section {
    padding: 80px 10%;
    background: linear-gradient(135deg, #0f3d2e, #145a32);
    color: white;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

/* Image */
.about-image img {
    width: 320px;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: white;
    padding: 20px;
}

/* Content */
.about-content {
    max-width: 600px;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #ffd700;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

/* Boxes */
.owner-box, .address-box {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-left: 4px solid #ffd700;
    margin: 15px 0;
    border-radius: 8px;
}

.owner-box h3, .address-box h3 {
    margin: 0;
    color: #ffd700;
}

/* Button */
.about-btn {
    margin-top: 20px;
    padding: 12px 25px;
    background: #ffd700;
    color: #000;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.about-btn:hover {
    background: white;
    color: #145a32;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-image img {
        width: 250px;
    }
}






/* Section */
.product-section {
    width: 80%;
    margin: auto;
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    color: #145a32;
}
.product-section {
    width: 80%;
    margin: auto;
    padding: 60px 0;
    text-align: center;

    /* NEW BACKGROUND */
    background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
    border-radius: 20px;
}

/* Section */
.product-section {
    width: 85%;
    margin: auto;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    font-size: 34px;
    margin-bottom: 40px;
    color: #145a32;
}

/* Card Layout */
.product-card {
    display: flex;
    align-items: center;
    gap: 40px;

    background: linear-gradient(135deg, #ffffff, #f1f8f4);
    border-radius: 20px;
    padding: 25px;

    margin-bottom: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);

    transition: 0.4s;
}

.product-card:hover {
    transform: translateY(-5px);
}

/* Image */
.product-image img {
    width: 280px;
    height: 280px;
    object-fit: contain;
    border-radius: 15px;
}

/* Details */
.product-details {
    flex: 1;
}

.product-details h3 {
    font-size: 26px;
    color: #145a32;
}

/* Description */
.desc {
    margin: 15px 0;
    font-size: 15px;
    line-height: 1.7;
    color: #444;
}

/* Price */
.price {
    margin: 10px 0;
}

.old {
    text-decoration: line-through;
    color: gray;
    margin-right: 10px;
}

.new {
    color: green;
    font-size: 20px;
    font-weight: bold;
}

/* Button */
.cart-btn {
    margin-top: 10px;
    padding: 12px 25px;
    background: #145a32;
    color: white;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
}

.cart-btn:hover {
    background: gold;
    color: black;
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
    .product-card {
        flex-direction: column;
        text-align: center;
    }

    .product-image img {
        width: 200px;
        height: 200px;
    }
}










.search-box {
    text-align: center;
    margin: 20px 0;
}

.search-input {
    width: 60%;
    margin: auto;
    position: relative;
}

.search-input input {
    width: 100%;
    padding: 12px 40px;
    border: 2px solid #145a32;
    border-radius: 30px;
    font-size: 16px;
    outline: none;
}

.search-input .icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 18px;
    color: #145a32;
}

#noResult {
    text-align: center;
    color: red;
    font-size: 18px;
    margin-top: 15px;
    display: none;
    font-weight: bold;
}
