/* ===========================
   High End - الأنماط الأساسية
   =========================== */

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

body {
    background-color: #050505;
    color: #ffffff;
    font-family: 'Tajawal', sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* شريط التمرير */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #d4af37; border-radius: 3px; }

/* عناوين الأقسام */
.section-title {
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}
.section-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60px;
    height: 2px;
    background: #d4af37;
}

/* حركة شريط الإعلانات */
.announcement-track {
    display: inline-block;
    white-space: nowrap;
    width: max-content;
    animation: marquee 32s linear infinite;
    will-change: transform;
}
.announcement-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-inline: 40px;
}
.announcement-track:hover { animation-play-state: paused; }
@keyframes marquee {
    0% { transform: translate3d(0,0,0); }
    100% { transform: translate3d(-100%,0,0); }
}

/* نبض زر واتساب */
@keyframes pulse-whatsapp {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}
.whatsapp-float { animation: pulse-whatsapp 2s infinite; }

/* ========= السلايدر ========= */
#slider-wrapper {
    position: relative;
    width: 100%;
    height: 70vh;
    min-height: 420px;
    max-height: 720px;
    overflow: hidden;
}
.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease;
}
.slide.active {
    opacity: 1;
    visibility: visible;
}

/* ========= صفحة المنتج ========= */
.img-zoom-container { overflow: hidden; border-radius: 1rem; }
.img-zoom-container img { transition: transform 0.5s ease; }
.img-zoom-container:hover img { transform: scale(1.1); }

.thumb-active { border-color: #d4af37 !important; opacity: 1 !important; }
.swatch-active { border-bottom: 2px solid #d4af37 !important; opacity: 1 !important; }

/* إخفاء أسهم حقول الأرقام */
input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }
input[type=number] { -moz-appearance: textfield; }

/* الأكورديون */
.accordion-content {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
}
.accordion-content.expanded { max-height: 1000px; opacity: 1; }

/* ========= السلة الجانبية ========= */
#cart-sidebar { left: -450px; transition: left 0.4s ease; }
#cart-sidebar.open { left: 0; }
#cart-overlay { transition: opacity 0.4s ease; }
