/* مظهر مستقبلي فاخر لـ 2026 */
:root {
    --luxury-cream: #F9F6F0;
    --luxury-gold: #D4AF37;
    --luxury-dark: #0D0D0D;
    --luxury-muted: #1A1A1A;
    --gold-glow: rgba(212, 175, 55, 0.4);
    --glass-white: rgba(255, 255, 255, 0.75);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Tajawal', sans-serif;
    scroll-behavior: smooth;
}

body {
    background-color: var(--luxury-cream);
    color: var(--luxury-dark);
    overflow-x: hidden;
}

/* 1. شريط الإعلانات الجديد وتأثير تحريك النص */
.announcement-bar {
    background: var(--luxury-dark);
    color: var(--luxury-gold);
    font-size: 13px;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
}

.announcement-track {
    display: flex;
    justify-content: space-around;
    width: 100%;
    font-weight: 500;
}

/* 2. هيدر معلق وشفاف مع دعم الشاشات الكبيرة */
.modern-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: rgba(249, 246, 240, 0.9);
    backdrop-filter: blur(15px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}

.brand-logo {
    font-family: 'Cinzel', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--luxury-dark);
}

.luxury-nav a {
    text-decoration: none;
    color: var(--luxury-dark);
    margin: 0 15px;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
}

.luxury-nav a:hover {
    color: var(--luxury-gold);
}

.cart-trigger {
    background: var(--luxury-dark);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cart-trigger:hover {
    background: var(--luxury-gold);
    transform: scale(1.05);
}

/* 3. واجهة سينمائية متطورة جداً */
.cinematic-hero {
    position: relative;
    height: 80vh;
    background: url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?q=80&w=1600') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(13, 13, 13, 0.75), rgba(13, 13, 13, 0.45));
    z-index: 1;
}

.hero-inner-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
}

.hero-inner-content .sub-title {
    font-family: 'Marcellus', serif;
    color: var(--luxury-gold);
    letter-spacing: 4px;
    font-size: 15px;
    display: block;
    margin-bottom: 20px;
}

.hero-inner-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 52px;
    font-weight: 500;
    margin-bottom: 25px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-inner-content p {
    font-size: 18px;
    font-weight: 300;
    margin-bottom: 40px;
    color: #E0E0E0;
}

.premium-gold-btn {
    display: inline-block;
    padding: 15px 45px;
    border: 1px solid var(--luxury-gold);
    color: white;
    text-decoration: none;
    font-weight: bold;
    letter-spacing: 2px;
    background: linear-gradient(to right, transparent 50%, var(--luxury-gold) 50%);
    background-size: 200% 100%;
    transition: all 0.4s ease;
}

.premium-gold-btn:hover {
    background-position: -100% 0;
    color: var(--luxury-dark);
    box-shadow: 0 0 25px var(--gold-glow);
}

/* 4. قسم مميزات المتجر */
.features-section {
    display: flex;
    justify-content: space-around;
    background: white;
    padding: 40px 8%;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    text-align: center;
}

.feature-item {
    max-width: 250px;
}

.feature-icon {
    font-size: 30px;
    margin-bottom: 10px;
}

.feature-item h4 {
    font-size: 16px;
    margin-bottom: 5px;
    font-weight: bold;
}

.feature-item p {
    font-size: 13px;
    color: #666;
}

/* 5. قسم قصة العلامة التجارية (About Brand) */
.about-brand-section {
    padding: 90px 8%;
    background-color: #F5F1E9;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text-side {
    flex: 1;
}

.gold-tag {
    color: var(--luxury-gold);
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 10px;
}

.about-text-side h2 {
    font-family: 'Cinzel', serif;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text-side p {
    font-size: 15px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 25px;
}

.text-link {
    color: var(--luxury-dark);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
}

.text-link:hover {
    color: var(--luxury-gold);
}

.about-image-side {
    flex: 1;
}

.about-image-side img {
    width: 100%;
    border-radius: 0px;
    border: 1px solid var(--luxury-gold);
    box-shadow: -15px 15px 0px rgba(212, 175, 55, 0.1);
}

/* 6. قسم المنتجات الشبكي الفاخر */
.premium-collection {
    padding: 100px 8%;
}

.container-header {
    text-align: center;
    margin-bottom: 60px;
}

.premium-tag {
    color: var(--luxury-gold);
    letter-spacing: 3px;
    font-size: 14px;
    margin-bottom: 10px;
}

.main-title {
    font-family: 'Cinzel', serif;
    font-size: 36px;
    font-weight: 500;
}

.luxury-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.premium-card {
    background: var(--glass-white);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.premium-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(13,13,13,0.06);
    border-color: var(--luxury-gold);
}

.card-image-box {
    width: 100%;
    height: 400px;
    background-color: #EBE7DF;
    position: relative;
    overflow: hidden;
}

.product-real-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.premium-card:hover .product-real-img {
    transform: scale(1.06);
}

.luxury-badge {
    position: absolute;
    top: 15px; left: 15px;
    background: var(--luxury-dark);
    color: white;
    padding: 5px 12px;
    font-size: 11px;
    z-index: 2;
}

.card-details {
    padding: 25px;
}

.card-details h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.fabric-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 20px;
}

