:root {
    --primary-gold: #d4af37;
    --accent-blue: #00a3ff;
    --primary-green: #4BA000;
    --dark-text: #2d3436;
    --soft-gold: #fffbeb;
    --bg-dark: #0b0e14;
}

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

body {
    font-family: 'Poppins', 'Cairo', sans-serif;
    background: linear-gradient(135deg, #0b0e14 0%, #1a1f2e 100%);
    color: #fff;
    margin: 0;
    padding: 0;
    min-height: 100vh;
    position: relative;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(212,175,55,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0,163,255,0.08) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
    animation: pulse 15s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.luxury-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
    position: relative;
    z-index: 1;
}

/* الهيدر العلوي المحسّن */
.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    background: rgba(22, 26, 33, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 30px;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
    border: 2px solid rgba(212,175,55,0.3);
    animation: slideDown 0.6s ease;
}

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

.language-switcher {
    display: flex;
    gap: 10px;
}

.lang-btn {
    padding: 10px 18px;
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    color: #fff;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(212,175,55,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.lang-btn:hover::before {
    width: 200px;
    height: 200px;
}

.lang-btn:hover {
    background: rgba(212,175,55,0.2);
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212,175,55,0.3);
}

/* الكارت الرئيسي الخارق */
.business-card {
    background: linear-gradient(135deg, rgba(212,175,55,0.1) 0%, rgba(22,26,33,0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 60px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    border: 2px solid rgba(212,175,55,0.3);
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.8s ease;
}

.business-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

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

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

.store-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 1;
}

.store-header h2 {
    font-family: 'Orbitron', 'Poppins', sans-serif;
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(212,175,55,0.3);
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% { filter: drop-shadow(0 0 10px rgba(212,175,55,0.5)); }
    50% { filter: drop-shadow(0 0 20px rgba(212,175,55,0.8)); }
}

.store-header div {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent, var(--primary-gold), transparent);
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(212,175,55,0.5);
}

/* التوزيع العرضي المحسّن */
.main-content-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr 1.2fr;
    gap: 40px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* تنسيق الأعمدة */
.info-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 25px;
    background: rgba(22, 26, 33, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 25px;
    border: 2px solid rgba(212,175,55,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.4s ease;
}

.info-column:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 40px rgba(212,175,55,0.3);
}

.section-title {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffd700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    border-bottom: 2px solid rgba(212,175,55,0.3);
    padding-bottom: 10px;
    display: inline-block;
}

/* جدول الساعات المحسّن */
#hours-container table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

#hours-container tr {
    border-bottom: 1px solid rgba(255,255,255,0.1);
    transition: all 0.3s ease;
}

#hours-container tr:hover {
    background: rgba(212,175,55,0.1);
}

#hours-container td {
    padding: 12px 0;
}

#hours-container td:first-child {
    font-weight: 600;
    color: #fff;
}

#hours-container td:last-child {
    text-align: right;
}

/* الخريطة المحسّنة */
.map-wrapper {
    position: relative;
}

.map-container {
    width: 100%;
    height: 550px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border: 3px solid rgba(212,175,55,0.3);
    transition: all 0.4s ease;
}

.map-container:hover {
    border-color: var(--primary-gold);
    box-shadow: 0 25px 60px rgba(212,175,55,0.4);
    transform: scale(1.01);
}

.directions-btn {
    display: block;
    margin: 30px auto 0;
    padding: 16px 45px;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffd700 100%);
    color: #000;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    width: fit-content;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(212,175,55,0.4);
    position: relative;
    overflow: hidden;
}

.directions-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.directions-btn:hover::before {
    width: 300px;
    height: 300px;
}

.directions-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212,175,55,0.6);
}

/* معرض الصور الخارق */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    padding: 20px 0;
    margin-top: 20px;
}

.gallery-img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
    border: 2px solid rgba(212,175,55,0.3);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.gallery-img::before {
    content: '🔍';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-img:hover::before {
    opacity: 1;
}

.gallery-img:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(212,175,55,0.5);
    border-color: var(--primary-gold);
    filter: brightness(0.7);
}

/* Lightbox المحسّن */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    cursor: zoom-out;
    animation: fadeIn 0.3s ease;
}

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

.lightbox-content {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 20px;
    border: 3px solid var(--primary-gold);
    box-shadow: 0 0 60px rgba(212,175,55,0.6);
    object-fit: contain;
    animation: zoomIn 0.4s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--primary-gold);
    font-size: 50px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-shadow: 0 0 20px rgba(212,175,55,0.8);
}

.close-btn:hover {
    transform: rotate(90deg) scale(1.2);
    color: #ffd700;
}

/* صندوق العروض */
.aanbiedingen-box-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.aanbiedingen-box {
    display: block;
    background: linear-gradient(135deg, var(--primary-gold) 0%, #ffd700 100%);
    padding: 20px 45px;
    border-radius: 50px;
    font-weight: 900;
    font-size: 1rem;
    color: #000;
    text-decoration: none;
    border: 2px solid transparent;
    box-shadow: 0 10px 30px rgba(212,175,55,0.5);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.aanbiedingen-box::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.aanbiedingen-box:hover::before {
    width: 400px;
    height: 400px;
}

.aanbiedingen-box:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212,175,55,0.7);
    border-color: #fff;
}

/* معلومات الاتصال */
.info-column a[href^="https://wa.me"] img {
    transition: all 0.3s ease;
    filter: drop-shadow(0 5px 10px rgba(37,211,102,0.5));
}

.info-column a[href^="https://wa.me"]:hover img {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 8px 15px rgba(37,211,102,0.8));
}

/* Responsive */
@media (max-width: 1100px) {
    .main-content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .business-card {
        padding: 40px 30px;
    }
    
    .store-header h2 {
        font-size: 2rem;
    }
    
    .map-container {
        height: 400px;
    }
    
    .gallery-img {
        height: 120px;
    }
}

@media (max-width: 768px) {
    .luxury-wrapper {
        padding: 15px;
    }
    
    .top-nav {
        flex-direction: column;
        gap: 15px;
        padding: 15px;
    }
    
    .business-card {
        padding: 30px 20px;
    }
    
    .store-header h2 {
        font-size: 1.5rem;
        letter-spacing: 2px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .info-column {
        padding: 20px;
    }
}
