@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: rgb(37, 37, 37);
}

body {
    overflow-x: hidden;
}

.glass {
    height: 520px;
    width: 520px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 99;
    pointer-events: none;
    /* Let clicks/drags pass through to slider */
}

.bg-lightGreen {
    background-color: #f2ffe5;
}

.breadcrumb {
    color: #74a742;
    font-size: 1.2rem;
    font-weight: 500;
    border: 1px solid #989898;
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 20px;
    text-transform: uppercase;
}

.breadcrumb p {
    color: #74a742;
}

.breadcrumb i {
    color: #989898;
}

.accordion-button {
    background-color: rgba(245, 245, 245, 0.356);
    color: #307a11;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 1px solid #989898;
    margin-bottom: 10px;
}

.accordion-button::after {
    content: "\ea6c";
    /* Unicode for the 'home' icon */
    font-family: "remixicon";
    font-size: 20px;
    margin-right: 8px;
    background-image: none;
}

.accordion-button:not(.collapsed)::after {
    background-image: none;
}

.accordion {
    --bs-accordion-border-color: transparent;
    --bs-accordion-border-radius: 0;
}

.accordion-button:not(.collapsed) {
    background-color: white;
}

.accordion-item:last-of-type>.accordion-header .accordion-button.collapsed,
.accordion-item:first-of-type>.accordion-header .accordion-button.collapsed {
    border-radius: 0;
}

.gallery-card {
    padding: 10px 15px;
    transition: all 0.3s ease-in-out;
    border: 1px solid transparent;
    border-radius: 20px;
}

.gallery-card:hover {
    box-shadow: 0 0 10px 0 #a1c134;
    border: 1px solid #a1c134;
    border-radius: 20px;
    scale: 0.95;
}

.gallery-card a {
    display: block;
    padding: 3px;
}

.gallery-card .col-4 img {
    max-width: 100%;
    height: 88px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.gallery-card .col-8 img {
    max-width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

.product-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #307a11;
}

.podium {
    height: 350px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: end;
}

.podium-img {
    height: 200px;
    object-fit: contain;
    object-position: center;
}

.podium .image-1 {
    width: 100%;
    height: 70%;
    object-fit: contain;
    position: absolute;
    bottom: 130px;
    left: -10px;
    /* transform: translateX(-50%); */
    z-index: 1;

}

.podium .image-5 {
    width: 100%;
    height: 70%;
    object-fit: contain;
    position: absolute;
    bottom: 150px;
    left: 0px;
    /* transform: translateX(-50%); */
    z-index: 1;

}

.podium .image-3 {
    width: 100%;
    height: 45%;
    object-fit: contain;
    position: absolute;
    bottom: 60px;
    left: 32%;
    /* transform: translateX(-50%); */
    z-index: 1;

}

.podium .image-2 {
    width: 100%;
    height: 45%;
    object-fit: contain;
    position: absolute;
    bottom: 60px;
    left: 5%;
    /* transform: translateX(-50%); */
    z-index: 1;
}

.podium .image-4 {
    width: 100%;
    height: 45%;
    object-fit: contain;
    position: absolute;
    bottom: 60px;
    left: 20%;
    z-index: 1;

}

.product-item:hover .image-1,
.product-item:hover .image-2,
.product-item:hover .image-3,
.product-item:hover .image-4,
.product-item:hover .image-5 {
    animation: bounce 1s infinite;
    animation-delay: 0.5s;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0);
    }

}

.font-poppins {
    font-family: "Poppins", sans-serif;
}

.font-mont {
    font-family: "Montserrat", sans-serif;
}

.main-nav {
    background-color: #e9ffd3;
    border-radius: 30px 0 0 30px;
}

.hero {
    background: url(../images/banner.png) no-repeat top/cover;
    min-height: 100vh;
    width: 100%;
    padding-top: 120px;
}

@media(max-width: 768px) {
    .hero {
        background: url(../images/banner.png) no-repeat top/cover;
        min-height: 300px;
        width: 100%;
        padding-top: 50px;
    }
}

.brand-logo {
    width: 250px;
}

footer {
    background-color: #eaffd4;
    padding: 50px 0;
    color: rgb(37, 37, 37);
}

footer ul li a,
.footer-links-others a {
    text-decoration: none;
    color: rgb(37, 37, 37);
    margin-right: 10px;
    transition: all 0.5s;
}

footer ul li a:hover,
.footer-links-others a:hover {
    color: #a1c134;
    transform: translateX(5px);
    display: inline-block;
}

