/* ============ COLOR VARIABLES ============ */
:root {
    --mango-yellow: #F5A623;
    --mango-orange: #E8860C;
    --dark-green: #006B3C;
    --bright-green: #00CC00;
    --gold: #C8A951;
    --light-yellow: #FFF8E1;
    --white: #FFFFFF;
    --dark-text: #333333;
    --light-text: #666666;
    --dark-bg: #1A1A1A;
    --green-bg: rgb(5, 85, 5);
}

/* ============ RESET & BASE ============ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: var(--green-bg);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: var(--dark-green);
}

a:hover {
    color: var(--mango-orange);
}

ul {
    list-style: none;
}

/* ============ NAVBAR ============ */
.navbar {
    background-color: var(--bright-green);
    width: 100%;
}


.logo a {
    display: flex;
    flex-direction: column;
    padding: 8px 20px;
    color: var(--white);
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.logo span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-style: italic;
}
/* logo left push */
.nav-container {
    display: flex;
    align-items: center;
    justify-content: center; /* ⭐ center everything */
    position: relative;
}

/* logo ko left pe fix karo */
.logo {
    position: absolute;
    left: 0;
}

.logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-box img {
    width: 45px;   /* size adjust kar sakti ho */
    height: 45px;
    object-fit: cover;
    border-radius: 50%; /* optional round logo */
}

.logo-text {
    display: flex;
    flex-direction: column;
}
/* nav links center me rahenge */
.nav-links {
    display: flex;
    align-items: center;
}

.nav-links li a {
    display: block;
    color: var(--white);
    padding: 15px 22px;
    font-size: 14px;
    font-weight: 400;
    transition: background-color 0.3s ease;
}

.nav-links li a:hover {
    background-color: var(--dark-green);
    color: var(--white);
}

.nav-links li a.active {
    background-color: var(--mango-orange);
    color: var(--white);
}
.menu-toggle {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}


/* ============ FOOTER ============ */
.footer-logo-box {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo-box img {
    width: 40px !important;
    height: 40px !important;
    object-fit: contain;
}
.footer {
    background-color: var(--dark-bg);
    color: #ccc;
    padding: 40px;
    border-top: 3px solid var(--mango-yellow);
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

/* Columns */
.footer-col {
    display: flex;
    flex-direction: column;   /* 👈 ye sab kuch vertical kar dega */
}
/* Logo */
.footer-logo {
    color: var(--mango-yellow);
    font-size: 22px;
    margin-bottom: 10px;
     color: var(--white);
}

/* Headings */
.footer-col h3 {
    color: var(--white);
    margin-bottom: 10px;
}

/* Text */
.footer-col p {
    font-size: 14px;
    margin: 5px 0;
}
.footer-col .footer-links li a {
    color: #fff !important;
}

/* Links */
.footer-col a {
    display: block;   /* 👈 ye main fix hai */
    color: var(--white);
    font-size: 14px;
    margin: 6px 0;
    text-decoration: none;
}
.footer-col .footer-links li a:hover {
    color: var(--mango-yellow) !important;
}

/* Bottom space */
.footer-bottom-space {
    height: 40px;
    background-color: var(--green-bg);
}

/* ============ MAIN CONTENT ============ */
.main-content {
    flex: 1;
    padding: 30px 40px;
}
.content-card {
    background-color: var(--white);
    border-radius: 3 px;
    padding: 40px 50px;

    width: 100%;
    max-width: 1300px;

    margin: 0 auto; /* IMPORTANT: center */
    
    border-top: 3px solid var(--mango-yellow);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}
.product-section {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 20px;
}.product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 10px 20px;
}

/* MAIN TITLE */
.product-details h1 {
    font-size: 30px;
    color: var(--dark-green);
    margin-bottom: 8px;
}

/* TAG LINE */
.tag {
    color: var(--mango-orange);
    font-weight: bold;
    margin-bottom: 15px;
}

/* SUB HEADINGS */
.product-details h3 {
    font-size: 16px;
    color: var(--dark-green);
    margin-top: 12px;
    margin-bottom: 6px;
    border-left: 4px solid var(--mango-yellow);
    padding-left: 8px;
}

/* DESCRIPTION TEXT */
.desc {
    font-size: 14px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}

/* FEATURES LIST */
.features {
    margin: 8px 0 12px;
    padding-left: 18px;
}

.features li {
    font-size: 14px;
    margin-bottom: 6px;
    color: #333;
    position: relative;
}

.features li::before {
    content: "✔";
    color: var(--bright-green);
    margin-right: 6px;
}

/* PRICE */
.price {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-green);
    margin: 15px 0;
}

/* ORDER BUTTON */
.order-btn {
    display: inline-block;
    width: 200px;
    text-align: center;
 background: var(--bright-green);
     color: white;
    padding: 12px;
    border-radius: 8px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
}

.order-btn:hover {
 background: var(--dark-green);    transform: scale(1.05);
     color: #ccc;
}.product-row {
    display: flex;
    gap: 30px;
    background: var(--light-yellow);
    padding: 25px;
    border-radius: 15px;
    border: 2px solid rgba(0, 107, 60, 0.15);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* IMAGE 50% */
.product-img {
    flex: 1;
}

.product-img img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 12px;
}

