﻿/*body {
}*/




.product-image-container {
    position: relative;
}

.warranty-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 3;
}

    .warranty-badge img {
        width: 48px; /* small like Nilkamal */
        height: auto;
        border-radius: 6px;
        background: #fff;
        padding: 2px;
        box-shadow: 0 2px 6px rgba(0,0,0,0.25);
    }




/* SECTION TITLE */
.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    position: relative;
    text-align: center;
    transition: color 0.3s ease;
    line-height: 1.2;
}

    /* UNDERLINE ACCENT */
    .section-title::after {
        content: "";
        display: block;
        width: 70px; /* default underline width */
        height: 4px;
        margin: 10px auto 0;
        border-radius: 2px;
        background: linear-gradient(90deg, #2563eb, #38bdf8);
        transition: width 0.3s ease;
    }

    /* HOVER EFFECT */
    .section-title:hover {
        color: #1d4ed8;
    }

        .section-title:hover::after {
            width: 100px; /* underline expands on hover */
        }

    /* SUBTITLE / PARAGRAPH BELOW TITLE */
    .section-title + p {
        font-size: 16px;
        color: #6b7280;
        max-width: 620px;
        margin: 6px auto 24px;
        text-align: center;
        line-height: 1.6;
    }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
    }

        .section-title::after {
            width: 50px;
        }

        .section-title + p {
            font-size: 15px;
            padding: 0 12px;
        }
}


=========================================== */
/* SECTION TITLE */
#categories .section-title {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 12px;
    position: relative;
    transition: color 0.3s ease;
}

/* UNDERLINE ACCENT */
#categories .section-title::after {
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    margin: 10px auto 0;
    border-radius: 3px;
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    transition: width 0.3s ease;
}

/* SUBTITLE */
#categories .category-subtitle {
    font-size: 16px;
    color: #6b7280;
    max-width: 620px;
    margin: 0 auto;
    line-height: 1.6;
}

/* SOFT HOVER EFFECT */
#categories:hover .section-title {
    color: #1d4ed8;
}

    #categories:hover .section-title::after {
        width: 100px;
    }

/* MOBILE */
@media (max-width: 768px) {
    #categories .section-title {
        font-size: 28px;
    }

    #categories .category-subtitle {
        font-size: 15px;
        padding: 0 12px;
    }
}







/* SECTION TITLE */
.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
    position: relative;
}

    /* Underline Accent */
    .section-title::after {
        content: "";
        display: block;
        width: 60px;
        height: 4px;
        background: linear-gradient(90deg, #2563eb, #38bdf8);
        margin-top: 8px;
        border-radius: 2px;
    }

/* PARAGRAPHS */
#about p {
    font-size: 16px;
    line-height: 1.75;
    color: #4b5563;
    margin-bottom: 14px;
}

    /* HIGHLIGHT IMPORTANT TEXT */
    #about p strong {
        color: #111827;
        font-weight: 600;
    }

/* SOFT HOVER EFFECT (OPTIONAL) */
#about .col-md-6:hover .section-title {
    color: #1d4ed8;
    transition: color 0.3s ease;
}

/* MOBILE */
@media (max-width: 768px) {
    .section-title {
        font-size: 28px;
        text-align: center;
    }

        .section-title::after {
            margin-left: auto;
            margin-right: auto;
        }

    #about p {
        text-align: center;
        font-size: 15px;
    }
}


.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #1ebe5d);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
    z-index: 9999;
    text-decoration: none;
    transition: all 0.35s ease;
    animation: whatsapp-pulse 2.2s infinite;
}

    /* Icon animation */
    .whatsapp-float i {
        transition: transform 0.35s ease;
    }

    /* Hover effect */
    .whatsapp-float:hover {
        transform: translateY(-3px) scale(1.08);
        box-shadow: 0 14px 38px rgba(37, 211, 102, 0.6);
        animation: none;
    }

        .whatsapp-float:hover i {
            transform: scale(1.15) rotate(-5deg);
        }