.social-links a {
    text-decoration: none;
    color: rgb(37, 37, 37);
    margin-right: 10px;
    font-size: 30px;
}

.social-links a:nth-child(4) {
    color: green;
}

.social-links a:nth-child(3) {
    color: red;
}

.social-links a:nth-child(2) {
    color: rgb(252, 123, 145);
}

.social-links a:nth-child(1) {
    color: #4267B2;
}

.social-links a:hover {
    scale: 1.1;
}

.divider {
    height: 4px;
    width: 100%;
    background-color: #b7b5b5;
    border-radius: 50%;
}

.blog-card {
    transition: 0.5s;
}

.blog-card-img {
    position: relative;
    overflow: hidden;
    transition: 0.5s;
}

.blog-card-img::after {
    content: "";
    height: 70px;
    width: 110%;
    background: linear-gradient(rgba(255, 255, 255, 0.628), white);
    filter: blur(15px);
    position: absolute;
    top: 70%;
    left: -10px;
}

.collection-card {
    height: 300px;
    width: 100%;
    border-radius: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    transition: all 0.5s;
}

.collection-card p {
    color: white;
    font-size: clamp(1.5rem, 1.5vw, 2rem);
    font-weight: 700;
    margin: 0;
}

.collection-card a,
.best-selling-products a:last-child,
.about-content h2 {
    text-decoration: none;
    background: linear-gradient(90deg, #a1c134, #325624);
    border: 1px solid white;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 15px 0;
    padding: 5px 20px;
    border-radius: 20px;
    background-color: #ff4d4d;
    transition: 0.3s;
}

.sub-nav li a,
.main-nav li a {
    text-decoration: none;
    color: black;
    margin-right: 35px;
    padding: 15px auto;
    position: relative;
}

.main-nav li a.active::after {
    content: "\ea4d";
    /* Unicode for ri-arrow-right-s-fill */
    font-family: "remixicon";
    /* Ensure Remix Icon font is loaded */
    font-size: 16px;
    /* Adjust as needed */
    color: #a1c134;
    position: absolute;

}

.main-nav li a.active {
    color: #a1c134;
    border-bottom: 2px solid #a1c134;
}


.many-more {
    background: #f9ffe4;
}

.many-more h2 {
    color: #325624;
}

.many-more p {
    color: #325624;
}

.product-card img {
    transition: 0.5s;
}

.product-card img:hover {
    scale: 1.1;
}

.main-nav li a:hover {
    color: #a1c134;
    border-bottom: 1px solid #a1c134;
}

.product-card p span {
    color: #a1c134;
    font-weight: 700;
}

.slogan {
    color: #a1c134;
}


.collection-card.collection-card-1 {
    background: linear-gradient(rgba(255, 255, 255, 0.377), rgba(10, 10, 10, 0.651)), url(../images/ddd7f34531.jpg);
    backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
}

.collection-card.collection-card-2 {
    background: linear-gradient(rgba(255, 255, 255, 0.377), rgba(10, 10, 10, 0.651)), url(../images/19cb9ba695.jpg);
    backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
}

.collection-card.collection-card-3 {
    background: linear-gradient(rgba(255, 255, 255, 0.377), rgba(10, 10, 10, 0.651)), url(../images/45175f3585.jpg);
    backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
}

.collection-card.collection-card-4 {
    background: linear-gradient(rgba(255, 255, 255, 0.377), rgba(10, 10, 10, 0.651)), url(../images/888ad75236.jpg);
    backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
}

.collection-card.collection-card-5 {
    background: linear-gradient(rgba(255, 255, 255, 0.377), rgba(10, 10, 10, 0.651)), url(../images/6a9b84b814.jpg);
    backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
}

.collection-card.collection-card-6 {
    background: linear-gradient(rgba(255, 255, 255, 0.377), rgba(10, 10, 10, 0.651)), url(../images/freepik__enhance__26323.jpeg);
    backdrop-filter: blur(10px);
    background-size: cover;
    background-position: center;
}

.collection-card:hover {
    background-position: center;
    scale: 0.95;

}


.blog-card:hover {
    border: 1px solid whitesmoke;
    box-shadow: 0 0 10px 0 #a1c134;
    scale: 0.95;
}

.blog-card:hover .blog-card-img {
    scale: 0.95;
    overflow: hidden;
}

.blog-card img {
    height: 250px;
    width: 100%;
    object-fit: cover;
    object-position: top;
}

.floating-wapp {
    position: absolute;
    top: -40px;
    right: 50px;
    text-decoration: none;
    font-size: 55px;

}

.floating-wapp i {
    color: #25d366;
}

.copyright span {
    color: orangered;
}

.hero img {
    width: 50%;
}

.product-details div {
    align-items: center;
    background: linear-gradient(to right, #d6ffd5, white);
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 20px;
}

.product-details:nth-child(even) div {
    flex-direction: row-reverse;
    background: linear-gradient(to left, #d6ffd5, white);
    align-items: center;
}

@media(max-width: 1115px) {
    .main-nav {
        position: fixed;
        background-color: #a1c134;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 50%;
        height: 100vh;
        left: -100%;
        transition: 0.5s;
        z-index: 1000;
        top: 0;
    }

    .main-nav.active {
        left: 0;
    }

    .close-btn button {
        border: none;
        background-color: transparent;
    }

}

@media(max-width: 768px) {
    .main-nav {
        width: 100%;
    }

    .product-details div {
        flex-direction: column;
    }

    .product-details:nth-child(even) div {
        flex-direction: column-reverse;
    }

    .brand-logo {
        width: 120px;
    }


    .hero {
        padding-top: 5px;
    }

}

/* Product Category Section */
.product-category {
    background-color: #fdfbf7;
    /* Warm cream background matching the mockup */
}

.product-category .section-title {
    color: #325624;
    /* Brand dark green */
}

/* Divider Styling */
.category-divider-line {
    height: 1.5px;
    width: 120px;
    background: linear-gradient(90deg, transparent, #8c6239 50%, transparent);
}

.category-divider-ornament {
    color: #8c6239;
    /* Elegant bronze/brown ornament matching the mockup */
}

/* Category Cards */
.category-card {
    background: #fffcf8;
    /* Light warm cream */
    border: 1px solid #ecd8b1;
    /* Gold tint border */
    border-radius: 20px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    cursor: pointer;
    height: 100%;
}

.category-icon-wrapper {
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-icon {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.category-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #325624;
    /* Brand dark green */
    letter-spacing: 0.5px;
    margin: 0;
    text-transform: uppercase;
}

/* Card Hover States */
.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(161, 193, 52, 0.15);
    /* Soft brand green glow */
    border-color: #a1c134;
    /* Brand green border */
}

.category-card:hover .category-icon {
    transform: scale(1.1);
}

/* Category Tabs in Products page */
.category-tabs {
    margin: 30px 0;
}

.tab-btn {
    border: 1px solid #a1c134 !important;
    background-color: transparent;
    color: #325624 !important;
    font-weight: 600;
    border-radius: 30px !important;
    padding: 8px 25px !important;
    transition: all 0.3s ease;
}

.tab-btn:hover,
.tab-btn.active {
    background-color: #a1c134 !important;
    color: white !important;
    box-shadow: 0 4px 12px rgba(161, 193, 52, 0.3);
}

.product-item {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Logo flip animations */
.logo-flip-container {
    perspective: 1000px;
    width: 250px;
    height: 60px;
    display: inline-block;
}

.logo-flip-card {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: flipLogo 10s infinite ease-in-out;
}

.logo-front,
.logo-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-front {
    z-index: 2;
    transform: rotateY(0deg);
}

.logo-back {
    transform: rotateY(180deg);
}

.logo-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

@keyframes flipLogo {

    0%,
    40% {
        transform: rotateY(0deg);
    }

    50%,
    90% {
        transform: rotateY(180deg);
    }

    100% {
        transform: rotateY(360deg);
    }
}

/* Category Section View All Button */
.category-view-all {
    text-decoration: none;
    background: linear-gradient(90deg, #a1c134, #325624);
    border: 1px solid white;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    margin: 15px 0;
    padding: 8px 25px;
    border-radius: 20px;
    background-color: #ff4d4d;
    transition: all 0.3s ease;
}

.category-view-all:hover {
    background: linear-gradient(90deg, #325624, #a1c134);
    color: white;
    box-shadow: 0 4px 12px rgba(50, 86, 36, 0.2);
    transform: scale(1.05);
}

/* Responsive adjustments for Logo Container */
@media(max-width: 768px) {

    .brand-logo,
    .logo-flip-container {
        width: 120px;
        height: 35px;
    }
}

/* ==========================================
   Hero Swiper Slider Styles
   ========================================== */
.hero-swiper-section {
    background-color: #fdfbf7;
    /* Warm cream background */
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    padding-top: 20px;
    padding-bottom: 60px;
    /* Space for pagination */
    position: relative;
    overflow: visible;
    /* Let side slides peek in */
}

/* Base Slide style - setting square dimensions */
.hero-swiper .swiper-slide {
    width: 520px;
    height: 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Slide Card Wrapper */
.swiper-slide-card {
    width: 100%;
    height: 100%;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 6px solid #ffffff;
    transition: transform 0.4s ease, opacity 0.4s ease, filter 0.4s ease, border-color 0.4s ease;
    cursor: pointer;
    transform-style: preserve-3d;
    backface-visibility: hidden;
    transition: all 0.6s ease-in-out !important;
}

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

/* Base state: Non-active slides (scaled down, blurred, dimmed) */
.hero-swiper .swiper-slide:not(.swiper-slide-active) .swiper-slide-card {
    transform: scale(0.85) skewX(0deg);
    opacity: 0.45;
    filter: blur(2px) brightness(0.8);
    pointer-events: none;
}

/* Active slide (scaled up, clear, glowing border) */
.hero-swiper .swiper-slide-active .swiper-slide-card {
    transform: scale(1.02) skewX(0deg);
    opacity: 1;
    filter: none;
    z-index: 10;
    box-shadow: 0 25px 55px rgba(50, 86, 36, 0.20);
    border-color: #a1c134;
}

.hero-swiper .swiper-slide-active .swiper-slide-card:hover img {
    transform: scale(1.03);
}

/* Custom Glassmorphic Navigation Buttons */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(161, 193, 52, 0.3);
    color: #325624;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
    font-size: 18px;
    font-weight: 900;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background: #a1c134;
    color: #ffffff;
    border-color: #a1c134;
    box-shadow: 0 6px 20px rgba(161, 193, 52, 0.35);
    transform: translateY(-50%) scale(1.08);
}

.hero-swiper .swiper-button-prev {
    left: 15px;
}

.hero-swiper .swiper-button-next {
    right: 15px;
}

/* Custom Pagination styling */
.hero-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #325624;
    opacity: 0.22;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.hero-swiper .swiper-pagination-bullet:hover {
    opacity: 0.5;
}

.hero-swiper .swiper-pagination-bullet-active {
    background: #a1c134;
    width: 26px;
    border-radius: 5px;
    opacity: 1;
}

/* Responsive adjustment for swiper container layout */
@media (max-width: 768px) {
    .hero-swiper {
        padding-bottom: 40px;
    }

    .glass {
        height: 80%;
        width: 75%;
        border-radius: 30px;
    }

    .hero-swiper .swiper-slide {
        width: 100%;
        height: 100%;
    }

    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        width: 42px;
        height: 42px;
    }

    .hero-swiper .swiper-button-prev::after,
    .hero-swiper .swiper-button-next::after {
        font-size: 15px;
    }

    .hero-swiper .swiper-button-prev {
        left: 10px;
    }

    .hero-swiper .swiper-button-next {
        right: 10px;
    }
}

/* ==========================================
   Explore Products Showcase Section
   ========================================== */
.explore-products-showcase-section {
    background-color: #fdfbf7;
    overflow: hidden;
}

.explore-products-showcase-section .showcase-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #325624;
    /* Dark green */
    margin-bottom: 10px;
    font-family: 'Montserrat', sans-serif;
}

.explore-products-showcase-section .showcase-title .highlight-red {
    color: #ff4d4d;
    /* Brand Red */
}

.explore-products-showcase-section .showcase-title .highlight-green {
    color: #a1c134;
    /* Brand Light Green */
}

.explore-products-showcase-section .showcase-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.25rem);
    color: #555;
    margin-bottom: 40px;
    font-weight: 500;
}

.showcase-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
    width: 100%;
}

.showcase-bg-wrapper {
    width: 100%;
    aspect-ratio: 1/0.5;
    background: url('../images/product_new_banner.webp') no-repeat top center;
    background-size: contain;
    overflow: hidden;
}

.showcase-product {
    position: absolute;
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

.showcase-product img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.25));
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.3s ease;
}

