/* ============================================
   غشاء رأس الفراش - تصميم فاخر وأنيق
   ============================================ */

/* استيراد خط Tajawal */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&display=swap');

/* متغيرات CSS - لوحة ألوان فاخرة */
:root {
    /* ألوان أساسية فاخرة */
    --royal-purple: #5b21b6;
    --deep-violet: #4c1d95;
    --soft-lavender: #c4b5fd;
    --rose-gold: #f4a4b8;
    --champagne: #f5e6d3;
    --cream: #faf7f5;

    /* ألوان داكنة أنيقة */
    --noir: #0f0f1a;
    --charcoal: #1a1a2e;
    --midnight: #16213e;

    /* ألوان ذهبية */
    --gold: #d4af37;
    --gold-light: #f0d78c;
    --bronze: #cd7f32;

    /* ألوان التأكيد */
    --coral: #ff6b6b;
    --emerald: #10b981;
    --sapphire: #3b82f6;

    /* ظلال وتأثيرات */
    --shadow-soft: 0 4px 20px rgba(91, 33, 182, 0.1);
    --shadow-medium: 0 10px 40px rgba(91, 33, 182, 0.15);
    --shadow-strong: 0 20px 60px rgba(91, 33, 182, 0.2);
    --shadow-glow: 0 0 40px rgba(196, 181, 253, 0.3);

    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 20px;
    --border-radius-sm: 12px;
    --border-radius-lg: 30px;
}

/* إعادة تعيين */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Tajawal', sans-serif;
    background: var(--cream);
    color: var(--charcoal);
    line-height: 1.8;
    direction: rtl;
    text-align: right;
    overflow-x: hidden;
}

/* ============================================
   Header - تصميم زجاجي شفاف
   ============================================ */
.header {
    background: rgba(15, 15, 26, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(196, 181, 253, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 800;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.02);
}

.logo-icon {
    font-size: 2.2rem;
    filter: drop-shadow(0 0 10px rgba(196, 181, 253, 0.5));
}

.nav-badge {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: var(--noir);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {

    0%,
    100% {
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
    }

    50% {
        box-shadow: 0 4px 25px rgba(212, 175, 55, 0.5);
    }
}

/* ============================================
   Hero Section - تأثير درامي
   ============================================ */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--noir) 0%, var(--charcoal) 30%, var(--deep-violet) 70%, var(--royal-purple) 100%);
    display: flex;
    align-items: center;
    padding: 140px 25px 80px;
    position: relative;
    overflow: hidden;
}

/* تأثيرات خلفية متحركة */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 150%;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.08) 0%, transparent 60%);
    animation: float 15s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(244, 164, 184, 0.06) 0%, transparent 60%);
    animation: float 20s ease-in-out infinite reverse;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    25% {
        transform: translate(20px, -30px) rotate(2deg);
    }

    50% {
        transform: translate(-10px, 20px) rotate(-1deg);
    }

    75% {
        transform: translate(30px, 10px) rotate(1deg);
    }
}

/* نجوم متلألئة */
.hero .stars {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(2px 2px at 20% 30%, rgba(255, 255, 255, 0.3), transparent),
        radial-gradient(1px 1px at 40% 70%, rgba(255, 255, 255, 0.2), transparent),
        radial-gradient(1.5px 1.5px at 60% 20%, rgba(255, 255, 255, 0.25), transparent),
        radial-gradient(1px 1px at 80% 50%, rgba(255, 255, 255, 0.15), transparent);
    animation: twinkle 4s ease-in-out infinite;
}

@keyframes twinkle {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 1;
    }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2), rgba(205, 127, 50, 0.2));
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--gold-light);
    padding: 12px 28px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #ffffff 0%, var(--soft-lavender) 50%, var(--rose-gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 60px rgba(196, 181, 253, 0.3);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 35px;
    line-height: 2;
    max-width: 500px;
}

.hero-price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 35px;
    padding: 25px 35px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: fit-content;
}

.price-current {
    font-size: 4.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 20px rgba(212, 175, 55, 0.3));
}

.price-currency {
    font-size: 1.8rem;
    color: var(--gold);
}

.price-old {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    padding: 12px 22px;
    border-radius: 50px;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: var(--transition);
}

.hero-feature:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(196, 181, 253, 0.3);
    transform: translateY(-2px);
}

.hero-feature-icon {
    color: var(--emerald);
    font-weight: bold;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: var(--noir);
    padding: 20px 50px;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: 800;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-primary::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: 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 50px rgba(212, 175, 55, 0.5);
}

.hero-image {
    position: relative;
}

.hero-image::before {
    content: '';
    position: absolute;
    inset: -20px;
    background: linear-gradient(135deg, rgba(196, 181, 253, 0.2), rgba(244, 164, 184, 0.2));
    border-radius: 30px;
    filter: blur(40px);
    z-index: -1;
}

.hero-image img {
    width: 100%;
    max-width: 550px;
    border-radius: 25px;
    box-shadow: var(--shadow-strong);
    transition: var(--transition-slow);
    border: 3px solid rgba(255, 255, 255, 0.1);
}

