* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html, body {
    overflow-x: hidden;
}
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
      padding-top: 80px;
}
body {
    background-color: #f5f1e8; /* warm luxury cream */
    color: #333;
}

body {
    padding-top: 80px;
}


main, .account-section, .checkout-section {
    flex: 1;
}

body {
    font-family: Verdana, sans-serif;
}
.container {
    width: 92%;
    max-width: 1150px; /* slightly narrower for elegance */
    margin: 0 auto;
    padding: 0 20px; /* adds inner breathing */
}




.premium-footer {
    background: linear-gradient(135deg, #014b08, #01780F);
    color: white;
    padding-top: 60px;
    margin-top: 60px;
}

.footer-container {
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4,
.brand-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-col p,
.footer-col ul li {
    font-size: 14px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li a {
    color: white;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    opacity: 0.7;
}

.footer-logo {
    width: 80px;
    margin-bottom: 10px;
}

.newsletter {
    margin-top: 20px;
}

.newsletter form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.newsletter input {
    padding: 8px 10px;
    border-radius: 5px;
    border: none;
    flex: 1;
}

.newsletter button {
    background: #d4a017;
    border: none;
    color: white;
    padding: 8px 14px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #b8860b;
}

.footer-bottom {
    text-align: center;
    padding: 20px;
    margin-top: 40px;
    background: rgba(0,0,0,0.15);
    font-size: 14px;
}

.footer-bottom a {
    color: #ffd700;
    text-decoration: none;
    font-weight: 500;
}

.footer-bottom a:hover {
    opacity: 0.8;
}

.divider {
    margin: 0 8px;
    opacity: 0.6;
}

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

/* Tablet */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-column {
        text-align: left;
    }
}

/* Large Mobile */
@media (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: left;
    }

    .footer-column h3 {
        margin-bottom: 15px;
    }

    .footer-column ul li {
        margin-bottom: 10px;
    }

    .footer-social {
        justify-content: left;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .footer {
        padding: 50px 20px;
    }

    .footer-container {
        gap: 30px;
    }

    .footer-column h3 {
        font-size: 18px;
    }

    .footer-column ul li a {
        font-size: 14px;
    }

    .footer-bottom {
        font-size: 13px;
        text-align: left;
    }
}

/* ===============================
   PREMIUM SEARCH SECTION
=============================== */

.premium-search-section {
    padding: 80px 0;
    background: linear-gradient(to right, #f4f9f4, #ffffff);
    text-align: center;
}

.search-box-wrapper {
    max-width: 700px;
    margin: auto;
}

.search-box-wrapper h2 {
    font-size: 34px;
    color: #01780F;
    margin-bottom: 10px;
}

.search-box-wrapper p {
    color: #555;
    margin-bottom: 30px;
    font-size: 16px;
}

.premium-search-form {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #fff;
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.premium-search-form input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    outline: none;
    font-size: 16px;
}

.premium-search-form button {
    padding: 16px 30px;
    border: none;
    background: #01780F;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.premium-search-form button:hover {
    background: #015e0c;
}
@media (max-width: 768px) {

    .premium-search-section {
        padding: 60px 20px;
    }

    .search-box-wrapper h2 {
        font-size: 24px;
    }

    .premium-search-form {
        flex-direction: column;
        border-radius: 12px;
    }

    .premium-search-form input {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .premium-search-form button {
        width: 100%;
        border-radius: 0;
    }
}
@media (max-width: 768px) {

    .search-filter-form {
        flex-direction: row;   /* keep in same row */
        gap: 8px;
    }

    .search-input-group {
        flex: 2;   /* more space */
    }

    .category-select-group {
        flex: 1;   /* smaller than search */
    }

    .search-btn {
        flex: 0 0 auto;
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

    .search-input-group input,
    .category-select-group select {
        width: 100%;
        padding: 12px 14px;
        font-size: 13px;
    }
}

h1, h2, h3, h4, p {
    margin-top: 0;
}
body {
    margin: 0;
    background: #ffffff;
}


.header-flex {
    height: 75px;
}


.home-about {
    padding: 70px 0;
    background: #f9f9f9;
}
.about-flex {
    display: flex;
    align-items: center;   /* vertical alignment */
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    width: 55%;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #01780F;
}

.about-text p {
    margin-bottom: 15px;
    line-height: 1.6;
    color: #444;
}
.about-image {
    width: 40%; 
    height: 50%;  /* reduced size */
    display: flex;
    justify-content: center;
}

.about-image img {
    width: 100%;
    max-width: 400px;   /* makes it smaller */
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.btn-green {
    display: inline-block;
    margin-top: 15px;
    background: #01780F;
    color: white;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: 0.3s;
}

.btn-green:hover {
    background: #015c0c;
}


.category-card {
    background: white;
    border-radius: 10px;
border: 2px solid grey;
    overflow: hidden;
    text-decoration: none;
    color: #000;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.4s ease;
    text-align: center;
}

.category-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: 0.4s ease;
}

.category-card h3 {
    padding: 18px;
    font-size: 18px;
    font-weight: 600;
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 35px rgba(0,0,0,0.08);
}

.category-card:hover img {
    transform: scale(1.05);
}



/* Hover Effects */
.category-item:hover img {
    transform: scale(1.1);
}

/* ===============================
   DESKTOP GRID
=============================== */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}


/* ===============================
   LARGE TABLET
=============================== */
@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}



.section-heading span {
    display: block;
    width: 80px;
    height: 3px;
    background: #01780F;
    margin: 0 auto;
    border-radius: 2px;
}
.why-choose-us {
    padding: 90px 0;
    background: linear-gradient(to right, #f4f8f5, #eef5ef);
}

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

.why-card {
    background: white;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 30px rgba(0,0,0,0.05);
    transition: 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.why-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.why-card h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: #01780F;
}

.why-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* Responsive */
@media (max-width: 992px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.testimonials-section {
    padding: 70px 0;
    background: #f9f9f9;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.testimonial-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
    text-align: center;
}

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

.quote-icon {
    font-size: 22px;
    color: #e5e5e5;
    margin-bottom: 15px;
}

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

.testimonial-user h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

.testimonial-card p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #555;
}

.stars {
    color: #ffc107;
}

/* MOBILE */
@media (max-width: 768px) {

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

}




.btn-white {
    background: white;
    color: #01780F;
    padding: 12px 25px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s;
}

.btn-white:hover {
    background: #f2f2f2;
}
.page-hero {
    background: #01780F;
    color: white;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}
.mission-vision {
    padding: 80px 0;
    background: #f9f9f9;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-icon {
    width: 60px;
    height: 60px;
    background: #01780F;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    margin-bottom: 20px;
}

.mv-card h3 {
    margin-bottom: 15px;
    color: #01780F;
}

.mv-card p {
    color: #555;
    margin-bottom: 12px;
    line-height: 1.6;
}
/* ===============================
   TABLET VIEW
=============================== */
@media (max-width: 992px) {
    .mv-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .mv-card {
        padding: 30px;
    }
}

/* ===============================
   MOBILE VIEW
=============================== */
@media (max-width: 576px) {

    .mission-vision {
        padding: 50px 0;
    }

    .mv-card {
        padding: 25px;
        border-radius: 6px;
    }

    .mv-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .mv-card h3 {
        font-size: 18px;
    }

    .mv-card p {
        font-size: 14px;
        line-height: 1.5;
    }
}

.about-hero {
    position: relative;
    height: 50vh;
    background: url('../images/banners/banner2.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    min-height: 50vh;
}

.about-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

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

.about-hero h1 {
    font-size: 40px;
    margin-bottom: 10px;
}

.about-hero p {
    font-size: 18px;
    margin-bottom: 15px;
}

.breadcrumb {
    font-size: 14px;
}

.breadcrumb a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
}

.breadcrumb a:hover {
    opacity: 1;
}
.about-page {
    padding: 90px 0;
    background: #ffffff;
    margin-top: 30px;   /* adds gap below hero */
}

.contact-hero {
    position: relative;
    height: 45vh;
    min-height: 50vh;
    background: url('../images/banners/contact-banner.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.contact-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
}

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

.contact-hero h1 {
    font-size: 38px;
    margin-bottom: 10px;
}

.contact-info {
    padding: 110px 0;
    background: linear-gradient(135deg, #f4f7f4 0%, #eef6ee 100%);
}

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

.info-card {
    background: #fff;
    padding: 55px 35px;
    border-radius: 16px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

/* Top Accent Glow Line */
.info-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, #01780F, #0bb31f);
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

/* Icon Style Upgrade */
.info-card i {
    font-size: 22px;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #01780F, #0bb31f);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    box-shadow: 0 8px 20px rgba(1,120,15,0.3);
    transition: 0.3s ease;
}

.info-card:hover i {
    transform: scale(1.08);
}

/* Heading */
.info-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #01780F;
    font-weight: 600;
}

/* Text */
.info-card p {
    color: #555;
    line-height: 1.7;
    font-size: 15px;
}

/* Responsive */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 600px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
}


.contact-main {
    padding: 110px 0;
    background: linear-gradient(135deg, #f8fbf8 0%, #eef6ee 100%);
}

.contact-flex {
    display: flex;
    gap: 60px;
    align-items: stretch;
}

/* FORM */
.contact-form {
    flex: 1;
    background: #fff;
    padding: 45px;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.contact-form h2 {
    margin-bottom: 25px;
    color: #01780F;
    font-size: 26px;
    font-weight: 600;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    font-size: 14px;
    transition: 0.3s ease;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #01780F;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(1,120,15,0.08);
}

/* MAP */
.contact-map {
    flex: 1;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: 0;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .contact-flex {
        flex-direction: column;
    }

    .contact-map iframe {
        min-height: 350px;
    }
}

@media (max-width: 576px) {
    .contact-form {
        padding: 30px;
    }

    .contact-map iframe {
        min-height: 250px;
    }
}



.business-hours {
    padding: 100px 0;
    background: linear-gradient(135deg, #f7fbf7 0%, #eef6ee 100%);
    display: flex;
    justify-content: center;
}

.hours-box {
    background: #fff;
    padding: 50px 60px;
    border-radius: 18px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
    text-align: center;
    max-width: 600px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

/* Accent top strip */
.hours-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #01780F, #0bb31f);
}

.hours-box h2 {
    color: #01780F;
    margin-bottom: 20px;
    font-size: 26px;
    font-weight: 600;
}

.hours-box p {
    font-size: 15px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.6;
}

.hours-box strong {
    color: #222;
}

/* Subtle hover */
.hours-box:hover {
    transform: translateY(-6px);
    transition: 0.3s ease;
    box-shadow: 0 20px 45px rgba(0,0,0,0.1);
}

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

@media (max-width: 768px) {
    .business-hours {
        padding: 70px 20px;
    }

    .hours-box {
        padding: 35px 25px;
    }

    .hours-box h2 {
        font-size: 22px;
    }

    .hours-box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hours-box {
        padding: 28px 20px;
    }
}

.auth-section {
    padding: 140px 0 100px 0;
    background: #f9f9f9;
}
.auth-box {
    max-width: 420px;
    margin: 0 auto;
    background: white;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}
.auth-box h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #01780F;
}

.auth-box input {
    width: 100%;
    padding: 13px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
}
.error {
    color: red;
    margin-bottom: 10px;
}
.auth-error {
    background: #ffecec;
    color: #c0392b;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 14px;
}
.auth-box button {
    width: 100%;
}
.auth-error a {
    color: #01780F;
    font-weight: 600;
    text-decoration: none;
}
.auth-switch {
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
}

.auth-switch a {
    color: #01780F;
    font-weight: 600;
    text-decoration: none;
}

/* ================= RESPONSIVE AUTH SECTION ================= */

/* Large Tablet */
@media (max-width: 992px) {

    .auth-section {
        padding: 120px 20px 80px 20px;
    }

    .auth-box {
        max-width: 380px;
        padding: 35px;
    }
}

/* Tablet */
@media (max-width: 768px) {

    .auth-section {
        padding: 110px 20px 70px 20px;
    }

    .auth-box {
        max-width: 100%;
        padding: 30px;
        border-radius: 8px;
    }

    .auth-box h2 {
        font-size: 22px;
    }

    .auth-box input {
        padding: 11px;
        font-size: 14px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {

    .auth-section {
        padding: 100px 15px 60px 15px;
    }

    .auth-box {
        padding: 25px;
        box-shadow: 0 6px 18px rgba(0,0,0,0.05);
    }

    .auth-box h2 {
        font-size: 20px;
    }

    .auth-box input {
        padding: 10px;
        font-size: 13px;
    }

    .auth-error {
        font-size: 13px;
        padding: 10px;
    }

    .auth-switch {
        font-size: 13px;
    }
}




.product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.product-title {
    font-size: 16px;
    margin: 15px 0 10px;
}

.variant-buttons {
    margin-bottom: 10px;
}

.variant-btn {
    padding: 6px 10px;
    margin: 5px 4px;
    border: 1px solid #01780F;
    background: white;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
}

.variant-btn.active,
.variant-btn:hover {
    background: #01780F;
    color: white;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

.product-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-outline {
    border: 1px solid #01780F;
    background: white;
    color: #01780F;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}
.category-section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 40px;
    color: #01780F;
}

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

.category-section .container {
    max-width: 1200px;
    margin: auto;
}


.category-card {
    text-decoration: none;
}

.category-box {
    background: #f9f9f9;
    padding: 40px;
    text-align: center;
    border-radius: 8px;
    transition: 0.3s;
}

.category-box:hover {
    background: #01780F;
    color: white;
}


.product-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 8px;
}

.product-title {
    font-size: 16px;
    margin: 15px 0 10px;
}

.variant-buttons {
    margin-bottom: 10px;
}

.variant-btn {
    padding: 6px 10px;
    margin: 5px 4px;
    border: 1px solid #01780F;
    background: white;
    cursor: pointer;
    border-radius: 4px;
    font-size: 13px;
}

.variant-btn.active,
.variant-btn:hover {
    background: #01780F;
    color: white;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    margin: 10px 0;
}

.product-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-outline {
    border: 1px solid #01780F;
    background: white;
    color: #01780F;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
}
.weight-options {
    margin: 10px 0;
}

.weight-btn {
    padding: 6px 12px;
    margin: 5px;
    border: 2px solid #01780F;
    background: white;
    border-radius: 8px;
    cursor: pointer;
    font-size: 14px;
}

.weight-btn.active {
    background: #01780F;
    color: white;
}

.price {
    font-size: 20px;
    font-weight: bold;
    color: #01780F;
    margin: 10px 0;
}




.btn-greens {
    background: #01780F;
    color: white;
}

.btn-buy {
    background: #b57f17;
    color: white;
}

.btn-buy:hover {
    background: #8a6110;
}

.cart-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cart-title {
    text-align: center;
    margin-bottom: 40px;
    color: #01780F;
}

.cart-wrapper {
    max-width: 900px;
    margin: auto;
}







.cart-img img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-details {
    flex: 2;
    padding-left: 20px;
}

.cart-details h4 {
    margin: 0 0 8px;
    font-size: 16px;
}

.cart-details p {
    margin: 2px 0;
    font-size: 14px;
    color: #555;
}

.cart-qty {
    font-weight: 500;
}

.cart-total-item {
    font-weight: bold;
    color: #01780F;
    font-size: 16px;
}
.cart-remove {
    margin-top: 10px;
    text-align: right;
    width: 100%;
}

.cart-remove a {
    display: inline-block;
    padding: 6px 10px;
    background: #ffecec;
    border-radius: 6px;
    transition: 0.3s ease;
}

.cart-remove a:hover {
    background: #ffdddd;
}


.cart-summary {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: right;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.cart-summary h3 {
    margin-bottom: 20px;
}

.btn-checkout {
    display: inline-block;
    padding: 12px 25px;
    background: #01780F;
    color: white;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
}

.btn-checkout:hover {
    background: #015d0c;
}

.empty-cart {
    text-align: center;
    padding: 50px 0;
}
.empty-cart {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.empty-card {
    background: white;
    padding: 50px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.empty-card h3 {
    margin-bottom: 15px;
    color: #01780F;
}

.empty-card p {
    color: #666;
    margin-bottom: 25px;
}
/* ================= CART RESPONSIVE ================= */

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

/* Tablet */
@media (max-width: 992px) {

   
   

    .cart-summary {
        margin-top: 30px;
    }
}


/* Mobile */
@media (max-width: 768px) {

    
    

    .cart-img {
        width: 100%;
        text-align: center;
    }

    .cart-img img {
        width: 100px;
        height: 100px;
    }

    .cart-details {
        width: 100%;
        padding-left: 0;
    }

    .cart-total-item {
        font-size: 16px;
        font-weight: 600;
        margin-top: 8px;
    }

    /* REMOVE BUTTON FIX */
    .cart-remove {
        width: 100%;
        text-align: right;
        margin-top: 10px;
    }

    .cart-remove a {
        display: inline-block;
        padding: 6px 12px;
        background: #ffecec;
        border-radius: 6px;
        font-size: 14px;
        transition: 0.3s ease;
    }

    .cart-remove a:hover {
        background: #ffdddd;
    }

    /* SUMMARY */
    .cart-summary {
        text-align: center;
        padding: 20px;
    }

    .btn-checkout {
        width: 100%;
        padding: 14px;
        text-align: center;
    }
}


/* Small Mobile */
@media (max-width: 480px) {

    .cart-section {
        padding: 60px 15px;
    }

    .cart-details h4 {
        font-size: 15px;
    }

    .cart-details p {
        font-size: 13px;
    }

    .cart-summary h3 {
        font-size: 18px;
    }
}


.cart-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.cart-title {
    text-align: center;
    margin-bottom: 40px;
    color: #01780F;
}

.cart-wrapper {
    max-width: 900px;
    margin: auto;
}


/* =============================
   CLEAN CART LAYOUT (FINAL)
============================= */



/* REMOVE */
.remove-btn {
    background: #fff;
    border: 1px solid #e53935;
    color: #e53935;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
}

.cart-img img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
}

.cart-details {
    flex: 2;
    padding-left: 20px;
}



.cart-qty {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qty-btn {
    background: #01780F;
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: 0.2s ease;
}

.qty-btn:hover {
    background: #015d0c;
    transform: scale(1.05);
}

.qty-number {
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-total-item {
    font-weight: bold;
    font-size: 18px;
    color: #01780F;
    text-align: center;
}


.remove-btn {
    background: none;
    border: none;
    color: red;
    font-size: 18px;
    cursor: pointer;
}

.cart-summary {
    background: white;
    padding: 25px;
    border-radius: 12px;
    text-align: right;
    box-shadow: 0 8px 20px rgba(0,0,0,0.05);
}

.btn-checkout {
    display: inline-block;
    padding: 12px 25px;
    background: #01780F;
    color: white;
    border-radius: 8px;
    text-decoration: none;
}
.remove-btn {
    background: #fff;
    border: 1px solid #e53935;
    color: #e53935;
    padding: 8px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s ease;
}

.remove-btn:hover {
    background: #e53935;
    color: white;
}
.cart-details h4 {
    margin-bottom: 6px;
    font-size: 16px;
}

.cart-details p {
    margin: 3px 0;
    color: #555;
}
.success-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8f9fa, #eef7f0);
    display: flex;
    justify-content: center;
}

.success-card {
    background: white;
    padding: 60px;
    border-radius: 18px;
    text-align: center;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    animation: fadeUp 0.6s ease;
}

.success-card h2 {
    color: #01780F;
    margin-bottom: 15px;
    font-size: 26px;
}

.success-card p {
    color: #555;
    margin-bottom: 10px;
}

.success-card strong {
    display: block;
    margin: 15px 0 25px;
    font-size: 18px;
    color: #222;
}

.btn-checkout {
    display: inline-block;
    padding: 12px 28px;
    background: #01780F;
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-checkout:hover {
    background: #015d0c;
    transform: translateY(-2px);
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.cart-nav {
    margin-bottom: 25px;
}

.cart-nav a {
    text-decoration: none;
    color: #01780F;
    font-weight: 500;
}

.cart-nav a:hover {
    text-decoration: underline;
}
.cart-icon {
    position: relative;
    display: inline-block;
    font-size: 20px;
    color: white;
    text-decoration: none;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: #e53935;
    color: white;
    font-size: 12px;
    padding: 3px 7px;
    border-radius: 50px;
    font-weight: bold;
}
.checkout-section {
    padding: 120px 0 80px;
    background: linear-gradient(to right, #f4f8f5, #eef5ef);
}

.checkout-wrapper {
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 40px;
}

/* Left Card */
.checkout-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.checkout-form h2 {
    margin-bottom: 20px;
    color: #01780F;
}

.checkout-form h3 {
    margin: 25px 0 15px;
}

/* Inputs */
.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
    transition: 0.3s ease;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color: #01780F;
    box-shadow: 0 0 0 3px rgba(1,120,15,0.1);
    outline: none;
}

/* ============================= */
/* DNH PREMIUM PAYMENT SECTION */
/* ============================= */

.payment-method {
    margin-top: 40px;
}

.payment-method h3 {
    margin-bottom: 22px;
    font-size: 19px;
    font-weight: 600;
    color: #0b5d12;
    letter-spacing: 0.4px;
}

/* Row Layout – Always Same Row */
.payment-options {
    display: flex;
    gap: 18px;
}

/* ============================= */
/* PAYMENT CARD */
/* ============================= */

.payment-option {
    position: relative;
    flex: 1;
    padding: 22px 16px;
    border-radius: 18px;
    cursor: pointer;
    background: #ffffff;
    border: 1.5px solid #e5eee7;

    display: flex;
    align-items: center;
    gap: 12px;

    /* Premium Shadow */
    box-shadow:
        0 8px 20px rgba(0,0,0,0.05),
        0 3px 8px rgba(0,0,0,0.04);

    transition: all 0.3s ease;
}

/* Hover Lift */
.payment-option:hover {
    transform: translateY(-3px);
    box-shadow:
        0 14px 28px rgba(0,0,0,0.08);
}

/* ============================= */
/* CUSTOM RADIO */
/* ============================= */

.payment-option input[type="radio"] {
    appearance: none;
    min-width: 16px;
    height: 16px;
    border: 2px solid #01780F;
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    transition: all 0.25s ease;
}

/* Inner Dot */
.payment-option input[type="radio"]::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: #01780F;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: 0.25s ease;
}

.payment-option input[type="radio"]:checked::after {
    transform: translate(-50%, -50%) scale(1);
}

/* Subtle Glow */
.payment-option input[type="radio"]:checked {
    box-shadow: 0 0 0 4px rgba(1,120,15,0.12);
}

/* Selected Card */
.payment-option:has(input[type="radio"]:checked) {
    border-color: #01780F;
    background: linear-gradient(145deg, #f4fbf6, #ffffff);
    box-shadow:
        0 14px 30px rgba(1,120,15,0.18);
    transform: translateY(-2px);
}

/* Text */
.payment-option span {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #2c2c2c;
    transition: 0.3s ease;
}

.payment-option:has(input[type="radio"]:checked) span {
    color: #01780F;
    font-weight: 600;
}

/* ============================= */
/* PREMIUM MOBILE OPTIMIZATION */
/* ============================= */

@media (max-width: 768px) {

    .payment-options {
        gap: 12px;
    }

    .payment-option {
        padding: 16px 12px;
        border-radius: 14px;
    }

    .payment-option span {
        font-size: 13px;
    }

}

/* ============================= */
/* FIXED PERFECT CIRCLE RADIO */
/* ============================= */

.payment-option input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;

    width: 18px;
    height: 18px;

    flex: 0 0 18px; /* Prevent stretching */
    
    border: 2px solid #01780F;
    border-radius: 50%;

    position: relative;
    cursor: pointer;

    display: inline-block;
    box-sizing: border-box;
    transition: all 0.25s ease;
}

/* Inner Dot */
.payment-option input[type="radio"]::after {
    content: "";
    position: absolute;

    width: 8px;
    height: 8px;

    background: #01780F;
    border-radius: 50%;

    top: 50%;
    left: 50%;

    transform: translate(-50%, -50%) scale(0);
    transition: 0.25s ease;
}

.payment-option input[type="radio"]:checked::after {
    transform: translate(-50%, -50%) scale(1);
}

.payment-option input[type="radio"]:checked {
    box-shadow: 0 0 0 4px rgba(1,120,15,0.12);
}

/* Button */
.place-order-btn {
    margin-top: 20px;
    padding: 14px;
    width: 100%;
    border-radius: 12px;
    background: #01780F;
    color: white;
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: 0.3s ease;
}

.place-order-btn:hover {
    background: #015e0c;
    transform: translateY(-2px);
}

/* Right Card - Order Summary */
.checkout-summary {
    background: #ffffff;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}

.checkout-summary h3 {
    margin-bottom: 20px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 14px;
}

.summary-item span:last-child {
    font-weight: 500;
}

.summary-total {
    margin-top: 25px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    font-size: 18px;
    font-weight: bold;
    color: #01780F;
}

/* Responsive */
@media (max-width: 900px) {
    .checkout-wrapper {
        grid-template-columns: 1fr;
    }
}


.view-all {
    text-align: center;
    margin-top: 40px;
}

.btn-outline {
    padding: 12px 30px;
    border: 2px solid #01780F;
    color: #01780F;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #01780F;
    color: white;
}
.account-section {
    padding: 60px 0;
    background: #f6f9f6;
    min-height: 80vh;
}

.account-wrapper {
    display: flex;
    gap: 40px;
}

/* Sidebar */
.account-sidebar {
    width: 280px;
}

.profile-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.05);
    text-align: center;
}

.avatar {
    width: 60px;
    height: 60px;
    background: #01780F;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 600;
    margin: 0 auto 15px;
}

.profile-box ul {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.profile-box ul li {
    margin-bottom: 10px;
}

.profile-box ul li a {
    text-decoration: none;
    color: #333;
    display: block;
    padding: 8px;
    border-radius: 6px;
    transition: 0.3s;
}

.profile-box ul li a:hover,
.profile-box ul li a.active {
    background: #01780F;
    color: #fff;
}

/* Main */
.account-content {
    flex: 1;
}

.content-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.profile-grid div p {
    font-weight: 600;
    margin-bottom: 5px;
}

.status-active {
    color: #01780F;
    font-weight: 600;
}

/* Orders table */
.orders-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.orders-table th,
.orders-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.badge {
    background: #01780F;
    color: #fff;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px;
}



/* ADD TO CART */
.btn-cart {
    background-color: #01780F;
    color: #ffffff;
}

.btn-cart:hover {
    background-color: #015e0c;
}

/* BUY NOW */
.btn-buynow {
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    color: #ffffff;
}

.btn-buynow:hover {
    background: linear-gradient(135deg, #e68900, #e65100);
}

.btn-green {
    background: #01780F;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    display: inline-block;
}

.profile-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.profile-row {
    margin-bottom: 20px;
}

.profile-row label {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.order-card {
    background: white;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.order-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.order-status {
    background: #01780F;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.order-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.view-order {
    text-decoration: none;
    color: #01780F;
    font-weight: 500;
}

.empty-orders {
    background: white;
    padding: 40px;
    text-align: center;
    border-radius: 10px;
}
.empty-orders {
    background: white;
    padding: 60px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.empty-orders h3 {
    margin: 15px 0 5px;
    font-size: 22px;
}

.empty-orders p {
    color: #666;
    margin-bottom: 20px;
}

.empty-icon {
    font-size: 50px;
}

.btn-greens {
    background: #01780F;
    color: white;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: 0.3s ease;
}

.btn-greens:hover {
    background: #015d0c;
}
.account-section {
    padding: 80px 0;
    min-height: 70vh;
}

.account-container {
    align-items: flex-start;
}

.account-content h2 {
    margin-bottom: 30px;
}
.account-section {
    background: linear-gradient(to bottom, #f6fbf6, #ffffff);
}
/* FILTER SECTION */
.product-filter-wrapper {
    background: linear-gradient(135deg, #f6fbf6, #eef5ef);
    padding: 40px 0;
    border-bottom: 2px solid #01780F;
}

.filter-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
}

.filter-box label {
    font-weight: 700;
    font-size: 16px;
    color: #01780F;
    letter-spacing: 0.5px;
}
/* ================= RESPONSIVE FILTER ================= */

/* Tablet */
@media (max-width: 768px) {

    .product-filter-wrapper {
        padding: 30px 20px;
    }

    .filter-box {
        gap: 15px;
        flex-wrap: wrap;
    }

    .filter-box label {
        font-size: 15px;
    }
}


/* Mobile */
@media (max-width: 576px) {

    .filter-box {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        text-align: center;
    }

    .filter-box label {
        font-size: 14px;
    }

    .filter-box select,
    .filter-box input,
    .filter-box button {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Custom Select */
.custom-select {
    position: relative;
    width: 280px;
}

.custom-select select {
    width: 100%;
    padding: 14px 45px 14px 18px;
    font-size: 15px;
    border-radius: 10px;
    border: 2px solid #01780F;
    background: #ffffff;
    appearance: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    color: #01780F;
    box-shadow: 0 4px 12px rgba(1, 120, 15, 0.08);
}

.custom-select select:hover {
    box-shadow: 0 6px 16px rgba(1, 120, 15, 0.12);
}

.custom-select select:focus {
    outline: none;
    border-color: #01780F;
    box-shadow: 0 0 0 4px rgba(1, 120, 15, 0.15);
}

/* Arrow */
.select-arrow {
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 16px;
    color: #01780F;
    pointer-events: none;
    font-weight: bold;
}
.products-page {
    padding: 60px 0;
    background: #f9faf9;
}

.page-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 30px;
    color: #01780F;
    font-weight: 700;
}



/* WEIGHT BUTTONS */
.weight-options {
    margin: 15px 0;
}

.weight-btn {
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid #01780F;
    background: #fff;
    cursor: pointer;
    margin: 3px;
    font-size: 14px;
}

.weight-btn.active {
    background: #01780F;
    color: #fff;
}

/* PRICE */
.price {
    font-size: 18px;
    font-weight: 600;
    color: #01780F;
}

/* BUTTONS */


.btn-green {
    background: #01780F;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
}

.btn-buy {
    background: #b88b1c;
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    text-decoration: none;
}
/* ===============================
   PRODUCTS PAGE HERO
=============================== */

.page-hero {
    min-height: 55vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('../images/banners/banner2.jpg');
    background-size: cover;
   
    background-position: center;
    background-repeat: no-repeat;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.page-hero-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.page-hero-content p {
    font-size: 14px;
    opacity: 0.9;
}
.success-section {
    min-height: calc(100vh - 300px); 
    /* 300px approx header + footer height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 20px;
    text-align: center;
    margin:0;
    
}

.search-section {
    background: #f5f1e8;
    padding: 30px 0;
}

.search-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.search-form {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.search-form input {
    flex: 1;
    padding: 14px;
    border: none;
    font-size: 16px;
    outline: none;
}

.search-form button {
    background: #01780F;
    color: white;
    border: none;
    padding: 0 25px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s;
}

.search-form button:hover {
    background: #026b0d;
}
/* ===============================
   ABOUT SECTION - PREMIUM STYLE
=============================== */

/* ===============================
   ABOUT SECTION
=============================== */
.about-section {
    padding: 90px 0 40px;
}

.container {
    width: 92%;
    max-width: 1150px; /* slightly narrower for elegance */
    margin: 0 auto;
    padding: 0 20px; /* adds inner breathing */
}


/* ===============================
   LAYOUT
=============================== */
.about-content {
    display: flex;
    align-items: center;
     text-align:left;
    justify-content: space-between;
    gap: 70px;
}

/* ===============================
   LEFT TEXT
=============================== */
.about-text {
    flex: 1;
}

.about-tag {
    color: #01780F;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    margin-bottom: 10px;
}

.about-text h2 {
    font-size: 44px;
    margin: 10px 0 25px;
    font-weight: 700;
    color: #111;
    line-height: 1.2;
}

.about-text p {
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

/* Button */
.about-btn {
    display: inline-block;
    padding: 13px 32px;
    background: #01780F;
    color: #fff;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(1,120,15,0.2);
}

.about-btn:hover {
    background: #015c0c;
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(1,120,15,0.3);
}

/* ===============================
   RIGHT IMAGE
=============================== */
.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4 / 3;   /* keeps consistent proportion */
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.1);
    transition: 0.4s ease;
}

.about-image img:hover {
    transform: scale(1.04);
}

/* ===============================
   TABLET (<= 992px)
=============================== */
@media (max-width: 992px) {

    .about-section {
        padding: 90px 20px;
    }

    .about-content {
        flex-direction: column-reverse; /* Image on top */
        gap: 40px;
        text-align: center;
    }

    .about-text h2 {
        font-size: 34px;
    }

    .about-text p {
        font-size: 15px;
    }

    .about-btn {
        margin-top: 10px;
    }
}

/* ===============================
   MOBILE (<= 768px)
=============================== */
@media (max-width: 768px) {


    .about-section {
        padding: 70px 20px 35px;
    }


    .about-text h2 {
        font-size: 28px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.8;
    }

    .about-image img {
        aspect-ratio: 1 / 1; /* square look for mobile */
        border-radius: 18px;
    }

    .about-btn {
        padding: 12px 26px;
        font-size: 14px;
    }
}

/* ===============================
   SMALL MOBILE (<= 480px)
=============================== */
@media (max-width: 480px) {

    .about-section {
        padding: 60px 15px;
    }

    .about-text h2 {
        font-size: 24px;
    }

    .about-text p {
        font-size: 13.5px;
        text-align:left;
    }

}

.auth-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #f8f8f8; /* optional */
    padding: 20px;
}

.auth-box {
    width: 100%;
    max-width: 420px;   /* ðŸ‘ˆ THIS fixes elongation */
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}


@media (max-width: 768px) {
   

    .logo img {
        height: 35px;
    }
}
/* ================= CATEGORY SHOWCASE ================= */

/* ===============================
   CATEGORY SHOWCASE SECTION
=============================== */
.category-showcase {
    padding: 110px 0;
    background: linear-gradient(135deg, #f8fbf8 0%, #eef6ee 100%);
}

/* ===============================
   HEADING
=============================== */
.showcase-heading {
    text-align: center;
    margin-bottom: 55px;
}

.showcase-heading h2 {
    font-size: 34px;
    color: #01780F;
    margin-bottom: 12px;
    font-weight: 600;
}

.showcase-heading p {
    color: #666;
    font-size: 15px;
    max-width: 600px;
    margin: 0 auto;
}

/* ===============================
   GRID
=============================== */
.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

/* ===============================
   CARD
=============================== */
.showcase-card {
    text-decoration: none;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    transition: all 0.35s ease;
    text-align: center;
    padding-bottom: 22px;
    position: relative;
}

.showcase-image {
    overflow: hidden;
    border-radius: 18px 18px 0 0;
}

/* IMPROVED IMAGE HANDLING */
.showcase-image img {
    width: 100%;
    aspect-ratio: 4 / 3;      /* Keeps all images consistent */
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.showcase-card h3 {
    margin-top: 18px;
    font-size: 18px;
    color: #333;
    font-weight: 500;
}

/* ===============================
   HOVER EFFECT
=============================== */
.showcase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(0,0,0,0.12);
}

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

/* ===============================
   TABLET (<= 992px)
=============================== */
@media (max-width: 992px) {

    .category-showcase {
        padding: 90px 20px;
    }

    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .showcase-heading h2 {
        font-size: 30px;
    }
}

/* ===============================
   MOBILE (<= 768px)
=============================== */
@media (max-width: 768px) {

    .category-showcase {
        padding: 70px 18px;
    }

    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .showcase-card {
        border-radius: 16px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    }

    .showcase-image img {
        aspect-ratio: 16 / 10; /* Slightly wider for mobile */
    }

    .showcase-heading h2 {
        font-size: 26px;
    }

    .showcase-heading p {
        font-size: 14px;
    }

    .showcase-card h3 {
        font-size: 17px;
        margin-top: 16px;
    }
}

/* ===============================
   SMALL MOBILE (<= 480px)
=============================== */
@media (max-width: 480px) {

    .category-showcase {
        padding: 60px 15px;
    }

    .showcase-grid {
        gap: 18px;
    }

    .showcase-card {
        border-radius: 14px;
    }

    .showcase-image img {
        aspect-ratio: 1 / 1; /* Perfect square on small phones */
    }

    .showcase-card h3 {
        font-size: 15px;
    }

}

/* ================= INSTAGRAM SECTION ================= */
/* ================= INSTAGRAM SECTION ================= */

.instagram-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fbf8 0%, #eef6ee 100%);
}

.instagram-header {
    text-align: center;
    margin-bottom: 50px;
}

.instagram-header h2 {
    font-size: 30px;
    color: #01780F;
    margin-bottom: 10px;
}

.instagram-header p {
    color: #666;
    font-size: 15px;
}

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

.instagram-item {
    display: block;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    transition: 0.4s ease;
}

.instagram-item img {
    width: 100%;
    height: 260px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Animation */
.instagram-item:hover img {
    transform: scale(1.08);
}

.instagram-item::after {
    content: "Freshness in Every Bite";
    position: absolute;
    inset: 0;
    background: rgba(1, 120, 15, 0.75);
    color: #fff;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s ease;
}

.instagram-item:hover::after {
    opacity: 1;
}
/* Tablet */
@media (max-width: 992px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .instagram-item img {
        height: 220px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .instagram-grid {
        grid-template-columns: 1fr;
    }

    .instagram-item img {
        height: 200px;
    }

    .instagram-section {
        padding: 70px 20px;
    }

    .instagram-header h2 {
        font-size: 24px;
    }
}


/* ===============================
   HOME PRODUCTS SECTION
=============================== */

.home-products {
    padding: 80px 0;
    background: #ffffff;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 32px;
    color: #01780F;
    margin-bottom: 10px;
}

.section-heading p {
    color: #666;
    font-size: 15px;
}



/* ===============================
   PRODUCT CARD
=============================== */

.product-card {
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

/* Product Image */
..product-card img{
width:100%;
height:160px;
object-fit:contain;
background:#f8f8f8;
border-radius:8px;
} {
    width: 100%;
    height: 220px;
    object-fit: contain;
    background: #f8f8f8;
    border-radius: 10px;
    margin-bottom: 15px;
}
@media (max-width:768px){

}
/* Product Title */
.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

/* ===============================
   WEIGHT OPTIONS
=============================== */

.weight-options {
    margin: 10px 0;
}

.weight-btn {
    padding: 6px 12px;
    margin: 5px;
    border: 2px solid #01780F;
    background: #ffffff;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s ease;
}

.weight-btn:hover,
.weight-btn.active {
    background: #01780F;
    color: #ffffff;
}

/* ===============================
   PRICE
=============================== */

.price {
    font-size: 20px;
    font-weight: 600;
    color: #01780F;
    margin: 12px 0;
}

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

.product-buttons {
    display: flex;
    gap: 12px;
    margin-top: 15px;
}

.product-buttons a {
    flex: 1;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
    text-align: center;
}

/* Add to Cart */
.btn-cart {
    background: #01780F;
    color: #ffffff;
}

.btn-cart:hover {
    background: #015e0c;
}

/* Buy Now */
.btn-buynow {
    background: linear-gradient(135deg, #ff9800, #ff6f00);
    color: #ffffff;
}

.btn-buynow:hover {
    background: linear-gradient(135deg, #e68900, #e65100);
}

/* View All Button */
.view-all {
    text-align: center;
    margin-top: 50px;
}

.btn-outline {
    padding: 12px 30px;
    border: 2px solid #01780F;
    color: #01780F;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s ease;
}

.btn-outline:hover {
    background: #01780F;
    color: #ffffff;
}
/* ===============================
   TABLET
=============================== */



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

@media (max-width: 768px) {

    .product-card {
        padding: 18px;
    }

   
   

    .product-buttons {
        flex-direction: column;
        gap: 10px;
    }

    .product-buttons a {
        width: 100%;
    }

    .price {
        font-size: 18px;
    }

    .weight-btn {
        font-size: 12px;
        padding: 5px 10px;
    }
}

.faq-section {
    padding: 80px 0;
    background: #f9faf9;
}

.faq-title {
    text-align: center;
    font-size: 32px;
    color: #01780F;
    margin-bottom: 40px;
}

.faq-item {
    max-width: 850px;
    margin: 0 auto 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 18px 25px;
    background: #045d2c;
    color: #fff;
    border: none;
    text-align: left;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background: #fff;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 25px;
}

.faq-answer p {
    margin: 15px 0;
    color: #444;
    line-height: 1.6;
}

/* Active state */
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 15px 25px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.product-card img {
    transition: transform 0.4s ease;
}

.product-card:hover img {
    transform: scale(1.05);
}
.product-card {
    background: #fff;
    padding: 22px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 6px 20px rgba(0,0,0,0.04),
        0 2px 6px rgba(0,0,0,0.03);
    transition: all 0.35s ease;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 20px 40px rgba(0,0,0,0.08),
        0 10px 20px rgba(0,0,0,0.05);
}
.weight-btn.active {
    background: #01780F;
    color: #fff;
    box-shadow: 0 0 0 3px rgba(1,120,15,0.15);
}
.product-buttons a {
    position: relative;
    overflow: hidden;
}

.product-buttons a:active {
    transform: scale(0.97);
}
.home-products {
    padding: 80px 0;
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 320px));
    gap: 30px;
    justify-content: center; /* ðŸ”¥ Important */
}

.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.product-info {
    padding: 15px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.price {
    color: #01780F;
    font-weight: 600;
}
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.product-card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image img {
    width: 100%;
    height: 200px;
    object-fit: contain;
}

.weight-options {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 10px 0;
}

.weight-btn {
    padding: 6px 10px;
    border: 1px solid #01780f;
    background: #fff;
    cursor: pointer;
    font-size: 13px;
}

.weight-btn.active {
    background: #01780f;
    color: #fff;
}

.price {
    font-size: 18px;
    font-weight: bold;
    margin: 10px 0;
}

.product-buttons {
    display: flex;
    gap: 10px;
}

.btn-cart,
.btn-buynow {
    flex: 1;
    padding: 10px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 6px;
}

.btn-cart {
    background: #fff;
    border: 2px solid #01780f;
    color: #01780f;
}

.btn-buynow {
    background: #01780f;
    color: #fff;
}

/* ===============================
   MOBILE PRODUCT IMPROVEMENT
=============================== */

@media (max-width: 768px) {

    .container {
        width: 95%;
    }

   

    .product-card {
        width: 100%;
        padding: 18px;
        border-radius: 14px;
    }

    
    

    .product-card h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .weight-options {
        justify-content: center;
        gap: 6px;
    }

    .weight-btn {
        padding: 6px 12px;
        font-size: 12px;
        border-radius: 6px;
    }

    .price {
        font-size: 18px;
        margin: 8px 0;
    }

    .product-buttons {
        flex-direction: column;
        gap: 8px;
    }

    .product-buttons a,
    .product-buttons button {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

}

/* ===============================
   FIX PRODUCT CARD ALIGNMENT
=============================== */

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.product-card h3 {
    min-height: 48px; /* keeps titles equal height */
}

.price {
    min-height: 28px;
}

.product-buttons {
    margin-top: auto;  /* 🔥 pushes buttons to bottom */
    display: flex;
    gap: 10px;
}

.product-buttons a,
.product-buttons button {
    flex: 1;
}




@media (max-width: 768px) {

    .product-actions {
        margin-top: auto;
        display: flex;
        gap: 8px;
    }

    .product-actions button,
    .product-actions .btn {
        flex: 1;
        padding: 10px;
        font-size: 13px;
        border-radius: 8px;
        white-space: nowrap;
    }

}
@media (max-width: 768px) {

    .product-card h3 {
        font-size: 14px;
        line-height: 1.3;
        min-height: 38px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

}
.product-card {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-3px);
}
@media (max-width: 768px) {

    .product-card {
        padding: 12px;
        border-radius: 12px;
        display: flex;
        flex-direction: column;
    }

}


@media (max-width: 768px) {

    .product-card h3 {
        font-size: 14px;
        line-height: 1.3;
        min-height: 38px; /* keeps cards equal */
        overflow: hidden;
    }

}
@media (max-width: 768px) {

    .product-actions {
        margin-top: auto;
        display: flex;
        gap: 6px;
    }

    .product-actions button {
        flex: 1;
        font-size: 12px;
        padding: 8px;
    }

}
.products-grid {
    padding: 0 10px;
}
@media (max-width: 768px) {

    .about-section {
        padding: 50px 15px;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    /* Move image on top (optional but recommended for ecommerce) */
    .about-image {
        order: -1;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 15px;
    }

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

    .about-tag {
        font-size: 13px;
        letter-spacing: 1px;
        margin-bottom: 10px;
        display: inline-block;
    }

    .about-text h2 {
        font-size: 22px;
        line-height: 1.3;
        margin-bottom: 15px;
    }

    .about-text p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 12px;
    }

    .about-btn {
        display: inline-block;
        padding: 10px 22px;
        font-size: 14px;
        border-radius: 8px;
        margin-top: 10px;
    }

}.about-image img {
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {

    .category-showcase {
        padding: 50px 15px;
    }

    .showcase-heading h2 {
        font-size: 22px;
        margin-bottom: 8px;
    }

    .showcase-heading p {
        font-size: 14px;
        margin-bottom: 25px;
    }

    .showcase-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .showcase-card {
        background: #fff;
        border-radius: 14px;
        overflow: hidden;
        text-align: center;
        text-decoration: none;
        box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        transition: 0.3s ease;
    }

}
@media (max-width: 768px) {

    .showcase-image {
        width: 100%;
        aspect-ratio: 1 / 1;
        overflow: hidden;
    }

    .showcase-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform 0.4s ease;
    }

}

/* ===============================
   DNH PREMIUM PRELOADER
================================ */

/* ==============================
   DNH CLEAN PREMIUM PRELOADER
================================ */

#preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

/* Center wrapper */
.loader-content {
    text-align: center;
}

/* Modern circular ring */
.loader-ring {
    width: 55px;
    height: 55px;
    border: 3px solid #e8f3ea;
    border-top: 3px solid #01780F;
    border-radius: 50%;
    margin: 0 auto 18px;
    animation: spin 0.9s linear infinite;
}

/* Spin animation */
@keyframes spin {
    100% { transform: rotate(360deg); }
}

/* Clean text */
.loader-content p {
    font-size: 15px;
    color: #01780F;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin: 0;
    opacity: 0.85;
}
.resend-text {
    margin-top: 15px;
    text-align: center;
}

.resend-link {
    color: #01780F;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: 0.3s ease;
}

/* Smooth underline animation */
.resend-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    left: 0;
    bottom: -3px;
    background: #01780F;
    transition: 0.3s ease;
}

.resend-link:hover::after {
    width: 100%;
}

.resend-link:hover {
    opacity: 0.8;
}


/* ===================================
   CLEAN FINAL MOBILE PRODUCT SYSTEM
=================================== */
/* =====================================
   FINAL CLEAN MOBILE PRODUCT SYSTEM
===================================== */
@media (max-width: 768px) {

    /* Full width container */
    .products-page .container {
        width: 100%;
        padding: 0 15px;
    }


    /* Product Card */
    .product-card {
        width: 100%;
        padding: 16px;
        border-radius: 14px;
        display: flex;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    }

  

    /* Title */
    .product-card h3 {
        font-size: 16px;
        line-height: 1.3;
        margin-bottom: 8px;
    }

    /* WEIGHT BUTTONS — FORCE SINGLE ROW */
    .weight-options {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;         /* 🔥 no wrapping */
        justify-content: center;
        gap: 8px;
        margin: 10px 0;
    }

    .weight-btn {
        flex: 1;                  /* equal width */
        white-space: nowrap;
        font-size: 13px;
        padding: 8px 0;
        border-radius: 8px;
    }

    /* Price */
    .price {
        font-size: 18px;
        font-weight: 700;
        margin: 10px 0;
        text-align: center;
    }

    /* ACTION BUTTONS — FORCE SAME ROW */
    .product-buttons {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;        /* 🔥 no wrapping */
        gap: 10px;
        margin-top: 10px;
    }

    .product-buttons a,
    .product-buttons button {
        flex: 1;                  /* equal width */
        padding: 12px 0;
        font-size: 14px;
        border-radius: 10px;
        white-space: nowrap;
        text-align: center;
    }

}
.business-hours {
    padding: 100px 0;
    background: linear-gradient(135deg, #f4f8f5, #eef6ee);
}

.hours-box {
    max-width: 600px;
    margin: auto;
    background: #ffffff;
    padding: 50px 40px;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(1,120,15,0.08);
    text-align: center;
}

.hours-box h2 {
    font-size: 28px;
    color: #01780F;
    margin-bottom: 10px;
}

.hours-subtitle {
    font-size: 14px;
    color: #666;
    margin-bottom: 35px;
}

/* Row layout */
.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.hours-row:last-child {
    border-bottom: none;
}

.day {
    font-weight: 600;
    color: #333;
}

.time {
    font-weight: 600;
    color: #01780F;
}

/* Sunday highlight */
.sunday .time {
    color: #b57f17; /* subtle gold accent */
}

/* Mobile */
@media (max-width: 600px) {
    .hours-row {
        flex-direction: column;
        gap: 5px;
        text-align: center;
    }
}
/* ===============================
   SINGLE ROW SEARCH + FILTER
=============================== */

.search-filter-bar {
    padding: 40px 0;
    background: linear-gradient(135deg, #f4f8f5, #eef6ee);
}

.search-filter-form {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
}

/* Input */
.search-input-group input {
    width: 400px;
    padding: 14px 18px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
}

/* Dropdown */
.category-select-group select {
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 14px;
    min-width: 180px;
    cursor: pointer;
}

/* Button */
.search-btn {
    padding: 14px 22px;
    border-radius: 8px;
    border: none;
    background: #01780F;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.search-btn:hover {
    background: #015e0c;
}

/* Mobile */
@media (max-width:768px){

.search-filter-form{
display:flex;
flex-wrap:wrap;
gap:8px;
}

/* make both equal */

.search-input-group,
.category-select-group{
flex:1 1 48%;
}

/* inputs */

.search-input-group input,
.category-select-group select{
width:100%;
padding:10px 12px;
font-size:14px;
border-radius:6px;
}

/* button full width below */

.search-btn{
width:100%;
padding:10px;
font-size:14px;
border-radius:6px;
}

}
@media (max-width: 768px) {

    
    /* Image LEFT */
    .cart-img {
        flex: 0 0 85px;
    }

    .cart-img img {
        width: 85px;
        height: 85px;
        object-fit: cover;
        border-radius: 12px;
    }

    /* RIGHT SIDE CONTENT */
    .cart-details {
        flex: 1;
        min-width: 0;
    }

    .cart-details h4 {
        font-size: 15px;
        margin-bottom: 6px;
        line-height: 1.3;
    }

    .cart-details p {
        font-size: 13px;
        margin: 2px 0;
        color: #666;
    }

    /* QTY + TOTAL ROW */
    .cart-qty {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-top: 8px;
    }

    .cart-total-item {
        margin-left: auto;
        font-weight: 600;
        font-size: 15px;
        color: #0b6b1d;
    }

    /* REMOVE */
    .cart-remove {
        margin-top: 6px;
    }

    .remove-btn {
        font-size: 13px;
        color: red;
        background: none;
        border: none;
        padding: 0;
    }
}
/* =================================
   GLOBAL MOBILE SYSTEM FIX
================================= */
@media (max-width: 768px) {

    body {
        padding-top: 80px;
    }

    .container {
        width: 95%;
        padding: 0 15px;
    }

    section {
        padding-left: 0;
        padding-right: 0;
    }

    h1 { font-size: 24px !important; }
    h2 { font-size: 22px !important; }
    h3 { font-size: 18px !important; }
    p  { font-size: 14px !important; }





    
   
   

    .product-card h3 {
        font-size: 14px;
        min-height: 36px;
    }

    .price {
        font-size: 16px;
        font-weight: 700;
    }

    .weight-options {
        flex-wrap: nowrap;
        gap: 6px;
    }

    .weight-btn {
        font-size: 12px;
        padding: 6px 8px;
    }

    .product-buttons {
        flex-direction: column;
        gap: 8px;
    }

}
@media (max-width: 768px) {

    .premium-footer {
        padding-top: 50px;
    }

    .footer-container {
        gap: 25px;
    }

    .footer-bottom {
        text-align: center;
        font-size: 13px;
    }

}
@media (max-width: 768px) {

    .checkout-section {
        padding: 70px 15px;
    }

    .checkout-form,
    .checkout-summary {
        padding: 20px;
        border-radius: 14px;
    }

    .summary-total {
        font-size: 16px;
    }

    .payment-option {
        padding: 12px;
    }

}
@media (max-width: 768px) {

    .account-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .account-sidebar {
        width: 100%;
    }

}
/* ==========================
   CART TOAST
========================== */

.cart-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #01780F;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);

    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 9999;
}

.cart-toast.show {
    opacity: 1;
    transform: translateY(0);
}
.add-cart-btn.loading {
    opacity: 0.6;
    pointer-events: none;
}
/* ================= WHY CHOOSE US PREMIUM ================= */

.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(to bottom, #ffffff, #f4faf5);
}

.section-heading {
    text-align: center;
    margin-bottom: 50px;
}

.section-heading h2 {
    font-size: 32px;
    font-weight: 700;
    color: #111;
}

.section-heading p {
    color: #666;
    margin-top: 10px;
    font-size: 16px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.why-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
    border: 1px solid rgba(1,120,15,0.08);
}

.why-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(1,120,15,0.15);
}

.why-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, #01780F, #0aa31d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 10px 25px rgba(1,120,15,0.35);
}

.why-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #01780F;
}

.why-card p {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}
.orders-page {
    padding: 60px 0;
}

.order-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.order-header {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 20px;
}

.order-summary p {
    margin: 4px 0;
    font-size: 14px;
}

.order-items {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.order-item {
    display: flex;
    gap: 15px;
    align-items: center;
}

.order-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.order-item-details h4 {
    margin: 0 0 5px;
}



.min-order-box {
    background: #fff8e1;
    color: #d17b00;
    padding: 14px 18px;
    border-radius: 8px;
    margin: 15px 0;
    font-weight: 500;
    font-size: 14px;
}

.btn-disabled {
    background: #ccc;
    color: #666;
    padding: 12px 20px;
    border: none;
    border-radius: 6px;
    cursor: not-allowed;
    margin-top: 10px;
}

.btn-outline {
    display: inline-block;
    padding: 12px 20px;
    border: 2px solid #01780F;
    color: #01780F;
    border-radius: 6px;
    text-decoration: none;
    margin-right: 10px;
}

.btn-outline:hover {
    background: #01780F;
    color: #fff;
}
/* ============================= */
/* MOBILE RESPONSIVE CART CSS */
/* ============================= */

@media (max-width: 768px) {

    .cart-section {
        padding: 20px 10px;
    }

    .cart-title {
        font-size: 22px;
        text-align: center;
        margin-bottom: 15px;
    }

    .cart-nav {
        text-align: center;
        margin-bottom: 15px;
    }

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

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

    .cart-img img {
        width: 100px;
        height: auto;
        object-fit: contain;
    }

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

    .cart-details h4 {
        font-size: 16px;
        margin-bottom: 5px;
    }

    .cart-details p {
        font-size: 14px;
        margin: 2px 0;
    }

 

    .cart-total-item {
        text-align: center;
        font-weight: 600;
        font-size: 15px;
    }

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

    .remove-btn {
        background: #ff4d4d;
        color: #fff;
        border: none;
        padding: 8px 14px;
        border-radius: 6px;
        font-size: 13px;
        cursor: pointer;
    }

    /* ================= SUMMARY ================= */

    .cart-summary {
        margin-top: 20px;
        padding: 18px;
        border-radius: 12px;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        text-align: center;
    }

    .cart-summary h3 {
        font-size: 18px;
        margin-bottom: 12px;
    }

    .min-order-box {
        font-size: 13px;
        padding: 10px;
        margin-bottom: 12px;
        background: #fff4e5;
        border-radius: 6px;
    }

    .btn-outline,
    .btn-checkout,
    .btn-disabled {
        display: block;
        width: 100%;
        margin: 8px 0;
        padding: 10px;
        font-size: 14px;
        text-align: center;
        border-radius: 6px;
    }

}
@media (max-width: 768px) {

    .cart-qty {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
    }

    .qty-btn {
        width: 38px;
        height: 38px;
        border-radius: 8px;
        border: none;
        background: linear-gradient(120deg, #01780F);
        color: #ffffff;
        font-size: 18px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s ease;
    }

    .qty-btn:hover {
        transform: scale(1.05);
    }

    .qty-number {
        font-size: 16px;
        font-weight: 600;
        min-width: 20px;
        text-align: center;
    }

}

/* ============================= */
/* PRODUCT CARD STYLING */
/* ============================= */

.product-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    transition: 0.3s ease;
}

.product-card:hover {
    transform: translateY(-6px);
}

.product-image img {
    width: 100%;
    height: 180px;
    object-fit: contain;
}

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

.weight-options {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 12px 0;
}

.weight-btn {
    padding: 6px 12px;
    border: 1px solid #d4af37;
    background: #fff;
    color: #0f172a;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    transition: 0.3s ease;
}

.weight-btn.active,
.weight-btn:hover {
    background: #d4af37;
    color: #fff;
}

/* ============================= */
/* PRICE */
/* ============================= */

.price {
    font-size: 18px;
    font-weight: 600;
    color: #0f172a;
    margin: 10px 0;
}

/* ============================= */
/* QUANTITY */
/* ============================= */

.quantity-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 15px 0;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid #d4af37;
    background: #fff;
    color: #d4af37;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.qty-btn:hover {
    background: #d4af37;
    color: #fff;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 600;
    background: transparent;
}

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

.product-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-cart {
    background: #0f172a;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-cart:hover {
    background: #1e293b;
}

.btn-buynow {
    background: #d4af37;
    color: #fff;
    border: none;
    padding: 8px 14px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-buynow:hover {
    opacity: 0.9;
}






/* Remove extra top gap from first section */
main > section:first-child {
    margin-top: 0;
}
/* =========================
   MOBILE FLOATING CART
========================= */

.dnh-mobile-cart {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #01780F;
    color: #fff;
    border-radius: 50%;
    display: none; /* hidden by default */
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    z-index: 999;
    text-decoration: none;
}

.dnh-mobile-cart:hover {
    background: #015e0c;
}

.dnh-cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #d4af37;
    color: #000;
    font-size: 12px;
    font-weight: 600;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Show only on mobile */
@media (max-width: 768px) {
    .dnh-mobile-cart {
        display: flex;
    }
}
/* =========================
   MOBILE HEADER ICONS
========================= */

.mobile-icons {
    display: none;
    align-items: center;
    gap: 18px;
}

/* Cart icon */
.mobile-cart-icon {
    position: relative;
    color: white;
    font-size: 20px;
    text-decoration: none;
}

/* Count badge */
.mobile-cart-count {
    position: absolute;
    top: -6px;
    right: -8px;
    background: #d4af37;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Show only on mobile */
@media (max-width: 768px) {

    /* Hide desktop nav cart */
    .nav-links li a[href="cart.php"] {
        display: none;
    }

    .mobile-icons {
        display: flex;
    }
}
.pincode-check{
margin-top:20px;
}

.pincode-check label{
font-weight:600;
display:block;
margin-bottom:8px;
}

.pincode-row{
display:flex;
gap:10px;
}

.pincode-row input{
flex:1;
padding:10px;
border-radius:8px;
border:1px solid #ccc;
font-size:14px;
}

.pincode-row button{
background:#01780F;
color:#fff;
border:none;
padding:10px 16px;
border-radius:8px;
cursor:pointer;
}

#pincodeMessage{
margin-top:8px;
font-size:13px;
}
/* ===================================
DNH HERO FINAL FIX
=================================== */
/* ANNOUNCEMENT BAR */

.top-announcement{
background:#f4f7f5;
border-bottom:1px solid #e6e6e6;
overflow:hidden;
height:40px;
display:flex;
align-items:center;
}

.announcement-track{
display:flex;
animation:slideText 18s linear infinite;
}

.announcement-item{
white-space:nowrap;
padding:0 60px;
font-size:14px;
color:#01780F;
font-weight:500;
}

/* sliding animation */

@keyframes slideText{

0%{
transform:translateX(100%);
}

100%{
transform:translateX(-100%);
}

}

/* ANNOUNCEMENT BAR */

.announcement-bar{
background:#f2efe8;
border-bottom:1px solid #ddd;
overflow:hidden;
height:38px;
display:flex;
align-items:center;
}

/* slider */

.announcement-slider{
display:flex;
gap:60px;
white-space:nowrap;
animation:announcementMove 18s linear infinite;
}

/* text */

.announcement-slider span{
font-size:14px;
color:#333;
font-weight:500;
}

/* animation */

@keyframes announcementMove{

0%{
transform:translateX(100%);
}

100%{
transform:translateX(-100%);
}

}
.search-input-group{
position:relative;
}

#searchResults{
position:absolute;
top:100%;
left:0;
width:100%;
background:#fff;
border:1px solid #ddd;
border-top:none;
max-height:250px;
overflow-y:auto;
display:none;
z-index:999;
}

.search-item{
padding:10px 14px;
cursor:pointer;
border-bottom:1px solid #eee;
}

.search-item:hover{
background:#f7f7f7;
}



----------------------------

/* =================================
FINAL MOBILE PRODUCT FIX
================================= */




/* =================================
FINAL MOBILE PRODUCT FIX
================================= */

@media (max-width:768px){

.product-grid{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:14px;
padding:0 12px;
}

.product-card{
padding:12px;
border-radius:12px;
display:flex;
flex-direction:column;
}

.product-card img{
width:100%;
height:160px;
object-fit:contain;
background:#f8f8f8;
border-radius:8px;
}


.product-card h3{
font-size:14px;
line-height:1.3;
min-height:36px;
}

.weight-options{
display:flex;
flex-wrap:nowrap;
gap:6px;
justify-content:center;
}

.weight-btn{
flex:1;
font-size:12px;
padding:6px;
}

.price{
font-size:16px;
font-weight:700;
}

.product-buttons{
display:flex;
gap:6px;
}

.product-buttons a{
flex:1;
padding:10px;
font-size:13px;
}

}

.product-card h3{
font-size:16px;
line-height:1.3;
min-height:42px;

display:-webkit-box;
-webkit-line-clamp:2;
-webkit-box-orient:vertical;
overflow:hidden;
}
.product-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

@media (max-width:992px){
.product-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media (max-width:600px){
.product-grid{
grid-template-columns:1fr;
}
}