/* Tooltip style */
.product-tooltip {
    position: absolute;
    bottom: 105%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(50, 86, 36, 0.95);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
    font-family: 'Poppins', sans-serif;
}

.product-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: rgba(50, 86, 36, 0.95) transparent transparent transparent;
}

.showcase-product:hover {
    z-index: 100 !important;
}

.showcase-product:hover img {
    transform: scale(1.12) translateY(-10px);
    filter: drop-shadow(0 15px 25px rgba(161, 193, 52, 0.5));
}

.showcase-product:hover .product-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}


/* Specific product positions matching mockup */
/* 1. Trishna 3D Papad (Green bag) - Leftmost, middle-back */
.product-3d-papad {
    left: 5%;
    bottom: 26%;
    width: 12%;
    z-index: 2;
}

/* 2. Trishna Shudh Chakki Atta (Red bag, large) - back left */
.product-atta {
    left: 20%;
    bottom: 28%;
    width: 16%;
    z-index: 1;
}

/* 3. Trishna Premium Suji (Red/Orange bag) - mid-back */
.product-suji {
    left: 37%;
    bottom: 31%;
    width: 12.5%;
    z-index: 1;
}

/* 4. Trishna Bhaja Chola (Greenish/Yellow bag) - front left */
.product-chola {
    left: 33%;
    bottom: 3%;
    width: 13.5%;
    z-index: 4;
}

