/* 🌟 EMIRATES GIFTS - PREMIUM PRODUCT SHOWCASE DESIGN */

/* 🚫 ZERO POPUP ENVIRONMENT */
.popup, .modal, .overlay, .notification-banner, .alert, .toast,
[class*="popup"], [class*="modal"], [class*="overlay"], [class*="notification"] {
    display: none !important;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', 'Segoe UI', sans-serif;
    direction: rtl;
    margin: 0;
    padding: 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #eef2f5 50%, #e9ecef 100%);
    color: #1b2951;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ✨ PROGRESS BAR - PREMIUM STYLE */
.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 4px;
    background: linear-gradient(90deg, 
        #FFD700 0%, 
        #D4AF37 20%, 
        #25D366 40%, 
        #2196F3 60%, 
        #E91E63 80%, 
        #9C27B0 100%);
    z-index: 9999;
    transition: width 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.4);
}

/* 🎯 TOP BANNER - PREMIUM GRADIENT */
.top-banner {
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 25%, #FFB700 50%, #D4AF37 75%, #B8860B 100%);
    color: #1b2951;
    padding: 14px 0;
    text-align: center;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.top-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: 0;
    right: 0;
    bottom: -50%;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 35px,
        rgba(255,255,255,0.1) 35px,
        rgba(255,255,255,0.1) 70px
    );
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.banner-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.banner-text i {
    font-size: 1.1em;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px); }
}

/* 🎨 HEADER - PREMIUM DESIGN */
.header {
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    backdrop-filter: blur(10px);
    border-bottom: 2px solid rgba(212, 175, 55, 0.15);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 14px;
    text-decoration: none;
    color: #1b2951;
    transition: all 0.3s ease;
    cursor: pointer;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #FFD700 0%, #FFC700 25%, #D4AF37 50%, #B8860B 75%, #8B6508 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.logo-icon img {
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1;
}

.logo-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.logo-title {
    font-size: 1.7rem;
    font-weight: 900;
    color: #1b2951;
    line-height: 1;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, #1b2951 0%, #D4AF37 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #D4AF37;
    font-weight: 700;
    letter-spacing: 1px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    flex-wrap: wrap;
}

.nav-link {
    color: #1b2951;
    text-decoration: none;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    position: relative;
    background: rgba(212, 175, 55, 0.05);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #D4AF37, #25D366);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15), rgba(37, 211, 102, 0.1));
    color: #D4AF37;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.2);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 3px;
}

.english-link {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    color: white !important;
    box-shadow: 0 4px 15px rgba(30, 60, 114, 0.3) !important;
}

.english-link:hover {
    background: linear-gradient(135deg, #2a5298, #1e3c72) !important;
    color: white !important;
    box-shadow: 0 6px 20px rgba(30, 60, 114, 0.4) !important;
}

.header-tools {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 🛒 ENHANCED CHECKOUT BUTTON */
.checkout-btn {
    background: linear-gradient(135deg, #25D366 0%, #20B358 50%, #1fa34d 100%) !important;
    color: white !important;
    width: auto !important;
    padding: 12px 26px !important;
    border-radius: 25px !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px !important;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    position: relative;
    overflow: hidden;
}

.checkout-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shine-btn 3s infinite;
}

@keyframes shine-btn {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #20B358 0%, #1fa34d 50%, #158740 100%) !important;
    color: white !important;
    transform: translateY(-4px) !important;
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5) !important;
}

.checkout-btn:active {
    transform: translateY(-1px) !important;
}

.checkout-btn:focus {
    outline: 3px solid rgba(37, 211, 102, 0.6) !important;
    outline-offset: 2px !important;
}

.cart-counter {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    border: 2px solid white;
}

/* 📦 PRODUCTS SHOWCASE CONTAINER */
.products-showcase-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 20px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 40px 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(37, 211, 102, 0.08) 100%);
    border-radius: 25px;
    border: 2px solid rgba(212, 175, 55, 0.15);
}

.showcase-title {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #1b2951 0%, #D4AF37 50%, #25D366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 0 4px 8px rgba(212, 175, 55, 0.1);
}