.card-footer-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.premium-price {
    font-size: 21px;
    font-weight: bold;
    color: var(--luxury-gold);
}

.add-to-cart-btn {
    padding: 10px 25px;
    background: var(--luxury-dark);
    color: white;
    border: none;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    background: var(--luxury-gold);
    color: var(--luxury-dark);
}

/* 7. قسم آراء العملاء الجديد */
.testimonials-section {
    padding: 90px 8%;
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--luxury-cream);
    padding: 30px;
    border: 1px solid #EEE;
    border-top: 3px solid var(--luxury-gold);
}

.stars {
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 14px;
    font-style: italic;
    color: #444;
    margin-bottom: 20px;
}

.testimonial-card h5 {
    font-size: 15px;
    font-weight: bold;
}

.user-wilaya {
    font-size: 12px;
    color: #888;
}

/* 8. قسم دفع منقسم وتفاعلي للغاية */
.premium-checkout-section {
    background: var(--luxury-dark);
    color: white;
    padding: 100px 8%;
}

.checkout-split-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-form-side {
    background: var(--luxury-muted);
    padding: 45px;
    border: 1px solid rgba(212, 175, 55, 0.15);
}

.form-title {
    font-family: 'Cinzel', serif;
    margin-bottom: 40px;
    font-size: 26px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 15px;
}

.modern-input-group {
    position: relative;
    margin-bottom: 35px;
}

.modern-input-group input, .modern-input-group select {
    width: 100%;
    padding: 12px 10px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #555;
    color: white;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
}

.modern-input-group input:focus, .modern-input-group select:focus {
    border-bottom-color: var(--luxury-gold);
}

.modern-input-group label {
    position: absolute;
    top: 12px; right: 10px;
    color: #999;
    transition: all 0.3s ease;
    pointer-events: none;
}

.modern-input-group input:focus ~ label,
.modern-input-group input:not(:placeholder-shown) ~ label {
    top: -15px;
    right: 5px;
    font-size: 12px;
    color: var(--luxury-gold);
}

.modern-input-group select option {
    background-color: var(--luxury-muted);
    color: white;
}

.select-label {
    top: -15px !important;
    right: 5px !important;
    font-size: 12px !important;
    color: var(--luxury-gold) !important;
}

.premium-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--luxury-gold);
    color: var(--luxury-dark);
    border: none;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.premium-submit-btn:hover {
    background: white;
    box-shadow: 0 0 20px rgba(255,255,255,0.2);
}

.checkout-summary-side {
    background: rgba(255,255,255,0.03);
    padding: 45px;
    border-left: 2px solid var(--luxury-gold);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.summary-title {
    font-family: 'Cinzel', serif;
    margin-bottom: 30px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
    color: #CCC;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
    padding-bottom: 10px;
}

.gold-text {
    color: var(--luxury-gold);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    font-size: 20px;
    font-weight: bold;
}

.final-total {
    color: var(--luxury-gold);
    font-size: 26px;
    text-shadow: 0 0 10px rgba(212,175,55,0.3);
}

.luxury-footer {
    text-align: center;
    padding: 40px;
    background: #050505;
    color: #555;
    font-size: 13px;
    border-top: 1px solid #111;
}

/* استجابة تامة للهواتف المحمولة */
@media (max-width: 992px) {
    .about-container {
        flex-direction: column-reverse;
    }
    .checkout-split-container {
        grid-template-columns: 1fr;
    }
    .modern-header {
        flex-direction: column;
        gap: 15px;
    }
    .hero-inner-content h1 {
        font-size: 36px;
    }
    .features-section {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
}