/* TEXT 50% */
.product-details {
    flex: 1;
}.packaging-grid {
    display: flex;
    gap: 20px;
    margin: 15px 0;
}
.size-options {
    display: flex;
    gap: 20px;
    margin: 10px 0;
}

.size-options label {
    background: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    border: 2px solid rgba(0, 107, 60, 0.15);
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
}

.size-options input {
    margin-right: 6px;
}

.size-options label:hover {
    border-color: var(--mango-yellow);
    transform: translateY(-2px);
}

.quantity-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.quantity-box button {
    background: var(--bright-green);
    color: white;
    border: none;
    width: 100px;
    height: 35px;
    border-radius: 5px;
    cursor: pointer;
}

.quantity-box input {
    width: 50px;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.product-price {
    font-size: 24px;
    font-weight: bold;
    color: var(--dark-green);
    margin: 15px 0 10px;
}

/* ================== TABLET (≤ 900px) ================== */
@media (max-width: 900px) {

  .content-card {
        padding: 30px 20px;
    }

    .main-content {
        padding: 20px;
    }

    .footer-inner {
        gap: 20px;
    }}

/* ================== MOBILE (≤ 768px) ================== */
@media (max-width: 768px) {

    .nav-container {
        justify-content: space-between;
        padding: 10px 15px;
    }

    .logo {
        position: static;
    }

    /* HAMBURGER SHOW */
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: var(--bright-green);
        z-index: 999;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        padding: 14px;
        border-top: 1px solid rgba(255,255,255,0.2);
    }

   .main-content {
        padding: 15px;
    }

    .content-card {
        padding: 20px 15px;
    }

    .footer-inner {
        flex-direction: column;
        gap: 20px;
    }
}

/* ================== SMALL MOBILE (≤ 468px) ================== */
@media (max-width: 468px) {

    body {
        font-size: 14px;
    }

 .main-content {
        padding: 15px;
    }

    .content-card {
        padding: 20px 15px;
    }

    .logo-box img {
        width: 35px;
        height: 35px;
    }

    .logo h1 {
        font-size: 16px;
    }

    .logo span {
        font-size: 9px;
    }


    .footer {
        padding: 20px 10px;
    }

    .footer-col h3 {
        font-size: 16px;
    }

    .footer-col p,
    .footer-col a {
        font-size: 13px;
    }
}
/* ================== PRODUCT SECTION RESPONSIVE ================== */

/* TABLET */
@media (max-width: 900px) {

    .product-row {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .product-img img {
        height: 350px;
    }

    .product-details h1 {
        font-size: 26px;
    }

    .product-price,
    .price {
        font-size: 22px;
    }

    .packaging-grid,
    .size-options {
        flex-wrap: wrap;
        gap: 12px;
    }

    .quantity-box button {
        width: 80px;
    }
}


/* MOBILE */
@media (max-width: 768px) {

    .product-section {
        gap: 18px;
    }

    .product-row {
        flex-direction: column;
        padding: 15px;
        gap: 18px;
        border-radius: 12px;
    }

    .product-img {
        width: 100%;
    }

    .product-img img {
        width: 100%;
        height: 280px;
        border-radius: 10px;
    }

    .product-details {
        padding: 0;
    }

    .product-details h1 {
        font-size: 22px;
        line-height: 1.4;
    }

    .tag {
        font-size: 13px;
    }

    .product-details h3 {
        font-size: 15px;
    }

    .desc {
        font-size: 13px;
        line-height: 1.6;
    }

    .features {
        padding-left: 10px;
    }

    .features li {
        font-size: 13px;
    }

    .product-price,
    .price {
        font-size: 20px;
    }

    .order-btn {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    .packaging-grid {
        flex-direction: column;
        gap: 10px;
    }

    .size-options {
        flex-wrap: wrap;
        gap: 10px;
    }

    .size-options label {
        font-size: 13px;
        padding: 8px 12px;
    }

    .quantity-box {
        gap: 8px;
        flex-wrap: wrap;
    }

    .quantity-box button {
        width: 70px;
        height: 32px;
    }

    .quantity-box input {
        width: 45px;
        height: 32px;
    }
}


/* SMALL MOBILE */
@media (max-width: 468px) {

    .product-row {
        padding: 12px;
        gap: 15px;
    }

    .product-img img {
        height: 220px;
    }

    .product-details h1 {
        font-size: 19px;
    }

    .tag {
        font-size: 12px;
    }

    .product-details h3 {
        font-size: 14px;
        padding-left: 6px;
    }

    .desc {
        font-size: 12px;
        line-height: 1.5;
    }

    .features li {
        font-size: 12px;
    }

    .product-price,
    .price {
        font-size: 18px;
    }

    .order-btn {
        width: 100%;
        font-size: 13px;
        padding: 10px;
    }

    .size-options {
        gap: 8px;
    }

    .size-options label {
        font-size: 12px;
        padding: 7px 10px;
    }

    .quantity-box {
        gap: 6px;
    }

    .quantity-box button {
        width: 60px;
        height: 30px;
        font-size: 12px;
    }

    .quantity-box input {
        width: 40px;
        height: 30px;
        font-size: 12px;
    }
}