* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f8f9f4;
    transition: background-color 0.3s, color 0.3s;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}


/* जब JS active करेगा */
body.page-loaded {
    opacity: 1;
    transform: translateY(0);
}

/* Motion preference respect */
@media (prefers-reduced-motion: reduce) {
    body {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}

/* Dark Mode Styles */
body.dark-mode {
    background: #121212;
    color: #e0e0e0;
}

/* ===== HEADER & NAVBAR ===== */
header {
    width: 100%;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: white;
    color: black;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    flex-wrap: wrap;
    font: 0.9em sans-serif;
    transition: background-color 0.3s, color 0.3s;
    background: linear-gradient(135deg, #A5D6A7, #E8F5E9);
    position: relative;
    z-index: 10;
    /* 👈 nav top par rahe */
}

body.dark-mode nav {
    background: #1e1e1e;
    color: #e0e0e0;
    box-shadow: 0 2px 5px rgba(255, 255, 255, 0.1);
}

/* ===== DESKTOP VIEW (Navbar fixed top) ===== */
@media (min-width: 769px) {
    nav {
        top: 0;
        left: 0;
        z-index: 1000;
    }
}

.logo {
    height: 47px;
    margin-right: 10px;
}

/* 🔎 Search box */
.search-box {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 10px 0;
    min-width: 180px;
    position: relative;
    max-width: 400px;
    width: 100%;
}

.search-box input {
    width: 100%;
    max-width: 400px;
    padding: 10px 12px;
    border: 1px solid #064E3B;
    border-radius: 20px;
    font-size: 16px;
    outline: none;
    background: white;
    color: black;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

body.dark-mode .search-box input {
    background: #2d2d2d;
    color: #e0e0e0;
    border-color: #ffff;
}

.search-box input:focus {
    border-color: #064E3B;
    box-shadow: 0 0 0 3px rgba(6, 78, 59, 0.1);
}

#searchBtn {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    color: #064E3B;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

body.dark-mode #searchBtn {
    color: white;
}

#searchBtn:hover {
    background: #1e3a21;
}

/* 🔎 Suggestions dropdown */
#suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode #suggestions {
    background: #2d2d2d;
    color: #e0e0e0;
    box-shadow: 0 4px 6px rgba(255, 255, 255, 0.1);
}

/* ✅ Navbar Links */
.menu {
    align-items: center;
    padding: 0;
    margin: 0;
    flex-wrap: nowrap;
    gap: 10px;
}

.menu a {
    position: relative;
    text-decoration: none;
    color: #064E3B;
    transition: color 0.3s;
}

body.dark-mode .menu a {
    color: #e0e0e0;
}

.menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #4caf50;
    transition: width 0.3s;
}

.menu a:hover {
    color: #4caf50;
}

.menu a:hover::after {
    width: 100%;
}

/* Dropdown */
.dropdown {
    position: relative;
    margin: 0;
    line-height: 1.2;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    min-width: 100px;
    max-height: 0;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 4px;
    transition: max-height 0.4s ease, background-color 0.3s;
}

body.dark-mode .dropdown-menu {
    background: #2d2d2d;
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.15);
}

.dropdown-menu li a {
    padding: 7px 20px;
    white-space: nowrap;
    font-size: 12px;
    transition: background-color 0.3s, color 0.3s;
}

body.dark-mode .dropdown-menu li a {
    color: #e0e0e0;
}

.dropdown-menu li a:hover {
    background: #f0f0f0;
}

body.dark-mode .dropdown-menu li a:hover {
    background: #3d3d3d;
}

/* Arrow */
.arrow {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s;
}

.dropdown.open .arrow {
    transform: rotate(180deg);
}

nav ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
}

nav ul li a {
    display: inline-block;
    padding: 10px 7px;
    color: black;
    text-decoration: none;
    position: relative;
    font-size: 0.95rem;
    font-weight: bold;
    transition: color 0.3s;
}

body.dark-mode nav ul li a {
    color: #e0e0e0;
}

/* nav icons */
.nav-icons {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 10px;
}

