/* 🚫 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;
}

body {
    font-family: 'Cairo', 'Segoe UI', sans-serif;
    direction: rtl;
    margin: 0;
    padding: 0;
    background: #ffffff;
    color: #2c3e50;
    line-height: 1.6;
    scroll-behavior: smooth;
}

.progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #D4AF37, #25D366, #C8102E);
    z-index: 9999;
    transition: width 0.2s ease;
}

.top-banner {
    background: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    color: #1B2951;
    padding: 12px 0;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.banner-text {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.header {
    background: white;
    box-shadow: 0 2px 15px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.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: 12px;
    text-decoration: none;
    color: #2c3e50;
}

.logo-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.logo-title {
    font-size: 1.6rem;
    font-weight: 800;
    color: #1B2951;
    line-height: 1;
    margin-bottom: 3px;
}

.logo-subtitle {
    font-size: 0.8rem;
    color: #D4AF37;
    font-weight: 600;
}

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

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover,
.nav-link.active {
    background: rgba(212, 175, 55, 0.1);
    color: #D4AF37;
    transform: translateY(-2px);
}

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

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

.english-link:hover {
    background: linear-gradient(135deg, #2a5298, #1e3c72) !important;
    color: white !important;
}

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

.header-tool {
    width: 50px;
    height: 50px;
    background: #f8f9fa;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2c3e50;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
    font-size: 18px;
}

.header-tool:hover {
    background: linear-gradient(135deg, #FFD700, #D4AF37);
    color: #1B2951;
    transform: translateY(-2px);
}

.header-tool:focus {
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
}

/* 🛒 ENHANCED CHECKOUT BUTTON */
.checkout-btn {
    background: linear-gradient(135deg, #25D366, #20B358) !important;
    color: white !important;
    width: auto !important;
    padding: 12px 24px !important;
    border-radius: 25px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3) !important;
    display: inline-flex !important;
    align-items: center;
    gap: 8px !important;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #20B358, #1fa34d) !important;
    color: white !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5) !important;
}

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

.cart-counter {
    position: absolute;
    top: -5px;
    left: -5px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    min-width: 20px;
    height: 20px;
    font-size: 11px;
    font-weight: bold;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

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

.showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-title {
    font-size: 3rem;
    font-weight: 900;
    color: #1B2951;
    margin-bottom: 20px;
}

.showcase-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.8;
}

.filter-controls {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    background: white;
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 15px 25px;
    border-radius: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

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

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid rgba(212, 175, 55, 0.1);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

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

.product-image-container {
    height: 250px;
    overflow: hidden;
    position: relative;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image {
    transform: scale(1.05);
}

.discount-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(231, 76, 60, 0.3);
}

.product-info {
    padding: 25px;
    text-align: center;
}

.product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 15px 0;
    line-height: 1.4;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: #25D366;
    margin: 15px 0;
}

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

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

.btn-primary,
.btn-whatsapp {
    padding: 12px 16px;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.9rem;
}

.btn-primary {
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

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

.btn-primary:hover,
.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

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

.loading-message {
    text-align: center;
    padding: 80px 20px;
    font-size: 1.2rem;
    color: #D4AF37;
    grid-column: 1 / -1;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid rgba(212, 175, 55, 0.1);
}

.loading-message i {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #D4AF37;
}

.loading-message h3 {
    color: #1B2951;
    margin: 15px 0;
    font-weight: 800;
}

.checkout-cta {
    text-align: center;
    margin: 60px 0;
    padding: 40px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
}

.checkout-link {
    background: linear-gradient(135deg, #25D366, #20B358);
    color: white;
    padding: 20px 40px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
    font-family: 'Cairo', sans-serif;
}

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

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

.services-section {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 20px;
    padding: 40px;
    margin: 60px 0;
    text-align: center;
}

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

.service-item {
    padding: 20px;
}

.service-item i {
    font-size: 2.5rem;
    color: #D4AF37;
    margin-bottom: 15px;
}

.service-item h4 {
    color: #1B2951;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 15px 0 10px;
}

.service-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

.footer {
    background: #1B2951;
    color: white;
    padding: 60px 0 30px;
    margin-top: 80px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section li {
    margin: 12px 0;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-section a:hover {
    color: #D4AF37;
}

.footer-section a:focus {
    color: #D4AF37;
    outline: 2px solid #D4AF37;
    outline-offset: 2px;
    border-radius: 4px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #D4AF37;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #D4AF37;
    color: #1B2951;
    transform: translateY(-3px);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
    color: #ccc;
}

/* Enhanced Mobile Responsive */
@media (max-width: 768px) {
    .showcase-title {
        font-size: 2.2rem;
    }
    
    .main-nav {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .filter-controls {
        gap: 10px;
    }
    
    .filter-btn {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .checkout-link {
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .checkout-btn {
        padding: 10px 18px !important;
        font-size: 14px !important;
    }
    
    .banner-text {
        font-size: 0.8rem;
        gap: 5px;
    }
}

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

/* Animation Keyframes */
@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

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

/* Print Styles */
@media print {
    .header-tools,
    .checkout-cta,
    .services-section {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}