.glass-header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
}
.gold-gradient-text {
    background: linear-gradient(to right, #d4af37, #f3e5ab, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.gold-border-hover:hover {
    border-color: #d4af37;
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}
/* assets/css/style.css */

/* ===== Base Styles ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cairo', sans-serif;
    background: #0a0a0a;
    color: #fffff0;
    overflow-x: hidden;
}

/* ===== Typography ===== */
.gold-gradient-text {
    background: linear-gradient(to right, #d4af37, #f3e5ab, #d4af37);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-premiumGold {
    color: #d4af37;
}
.text-goldLight {
    color: #f3e5ab;
}
.bg-premiumGold {
    background-color: #d4af37;
}
.bg-premiumBlack {
    background-color: #0a0a0a;
}
.border-premiumGold {
    border-color: #d4af37;
}

/* ===== Header ===== */
.glass-header {
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ===== Hero Section ===== */
.parallax-bg {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* ===== Cards & Hover Effects ===== */
.gold-border-hover:hover {
    border-color: #d4af37 !important;
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.2);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

/* ===== Gallery ===== */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.gallery-item img {
    transition: transform 0.5s ease;
}

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

.gallery-item .overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: flex-end;
    padding: 20px;
}

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

/* ===== Products ===== */
.product-card {
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
}

.product-card:hover {
    border-color: #d4af37;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(212, 175, 55, 0.1);
}

.product-card img {
    transition: transform 0.7s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

/* ===== Buttons ===== */
.btn-gold {
    background: #d4af37;
    color: #0a0a0a;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-gold:hover {
    background: #f3e5ab;
    transform: scale(1.05);
}

.btn-outline-gold {
    background: transparent;
    color: #d4af37;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: bold;
    border: 2px solid #d4af37;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-outline-gold:hover {
    background: #d4af37;
    color: #0a0a0a;
    transform: scale(1.05);
}

/* ===== Admin Sidebar ===== */
.admin-sidebar {
    background: #0a0a0a;
    border-left: 1px solid rgba(255,255,255,0.1);
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: 260px;
    overflow-y: auto;
    z-index: 100;
}

.admin-sidebar::-webkit-scrollbar {
    width: 4px;
}

.admin-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.admin-sidebar::-webkit-scrollbar-thumb {
    background: #d4af37;
    border-radius: 10px;
}

.admin-nav-item {
    display: block;
    padding: 12px 20px;
    border-radius: 10px;
    color: #9ca3af;
    transition: all 0.3s ease;
    font-weight: 600;
}

.admin-nav-item:hover {
    background: rgba(212, 175, 55, 0.1);
    color: #d4af37;
}

.admin-nav-item.active {
    background: rgba(212, 175, 55, 0.15);
    color: #d4af37;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .admin-sidebar {
        width: 100%;
        height: auto;
        position: relative;
        border-left: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }
    
    .admin-main {
        margin-right: 0 !important;
    }
    
    .glass-header {
        padding: 10px 0;
    }
    
    .hero-title {
        font-size: 2rem !important;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulseGold {
    0%, 100% {
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(212, 175, 55, 0.4);
    }
}

.pulse-gold {
    animation: pulseGold 2s ease-in-out infinite;
}

/* ===== Utilities ===== */
.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* ===== Selection ===== */
::selection {
    background: #d4af37;
    color: #0a0a0a;
}

/* ===== Loading Spinner ===== */
.spinner {
    border: 3px solid rgba(255,255,255,0.1);
    border-top: 3px solid #d4af37;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
}
.qr-container {
    display: inline-block;
    padding: 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
}

.qr-container:hover {
    border-color: #d4af37;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
    transform: translateY(-5px);
}

.qr-container img {
    display: block;
    margin: 0 auto;
}

.qr-label {
    font-size: 11px;
    color: #9ca3af;
    margin-top: 8px;
    text-align: center;
    letter-spacing: 0.5px;
}

/* ===== QR في التذييل ===== */
.footer-qr {
    display: inline-block;
    padding: 8px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.footer-qr:hover {
    border-color: #d4af37;
    transform: scale(1.05);
}

.footer-qr img {
    width: 120px;
    height: 120px;
    object-fit: contain;
}

@media (max-width: 640px) {
    .footer-qr img {
        width: 80px;
        height: 80px;
    }
}

/* ===== طباعة QR ===== */
@media print {
    .qr-container {
        border: 1px solid #d4af37 !important;
        background: white !important;
        padding: 20px !important;
    }
    .qr-container img {
        max-width: 300px !important;
        height: auto !important;
    }
    .qr-label {
        color: #333 !important;
    }
}
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
html[dir="rtl"] .en-only { display: none; }
html[dir="ltr"] .ar-only { display: none; }