.hero-image:hover img {
    transform: scale(1.03) rotate(1deg);
    box-shadow: 0 30px 80px rgba(91, 33, 182, 0.3);
}

.image-badge {
    position: absolute;
    bottom: 25px;
    right: 25px;
    background: rgba(255, 255, 255, 0.95);
    padding: 18px 28px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px);
}

.image-badge-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.5));
}

.image-badge-text {
    font-weight: 800;
    color: var(--deep-violet);
    font-size: 1rem;
}

/* ============================================
   Features Section - بطاقات زجاجية
   ============================================ */
.features {
    padding: 120px 25px;
    background: linear-gradient(180deg, var(--cream) 0%, white 50%, var(--cream) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(91, 33, 182, 0.05), transparent);
    border-radius: 50%;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 18px;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--royal-purple), var(--rose-gold));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #6b7280;
    margin-top: 20px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-card {
    background: white;
    padding: 45px 35px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(91, 33, 182, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--royal-purple), var(--rose-gold));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-strong);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--soft-lavender), var(--rose-gold));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    font-size: 2.5rem;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.feature-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 15px;
}

.feature-text {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.8;
}

/* ============================================
   Gallery Section - معرض راقي
   ============================================ */
.gallery {
    padding: 120px 25px;
    background: linear-gradient(180deg, var(--cream) 0%, #f0ebe8 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.gallery-item:hover {
    box-shadow: var(--shadow-strong);
    transform: scale(1.02);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.15);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 15, 26, 0.9) 0%, rgba(91, 33, 182, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 25px;
    opacity: 0;
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay-text {
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay-text {
    transform: translateY(0);
}

/* ============================================
   Order Section - نموذج فخم
   ============================================ */
.order-section {
    padding: 120px 25px;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--deep-violet) 50%, var(--royal-purple) 100%);
    position: relative;
    overflow: hidden;
}

.order-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 70%;
    height: 200%;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.08), transparent 60%);
    animation: float 25s ease-in-out infinite;
}

.order-container {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.order-header {
    text-align: center;
    margin-bottom: 55px;
    color: white;
}

.order-header .section-title {
    color: white;
}

.order-header .section-title::after {
    background: linear-gradient(135deg, var(--gold), var(--rose-gold));
}

.order-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.order-form {
    background: rgba(255, 255, 255, 0.98);
    padding: 55px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.form-group {
    margin-bottom: 28px;
}

.form-label {
    display: block;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
    font-size: 1.05rem;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 18px 24px;
    border: 2px solid #e5e7eb;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1.05rem;
    transition: var(--transition);
    direction: rtl;
    background: #fafafa;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--royal-purple);
    background: white;
    box-shadow: 0 0 0 4px rgba(91, 33, 182, 0.1);
}

.form-textarea {
    min-height: 130px;
    resize: vertical;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 18px;
}

.qty-btn {
    width: 55px;
    height: 55px;
    border: 2px solid #e5e7eb;
    background: white;
    border-radius: var(--border-radius-sm);
    font-size: 1.6rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--charcoal);
}

.qty-btn:hover {
    background: linear-gradient(135deg, var(--royal-purple), var(--deep-violet));
    border-color: var(--royal-purple);
    color: white;
    transform: scale(1.05);
}

.qty-input {
    width: 85px;
    text-align: center;
    font-size: 1.3rem;
    font-weight: 800;
}

.order-summary {
    background: linear-gradient(135deg, #faf5ff, #fdf2f8);
    padding: 30px;
    border-radius: var(--border-radius-sm);
    margin-bottom: 30px;
    border: 1px solid rgba(91, 33, 182, 0.1);
}

.order-summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: #4b5563;
}

.order-summary-row:last-child {
    margin-bottom: 0;
    padding-top: 18px;
    border-top: 2px dashed rgba(91, 33, 182, 0.2);
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--royal-purple);
}

.btn-submit {
    width: 100%;
    padding: 22px;
    background: linear-gradient(135deg, var(--royal-purple), var(--deep-violet));
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1.35rem;
    font-weight: 800;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    position: relative;
    overflow: hidden;
}

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

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(91, 33, 182, 0.4);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ============================================
   Footer - تذييل أنيق
   ============================================ */
.footer {
    background: var(--noir);
    padding: 60px 25px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-size: 1.7rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}

.footer-text {
    margin-bottom: 12px;
    font-size: 1rem;
}

.footer-links {
    margin-top: 25px;
}

.footer-link {
    color: var(--soft-lavender);
    text-decoration: none;
    margin: 0 18px;
    transition: var(--transition);
    font-weight: 500;
}

.footer-link:hover {
    color: white;
}