/* 5. Trishna Vermicelli (Purple bag) - front center */
.product-vermicelli {
    left: 45%;
    bottom: 20%;
    width: 13%;
    z-index: 3;
}

/* 6. Trishna Mustard Oil (Yellow bag) - back right */
.product-mustard-oil {
    left: 61%;
    bottom: 25%;
    width: 12%;
    z-index: 1;
}

/* 7. Trishna Jhuri Bhaja (Pinkish bag) - front right */
.product-jhuri-bhaja {
    left: 56%;
    bottom: 3%;
    width: 13.5%;
    z-index: 4;
}

/* 8. Trishna Soyabean Oil (White/Yellow bag) - rightmost */
.product-soyabean-oil {
    left: 75%;
    bottom: 19%;
    width: 13%;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .showcase-content {
        display: none;
    }


    /* Scale width of products slightly larger for mobile readability */
    .product-3d-papad {
        width: 15%;
        left: 4%;
        bottom: 25%;
    }

    .product-atta {
        width: 20%;
        left: 16%;
        bottom: 28%;
    }

    .product-suji {
        width: 16%;
        left: 35%;
        bottom: 31%;
    }

    .product-chola {
        width: 17%;
        left: 29%;
        bottom: 6%;
    }

    .product-vermicelli {
        width: 16%;
        left: 44%;
        bottom: 18%;
    }

    .product-mustard-oil {
        width: 15%;
        left: 61%;
        bottom: 25%;
    }

    .product-jhuri-bhaja {
        width: 17%;
        left: 55%;
        bottom: 6%;
    }

    .product-soyabean-oil {
        width: 16%;
        left: 73%;
        bottom: 22%;
    }
}