/* Icons */
.nav-icons img {
    height: 22px;
    width: 22px;
    cursor: pointer;
    margin: 5px 10px;
    transition: filter 0.3s;
}

body.dark-mode .nav-icons img {
    filter: invert(1);
}

.nav-icons a {
    position: relative;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-icons a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 2px;
    background: #4caf50;
    transition: width 0.3s;
}

.nav-icons a:hover::after {
    width: 100%;
}

/* Cart icon wrapper and badge */
.cart-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cart-count-badge {
    position: absolute;
    top: -6px;
    right: 2px;
    background: #e74c3c;
    color: white;
    font-size: 10px;
    font-weight: 700;
    min-width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    animation: badgePop 0.3s ease;
}

@keyframes badgePop {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* ✅ Responsive Layout for Small Screens */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .search-box {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    nav ul {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
        padding: 0;
    }

    .nav-icons {
        justify-content: center;
        margin: 0;
    }
}

/* mid part css */
.mid-container {
    width: 100%;
    max-width: 100%;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
    padding: 10px 20px;
    transition: background-color 0.3s, box-shadow 0.3s;
}

body.dark-mode .mid-container {
    background-color: #1e1e1e;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.05);
}

img {
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

/* Hero */

/*mid section*/
.mid {
    height: 420px;
    background: linear-gradient(110deg, #A5D6A7, #faf3e2);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background-color: #faf3e2;
    border-radius: 10px;
    margin-bottom: 50px;
    margin-top: 70px;
    transition: background-color 0.3s;
}

body.dark-mode .mid {
    background: linear-gradient(110deg, #A5D6A7, #0000);
}

.mid-content {
    flex: 1 1 300px;
    padding-right: 20px;
    padding: 20px;
    max-height: fit-content;

}

.mid-content h1 {
    font-size: 3em;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
    transition: color 0.3s;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 6px 18px rgba(0, 0, 0, 0.2);
}

body.dark-mode .mid-content h1 {
    color: #2c3e50;
}

.mid-content p {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #555;
    transition: color 0.3s;
}

body.dark-mode .mid-content p {
    color: #f0f0f0;
}

.shop-now-btn {
    background-color: #4CAF50;
    color: #fff;
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1em;
    cursor: pointer;
    text-decoration: none;
    box-shadow:
        0 1px 2px rgba(0, 0, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 6px 18px rgba(0, 0, 0, 0.2);
}

.shop-now-btn:hover {
    background-color: #45a049;
}

.mid-image img {
    width: 300px;
    border-radius: 10px;
}

.plant-preview {
    width: 400px;
    height: 400px;
    background: url('https://res.cloudinary.com/dszy67wp5/image/upload/v1756528117/ChatGPT_Image_Aug_30_2025_09_52_23_AM_lqp5ei.png') no-repeat center;
    background-size: contain;
    animation: float-plant 10s infinite ease-in-out;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.2));
}

@keyframes float-plant {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    33% {
        transform: translateY(-20px) rotate(2deg);
    }

    66% {
        transform: translateY(10px) rotate(-2deg);
    }
}

@media (max-width: 992px) {
    .plant-preview {
        width: 300px;
        height: 300px;
        right: 5%;
    }
}

@media (max-width: 768px) {
    .plant-preview {
        position: relative;
        right: auto;
        margin-top: 40px;
    }
}


/* Default desktop view */
.shop-collection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

/* ✅ Mobile view: slider style */
@media (max-width: 768px) {
    .shop-collection {
        display: flex;
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 10px;
    }

    .collection-item,
    .discount-item,
    .product-card {
        flex: 0 0 100%;
        scroll-snap-align: center;
        min-width: 100%;
    }
}


.shop-collection a {
    text-decoration: none;
}

.mid-image model-viewer {
    width: 300px;
    height: 300px;
    border-radius: 10px;
}

.collection-item,
.discount-item,
.product-card {
    background-color: #F9F7F3;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    color: #1b4332;
    font-size: 1.3rem;
    transition: background-color 0.3s, color 0.3s;
}

.collection-item h1,
.discount-item h1,
.product-card h1 {
    padding-bottom: 25px;
}

body.dark-mode .collection-item,
body.dark-mode .discount-item,
body.dark-mode .product-card {
    background-color: #2d2d2d;
    color: #e0e0e0;
}

.see {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #064E3B;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 0;
    font-weight: 600;
    font-size: 10px;
    width: 100%;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.see:hover {
    background-color: #4caf50;
}

.see-all {
    color: white;
    font-size: 1rem;
    padding-top: 1px;
    transition: color 0.3s;
}

body.dark-mode .see-all {
    color: #4caf50;
}

.see:hover {
    color: #4caf50;
}

.collection-item img,
.discount-item img,
.product-card img {
    max-width: 100%;
    margin-bottom: 10px;
    border-radius: 8px;
}

/* Make card as parent for overlay */
.category-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

/* Overlay design */
.category-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
}

.category-overlay h3 {
    color: white;
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.category-overlay span {
    color: #b7ffdd;
    font-weight: 600;
}

/* Card Image */
.category-card img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Dark mode support */
body.dark-mode .category-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
}

/* Product */
.best-sellers {
    padding: 2rem 1rem;
    margin-top: 4rem;
}

.best-sellers h2 {
    color: #064E3B;
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 2rem);
    transition: color 0.3s;
    text-align: center;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 6px 18px rgba(0, 0, 0, 0.2);
}

body.dark-mode .best-sellers h2 {
    color: #e0e0e0;
}

.slider-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

.product-grid {
    display: flex;
    gap: clamp(10px, 2vw, 15px);
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 1rem 0;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE and Edge */
}

.product-grid::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.product-card {
    position: relative;
    flex: 0 0 auto;
    width: clamp(150px, 30vw, 200px);
    /* Responsive card width */
    min-width: 150px;
}

.badge {
    position: absolute;
    color: black;
    top: 8px;
    left: 8px;
    background-color: transparent;
    padding: 4px 8px;
    border-radius: 4px;
    font-weight: bold;
    font-size: clamp(1.5rem, 4vw, 2rem);
    transition: color 0.3s;
}

body.dark-mode .badge {
    color: #e0e0e0;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: clamp(8px, 2vw, 12px);
    cursor: pointer;
    font-size: clamp(1rem, 3vw, 1.2rem);
    border-radius: 10%;
    transition: background-color 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

.slider-btn.left {
    left: clamp(5px, 1vw, 10px);
}

.slider-btn.right {
    right: clamp(5px, 1vw, 10px);
}

/* Hide slider buttons on mobile */
@media (max-width: 768px) {
    .slider-btn {
        display: none;
    }
}

.product-card img {
    width: 100%;
    height: auto;

    /* Disabled button state */
    .btn:disabled,
    .btn.disabled {
        opacity: 0.6;
        cursor: not-allowed;
        pointer-events: none;
    }

    /* Spinner for button */
    .spinner {
        display: inline-block;
        width: 16px;
        height: 16px;
        border: 2px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        border-top-color: #fff;
        animation: spin 0.8s linear infinite;
        margin-right: 8px;
        vertical-align: middle;
    }

    @keyframes spin {
        to {
            transform: rotate(360deg);
        }
    }

    object-fit: cover;
    border-radius: 8px;
}

.btn-content {
    text-align: center;
    padding: 0.5rem;
}

.card-title {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin: 0.5rem 0;
    color: #333333;
}

.price {
    font-size: clamp(0.9rem, 2.5vw, 1rem);
    color: #333;
}

.price del {
    color: #888;
}

.btn-product {
    background-color: #28a745;
    color: white;
    border: none;
    padding: clamp(6px, 2vw, 8px) clamp(12px, 3vw, 16px);
    border-radius: 4px;
    cursor: pointer;
    font-size: clamp(0.8rem, 2.5vw, 0.9rem);
    transition: background-color 0.3s;
    width: 100%;
    max-width: 150px;
}

.btn-product:hover {
    background-color: #218838;
}

/* Slider Indicators */
.slider-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1rem;
}

.indicator {
    width: 10px;
    height: 10px;
    background-color: #ccc;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s;
}

.indicator.active {
    background-color: #28a745;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card {
        width: clamp(120px, 40vw, 160px);
    }

    .indicator {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .product-card {
        width: clamp(100px, 45vw, 140px);
    }

    .indicator {
        width: 6px;
        height: 6px;
    }

    .best-sellers {
        padding: 1rem 0.5rem;
    }
}

/* Category */
.shop-by-category h2 {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.2rem;
    margin-top: 4rem;
    font-size: clamp(2.5rem, 5vw, 2rem);
    color: #064E3B;
    transition: color 0.3s;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 6px 18px rgba(0, 0, 0, 0.2);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.category-card {
    background-color: #F9F7F3;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: background-color 0.3s;
}

body.dark-mode .category-card {
    background-color: #2d2d2d;
}

.category-card img {
    max-width: 100%;
    border-radius: 8px;
}

/* btn content */
.btn-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.btn-title {
    font-weight: 400;
    font-size: 16px;
    margin: 0 0 8px 0;
    color: #111827;
    transition: color 0.3s;
}

body.dark-mode .btn-title {
    color: #e0e0e0;
}

.price {
    font-weight: 600;
    font-size: 18px;
    color: #166534;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.price del {
    font-weight: 400;
    font-size: 16px;
    color: #9ca3af;
}

.btn-product {
    background: #064E3B;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 10px 0;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.1em;
    cursor: pointer;
    user-select: none;
    width: 100%;
    transition: background-color 0.3s ease;
}

.btn-product:hover:not(:disabled) {
    background: #00a651;
}

.btn-product:disabled {
    background: #86efac;
    cursor: not-allowed;
    color: #fff;
}

/* Responsive Fixes */
@media (max-width: 768px) {
    .mid {
        flex-direction: column;
        padding: 20px;
        text-align: center;
        height: auto;
        margin-top: 50px;
    }

    /* Plant image content से ऊपर दिखे */
    .plant-preview {
        order: -1;
        width: 280px;
        height: 280px;
        margin: 0 auto 20px;
        position: relative;
        right: auto;
    }

    .mid-content {
        padding: 0;
        margin-bottom: 20px;
    }

    .mid-content h1 {
        font-size: 2em;
    }

    .shop-now-btn {
        width: 100%;
    }

    .category-grid {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .mid-content h1 {
        font-size: 1.6em;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .shop-collection {
        grid-template-columns: 1fr;
    }

    .mid-container {
        padding: 15px;
    }
}


@media (max-width: 480px) {
    .product-grid {
        display: flex;
        gap: clamp(8px, 2vw, 12px);
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .product-card {
        flex: 0 0 50%;
        max-width: 50%;
        min-width: 50%;
        box-sizing: border-box;
    }

    .product-card img {
        width: 100%;
    }

    .slider-btn {
        display: none;
    }
}

/* end part css */
.section-white {
    background-color: white;
    margin-top: 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

body.dark-mode .section-white {
    background-color: #1e1e1e;
}

.section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 4rem;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 2rem);
    margin: 0;
    padding-left: 20px;
    color: #064E3B;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 6px 18px rgba(0, 0, 0, 0.2);
}

body.dark-mode .section-header h2 {
    color: #e0e0e0;
}

.best-selling-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media(min-width: 640px) {
    .best-selling-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.plant-card {
    background-color: #F9F7F3;
    border-radius: 0.75rem;
    padding-top: 1rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.3s;
}

body.dark-mode .plant-card {
    background-color: #2d2d2d;
}

.plant-card img {
    border-radius: 0.75rem;
    width: 90%;
    object-fit: contain;
    align-content: center;
}

.plant-name {
    margin-top: 0.75rem;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s;
}

body.dark-mode .plant-name {
    color: #e0e0e0;
}

.plant-price {
    margin-top: 0.25rem;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s;
}

body.dark-mode .plant-price {
    color: #e0e0e0;
}

/* best selling */

/* ===== FAQ ===== */
.faq {
    padding: 40px 80px;
    background-color: white;
    transition: background-color 0.3s;
}

.faq h2 {
    color: #064E3B;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 6px 18px rgba(0, 0, 0, 0.2);
}

body.dark-mode .faq {
    background-color: #1e1e1e;
}

@media(max-width: 640px) {
    .faq {
        padding: 20px 30px;
    }
}

.faq h2 {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    transition: color 0.3s;

}

body.dark-mode .faq h2 {
    color: #e0e0e0;
}

.faq details {
    width: 100%;
    margin-bottom: 10px;
    border-radius: 6px;
    transition: border-color 0.3s;
}

.faq details:hover {
    border: 2px solid green;
}

.faq summary {
    font-size: 1rem;
    cursor: pointer;
    padding: 15px;
    font-weight: bold;
    transition: color 0.3s;
}

body.dark-mode .faq summary {
    color: #e0e0e0;
}

.faq p {
    margin-bottom: 18px;
    padding-left: 30px;
    transition: color 0.3s;
}

body.dark-mode .faq p {
    color: #b0b0b0;
}

.service {
    margin: auto;
    padding: 20px;
    display: flexbox;
}

.service h2 {
    padding-left: 50px;
    transition: color 0.3s;
    color: #064E3B;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 6px 18px rgba(0, 0, 0, 0.2);
}

body.dark-mode .service h2 {
    color: #e0e0e0;
}

.services {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

@media (max-width: 768px) {
    .services {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        max-width: 1000px;
    }
}

.service-box {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

body.dark-mode .service-box {
    background: #2d2d2d;
    box-shadow: 0px 2px 8px rgba(255, 255, 255, 0.1);
}

.service-box:hover {
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid green;
}

/* CSS: footer.css */
.footer {
    background: white;
    color: black;
    padding: 40px 20px 20px;
    border-top: 1.5px solid black;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
    background: linear-gradient(135deg, #A5D6A7, #E8F5E9);
}

body.dark-mode .footer {
    background: #1e1e1e;
    color: #e0e0e0;
    border-top: 1.5px solid #444;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    transition: color 0.3s;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 6px 18px rgba(0, 0, 0, 0.2);
}

body.dark-mode .footer-section h3 {
    color: #e0e0e0;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin-bottom: 10px;
}

.footer-section a {
    color: black;
    text-decoration: none;
    transition: color 0.3s;
}

body.dark-mode .footer-section a {
    color: #e0e0e0;
}

.footer-section a:hover {
    text-decoration: underline;
}

.footer-section form {
    display: flex;
    flex-direction: column;
}

.footer-section input {
    padding: 10px;
    border: none;
    border-radius: 4px;
    border: 1px solid black;
    margin-bottom: 10px;
    background: white;
    color: black;
    transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

body.dark-mode .footer-section input {
    background: #2d2d2d;
    color: #e0e0e0;
    border-color: #444;
}

.footer-section button {
    padding: 10px;
    border: none;
    background-color: #064E3B;
    color: white;
    border-radius: 4px;
    cursor: pointer;
}

.footer-section button:hover {
    background-color: #4caf50;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-icons img {
    width: 34px;
    height: 34px;
    transition: filter 0.3s;
}

body.dark-mode .social-icons img {
    filter: invert(1);
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 15px;
    font-size: 14px;
    transition: color 0.3s;
}

body.dark-mode .footer-bottom {
    color: #e0e0e0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}


/* image shine effect */
.img-shine-wrapper {
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.img-shine-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 15%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 1) 50%,
            /* super shiny center */
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
    /* 4s repeat */
    pointer-events: none;
}

@keyframes shine {
    0% {
        left: -60%;
    }

    20% {
        left: 120%;
    }

    80% {
        left: 120%;
    }

    100% {
        left: 120%;
    }
}




/* Pots Section Styling */
.pots-section {
    background-color: white;
    margin-top: 20px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

body.dark-mode .pots-section {
    background-color: #1e1e1e;
}

.pots-section .section-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-top: 2rem;
}

.pots-section h2 {
    font-size: 2rem;
    color: #2b7a2b;
    margin: 0;
}

.pots-section {
    color: #2b7a2b;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.pots-section .view-all:hover {
    color: #1e5c1e;
    text-decoration: underline;
}

.pots-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media(min-width: 640px) {
    .pots-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.pot-card {
    background-color: #F9F7F3;
    border-radius: 0.75rem;
    padding-top: 1rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
    transition: background-color 0.3s;
}


.pot-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.pot-card img {
    border-radius: 0.75rem;
    width: 90%;
    object-fit: contain;
    align-content: center;
}


.pot-card .btn-content {
    padding: 15px;
}

.pot-card .card-title {
    font-size: clamp(1rem, 3vw, 1.2rem);
    margin: 0.5rem 0;
    color: #333333;
}

.pot-card .price {

    margin-top: 0.25rem;
    font-weight: 400;
    font-size: 1rem;
    transition: color 0.3s;
}

/* Dark Mode Support */
body.dark-mode .pots-section {
    background-color: #121212;
}

body.dark-mode .pots-section h2 {
    color: #a8e6a3;
}

body.dark-mode .pot-card {
    background: #1e1e1e;
    color: #e0e0e0;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.05);
}

body.dark-mode .pot-card:hover {
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .pots-section .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .pots-section h2 {
        font-size: 1.5rem;
    }
}

/* 🎯 Discount Badge */
.discount-badge {
    position: absolute;
    background: linear-gradient(135deg, #ff4444, #ff0000);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: bold;
    font-size: 12px;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
    z-index: 10;
    animation: pulse 2s infinite;
}

body.dark-mode .discount-badge {
    background: linear-gradient(135deg, #ff5555, #ff2222);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Plant card ko relative position do */
.plant-card {
    position: relative;
    /* Important for badge positioning */
    background-color: #F9F7F3;
    border-radius: 0.75rem;
    padding-top: 1rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
}


/* 🎨 Plant Card Hover Effect */
.plant-card {
    position: relative;
    background-color: #F9F7F3;
    border-radius: 0.75rem;
    padding-top: 1rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.plant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12),
        0 0 10px rgba(46, 204, 113, 0.7),
        0 0 20px rgba(46, 204, 113, 0.5);
}

body.dark-mode .plant-card {
    background-color: #2d2d2d;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}

body.dark-mode .plant-card:hover {
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.12),
        0 0 10px rgba(76, 175, 80, 0.7),
        0 0 20px rgba(76, 175, 80, 0.5);
}



/* ============================================
   PERFECT INFINITE LOOP BANNER
   ============================================ */

.delivery-banner {
    width: 100%;
    background: linear-gradient(90deg, #2e7d32, #388e3c, #43a047);
    color: white;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner-content {
    width: 100%;
    overflow: hidden;
}

.banner-scroll {
    display: flex;
    width: fit-content;
    animation: scroll-left 25s linear infinite;
}


/* ============================================
   SEAMLESS INFINITE SCROLL BANNER (No Reverse)
   ============================================ */
.delivery-banner {
    width: 100%;
    background: linear-gradient(90deg, #388E3C, #4CAF50, #66BB6A);
    color: white;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    /* ensure it's not fixed */
    z-index: 2000;
}

.banner-content {
    overflow: hidden;
    position: relative;
}

.banner-scroll {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.banner-items {
    display: flex;
}

.banner-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 80px;
    white-space: nowrap;
    flex-shrink: 0;
    text-shadow:
        0 1px 2px rgba(0, 0, 0, 0.35),
        0 4px 8px rgba(0, 0, 0, 0.25),
        0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Continuous scroll keyframe */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.delivery-banner:hover .banner-scroll {
    animation-play-state: paused;
}

/* Info icon & tooltip */

.tooltip {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: white;
    color: #333;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    width: 280px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    font-size: 13px;
}


/* Responsive */
@media (max-width: 768px) {
    .banner-item {
        padding: 0 60px;
    }

    .banner-scroll {
        animation: scroll-left 25s linear infinite;
    }
}

@media (max-width: 480px) {
    .banner-item {
        padding: 0 40px;
    }

    .banner-scroll {
        animation: scroll-left 20s linear infinite;
    }
}

/* 🌱 Category "See More" Button */
.category-more-btn {
    display: block;
    margin: 30px auto 10px auto;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    position: relative;
    /* Important for badge positioning */
    background-color: #F9F7F3;
    border-radius: 0.75rem;
    padding-top: 1rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
}


/* 🎨 Plant Card Hover Effect */
.plant-card {
    position: relative;
    background-color: #F9F7F3;
    border-radius: 0.75rem;
    padding-top: 1rem;
    text-align: center;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.plant-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12),
        0 0 10px rgba(46, 204, 113, 0.7),
        0 0 20px rgba(46, 204, 113, 0.5);
}

body.dark-mode .plant-card {
    background-color: #2d2d2d;
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.08);
}

body.dark-mode .plant-card:hover {
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.12),
        0 0 10px rgba(76, 175, 80, 0.7),
        0 0 20px rgba(76, 175, 80, 0.5);
}



/* ============================================
   PERFECT INFINITE LOOP BANNER
   ============================================ */

.delivery-banner {
    width: 100%;
    background: linear-gradient(90deg, #2e7d32, #388e3c, #43a047);
    color: white;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.banner-content {
    width: 100%;
    overflow: hidden;
}

.banner-scroll {
    display: flex;
    width: fit-content;
    animation: scroll-left 25s linear infinite;
}


/* ============================================
   SEAMLESS INFINITE SCROLL BANNER (No Reverse)
   ============================================ */
.delivery-banner {
    width: 100%;
    background: linear-gradient(90deg, #388E3C, #4CAF50, #66BB6A);
    color: white;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    padding: 8px 0;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    position: relative;
    /* ensure it's not fixed */
    z-index: 2000;
}

.banner-content {
    overflow: hidden;
    position: relative;
}

.banner-scroll {
    display: flex;
    width: max-content;
    animation: scroll-left 30s linear infinite;
}

.banner-items {
    display: flex;
}

.banner-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 80px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Continuous scroll keyframe */
@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause on hover */
.delivery-banner:hover .banner-scroll {
    animation-play-state: paused;
}

/* Info icon & tooltip */

.tooltip {
    position: absolute;
    top: 35px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    background: white;
    color: #333;
    padding: 12px 16px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    width: 280px;
    z-index: 10000;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: none;
    font-size: 13px;
}


/* Responsive */
@media (max-width: 768px) {
    .banner-item {
        padding: 0 60px;
    }

    .banner-scroll {
        animation: scroll-left 25s linear infinite;
    }
}

@media (max-width: 480px) {
    .banner-item {
        padding: 0 40px;
    }

    .banner-scroll {
        animation: scroll-left 20s linear infinite;
    }
}

/* 🌱 Category "See More" Button */
.category-more-btn {
    display: block;
    margin: 30px auto 10px auto;
    padding: 12px 25px;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: #064E3B;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.category-more-btn:hover {
    background: #4CAF50;
    transform: translateY(-3px);
}

body.dark-mode .category-more-btn {
    background: #2e7d32;
    color: #fff;
}

/* ============================================
   NEW SECTIONS FOR INDEX.HTML UPGRADE
   ============================================ */

/* 1. Visual Services Section */
.services-section {
    padding: 4rem 2rem;
    background: white;
    text-align: center;
    transition: background-color 0.3s;
}

body.dark-mode .services-section {
    background: #1e1e1e;
}

.services-section h2 {
    font-size: 2.5rem;
    color: #064E3B;
    margin-bottom: 3rem;
}

body.dark-mode .services-section h2 {
    color: #e0e0e0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: #F9F7F3;
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

body.dark-mode .service-card {
    background: #2d2d2d;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #e8f5e9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: #2e7d32;
    margin-bottom: 1rem;
}

body.dark-mode .service-icon {
    background: #3d3d3d;
    color: #81c784;
}

.service-card h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 0;
}

body.dark-mode .service-card h3 {
    color: #e0e0e0;
}

.service-card p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

body.dark-mode .service-card p {
    color: #aaa;
}

/* 2. CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #064E3B, #00796b);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin: 4rem 0;
    border-radius: 0;
    position: relative;
    overflow: hidden;
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-btn {
    background: #ffd700;
    color: #064E3B;
    padding: 15px 40px;
    font-size: 1.1rem;
    font-weight: bold;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* 3. Testimonials Section */
.testimonials-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

body.dark-mode .testimonials-section {
    background: #121212;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    color: #064E3B;
    margin-bottom: 3rem;
}

body.dark-mode .testimonials-section h2 {
    color: #e0e0e0;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: left;
    position: relative;
}

body.dark-mode .testimonial-card {
    background: #1e1e1e;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.05);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.user-info h4 {
    margin: 0;
    color: #333;
}

body.dark-mode .user-info h4 {
    color: #e0e0e0;
}

.stars {
    color: #ffd700;
    font-size: 0.9rem;
}

.testimonial-text {
    color: #555;
    font-style: italic;
    line-height: 1.6;
}

body.dark-mode .testimonial-text {
    color: #bbb;
}

/* 4. Newsletter Section */
.newsletter-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1466692476868-aef1dfb1e735?ixlib=rb-1.2.1&auto=format&fit=crop&w=1950&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 2rem;
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-section p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.newsletter-input {
    padding: 15px 20px;
    border-radius: 50px;
    border: none;
    width: 300px;
    font-size: 1rem;
    outline: none;
}

.newsletter-btn {
    padding: 15px 30px;
    border-radius: 50px;
    border: none;
    background: #4caf50;
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.newsletter-btn:hover {
    background: #388e3c;
}

/* 5. Blog/Tips Section */
.blog-section {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #064E3B;
    margin-bottom: 3rem;
}

body.dark-mode .blog-section h2 {
    color: #e0e0e0;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

body.dark-mode .blog-card {
    background: #1e1e1e;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 1.5rem;
}

.blog-date {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

body.dark-mode .blog-card h3 {
    color: #e0e0e0;
}

.read-more {
    color: #064E3B;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
}

body.dark-mode .read-more {
    color: #81c784;
}

/* Responsive Adjustments for New Sections */
@media (max-width: 768px) {
    .cta-banner h2 {
        font-size: 2rem;
    }

    .newsletter-input {
        width: 100%;
    }

    .services-grid,
    .testimonials-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
}

/* ====== GLOBAL LAYOUT POLISH (OVERRIDES) ====== */

/* Body readability */
body {
    line-height: 1.5;
}

/* Main content width (Home page sections) */
main,
.section-results,
.shop-collection,
.services,
.footer-section {
    width: min(1200px, 100% - 32px);
    margin-inline: auto;
}

/* Fixed navbar के नीचे gap */
.hero,
.shop-collection,
.services {
    margin-top: 90px;
}

/* Cards: products, categories, services, pots */
.product-card,
.category-card,
.service-box,
.pot-card {
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(6, 78, 59, 0.06);
    background-color: #F9F7F3;
    transform: translateY(0);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.product-card:hover,
.category-card:hover,
.service-box:hover,
.pot-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.10);
    border-color: rgba(6, 78, 59, 0.25);
}

/* Product title / price little cleaner */
.card-title {
    font-size: 0.98rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.price {
    font-size: 0.95rem;
    font-weight: 700;
}

/* "Add to cart" / action buttons */
.shop-now-btn {
    border-radius: 999px;
    padding: 9px 18px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Hero section thoda tight और clean */
.hero {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 24px 0 40px;
}

/* Mid section alignment */
.mid {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* ====== MOBILE RESPONSIVE TWEAKS ====== */

@media (max-width: 900px) {

    .hero,
    .mid {
        flex-direction: column;
        text-align: center;
    }

    nav {
        padding: 6px 12px;
    }

    .delivery-banner {
        font-size: 0.8rem;
        padding-inline: 8px;
    }
}

@media (max-width: 600px) {

    .category-card,
    .service-box,
    .product-card,
    .pot-card {
        padding: 12px;
    }

    .card-title {
        font-size: 0.9rem;
    }

    .price {
        font-size: 0.9rem;
    }
}