/* Pulse animation */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55);
    }

    70% {
        box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile optimization */
@media (max-width: 576px) {
    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 24px;
        right: 16px;
        bottom: 16px;
    }
}


/* HERO BUTTON CONTAINER */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* HERO BUTTON STYLE */
.hero-btn {
    padding: 10px 22px; /* smaller width */
    font-size: 16px;
    font-weight: 600;
    border-radius: 10px;
    min-width: auto; /* prevents full width */
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    transition: all 0.3s ease;
}

    /* HOVER EFFECT */
    .hero-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 18px rgba(0,0,0,0.18);
    }

    /* WHATSAPP ICON */
    .hero-btn i {
        font-size: 18px;
    }

/* MOBILE OPTIMIZATION */
@media (max-width: 576px) {
    .hero-btn {
        padding: 9px 18px;
        font-size: 15px;
    }
}







/* ============================= */
/* COMMON ANIMATION BASE */
/* ============================= */
#about, #contact {
    overflow: hidden;
}

/* Initial hidden state */
.animate-left,
.animate-right,
.animate-up {
    opacity: 0;
    transition: all 1s ease;
}

/* ============================= */
/* ABOUT SECTION */
/* ============================= */

/* LEFT TEXT */
#about .col-md-6:first-child {
    animation: slideFromLeft 1.2s ease forwards;
}

/* RIGHT IMAGE */
#about .col-md-6:last-child {
    animation: slideFromRight 1.2s ease forwards;
}

/* Image hover interaction */
#about img {
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

    #about img:hover {
        transform: scale(1.05);
        box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }

/* ============================= */
/* CONTACT SECTION */
/* ============================= */

#contact .col-md-8 {
    animation: slideUp 1.2s ease forwards;
}

#contact .col-md-4 {
    animation: slideFromRight 1.2s ease forwards;
}

/* Card hover effect */
#contact .card,
#contact .rounded-3 {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

    #contact .card:hover,
    #contact .rounded-3:hover {
        transform: translateY(-6px);
        box-shadow: 0 18px 35px rgba(0,0,0,0.2);
    }

/* ============================= */
/* KEYFRAMES */
/* ============================= */

@keyframes slideFromLeft {
    from {
        opacity: 0;
        transform: translateX(-70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideFromRight {
    from {
        opacity: 0;
        transform: translateX(70px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================= */
/* RESPONSIVE */
/* ============================= */
@media (max-width: 768px) {
    #about .col-md-6, #contact .col-md-8, #contact .col-md-4 {
        animation: slideUp 1s ease forwards;
    }
}








/* ===== General Button Styles ===== */
.btn {
    font-weight: 600;
    border-radius: 12px;
    padding: 12px 20px;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Add to Cart Button ===== */
.btn-primary.add-to-cart {
    background: linear-gradient(90deg, #2563eb, #38bdf8);
    border: none;
    color: #fff;
}

    .btn-primary.add-to-cart:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(37, 99, 235, 0.4);
        background: linear-gradient(90deg, #1d4ed8, #0ea5e9);
    }

/* ===== View Details Button ===== */
.btn-outline-primary.view-details {
    border: 2px solid #2563eb;
    color: #2563eb;
    background: #fff;
}

    .btn-outline-primary.view-details:hover {
        background: #2563eb;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 6px 18px rgba(37, 99, 235, 0.3);
    }

/* ===== Icon Spacing ===== */
.btn i {
    transition: transform 0.3s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

/* ===== Responsive ===== */
@media (max-width: 576px) {
    .btn {
        font-size: 14px;
        padding: 10px 16px;
    }
}









/* ================= SECTION ================= */
#categories {
    padding: 60px 0;
}

.section-title {
    font-weight: 800;
    font-size: 1.9rem;
    color: #111827;
}

/* ================= CATEGORY CARD BASE ================= */
#categories .card {
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 10px 22px rgba(0,0,0,0.08);
}

    /* Top accent line */
    #categories .card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        height: 4px;
        width: 100%;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    /* Hover effect */
    #categories .card:hover {
        transform: translateY(-8px);
        box-shadow: 0 18px 36px rgba(0,0,0,0.15);
    }

        #categories .card:hover::before {
            opacity: 1;
        }

    /* ================= ICON ================= */
    #categories .card i {
        width: 70px;
        height: 70px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 14px;
        font-size: 32px;
        transition: all 0.35s ease;
    }

    #categories .card:hover i {
        transform: scale(1.12) rotate(4deg);
        color: #ffffff;
    }

    /* ================= TEXT ================= */
    #categories .card h5 {
        font-size: 1.05rem;
        font-weight: 700;
        margin-bottom: 6px;
        color: #111827;
    }

    #categories .card p {
        font-size: 0.9rem;
        color: #6b7280;
    }

