/* 
 * ستايل متجر هدايا الإمارات - مستوحى من دخون الإماراتية
 * تصميم فاخر وعصري للمتاجر الإلكترونية العربية
 * إصدار موحد v3.0 - تم دمج الملفات المتعددة وتحسين الأداء
 */

/* CSS Variables محسنة */
:root {
    /* الألوان */
    --primary-gold: #D4AF37;
    --light-gold: #FFD700;
    --dark-gold: #B8860B;
    --deep-blue: #1B2951;
    --light-blue: #E8F4FD; 
    --cream: #FFF8DC;
    --white: #FFFFFF;
    --dark-gray: #2C3E50;
    --light-gray: #F8F9FA;
    --text-dark: #2C3E50;
    --text-light: #666666;
    --success-green: #25D366;
    --error-red: #e74c3c;
    
    /* الظلال */
    --shadow-light: rgba(212, 175, 55, 0.1);
    --shadow-medium: rgba(212, 175, 55, 0.2);
    --shadow-dark: rgba(0, 0, 0, 0.15);
    
    /* التدرجات */
    --gradient-gold: linear-gradient(135deg, #FFD700 0%, #D4AF37 50%, #B8860B 100%);
    --gradient-blue: linear-gradient(135deg, #1B2951 0%, #2C3E50 100%);
    --gradient-success: linear-gradient(135deg, #25D366 0%, #20B358 100%);
    
    /* المسافات والأحجام */
    --border-radius: 15px;
    --border-radius-small: 8px;
    --container-width: 1400px;
    --section-padding: 80px;
    
    /* التحولات */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset محسن */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--white);
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* تحسينات الوصول */
:focus-visible {
    outline: 2px solid var(--primary-gold);
    outline-offset: 2px;
    border-radius: var(--border-radius-small);
}

.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* تحسينات اللمس للهواتف الذكية */
button, .btn-primary, .btn-secondary, .btn-add-cart, .btn-whatsapp, .nav-link, .header-tool {
    -webkit-tap-highlight-color: rgba(212, 175, 55, 0.3);
    touch-action: manipulation;
    min-height: 44px;
    min-width: 44px;
}

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

* {
    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: var(--gradient-gold);
    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: var(--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: var(--container-width);
    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: var(--gradient-gold);
    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;
    align-items: center;
}

.nav-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    font-size: 15px;
}

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

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

.english-link {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%) !important;
    color: white !important;
    padding: 10px 18px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(30, 60, 114, 0.3);
    border: 2px solid transparent;
}

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

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

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

.header-tool:hover {
    background: var(--gradient-gold);
    color: #1B2951;
    transform: translateY(-2px);
}

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

/* 🛒 ENHANCED CHECKOUT BUTTON STYLING */
.checkout-btn {
    background: var(--gradient-success) !important;
    color: white !important;
    width: auto !important;
    padding: 12px 24px !important;
    border-radius: var(--border-radius) !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;
    min-width: auto !important;
}

.checkout-btn:hover {
    background: linear-gradient(135deg, #20B358, #1fa34d) !important; /* Darken on hover */
    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;
    right: -5px; /* Adjusted for RTL */
    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;
}

.mobile-menu-toggle {
    display: none;
}

.hero {
    background: linear-gradient(135deg, var(--cream, #FFF8DC) 0%, var(--light-blue, #E8F4FD) 100%);
    padding: 80px 0;
    position: relative;
}

.hero-content {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #1B2951;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero-title span {
    color: var(--primary-gold);
}

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

.hero-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 18px 36px;
    border-radius: var(--border-radius);
    font-weight: 700;
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: 'Cairo', sans-serif;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-gold);
    color: white;
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--deep-blue);
    border: 2px solid #D4AF37;
}

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

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

.hero-visual {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 500px;
    object-fit: contain; /* Changed to contain to show full image */
    border-radius: 20px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.section {
    padding: 80px 0;
}

.section-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.section-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.view-all-link {
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 12px 24px; /* Consistent padding */
    border: 2px solid #D4AF37;
    border-radius: 30px; /* More rounded */
    background: transparent;
}

.view-all-link:hover {
    background: #D4AF37;
    color: white;
    transform: translateY(-2px);
}

.view-all-link:focus {
    outline: 2px solid #1B2951;
    outline-offset: 2px;
}

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

.product-card {
    background: var(--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-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

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

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

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

/* 🔥 ENHANCED VIEW MORE BUTTON STYLING */
.view-more-container {
    text-align: center; /* Ensures button is centered */
    margin: 50px 0;
    padding: 20px;
}

.view-more-button {
    background: linear-gradient(135deg, #D4AF37 0%, #B8860B 50%, #8B6914 100%) !important;
    color: white !important;
    padding: 20px 40px !important;
    border: none !important;
    border-radius: 18px !important;
    font-weight: 800 !important;
    font-size: 1.3rem !important;
    cursor: pointer;
    transition: all 0.4s ease !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 15px !important;
    margin: 0 auto !important;
    font-family: 'Cairo', sans-serif !important;
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4) !important;
    position: relative;
    overflow: hidden;
    min-width: 280px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.view-more-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.view-more-button:hover::before {
    left: 100%;
}

.view-more-button:hover {
    transform: translateY(-5px) scale(1.02) !important;
    box-shadow: 0 20px 50px rgba(212, 175, 55, 0.6) !important;
    background: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #FFD700 100%) !important;
}

.view-more-button:active {
    transform: translateY(-2px) scale(0.98) !important;
}

.view-more-button:focus {
    outline: 3px solid rgba(212, 175, 55, 0.7);
    outline-offset: 3px;
}

.view-more-button i {
    font-size: 1.4rem !important;
    animation: pulse 2s infinite !important;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* تأكيد أن الزر ظاهر حتى لو مخفي */
#perfumes-view-more,
#watches-view-more {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.loading-message {
    text-align: center;
    padding: 60px 20px; /* Reduced padding */
    font-size: 1.2rem;
    color: #D4AF37;
    background: #f8f9fa;
    border-radius: 15px;
    margin: 20px 0;
    grid-column: 1 / -1;
}

.loading-spinner-icon {
    animation: spin 1s linear infinite;
}

.footer {
    background: var(--deep-blue);
    color: white;
    padding: 60px 0 30px;
}

.footer-container {
    max-width: var(--container-width);
    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: var(--primary-gold);
    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: var(--primary-gold);
}

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-link {
    width: 45px;
    height: 45px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center; /* Center icon */
    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;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    color: #ccc;
    font-size: 0.9rem;
}

.footer-link-highlight-gold {
    color: #D4AF37 !important;
    font-weight: bold;
}

.footer-link-highlight-green {
    color: #25D366 !important;
    font-weight: bold;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px; /* Consistent size */
    height: 50px;
    background: linear-gradient(135deg, #D4AF37, #B8860B);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #B8860B, #D4AF37);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.6);
}

.back-to-top:focus {
    outline: 2px solid white;
    outline-offset: 2px;
}

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

/* Enhanced Responsive Design */
@media (max-width: 768px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex !important;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .banner-text {
        font-size: 0.8rem;
        gap: 5px;
    }
    
    .view-more-button {
        padding: 18px 30px !important;
        font-size: 1.1rem !important;
        min-width: 250px !important;
    }
    
    .checkout-btn {
        padding: 10px 18px !important;
        font-size: 14px !important;
    }
}

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

/* Print Styles */
@media print {
    .header-tools,
    .back-to-top,
    .view-more-button,
    .hero-cta {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Styles specific to products-showcase.html */
/* ... (styles for showcase page are fine) ... */

/* Final Responsive Fixes */
@media (max-width: 992px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); }
}

.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: var(--white);
    border: 2px solid #D4AF37;
    color: #D4AF37;
    padding: 12px 22px; /* Adjusted padding */
    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: var(--gradient-gold);
    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;
}

.discount-badge {
    position: absolute;
    top: 15px; /* Consistent spacing */
    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-card .product-title { /* More specific selector */
    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-card .product-price { /* More specific selector */
    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-card .product-actions { /* More specific selector */
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 15px; /* Adjusted margin */
}

.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;
    background: var(--gradient-success);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.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 i {
    font-size: 2.5rem;
    margin-bottom: 15px; /* Adjusted margin */
    color: #D4AF37;
}

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

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

.checkout-cta .checkout-link { /* More specific selector */
    background: var(--gradient-success);
    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-cta .checkout-link:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #20B358, #1fa34d); /* Darken on hover */
}

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

.services-section {
    background: var(--light-gray);
    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: var(--primary-gold);
    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;
}

@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; }
}

/* Mobile Sidebar Styles */
.mobile-sidebar.open { right: 0; }
.mobile-overlay.active { opacity: 1; visibility: visible; }


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