.footer-copyright {
    display: block;
    margin-top: 25px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-copyright:hover {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================
   Success Modal - نافذة نجاح فاخرة
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 15, 26, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 25px;
    backdrop-filter: blur(10px);
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: white;
    padding: 60px;
    border-radius: var(--border-radius-lg);
    text-align: center;
    max-width: 480px;
    width: 100%;
    animation: modalIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.85) translateY(60px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--emerald), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 3.5rem;
    color: white;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    animation: successPulse 2s infinite;
}

@keyframes successPulse {

    0%,
    100% {
        box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    }

    50% {
        box-shadow: 0 10px 50px rgba(16, 185, 129, 0.5);
    }
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--charcoal);
    margin-bottom: 18px;
}

.modal-text {
    color: #6b7280;
    margin-bottom: 35px;
    line-height: 2;
    font-size: 1.1rem;
}

.modal-btn {
    display: inline-block;
    padding: 18px 50px;
    background: linear-gradient(135deg, var(--royal-purple), var(--deep-violet));
    color: white;
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.modal-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(91, 33, 182, 0.3);
}

/* ============================================
   Admin Page Styles - لوحة تحكم فاخرة
   ============================================ */
.admin-header {
    background: linear-gradient(135deg, var(--charcoal), var(--deep-violet));
    padding: 35px 25px;
    color: white;
}

.admin-header-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-title {
    font-size: 2rem;
    font-weight: 800;
}

.admin-back-link {
    color: var(--soft-lavender);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    font-weight: 500;
}

.admin-back-link:hover {
    color: white;
}

.admin-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 50px 25px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 50px;
}

.stat-card {
    background: white;
    padding: 35px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 22px;
    transition: var(--transition);
    border: 1px solid rgba(91, 33, 182, 0.05);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.stat-icon {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
}

.stat-icon.orders {
    background: linear-gradient(135deg, var(--royal-purple), var(--deep-violet));
    color: white;
}

.stat-icon.revenue {
    background: linear-gradient(135deg, var(--emerald), #059669);
    color: white;
}

.stat-icon.pending {
    background: linear-gradient(135deg, var(--gold), var(--bronze));
    color: white;
}

.stat-icon.today {
    background: linear-gradient(135deg, var(--rose-gold), #ec4899);
    color: white;
}

.stat-info h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--charcoal);
}

.stat-info p {
    color: #6b7280;
    font-size: 0.95rem;
}

.orders-section {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    border: 1px solid rgba(91, 33, 182, 0.05);
}

.orders-header {
    padding: 28px 35px;
    background: linear-gradient(135deg, #faf5ff, #fdf2f8);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(91, 33, 182, 0.1);
}

.orders-title {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--charcoal);
}

.orders-actions {
    display: flex;
    gap: 18px;
}

.btn-action {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-export {
    background: linear-gradient(135deg, var(--royal-purple), var(--deep-violet));
    color: white;
}

.btn-export:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(91, 33, 182, 0.3);
}

.btn-clear {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
}

.btn-clear:hover {
    background: #dc2626;
    color: white;
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: 20px 28px;
    text-align: right;
    border-bottom: 1px solid #f3f4f6;
}

.orders-table th {
    background: #fafafa;
    font-weight: 700;
    color: #6b7280;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.orders-table tr:hover {
    background: #faf5ff;
}

.order-status {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
}

.order-status.pending {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #d97706;
}

.order-status.confirmed {
    background: linear-gradient(135deg, #d1fae5, #a7f3d0);
    color: #059669;
}

.btn-delete {
    padding: 10px 18px;
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid rgba(220, 38, 38, 0.2);
    border-radius: var(--border-radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-delete:hover {
    background: #dc2626;
    color: white;
}

.empty-state {
    padding: 100px 25px;
    text-align: center;
    color: #9ca3af;
}

.empty-state-icon {
    font-size: 5rem;
    margin-bottom: 25px;
}

.empty-state-text {
    font-size: 1.3rem;
}

/* ============================================
   Responsive Design
   ============================================ */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .hero-price {
        justify-content: center;
        margin: 0 auto 35px;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-image {
        order: -1;
    }

    .hero-image img {
        max-width: 420px;
        margin: 0 auto;
        display: block;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 12px;
    }

    .nav-badge {
        font-size: 0.85rem;
        padding: 8px 20px;
    }

    .hero {
        padding: 110px 20px 50px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .price-current {
        font-size: 3.5rem;
    }

    .hero-feature {
        font-size: 0.85rem;
        padding: 10px 18px;
    }

    .btn-primary {
        padding: 18px 38px;
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-card {
        padding: 35px 28px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .order-form {
        padding: 35px 25px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .orders-header {
        flex-direction: column;
        gap: 18px;
    }

    .orders-table {
        display: block;
        overflow-x: auto;
    }

    .admin-header-content {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.9rem;
    }

    .price-current {
        font-size: 3rem;
    }

    .hero-price {
        padding: 20px 25px;
    }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-image img {
        max-width: 100%;
    }

    .modal {
        padding: 40px 25px;
    }

    .modal-icon {
        width: 90px;
        height: 90px;
        font-size: 2.8rem;
    }

    .modal-title {
        font-size: 1.6rem;
    }
}