.showcase-subtitle {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0;
    line-height: 1.8;
    font-weight: 600;
}

.showcase-subtitle strong {
    background: linear-gradient(135deg, #D4AF37, #25D366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
}

/* 🎛️ FILTER CONTROLS */
.filter-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    justify-content: center;
    animation: slideInUp 0.5s ease;
}

.filter-btn {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border: 2px solid #D4AF37;
    color: #1b2951;
    padding: 14px 28px;
    border-radius: 20px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #D4AF37, #25D366);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #D4AF37 0%, #FFC700 50%, #FFB700 100%);
    color: #1b2951;
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.4);
    border-color: transparent;
}

.filter-btn:focus {
    outline: 3px solid rgba(212, 175, 55, 0.6);
    outline-offset: 2px;
}

/* 🛍️ PRODUCTS GRID */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 70px;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    border: 2px solid rgba(212, 175, 55, 0.1);
    position: relative;
    animation: slideInUp 0.5s ease forwards;
    opacity: 0;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.2s; }
.product-card:nth-child(3) { animation-delay: 0.3s; }
.product-card:nth-child(n+4) { animation-delay: 0.4s; }

.product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(37, 211, 102, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
    pointer-events: none;
}

.product-card:hover {
    transform: translateY(-12px) rotateX(5deg);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
    border-color: rgba(212, 175, 55, 0.3);
}

.product-card:hover::before {
    opacity: 1;
}

.product-card:focus-within {
    outline: 3px solid rgba(212, 175, 55, 0.6);
    outline-offset: 0;
}

.product-image-container {
    height: 280px;
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    display: block;
}

.product-card:hover .product-image {
    transform: scale(1.08) rotate(2deg);
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 900;
    z-index: 3;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transform: rotate(-5deg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: rotate(-5deg) scale(1); }
    50% { transform: rotate(-5deg) scale(1.05); }
}

.product-info {
    padding: 28px;
    text-align: center;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    z-index: 2;
}

.product-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1b2951;
    margin: 0 0 15px;
    line-height: 1.4;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price {
    font-size: 1.6rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37 0%, #25D366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 12px 0;
}

.original-price {
    text-decoration: line-through;
    color: #e74c3c;
    font-size: 1rem;
    margin-right: 10px;
    font-weight: 700;
}

.product-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 20px;
}

.btn-primary,
.btn-whatsapp {
    padding: 13px 16px;
    border: none;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.9rem;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    color: #1b2951;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: shine-btn 3s infinite;
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #20B358 50%, #1fa34d 100%);
    color: white;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shine-btn 3s infinite;
}

.btn-primary:hover,
.btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.btn-primary:active,
.btn-whatsapp:active {
    transform: translateY(-1px);
}

.btn-primary:focus,
.btn-whatsapp:focus {
    outline: 3px solid rgba(212, 175, 55, 0.6);
    outline-offset: 2px;
}

/* 📍 LOADING MESSAGE */
.loading-message {
    text-align: center;
    padding: 100px 20px;
    font-size: 1.3rem;
    color: #D4AF37;
    grid-column: 1 / -1;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08), rgba(37, 211, 102, 0.08));
    border-radius: 20px;
    border: 2px solid rgba(212, 175, 55, 0.15);
    animation: slideInUp 0.5s ease;
}

.loading-message i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #D4AF37;
    animation: spin 1s linear infinite;
}

.loading-message h3 {
    color: #1b2951;
    margin: 15px 0;
    font-weight: 900;
    font-size: 1.4rem;
}

/* 💚 CHECKOUT CTA */
.checkout-cta {
    text-align: center;
    margin: 70px 0;
    padding: 50px 30px;
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-radius: 25px;
    border: 2px solid rgba(37, 211, 102, 0.15);
    animation: slideInUp 0.5s ease;
}

.checkout-cta h2 {
    color: #1b2951;
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 900;
}

.checkout-cta p {
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.checkout-link {
    background: linear-gradient(135deg, #25D366 0%, #20B358 50%, #1fa34d 100%);
    color: white;
    padding: 20px 45px;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 900;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.35);
    font-family: 'Cairo', sans-serif;
    position: relative;
    overflow: hidden;
}

.checkout-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.2) 50%, transparent 70%);
    animation: shine-btn 3s infinite;
}

