* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =========================================
   Global Shared Header with Controls
========================================= */
.section-header-with-controls {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 25px;
    width: 100%;
}

.header-titles h2 {
    font-size: 20px;
    font-weight: 600;
    color: var(--products-card-dark, #222);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.header-titles p {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

.carousel-controls {
    display: flex;
    gap: 10px;
}

.carousel-btn {
    background-color: #2EB14B;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    font-size: 14px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    outline: none;
}

.carousel-btn:hover {
    background-color: #1f8a37;
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .section-header-with-controls {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .carousel-controls {
        align-self: flex-end; 
    }
}

/* =========================================
   Beautiful Area Location Cards (6 per row)
========================================= */
.area-location-section, .ads-section, .testimonial-section {
    width: 95%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px 0;
}

.area-header h2 {
    font-size: 20px;
    font-weight: 600;
    color: #222;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 5px;
}

.area-header p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); 
    gap: 20px;
}
/* =========================================
   Ultra Professional Area Location Cards
========================================= */
.area-location-section {
    width: 95%;
    max-width: 1400px;
    margin: 40px auto;
    padding: 20px 0;
}

.area-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* এক লাইনে ৬টি কার্ড */
    gap: 20px;
}

/* Premium Card Design */
.premium-area-card {
    position: relative;
    height: 240px; /* কার্ডের হাইট */
    border-radius: 16px;
    overflow: hidden;
    display: block;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: #000;
}

.premium-area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
    opacity: 0.85; /* ইমেজ কিছুটা ডার্ক রাখার জন্য */
}

/* Gradient Overlay for Text Readability */
.premium-area-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0) 100%);
    transition: opacity 0.4s ease;
}

/* Content Styling */
.premium-area-content {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    color: #fff;
    z-index: 2;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}

.premium-area-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.premium-area-content p {
    font-size: 13px;
    color: #e0e0e0;
    display: flex;
    align-items: center;
    gap: 6px;
    opacity: 0.9;
}

.premium-area-content p i {
    color: #2EB14B; /* থিম কালার আইকন */
}

/* Hover Effects */
.premium-area-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(46, 177, 75, 0.2);
}

.premium-area-card:hover img {
    transform: scale(1.12); /* ইমেজ জুম ইন হবে */
    opacity: 0.7;
}

.premium-area-card:hover .premium-area-overlay {
    background: linear-gradient(to top, rgba(46, 177, 75, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
}

.premium-area-card:hover .premium-area-content {
    transform: translateY(0); /* টেক্সট কিছুটা উপরে উঠবে */
}

.premium-area-card:hover .premium-area-content p i {
    color: #fff;
}

/* Responsive Design for Area Cards */
@media (max-width: 1200px) {
    .area-grid { grid-template-columns: repeat(4, 1fr); }
    .premium-area-card { height: 220px; }
}

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

@media (max-width: 768px) {
    .area-grid { grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .premium-area-card { height: 200px; border-radius: 12px; }
    .premium-area-content { bottom: 15px; left: 15px; right: 15px; }
    .premium-area-content h4 { font-size: 16px; }
    .premium-area-content p { font-size: 12px; }
}

@media (max-width: 480px) {
    .area-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .premium-area-card { height: 160px; }
    .premium-area-content h4 { font-size: 14px; }
    .premium-area-content p { font-size: 11px; gap: 4px; }
}
/* =========================================
   Ads Banner CSS (With Overlay, Text & Timer)
========================================= */
.ads-section {
    display: flex;
    gap: 20px;
    justify-content: space-between;
}

.ad-card {
    width: 50%;
    height: 220px; /* হাইট একটু বাড়ানো হয়েছে কন্টেন্ট সুন্দরভাবে দেখানোর জন্য */
    border-radius: 12px;
    overflow: hidden;
    display: block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    position: relative; /* কন্টেন্ট ওভারলে করার জন্য */
    text-decoration: none;
}

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

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

/* Overlay & Content */
.ad-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 100%);
    display: flex;
    align-items: center;
    padding: 0 30px;
    box-sizing: border-box;
}

.ad-content {
    color: #fff;
    max-width: 80%;
}

.ad-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
}

.ad-subtitle {
    font-size: 14px;
    margin-bottom: 15px;
    color: #e0e0e0;
}