/* ================= COLOR VARIANTS ================= */

/* 1 – Blue */
#categories .col-md-3:nth-child(1) .card::before {
    background: linear-gradient(90deg, #2563eb, #38bdf8);
}

#categories .col-md-3:nth-child(1) i {
    background: linear-gradient(135deg, #2563eb, #38bdf8);
    color: #ffffff;
}

/* 2 – Yellow */
#categories .col-md-3:nth-child(2) .card::before {
    background: linear-gradient(90deg, #f59e0b, #facc15);
}

#categories .col-md-3:nth-child(2) i {
    background: linear-gradient(135deg, #f59e0b, #facc15);
    color: #ffffff;
}

/* 3 – Green */
#categories .col-md-3:nth-child(3) .card::before {
    background: linear-gradient(90deg, #16a34a, #4ade80);
}

#categories .col-md-3:nth-child(3) i {
    background: linear-gradient(135deg, #16a34a, #4ade80);
    color: #ffffff;
}

/* 4 – Purple */
#categories .col-md-3:nth-child(4) .card::before {
    background: linear-gradient(90deg, #7c3aed, #a78bfa);
}

#categories .col-md-3:nth-child(4) i {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
    color: #ffffff;
}

/* ================= MOBILE ================= */
@media (max-width: 576px) {
    #categories .card {
        padding: 1.25rem !important;
    }

        #categories .card i {
            width: 60px;
            height: 60px;
            font-size: 26px;
        }
}