.checkout-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #20B358 0%, #1fa34d 50%, #158740 100%);
}

.checkout-link:active {
    transform: translateY(-2px);
}

.checkout-link:focus {
    outline: 3px solid rgba(37, 211, 102, 0.6);
    outline-offset: 3px;
}

/* 🌟 SERVICES SECTION */
.services-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 25px;
    padding: 50px 30px;
    margin: 70px 0;
    text-align: center;
    border: 2px solid rgba(212, 175, 55, 0.15);
    animation: slideInUp 0.5s ease;
}

.services-section h2 {
    font-size: 2.2rem;
    font-weight: 900;
    background: linear-gradient(135deg, #D4AF37 0%, #25D366 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 40px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
    margin-top: 40px;
}

.service-item {
    padding: 35px 25px;
    background: white;
    border-radius: 18px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 2px solid rgba(212, 175, 55, 0.1);
    animation: slideInUp 0.5s ease;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    border-color: rgba(212, 175, 55, 0.3);
}

.service-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, #D4AF37, #25D366);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: bounce 2s infinite;
}

.service-item h4 {
    color: #1b2951;
    font-size: 1.35rem;
    font-weight: 900;
    margin: 20px 0 15px;
    letter-spacing: -0.5px;
}

.service-item p {
    color: #2c3e50;
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 500;
}

/* 🔥 LOAD MORE BUTTON */
.load-more-container {
    display: flex;
    justify-content: center;
    padding: 40px 20px;
    animation: slideInUp 0.5s ease;
}

#loadMoreBtn {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    color: #1b2951;
    padding: 18px 45px;
    border: none;
    border-radius: 20px;
    font-size: 1.1rem;
    font-weight: 900;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    font-family: 'Cairo', sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.35);
    position: relative;
    overflow: hidden;
}

#loadMoreBtn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
    animation: shine-btn 3s infinite;
}

#loadMoreBtn:hover {
    background: linear-gradient(135deg, #FFC700 0%, #B8860B 50%, #8B6508 100%);
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.45);
}

#loadMoreBtn:active {
    transform: translateY(-1px);
}

#loadMoreBtn i {
    animation: bounce 1s infinite;
}

/* 📱 RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 28px;
    }
}

@media (max-width: 768px) {
    .showcase-title {
        font-size: 2.5rem;
    }
    
    .showcase-subtitle {
        font-size: 1.1rem;
    }
    
    .filter-controls {
        gap: 10px;
        margin-bottom: 30px;
    }
    
    .filter-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
        margin-bottom: 50px;
    }
    
    .product-card {
        border-radius: 18px;
    }
    
    .product-image-container {
        height: 220px;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-title {
        font-size: 1rem;
        min-height: 50px;
    }
    
    .product-price {
        font-size: 1.4rem;
    }
    
    .services-grid {
        gap: 20px;
    }
    
    .service-item {
        padding: 25px 20px;
    }
    
    .checkout-link {
        padding: 16px 32px;
        font-size: 1.1rem;
    }
    
    .checkout-cta {
        padding: 40px 20px;
    }
    
    .checkout-cta h2 {
        font-size: 1.7rem;
    }
}

@media (max-width: 480px) {
    .showcase-title {
        font-size: 2rem;
    }
    
    .showcase-header {
        padding: 25px 15px;
        margin-bottom: 30px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-card {
        border-radius: 16px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .product-actions {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .btn-primary,
    .btn-whatsapp {
        padding: 12px 14px;
        font-size: 0.85rem;
    }
    
    .checkout-btn {
        padding: 10px 16px !important;
        font-size: 13px !important;
    }
    
    .banner-text {
        font-size: 0.75rem;
        gap: 6px;
    }
    
    .checkout-link {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* ♿ ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto !important;
    }
}

/* 🖨️ PRINT STYLES */
@media print {
    .progress-bar,
    .header-tools,
    .checkout-cta,
    .filter-controls {
        display: none !important;
    }
    
    body {
        background: white !important;
        color: #000 !important;
    }
}