/* Timer Styling */
.ad-timer {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.timer-box {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 5px 8px;
    border-radius: 6px;
    text-align: center;
    min-width: 50px;
}

.timer-box span {
    display: block;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
}

.timer-box small {
    font-size: 10px;
    text-transform: uppercase;
    opacity: 0.8;
}

/* Shop Now Button */
.ad-btn {
    background: #2EB14B;
    color: #fff;
    border: none;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.ad-card:hover .ad-btn {
    background: #ff6b00;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .ads-section { flex-direction: column; }
    .ad-card { width: 100%; height: 200px; }
    .ad-overlay { padding: 0 20px; }
    .ad-title { font-size: 20px; }
    .timer-box { min-width: 45px; padding: 4px 6px; }
    .timer-box span { font-size: 14px; }
}

@media (max-width: 480px) {
    .ad-card { height: 180px; }
    .ad-title { font-size: 18px; }
    .ad-subtitle { font-size: 12px; margin-bottom: 10px; }
    .ad-timer { gap: 5px; margin-bottom: 10px; }
    .timer-box { min-width: 40px; }
    .ad-btn { padding: 6px 15px; font-size: 12px; }
}
@media (max-width: 1200px) {
    .area-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 768px) {
    .area-grid { grid-template-columns: repeat(3, 1fr); gap: 15px;}
    .ads-section { flex-direction: column; }
    .ad-card { width: 100%; height: 150px; }
}

@media (max-width: 480px) {
    .area-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .area-card { padding: 15px 10px; }
    .area-icon { font-size: 22px; width: 50px; height: 50px; line-height: 50px; margin-bottom: 10px;}
    .area-info h4 { font-size: 14px; }
}

/* =========================================
   Step-by-Step Native Auto Carousel
========================================= */
.top-visit-carousel-wrapper, .testimonial-carousel-wrapper {
    width: 100%;
    overflow: hidden; 
    padding: 10px 0;
}

.custom-auto-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth; 
    scroll-snap-type: x mandatory; 
    -ms-overflow-style: none;  
    scrollbar-width: none; 
    padding-bottom: 10px;
}

.custom-auto-carousel-track::-webkit-scrollbar {
    display: none;
}

.custom-carousel-item {
    scroll-snap-align: start; 
    flex-shrink: 0;
}

.top-visit-item-width {
    width: calc((100% / 5) - 16px);
}

.testimonial-card {
    background: #fff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    width: 320px;
}

.testi-rating {
    color: #ffc107;
    font-size: 12px;
    margin-bottom: 15px;
}

.testi-text {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.testi-user {
    display: flex;
    align-items: center;
}

.user-img {
    font-size: 30px;
    color: #ddd;
    margin-right: 10px;
}

.user-info h4 {
    font-size: 14px;
    color: #222;
}

.user-info span {
    font-size: 11px;
    color: #2EB14B;
}

@media (max-width: 1024px) {
    .top-visit-item-width { width: calc((100% / 3) - 13px); }
}

@media (max-width: 768px) {
    .top-visit-item-width { width: calc((100% / 2) - 10px); }
    .testimonial-card { width: 280px; padding: 15px; }
}

@media (max-width: 480px) {
    .top-visit-item-width { width: 200px; } 
}

/* =========================================
   Products Section Basic Setup
========================================= */
:root {
    --products-card-primary: #2EB14B; 
    --products-card-dark: #222;
    --products-card-light: #666;
    --products-card-white: #ffffff;
    --products-card-bg: #f8f9fa;
}

.products-card-section { max-width: 95%; margin: 40px auto; padding: 0 15px; }

.products-card-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 25px; }
.products-card-header-left h2 { font-size: 20px; font-weight: 600; color: var(--products-card-dark); text-transform: uppercase; letter-spacing: 0.5px; }
.products-card-header-left p { font-size: 14px; color: var(--products-card-light); margin-top: 5px; }
.products-card-see-all { text-decoration: none; color: #ff6b00; font-weight: 600; font-size: 14px; transition: 0.3s; }
.products-card-see-all:hover { color: var(--products-card-primary); }

.products-card-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }

.products-card-item { background-color: var(--products-card-white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.3s ease-in-out; position: relative; display: flex; flex-direction: column; }
.products-card-item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }

.products-card-img-wrapper { position: relative; height: 180px; width: 100%; background: #f0f0f0; overflow: hidden; }
.products-card-img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }

.products-card-badge { position: absolute; top: 10px; left: 10px; background-color: var(--products-card-primary); color: #fff; font-size: 11px; font-weight: 700; padding: 4px 8px; border-radius: 3px; z-index: 2; }
.products-card-eye-btn { position: absolute; top: 10px; right: 10px; width: 35px; height: 35px; background-color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--products-card-primary); cursor: pointer; box-shadow: 0 3px 6px rgba(0,0,0,0.15); opacity: 0; transform: scale(0.8); transition: all 0.3s ease; z-index: 3; border: none; }
.products-card-eye-btn:hover { background-color: var(--products-card-primary); color: white; }
.products-card-item:hover .products-card-eye-btn { opacity: 1; transform: scale(1); }

.products-card-details { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; }
.products-card-title { font-size: 14px; font-weight: 600; color: var(--products-card-dark); margin-bottom: 8px; line-height: 1.4em; height: 2.8em; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.products-card-price { font-size: 16px; font-weight: 700; color: #007bff; margin-bottom: 5px; }
.products-card-rating { color: #ffc107; font-size: 12px; margin-bottom: 12px; }
.products-card-actions { display: flex; gap: 8px; margin-top: auto; }
.products-card-btn { flex: 1; padding: 8px 12px; border: none; border-radius: 4px; font-size: 12px; font-weight: 600; cursor: pointer; transition: 0.3s; }
.products-card-btn-cart { background-color: #e9ecef; color: var(--products-card-dark); }
.products-card-btn-cart:hover { background-color: #dde0e3; }
.products-card-btn-buy { background-color: #007bff; color: white; }
.products-card-btn-buy:hover { background-color: #0069d9; }
/* =========================================
   Products Section Basic Setup
========================================= */
/* Shop Name in Card CSS */
.products-card-shop-name {
    font-size: 12px;
    color: #777;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}
.products-card-shop-name i {
    color: var(--products-card-primary);
}

/* Modal Shop Name CSS */
.products-card-modal-shop-name {
    font-size: 14px;
    color: #777;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.products-card-modal-shop-name i {
    color: var(--products-card-primary);
}

/* Adjustments for Title to look better with the Shop Name */
.products-card-title { 
    font-size: 14px; 
    font-weight: 600; 
    color: var(--products-card-dark); 
    margin-bottom: 4px; /* Reduced from 8px */
    line-height: 1.4em; 
    height: 2.8em; 
    overflow: hidden; 
    display: -webkit-box; 
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical; 
}

@media (max-width: 1024px) { .products-card-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) {
    .products-card-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .products-card-header { flex-direction: column; align-items: flex-start; gap: 10px; }
    .products-card-img-wrapper { height: 140px; }
}

/* =========================================
   Best Categories Section Styles
========================================= */
.index_main_best_categories_section { width: 95%; max-width: 1400px; margin: 40px auto; padding: 20px 0; }
.index_main_best_categories_carousel_wrapper { width: 100%; margin: 0 auto; overflow: hidden; position: relative; padding: 15px clamp(15px, 5vw, 60px); box-sizing: border-box; }
.index_main_best_categories_container { display: flex; flex-wrap: nowrap; gap: 15px; transition: transform 0.5s ease-in-out; will-change: transform; }
.index_main_best_categories_card { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; justify-content: flex-start; width: 130px; cursor: pointer; text-decoration: none; color: inherit; transition: transform 0.3s ease; outline: none; }
.index_main_best_categories_img_wrapper { width: 110px; height: 110px; border-radius: 8px; overflow: hidden; border: 3px solid transparent; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1); transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1); background-color: #fff; position: relative; display: flex; align-items: center; justify-content: center; }
.index_main_best_categories_img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.index_main_best_categories_title { margin-top: 18px; font-size: 16px; font-weight: 700; color: #444; text-align: center; transition: color 0.3s ease; line-height: 1.3; }

.index_main_best_categories_card:hover .index_main_best_categories_img_wrapper { transform: translateY(-12px); box-shadow: 0 15px 30px rgba(0, 0, 0, 0.25); border-color: #ff6b6b; }
.index_main_best_categories_card:hover .index_main_best_categories_img { transform: scale(1.15); }
.index_main_best_categories_card:hover .index_main_best_categories_title { color: #ff6b6b; }

@media (max-width: 768px) {
    .index_main_best_categories_card { width: 110px; }
    .index_main_best_categories_img_wrapper { width: 90px; height: 90px; }
}

/* =========================================
   Popular Shop Section
========================================= */
:root { --shop_card_primary: #2EB14B; --shop_card_dark: #222; --shop_card_light: #666; --shop_card_white: #ffffff; --shop_card_bg: #f8f9fa; }
.shop_card_section { max-width: 95%; margin: 40px auto; padding: 0 15px; }
.shop_card_header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 25px; }
.shop_card_header-left h2 { font-size: 20px; font-weight: 600; color: var(--shop_card_dark); text-transform: uppercase; }
.shop_card_header-left p { font-size: 14px; color: var(--shop_card_light); margin-top: 5px; }
.shop_card_see-all { text-decoration: none; color: #ff6b00; font-weight: 600; font-size: 14px; transition: 0.3s; }
.shop_card_see-all:hover { color: var(--shop_card_primary); }
.shop_card_grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.shop_card_item { background-color: var(--shop_card_white); border-radius: 8px; overflow: hidden; box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: all 0.3s; display: flex; flex-direction: column; position: relative; }
.shop_card_item:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.shop_card_img-wrapper { position: relative; height: 180px; width: 100%; background: #f0f0f0; overflow: hidden; }
.shop_card_img-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
.shop_card_eye-btn { position: absolute; top: 10px; right: 10px; width: 35px; height: 35px; background: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; color: var(--shop_card_primary); opacity: 0; transform: scale(0.8); transition: 0.3s; border: none; z-index: 3; cursor: pointer; }
.shop_card_eye-btn:hover { background: var(--shop_card_primary); color: white; }
.shop_card_item:hover .shop_card_eye-btn { opacity: 1; transform: scale(1); }
.shop_card_details { padding: 15px; flex-grow: 1; display: flex; flex-direction: column; }
.shop_card_title { font-size: 14px; font-weight: 600; color: var(--shop_card_dark); margin-bottom: 8px; }
.shop_address, .shop_card_contact { font-size: 12px; color: var(--shop_card_light); margin-bottom: 5px; }
.shop_card_rating { color: #ffc107; font-size: 12px; margin-bottom: 12px; }
.shop_card_actions { display: flex; gap: 8px; margin-top: auto; }
.shop_card_btn { flex: 1; padding: 8px 0; border: none; border-radius: 4px; font-size: 12px; font-weight: 600; cursor: pointer; transition: 0.3s; text-align: center; text-decoration: none; display: inline-block;}
.shop_card_btn-cart { background-color: #e9ecef; color: var(--shop_card_dark); }
.shop_card_btn-buy { background-color: #007bff; color: white; }

@media (max-width: 1024px) { .shop_card_grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .shop_card_grid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }

/* =========================================
   Delivery Process Section
========================================= */
:root { --delivery-primary: #2EB14B; --delivery-dark: #222; --delivery-text: #666; --delivery-bg: #f9f9f9; --delivery-white: #ffffff; }
.delivery-process-section { width: 100%; background-color: var(--delivery-white); overflow: hidden; padding: 20px 0px; }
.delivery-process-container { width: 95%; margin: 0 auto; }
.delivery-process-header { text-align: center; margin-bottom: 10px; position: relative; }
.delivery-process-header h2 { font-size: 25px; font-weight: 600; color: var(--delivery-dark); text-transform: uppercase; margin-bottom: 10px; }
.delivery-process-header p { color: var(--delivery-text); font-size: 16px; }
.delivery-process-wrapper { display: flex; justify-content: space-between; align-items: flex-start; position: relative; gap: 20px; }
.delivery-process-card { flex: 1; background: var(--delivery-bg); padding: 30px 20px; border-radius: 12px; text-align: center; position: relative; transition: all 0.4s ease; border: 1px solid transparent; z-index: 2; opacity: 0; animation: deliveryFadeInUp 0.8s forwards; }
.delivery-process-card:hover { transform: translateY(-10px); background: var(--delivery-white); border-color: var(--delivery-primary); box-shadow: 0 15px 30px rgba(46, 177, 75, 0.15); }
.delivery-process-icon-box { width: 80px; height: 80px; background-color: white; border-radius: 50%; display: flex; justify-content: center; align-items: center; margin: 0 auto 20px auto; box-shadow: 0 5px 15px rgba(0,0,0,0.05); transition: all 0.4s ease; position: relative; z-index: 3; }
.delivery-process-icon-box i { font-size: 32px; color: var(--delivery-primary); transition: all 0.4s ease; }
.delivery-process-card:hover .delivery-process-icon-box { background-color: var(--delivery-primary); transform: scale(1.1) rotate(5deg); }
.delivery-process-card:hover .delivery-process-icon-box i { color: white; }
.delivery-process-step-num { position: absolute; top: -10px; right: 20px; font-size: 40px; font-weight: 900; color: rgba(0,0,0,0.03); transition: 0.3s; }
.delivery-process-card:hover .delivery-process-step-num { color: rgba(46, 177, 75, 0.1); transform: scale(1.2); }
.delivery-process-title { font-size: 18px; font-weight: 700; color: var(--delivery-dark); margin-bottom: 10px; }
.delivery-process-desc { font-size: 14px; color: var(--delivery-text); line-height: 1.6; }
.delivery-process-card:not(:last-child)::after { content: ''; position: absolute; top: 70px; right: -50%; width: 100%; height: 2px; background-image: linear-gradient(to right, #ccc 33%, rgba(255,255,255,0) 0%); background-position: bottom; background-size: 10px 1px; background-repeat: repeat-x; z-index: 1; }

.delivery-process-card:nth-child(1) { animation-delay: 0.1s; }
.delivery-process-card:nth-child(2) { animation-delay: 0.3s; }
.delivery-process-card:nth-child(3) { animation-delay: 0.5s; }
.delivery-process-card:nth-child(4) { animation-delay: 0.7s; }

@keyframes deliveryFadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@media (max-width: 992px) { .delivery-process-card:not(:last-child)::after { display: none; } }
@media (max-width: 768px) {
    .delivery-process-wrapper { flex-direction: column; gap: 30px; }
    .delivery-process-card { width: 100%; display: flex; flex-direction: row; align-items: center; text-align: left; padding: 20px; }
    .delivery-process-icon-box { margin: 0 20px 0 0; width: 60px; height: 60px; flex-shrink: 0; }
    .delivery-process-step-num { top: 50%; transform: translateY(-50%); right: 15px; }
}

/* Modal Style */
.products-card-modal-overlay, .shop_card_modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.6); z-index: 9999; display: none; justify-content: center; align-items: center; opacity: 0; transition: opacity 0.3s ease; }
.products-card-modal-overlay.open, .shop_card_modal-overlay.open { display: flex; opacity: 1; }
.products-card-modal-box, .shop_card_modal-box { background: white; width: 800px; max-width: 90%; border-radius: 10px; overflow: hidden; display: flex; position: relative; transform: translateY(20px); transition: transform 0.3s ease; }
.products-card-modal-overlay.open .products-card-modal-box, .shop_card_modal-overlay.open .shop_card_modal-box { transform: translateY(0); }
.products-card-modal-close, .shop_card_modal-close { position: absolute; top: 15px; right: 15px; background: transparent; border: none; font-size: 24px; color: #aaa; cursor: pointer; z-index: 10; }
.products-card-modal-left, .shop_card_modal-left { width: 50%; background: #f8f8f8; display: flex; align-items: center; justify-content: center; max-height: 80vh; }
.products-card-modal-left img, .shop_card_modal-left img { width: 100%; height: 100%; object-fit: cover; }
.products-card-modal-right, .shop_card_modal-right { width: 50%; padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.products-card-modal-badge, .shop_card_modal-badge { display: inline-block; background: var(--products-card-primary); color: white; padding: 4px 8px; font-size: 10px; border-radius: 4px; width: fit-content; margin-bottom: 10px; }
.products-card-modal-title, .shop_card_modal-title { font-size: 22px; color: var(--products-card-dark); margin-bottom: 10px; }
.products-card-modal-price { font-size: 24px; color: var(--products-card-primary); font-weight: bold; margin-bottom: 15px; }
.products-card-modal-desc, .shop_card_modal-desc { font-size: 14px; color: var(--products-card-light); line-height: 1.6; margin-bottom: 25px; }
.products-card-modal-btns, .shop_card_modal-btns { display: flex; gap: 15px; }

@media (max-width: 768px) {
    .products-card-modal-box { flex-direction: column; max-height: 90vh; overflow-y: auto; }
    .products-card-modal-left, .products-card-modal-right { width: 100%; }
    .products-card-modal-left { height: 250px; }
    .products-card-modal-right { padding: 20px; }
}