/* ===== Section Title ===== */
.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #1f2937; /* Premium dark text */
    text-align: center;
    position: relative;
}

    .section-title::after {
        content: '';
        width: 80px;
        height: 3px;
        background: linear-gradient(90deg, #ff7f50, #ff4500);
        display: block;
        margin: 10px auto 0 auto;
        border-radius: 2px;
    }

/* ===== Product Card ===== */
.product-card {
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    background: #fff;
}

    .product-card:hover {
        transform: translateY(-8px) rotateX(2deg);
        box-shadow: 0 15px 30px rgba(0,0,0,0.2);
    }

/* ===== Product Image Container ===== */
.product-image-container {
    position: relative;
    width: 100%;
    height: 250px; /* Fixed height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa;
    border-radius: 12px 12px 0 0;
    transition: transform 0.3s ease;
}

    .product-image-container img.card-img-top {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .product-image-container:hover img.card-img-top {
        transform: scale(1.08);
    }

/* ===== Quick View Button Overlay ===== */
.image-overlay {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-image-container:hover .image-overlay {
    opacity: 1;
    transform: translateX(-50%) translateY(-5px);
}

.image-overlay .btn {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    font-weight: 600;
}

/* ===== Wishlist Button ===== */
.wishlist-btn {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, background 0.3s ease;
}

    .wishlist-btn:hover {
        transform: scale(1.2);
        background: #ff6b6b;
    }

    .wishlist-btn i {
        color: #dc3545;
    }

/* ===== Badges ===== */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

    .product-badges .badge {
        font-size: 0.75rem;
        font-weight: 600;
        padding: 0.35rem 0.6rem;
        border-radius: 0.5rem;
        text-align: center;
        white-space: nowrap;
        box-shadow: 0 3px 6px rgba(0,0,0,0.15);
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    .product-badges .badge-best {
        background: linear-gradient(135deg, #FFC107, #FF3B30);
        color: #212529;
    }

    .product-badges .badge-new {
        background: linear-gradient(135deg, #4ADE80, #22C55E);
        color: #fff;
    }

    .product-badges .badge:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 12px rgba(0,0,0,0.25);
    }

/* ===== Card Body ===== */
.card-body {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.card-title {
    font-size: 1.1rem;
}

.rating i {
    color: #facc15; /* Premium gold star */
    margin-right: 2px;
    font-size: 17px; /* make all stars equal */
    line-height: 1;
}

.price-section h4 {
    color: #0d6efd;
    font-size: 1.25rem;
}

.features .badge {
    border-radius: 0.5rem;
    font-size: 0.75rem;
    padding: 0.35rem 0.6rem;
}

/* ===== Load More Button ===== */
#loadMore {
    padding: 0.8rem 2rem;
    font-weight: 600;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    #loadMore:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }





.badge-best {
    background: linear-gradient(135deg, #dc2626, #991b1b); /* Strong red */
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.4rem 0.7rem;
    border-radius: 0.6rem;
    letter-spacing: 0.3px;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.45);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
/*  ======================================= */
/* Container for badges */
.product-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 6px; /* Space between badges */
}

    /* Common badge style */
    .product-badges .badge {
        display: inline-block;
        font-size: 0.75rem; /* Slightly smaller font for elegance */
        font-weight: 600;
        padding: 0.35rem 0.6rem;
        border-radius: 0.5rem; /* Soft rounded corners */
        text-align: center;
        white-space: nowrap;
        line-height: 1;
        box-shadow: 0 3px 6px rgba(0,0,0,0.15); /* Soft shadow */
        transition: transform 0.2s ease, box-shadow 0.2s ease;
    }

    /* Best Seller badge */
    /* 
            .product-badges .badge-best {
                background: linear-gradient(135deg, #FFC107, #FF3B30); 
                color: #212529;
            } */

    .product-badges .badge-best {
        background: linear-gradient(135deg, #dc2626, #991b1b);
        color: #ffffff;
    }

    .product-badges .badge-best {
        box-shadow: 0 4px 12px rgba(220, 38, 38, 0.45);
    }



    /* Hover interaction */
    .product-badges .badge:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
    }
    /* Newly Launched badge */
    .product-badges .badge-new {
        background: linear-gradient(135deg, #4ADE80, #22C55E); /* Green gradient */
        color: #fff;
    }

    /* Hover effect (optional) */
    .product-badges .badge:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    }



.product-image-container {
    position: relative;
    width: 100%;
    height: 250px; /* Fixed height for all product images */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8f9fa; /* Light background for empty space */
    border-radius: 12px 12px 0 0;
}



    /* Image inside container - show full image without cropping */
    .product-image-container img.card-img-top {
        max-width: 100%;
        max-height: 100%;
        object-fit: contain; /* Show full image */
        transition: transform 0.3s ease;
    }

    /* Hover zoom effect */
    .product-image-container:hover img.card-img-top {
        transform: scale(1.05);
    }

/* Placeholder for no image */
.placeholder-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* Overlay for Quick View button */
.image-overlay {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-container:hover .image-overlay {
    opacity: 1;
}

/* Actual image inside container */
.product-image-container img.card-img-top {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Keeps image proportion, crops overflow */
    transition: transform 0.3s ease;
}

/* Hover effect for interaction */
.product-image-container:hover img.card-img-top {
    transform: scale(1.05); /* Slight zoom on hover */
}

/* Placeholder for no image */
.placeholder-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

/* Overlay for Quick View button */
.image-overlay {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-container:hover .image-overlay {
    opacity: 1;
}

/* Wishlist button */
.wishlist-btn i {
    font-size: 1.2rem;
    color: #dc3545;
    transition: transform 0.3s ease;
}

.wishlist-btn:hover i {
    transform: scale(1.2);
}

/* Badges (Best Seller, Newly Launched) */
.product-image-container .badge {
    font-size: 0.75rem;
    padding: 0.3em 0.5em;
}









/* Premium Grey "Newly Launched" Badge */
.badge-new {
    background: linear-gradient(135deg, #4b5563, #1f2933); /* grey gradient */
    color: #ffffff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 6px 14px;
    border-radius: 999px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    transition: all 0.3s ease;
    cursor: default;
}

    /* Hover interaction */
    .badge-new:hover {
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
        background: linear-gradient(135deg, #6b7280, #111827);
    }


.premium-banner-wrapper {
    position: relative;
    margin: 2rem auto;
    max-width: 100%;
    padding: 0 2rem;
    /*  max-width: 1400px; */
    /* padding: 0 1rem; */
}

.premium-carousel {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4px;
    position: relative;
}

    .premium-carousel::before {
        content: '';
        position: absolute;
        top: -2px;
        left: -2px;
        right: -2px;
        bottom: -2px;
        background: linear-gradient(45deg, #667eea, #764ba2, #f093fb, #4facfe, #667eea);
        background-size: 300% 300%;
        border-radius: 24px;
        z-index: -1;
        animation: gradientShift 6s ease infinite;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .premium-carousel:hover::before {
        opacity: 0.6;
    }

@keyframes gradientShift {
    0%, 100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.carousel-inner {
    border-radius: 20px;
    overflow: hidden;
    background: #000;
}

.banner-content-wrapper {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.banner-media {
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.carousel-item:hover .banner-media {
    transform: scale(1.05);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient( to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.7) 100% );
    pointer-events: none;
}

.premium-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2rem;
    background: none;
    text-align: left;
}

.caption-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.banner-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.banner-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Premium Navigation Controls */
.premium-control {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.premium-carousel:hover .premium-control {
    opacity: 1;
}

.premium-control:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.premium-control:active {
    transform: scale(0.95);
}

.control-icon {
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-control-prev.premium-control {
    left: 2rem;
}

.carousel-control-next.premium-control {
    right: 2rem;
}

/* Premium Indicators */
.premium-indicators {
    bottom: 2rem;
    margin: 0;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
}

    .premium-indicators button {
        width: 40px;
        height: 4px;
        background: rgba(255, 255, 255, 0.4);
        border: none;
        border-radius: 2px;
        transition: all 0.3s ease;
        margin: 0;
        opacity: 1;
    }

        .premium-indicators button:hover {
            background: rgba(255, 255, 255, 0.7);
            transform: scaleX(1.2);
        }

        .premium-indicators button.active {
            background: #ffffff;
            width: 60px;
        }

/* Responsive Design */
@media (max-width: 768px) {
    .premium-banner-wrapper {
        margin: 1rem auto;
        padding: 0 0.5rem;
    }

    .banner-content-wrapper {
        height: 350px;
    }

    .banner-title {
        font-size: 1.75rem;
    }

    .banner-description {
        font-size: 0.95rem;
    }

    .premium-caption {
        padding: 2rem 1.5rem;
    }

    .premium-control {
        width: 45px;
        height: 45px;
        opacity: 1;
    }

    .carousel-control-prev.premium-control {
        left: 1rem;
    }

    .carousel-control-next.premium-control {
        right: 1rem;
    }

    .premium-indicators {
        bottom: 1rem;
    }

        .premium-indicators button {
            width: 30px;
            height: 3px;
        }

            .premium-indicators button.active {
                width: 45px;
            }
}

@media (max-width: 480px) {
    .banner-content-wrapper {
        height: 280px;
    }

    .banner-title {
        font-size: 1.5rem;
    }

    .banner-description {
        font-size: 0.875rem;
    }
}

/* === SLIDER SIZE INCREASE === */
/* ===================== SLIDER CONTAINER ===================== */
.product-slider {
    background: rgba(255, 255, 255, 0.78);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border-radius: 32px;
    box-shadow: 0 25px 60px rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.4);
    width: 95vw;
    margin: 0 auto;
    overflow: hidden;
    padding: 45px 0;
    position: relative;
}

    /* soft edge fade */
    .product-slider::before,
    .product-slider::after {
        content: "";
        position: absolute;
        top: 0;
        width: 120px;
        height: 100%;
        z-index: 2;
        pointer-events: none;
    }

    .product-slider::before {
        left: 0;
        background: linear-gradient(to right, #fff, transparent);
    }

    .product-slider::after {
        right: 0;
        background: linear-gradient(to left, #fff, transparent);
    }

/* ===================== SLIDER TRACK ===================== */
.product-slider-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: productScroll 42s linear infinite;
}

    .product-slider-track:hover {
        animation-play-state: paused;
    }

/* ===================== SLIDE ITEM ===================== */
.product-slide-item {
    width: 280px;
    flex-shrink: 0;
    perspective: 1000px;
}

/* ===================== PRODUCT CARD ===================== */
.product-card {
    background: linear-gradient(180deg, #ffffff, #fafafa);
    border-radius: 38px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,.10), inset 0 1px 0 rgba(255,255,255,.6);
    transition: transform .45s cubic-bezier(.22,1,.36,1), box-shadow .45s ease;
    transform-style: preserve-3d;
}

    .product-card:hover {
        transform: translateY(-14px) scale(1.05) rotateX(4deg);
        box-shadow: 0 28px 60px rgba(0,0,0,.22), inset 0 1px 0 rgba(255,255,255,.7);
    }

/* ===================== IMAGE ===================== */
.product-image-wrapper {
    height: 260px;
    background: radial-gradient(circle at top, #f8f9fa, #eef1f5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* SAME IMAGE SIZE FEEL */
    transition: transform .6s cubic-bezier(.22,1,.36,1);
}

.product-card:hover .product-img {
    transform: scale(1.15);
}

/* subtle gloss */
.product-image-wrapper::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient( 120deg, transparent 40%, rgba(255,255,255,.35) 50%, transparent 60% );
    opacity: 0;
    transition: opacity .4s ease;
}

.product-card:hover .product-image-wrapper::after {
    opacity: 1;
}

/* ===================== BADGES ===================== */
.product-badge-bar {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    z-index: 3;
}

.discount-pill {
    background: linear-gradient(135deg, #22c55e, #16a34a); /* GREEN */
    color: #ffffff;
    font-size: 14px; /* slightly bigger */
    font-weight: 900; /* more bold */
    padding: 8px 18px;
    border-radius: 999px;
    letter-spacing: 0.4px;
    box-shadow: 0 6px 20px rgba(34,197,94,.55), inset 0 1px 0 rgba(255,255,255,.35);
    animation: greenPulse 2.4s infinite;
}

@keyframes greenPulse {
    0% {
        box-shadow: 0 0 0 rgba(34,197,94,.5), inset 0 1px 0 rgba(255,255,255,.35);
    }

    50% {
        box-shadow: 0 0 22px rgba(34,197,94,.85), inset 0 1px 0 rgba(255,255,255,.45);
    }

    100% {
        box-shadow: 0 0 0 rgba(34,197,94,.5), inset 0 1px 0 rgba(255,255,255,.35);
    }
}

/*   .discount-pill {
            background: linear-gradient(135deg, #ff3d00, #ff9800);
            color: #fff;
            font-size: 13px;
            font-weight: 800;
            padding: 7px 16px;
            border-radius: 999px;
            box-shadow: 0 6px 18px rgba(255,61,0,.45);
            animation: pulseGlow 2.2s infinite;
        } */

.ad-pill {
    background: linear-gradient(135deg, #111, #333);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 12px rgba(0,0,0,.35);
}

/* ===================== CONTENT ===================== */
.product-card h5 {
    font-size: 17px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 4px;
}

.price,
.price-discount {
    font-size: 18px;
    font-weight: 800;
    color: #f24825;
}

.old-price {
    font-size: 14px;
    color: #9ca3af;
    text-decoration: line-through;
    margin-left: 6px;
}

/* ===================== ANIMATIONS ===================== */
@keyframes productScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-55%);
    }
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 rgba(255,61,0,.5);
    }

    50% {
        box-shadow: 0 0 18px rgba(255,61,0,.8);
    }

    100% {
        box-shadow: 0 0 0 rgba(255,61,0,.5);
    }
}
















.product-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s ease;
}

    .product-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

.product-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.product-img {
    width: 100%;
    /*  height: 100%;
            object-fit: cover; */
    transition: 0.4s;
    height: 250px; /* uniform height */
    object-fit: contain !important;
    background-color: #fff;
    padding: 10px;
    border-radius: 8px 8px 0 0;
}

.product-card:hover .product-img {
    transform: scale(1.07);
}

.advertise-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff5722;
    color: #fff;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 5px;
    font-weight: bold;
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #28a745;
    color: white;
    padding: 5px 10px;
    font-size: 13px;
    border-radius: 5px;
    font-weight: bold;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #111;
}

.price-discount {
    font-size: 1.4rem;
    font-weight: bold;
    color: #e53935;
}

.old-price {
    text-decoration: line-through;
    color: #888;
    margin-left: 5px;
}




.footer-map .map-container iframe {
    width: 100%;
    height: 250px;
    border: 0;
}




/* BUTTON CONTAINER */
.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* COMMON BUTTON STYLE */
.contact-btn {
    width: auto;
    min-width: 170px;
    padding: 10px 24px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* CALL BUTTON */
.call-btn {
    background: #ffffff;
    color: #1f2937;
    border: 1px solid #e5e7eb;
}

    .call-btn:hover {
        background: #f9fafb;
        color: #111827;
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(0,0,0,0.2);
    }

/* WHATSAPP BUTTON */
.whatsapp-btn {
    background: linear-gradient(90deg, #16a34a, #22c55e);
    border: none;
}

    .whatsapp-btn:hover {
        background: linear-gradient(90deg, #15803d, #16a34a);
        transform: translateY(-2px);
        box-shadow: 0 6px 22px rgba(22,163,74,0.4);
    }

/* ICON EFFECT */
.contact-btn i {
    transition: transform 0.3s ease;
}

.contact-btn:hover i {
    transform: scale(1.1);
}

/* MOBILE */
@media (max-width: 576px) {
    .contact-btn {
        min-width: 150px;
        font-size: 14px;
        padding: 9px 20px;
    }
}





.about-slider {
    width: 100%;
    max-width: 520px;
    margin: auto;
    height: 360px;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 12px 35px rgba(0,0,0,0.18);
    background: #fff;
}

.about-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

    .about-img.active {
        opacity: 1;
        transform: scale(1);
        z-index: 1;
    }

/* Slider Buttons */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.55);
    color: #fff;
    border: none;
    font-size: 22px;
    padding: 10px 14px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transition: background 0.3s ease;
}

    .slider-btn:hover {
        background: rgba(0,0,0,0.8);
    }

    .slider-btn.prev {
        left: 15px;
    }

    .slider-btn.next {
        right: 15px;
    }

/* Mobile */
@media (max-width: 768px) {
    .about-slider {
        height: 280px;
    }
}




.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.view-details-btn {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image-wrapper:hover .view-details-btn {
    opacity: 1;
}





