.elementor-3907 .elementor-element.elementor-element-8f93c49{--display:flex;--min-height:0vh;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--justify-content:center;--padding-top:40px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3907 .elementor-element.elementor-element-c47c2c0{--display:flex;--min-height:0px;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3907 .elementor-element.elementor-element-e171f45{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-3907 .elementor-element.elementor-element-503627c{width:var( --container-widget-width, 100% );max-width:100%;--container-widget-width:100%;--container-widget-flex-grow:0;}body.elementor-page-3907:not(.elementor-motion-effects-element-type-background), body.elementor-page-3907 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#F9FAFB;}@media(min-width:768px){.elementor-3907 .elementor-element.elementor-element-8f93c49{--width:100%;}.elementor-3907 .elementor-element.elementor-element-c47c2c0{--width:100%;}.elementor-3907 .elementor-element.elementor-element-e171f45{--width:80%;}}@media(max-width:1024px) and (min-width:768px){.elementor-3907 .elementor-element.elementor-element-c47c2c0{--width:90%;}.elementor-3907 .elementor-element.elementor-element-e171f45{--width:100%;}}@media(max-width:1024px){.elementor-3907 .elementor-element.elementor-element-8f93c49{--margin-top:-34px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0%;--padding-bottom:0%;--padding-left:0%;--padding-right:0%;}}@media(max-width:767px){.elementor-3907 .elementor-element.elementor-element-8f93c49{--width:95vw;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-3907 .elementor-element.elementor-element-79d7209 > .elementor-widget-container{margin:0px 0px 0px 0px;padding:0px 0px 0px 0px;}.elementor-3907 .elementor-element.elementor-element-2c509e4 > .elementor-widget-container{margin:20% 0% 0% 0%;padding:0px 0px 0px 0px;}.elementor-3907 .elementor-element.elementor-element-c47c2c0{--margin-top:-50px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:10px;--padding-bottom:10px;--padding-left:10px;--padding-right:10px;}}/* Start custom CSS for html, class: .elementor-element-79d7209 *//* --- Final CSS for Fixed Text and Animated Images (Corrected) --- */

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Main Showcase Container */
.full-screen-showcase {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
    font-family: 'Manrope', sans-serif;
    background-color: #fdfdfd;
}

/* --- Layer 1: Static Text Styling --- */
.showcase-details {
    position: absolute;
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
    z-index: 10;
    width: 38%;
    max-width: 600px;
}

/* --- Layer 2: Image Slider Styling --- */
.image-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.image-slider__track,
.image-slider__slide {
    position: absolute;
    width: 100%;
    height: 100%;
    inset: 0;
}

.image-slider__slide {
    /* Smoother easing function for the beautiful animation */
    transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.image-slider__slide img {
    object-fit: contain;
    position: absolute;
    top: 50%;
    max-width: 28%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(218, 52, 74, .3);
    /* Image properties will also transition smoothly */
    transition: all 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

/* --- Initial Positioning for carousel slides --- */
/* Active image positioning */
.image-slider__track .image-slider__slide:nth-child(1) {
    z-index: 3;
    transform: translateX(0) scale(1);
    filter: blur(0);
    opacity: 1;
}
.image-slider__track .image-slider__slide:nth-child(1) img {
    left: 55%;
    transform: translateY(-50%);
    width: 40%;
}

/* Side images positioning */
.image-slider__track .image-slider__slide:nth-child(2) {
    z-index: 2;
    transform: translateX(50%) scale(0.7);
    filter: blur(5px);
    opacity: 0.6;
}
.image-slider__track .image-slider__slide:last-child {
    z-index: 2;
    transform: translateX(-50%) scale(0.7);
    filter: blur(5px);
    opacity: 0.6;
}
.image-slider__track .image-slider__slide:nth-child(n+3):not(:last-child) {
    z-index: 1;
    transform: translateX(120%) scale(0.6);
    filter: blur(10px);
    opacity: 0;
}

/* Common style for side images */
.image-slider__track .image-slider__slide:not(:nth-child(1)) img {
    left: 50%;
    transform: translate(-50%, -50%);
}

/* --- Animation classes for Images ONLY --- */
.full-screen-showcase.is-sliding .image-slider__track .image-slider__slide:nth-child(1) {
    transform: translateX(-50%) scale(0.7);
    filter: blur(5px);
    opacity: 0.6;
    z-index: 2;
}
.full-screen-showcase.is-sliding .image-slider__track .image-slider__slide:nth-child(2) {
    z-index: 3;
    transform: translateX(0) scale(1);
    filter: blur(0);
    opacity: 1;
}

/* incoming image animates directly to its final position */
.full-screen-showcase.is-sliding .image-slider__track .image-slider__slide:nth-child(2) img {
    left: 55%;
    transform: translateY(-50%);
    width: 40%;
}

/* next side image becomes visible during animation */
.full-screen-showcase.is-sliding .image-slider__track .image-slider__slide:nth-child(3) {
    z-index: 2;
    transform: translateX(50%) scale(0.7);
    filter: blur(5px);
    opacity: 0.6;
}

/* Fix for the animation jump: outgoing image smoothly transitions to its destination style */
.full-screen-showcase.is-sliding .image-slider__track .image-slider__slide:nth-child(1) img {
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; /* This will default to the max-width of 28% */
}

/* --- Other Styles --- */
.showcase-details h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: #1a1a1a; }
.showcase-details .ap-highlight-text { background: linear-gradient(90deg, #E2364C, #c42a3f); -webkit-background-clip: text; background-clip: text; color: transparent; }
.showcase-details .ap-description { font-size: 1rem; line-height: 1.6; color: #555; margin-bottom: 2rem; }
.showcase-details .ap-price-section { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.showcase-details .ap-current-price { font-size: 2.25rem; font-weight: 700; color: #1a1a1a; }
.showcase-details .ap-original-price { font-size: 1.25rem; color: #999; text-decoration: line-through; }
.showcase-details .ap-offer-tag { background-color: #FFF0F2; color: #E2364C; font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 20px; border: 1px solid #F5E0E3; }
.showcase-details .ap-button-group { display: flex; gap: 1rem; margin-bottom: 2rem; }
.showcase-details .ap-btn { padding: 1rem 2rem; font-size: 1rem; font-weight: 700; border: 2px solid transparent; border-radius: 10px; cursor: pointer; text-decoration: none; position: relative; overflow: hidden; transition: transform 0.3s ease; }
.showcase-details .ap-btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent); transition: left 0.6s ease; }
.showcase-details .ap-btn:hover { transform: scale(1.03); }
.showcase-details .ap-btn:hover::before { left: 100%; }
.showcase-details .ap-btn-primary { background: linear-gradient(135deg, #E2364C 0%, #B92B3F 100%); color: white; box-shadow: 0 5px 15px rgba(226, 54, 76, 0.4); }
.showcase-details .ap-btn-secondary { background-color: transparent; color: #E2364C; border-color: #E2364C; }
.showcase-details .ap-features-list { list-style: none; padding: 0; margin-top: 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1.5rem; color: #444; }
.showcase-details .ap-features-list li { font-size: 0.9rem; display: flex; align-items: center; }
.showcase-details .ap-features-list li::before { content: '•'; color: #E2364C; font-size: 1.2rem; font-weight: bold; margin-right: 0.5rem; }

/* --- Responsive Adjustments --- */
@media (max-width: 992px) {
    .showcase-details {
        width: 90%;
        max-width: 500px;
        left: 50%;
        top: auto;
        bottom: 2rem;
        transform: translate(-50%, 0);
        text-align: center;
        background-color: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(8px);
        border-radius: 16px;
        padding: 1.5rem;
    }
    .showcase-details h1 { font-size: 2rem; }
    .showcase-details .ap-price-section, .showcase-details .ap-button-group {
        justify-content: center;
    }
    .showcase-details .ap-features-list {
        justify-items: center;
    }

    .image-slider__track .image-slider__slide:nth-child(1) img {
        left: 50%;
        transform: translate(-50%, -50%);
        top: 35%;
        width: 60%;
    }
    .image-slider__track .image-slider__slide:not(:nth-child(1)) {
        display: none;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-2c509e4 *//* --- Final CSS for Static Layout with Integrated Slider --- */

/* Main Section Layout */
.product-showcase {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 2rem 4rem;
    justify-self: center;
    width: 100%;
    max-width: 1500px;
    margin: rem auto;
    padding: 3rem 1rem;
    font-family: 'Manrope', sans-serif;
    box-sizing: border-box;
}

/* Grouping Styles for Layout Control */
.product-showcase__title-group { flex: 1 1 100%; max-width: 800px; margin-bottom: 1rem; text-align: center; margin-left: auto; margin-right: auto; }
.product-showcase__image-container { flex: 1 1 45%;
min-width: 300px; }
.product-showcase__purchase-details { flex: 1 1 55%; max-width: 600px; padding-left: 1rem; }

/* --- Image Slider Styles (SMOOTH ANIMATION VERSION) --- */
.product-showcase__slider {
    margin-top: -30px;
    width: 100%;
    height: 300px;
    position: relative;
    border-radius: 16px;
    overflow: hidden; /* Important for scale effect */
}

.product-showcase__slider-track {
    position: absolute;
    width: 100%;
    height: 100%;
}

.product-showcase__slider-slide {
    position: absolute;
    inset: 0;
    transition: opacity 0.7s ease-in-out, transform 0.7s ease-in-out; /* Smooth transition */
    opacity: 0;
    transform: scale(1.05); /* Start slightly zoomed in */
}

.product-showcase__slider-slide img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 10px 30px rgba(218, 52, 74, .3);
}

/* Positioning for the active slide */
.product-showcase__slider-track .product-showcase__slider-slide:nth-child(1) {
    opacity: 1;
    transform: scale(1); /* Active slide is normal size */
    z-index: 2;
}

/* FADE + SCALE Animation: Make the current slide fade and scale out */
.product-showcase__slider.next .product-showcase__slider-track .product-showcase__slider-slide:nth-child(1),
.product-showcase__slider.prev .product-showcase__slider-track .product-showcase__slider-slide:nth-child(1) {
    opacity: 0;
    transform: scale(0.95); /* Shrink outgoing slide */
}

/* FADE + SCALE Animation: Make the new slide fade and scale in */
.product-showcase__slider.next .product-showcase__slider-track .product-showcase__slider-slide:nth-child(2),
.product-showcase__slider.prev .product-showcase__slider-track .product-showcase__slider-slide:last-child {
    opacity: 1;
    transform: scale(1); /* Bring new slide to normal size */
    z-index: 2;
}


/* --- Slider Navigation --- */
.product-showcase__slider-nav {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}

.product-showcase__slider:hover .product-showcase__slider-nav {
    opacity: 1;
}

.product-showcase__slider-nav button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    font-size: 1.2rem;
    cursor: pointer;
}

.product-showcase__slider-nav button:hover {
    background-color: #E2364C;
    color: #E2364C!Important;
}


/* --- Component Styles --- */
.product-showcase h1 { font-size: 3.2rem; font-weight: 800; line-height: 1.2; margin-bottom: 1rem; color: #1a1a1a; }
.product-showcase__highlight-text { background: linear-gradient(90deg, #E2364C, #c42a3f); -webkit-background-clip: text; background-clip: text; color: transparent; }
.product-showcase__description { font-size: 1rem; line-height: 1.6; color: #555; }
.product-showcase__price-section { display: flex; align-items: center; gap: 1rem; margin-bottom: 2rem; }
.product-showcase__current-price { font-size: 2.25rem; font-weight: 700; color: #1a1a1a; }
.product-showcase__original-price { font-size: 1.25rem; color: #999; text-decoration: line-through; }
.product-showcase__offer-tag { background-color: #FFF0F2; color: #E2364C; font-size: 0.8rem; font-weight: 600; padding: 0.3rem 0.8rem; border-radius: 20px; border: 1px solid #F5E0E3; }
.product-showcase__button-group { display: flex; gap: 1rem; margin-bottom: 2rem; }
.product-showcase__btn { padding: 1rem 2rem; font-size: 1rem; font-weight: 700; border: 2px solid transparent; border-radius: 10px; cursor: pointer; text-decoration: none; display: inline-block; letter-spacing: 0.5px; position: relative; overflow: hidden; transition: transform 0.3s ease; }
.product-showcase__btn::before { content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%; background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent); transition: left 0.6s ease; }
.product-showcase__btn:hover::before { left: 100%; }
.product-showcase__btn:hover { transform: scale(1.03);
color: white;}
.product-showcase__btn--primary { background: linear-gradient(135deg, #E2364C 0%, #B92B3F 100%); color: white; }
.product-showcase__btn--secondary { background-color: transparent; color: #E2364C; border-color: #E2364C; }
.product-showcase__btn--secondary:hover { transform: scale(1.03);
color: #E2364C;}

.product-showcase__features-list { list-style: none; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem 1.5rem; color: #444; }
.product-showcase__features-list li { display: flex; align-items: center; font-size: 0.9rem; }
.product-showcase__features-list li::before { content: '•'; color: #E2364C; font-size: 1.2rem; font-weight: bold; margin-right: 0.5rem; }

/* Responsive Design */
/* Responsive Design - Tablet Fix */
@media (min-width: 768px) and (max-width: 1024px) {
    
    /* ১. টাইটেল ফিক্স */
    .product-showcase h1 {
        max-width: 100% !important;
        text-align: center;
        font-size: 2.5rem; 
        margin-bottom: 1.5rem;
    }
    
    /* ২. স্লাইডার কন্টেইনার ফিক্স */
    .product-showcase__slider {
        width: 100% !important; /* ৬০% এর বদলে ১০০% জায়গা নিতে দিন */
        max-width: 500px; /* খুব বেশি বড় না হওয়ার জন্য লিমিট */
        height: 400px; /* হাইট ৩০০ থেকে বাড়িয়ে ৪০০ করা হলো যাতে ছবি শ্বাস নিতে পারে */
        margin: 0 auto 2rem auto; /* মাঝখানে এবং নিচে গ্যাপ */
        
       
    }

    /* ৩. ইমেজের পজিশন এবং ফিটিং ফিক্স */
    .product-showcase__slider-slide {
        display: flex;              /* ইমেজকে মাঝখানে আনার জন্য */
        align-items: center;
        justify-content: center;
    }

    .product-showcase__slider-slide img {
       width: 85%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    
    /* এখানেও অ্যাড করে দিন যাতে ট্যাবলেটে সুন্দর দেখায় */
    border-radius: 12px;
    }
    
    /* ৪. লেআউট অর্ডার ঠিক করা */
    .product-showcase { 
        flex-direction: column; /* ফ্লেক্সবক্স কলাম করা হলো */
        text-align: center;
        gap: 1rem;
    }

    .product-showcase__title-group { order: 1; }
    .product-showcase__image-container { 
        order: 2; 
        width: 100%; /* কন্টেইনারকে ফুল উইডথ দিন */
        display: flex;
        justify-content: center;
    }
    .product-showcase__purchase-details { 
        order: 3; 
        padding: 0; 
        width: 100%;
        max-width: 100%;
    }

    /* বাটন এবং প্রাইস সেকশন মাঝখানে আনা */
    .product-showcase__button-group, 
    .product-showcase__price-section { 
        justify-content: center; 
    }

    /* ফিচার লিস্ট ফিক্স */
    .product-showcase__features-list { 
        justify-content: center;
        margin: 0 auto;
        max-width: 400px;
    }
}

@media (max-width: 767px) {
    .product-showcase h1 { font-size: 2rem; }
    .product-showcase__button-group { flex-direction: column; align-items: center; }
    .product-showcase__features-list { grid-template-columns: 1fr 1fr; text-align: center; }
    .product-showcase__features-list li::before { display: none; }
    .product-showcase__features-list li { justify-content: center; }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-7a8135e *//* Main Section Container */
.category-section {
    width: 100%;
    max-width: 1500px;
    margin: 4rem auto;
    text-align: center;
    box-sizing: border-box;
    overflow: hidden;
}

/* --- HEADER ANIMATION START --- */
.section-header-1 h2, 
.section-header-1 p {
    
    display: flex;
   
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.section-header-1.visible h2, 
.section-header-1.visible p {
    opacity: 1;
    transform: translateY(0);
}
/* --- HEADER ANIMATION END --- */

.section-header-1 h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e272e;
    margin-bottom: 0.75rem;
}

.section-header-1 p {
    font-size: 1.1rem;
    color: #576574;
    max-width: 700px;
    margin: 0 auto 3rem auto;
    transition-delay: 0.2s; /* Description comes slightly after title */
}

/* Grid Layout */
.category-grid {
  
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 0 1rem; /* Added safe padding */
}

/* --- CARD ANIMATION & STYLING --- */
.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    
    /* Initial State: Hidden, pushed down, and slightly smaller */
    opacity: 0;
    transform: translateY(60px) scale(0.95);
    
    /* Premium Smooth Transition */
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94), 
                opacity 0.8s ease-out, 
                box-shadow 0.3s ease;
}

/* Class added by JS when visible */
.category-card.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%; 
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

/* Hover Effects */
.category-card:hover {
    transform: translateY(0px) scale(1.02) !important; /* Override animation transform */
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.category-card img {
    width: 100%;
    height: 180px; /* Increased height slightly for better look */
    object-fit: cover;
    display: block;
    transform: scale(1.25);
    transition: transform 0.6s ease-in-out;
}

.category-card:hover img {
    transform: scale(1);
}

/* --- TEXT/CAPTION ANIMATION --- */
.card-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.75rem 1.25rem;
    color: white;
    font-size: 1.1rem;
    font-weight: 500;
    z-index: 2;
    
    /* Initial Text State inside Card */
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease-out;
}

/* When card is visible, text reveals with a delay */
.category-card.visible .card-caption {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s; /* Text appears after the card settles */
}

/* Responsive */
@media (min-width: 768px) and (max-width: 1024px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .category-grid {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-503627c *//* General Styling */
body {
    font-family: 'Inter', sans-serif;
    background-color: #ffffff;
    color: #121212;
}

/* Section Container */
.product-section {
    width: 100%;
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
    box-sizing: border-box;
}

/* Section Header */
/* Container for the header */
.section-header {
    display: flex;
    justify-content: space-between; /* Pushes items to opposite ends */
    align-items: flex-end;      /* Aligns items to the bottom */
    padding-bottom: 1rem;
    border-bottom: 1px solid #e9ecef; /* Optional: adds a subtle line below */
    margin: 2rem 0;
}

/* Main heading style */
.header-text h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #0a1d37;
    margin: 0;
}

/* Subheading style */
.header-text p {
    font-size: 1rem;
    color: #6c757d;
    margin: 0.25rem 0 0 0;
}

/* "View all" link style */
.view-all-link {
    font-size: 0.9rem;
    color: #6c757d;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #0a1d37;
}

/* Product Grid */
.product-grid {
    width: 100%;
    justify-self: center;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}


/* Product Card Animation */
.product-card {
background-color: #fff;
border-radius: 12px;
 border: 1px solid #e5e5e5;
 overflow: hidden;

    /* --- আপডেট করা ট্রানজিশন --- */
    /* এখানে hover এবং scroll-animation দুটির জন্যই transition সেট করা হয়েছে */
 transition: 
        box-shadow 0.3s ease, 
        transform 0.5s ease-out, 
        opacity 0.5s ease-out; /* <-- এই লাইনটি যোগ করা হয়েছে */

/* অ্যানিমেশনের জন্য প্রাথমিক অবস্থা */
 opacity: 0;
 transform: translateY(20px);
}

.product-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}





.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

/* Product Image */
.product-image-container {
    position: relative;
    display: flex;
    justify-content: center; /* horizontally center */
    align-items: center;     /* vertically center */
}

.product-image-container img {
    width: auto; /* maintain aspect ratio */
    max-width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1/1;
    object-fit: cover;
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(5px);
    color: #333;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

/* Product Info */
.product-info {
    padding: 1rem;
}

.product-name {
    font-size: 1rem;
    font-weight: 500;
    margin: 0 0 0.5rem 0;
}

.product-name a {
    color: inherit;
    text-decoration: none;
}

.product-price {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.current-price {
    font-weight: 600;
}

.original-price {
    color: #757575;
    text-decoration: line-through;
}

.save-percent {
    color: #5c5c5c;
    font-size: 0.8rem;
}

/* Quick Add Button */
:root {
    --btn-bg: #ffffff;
    --btn-border: #dcdcdc;
    --btn-text: #333333;
    --btn-bg-hover: #f5f5f5;
    --btn-border-hover: #aaaaaa;
    --brand-color: #007bff; /* Example brand color for focus */
}

.quick-add-btn {
    display: inline-block; /* Ensures consistency if used on an <a> tag */
    width: 100%;
    padding: 0.75rem 1rem;
    background-color: var(--btn-bg);
    border: 1px solid var(--btn-border);
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600; /* Made slightly bolder */
    color: var(--btn-text);
    text-align: center;
    text-decoration: none; /* Removes underline if used on an <a> tag */
    cursor: pointer;
    
    /* Smoother and more comprehensive transition */
    transition: all 0.2s ease-in-out;
}

.quick-add-btn:hover {
    background-color: #FFFFFF;
    border-color:#E2364C;
    /* Adds a subtle lift effect on hover */
   
}

/* Responsive Design */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    .section-header h2 {
        font-size: 2rem;
    }
}/* End custom CSS */