@media (max-width: 576px) {
    .explore-products-showcase-section .showcase-subtitle {
        margin-bottom: 25px;
    }

    .showcase-bg-wrapper {
        aspect-ratio: 1/0.5;
    }

    .product-3d-papad {
        width: 16%;
        left: 2%;
        bottom: 20%;
    }

    .product-atta {
        width: 22%;
        left: 14%;
        bottom: 24%;
    }

    .product-suji {
        width: 18%;
        left: 34%;
        bottom: 28%;
    }

    .product-chola {
        width: 19%;
        left: 26%;
        bottom: 4%;
    }

    .product-vermicelli {
        width: 18%;
        left: 43%;
        bottom: 16%;
    }

    .product-mustard-oil {
        width: 17%;
        left: 61%;
        bottom: 22%;
    }

    .product-jhuri-bhaja {
        width: 19%;
        left: 54%;
        bottom: 4%;
    }

    .product-soyabean-oil {
        width: 18%;
        left: 73%;
        bottom: 18%;
    }
}

/* ==========================================
   New Product Card System (No Podium)
   ========================================== */
.product-card-wrapper {
    background: #ffffff;
    border: 1px solid #f2edd7;
    border-radius: 20px;
    padding: 30px 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-image-container {
    height: 220px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.product-image-container img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), filter 0.3s ease;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.1));
}

.product-card-wrapper h3 {
    font-size: 1.1rem !important;
    font-weight: 700;
    color: #325624 !important; /* Brand dark green */
    margin: 20px 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.product-card-wrapper p {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
}

/* Hover effects */
.product-card-wrapper:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 36px rgba(161, 193, 52, 0.15); /* Soft brand green glow */
    border-color: #a1c134; /* Brand light green */
}

.product-card-wrapper:hover .product-image-container img {
    transform: scale(1.08);
    filter: drop-shadow(0 12px 20px rgba(161, 193, 52, 0.25));
}

.product-card-wrapper:hover h3 {
    color: #a1c134 !important; /* Changes to light green on hover */
}