/* ======== RESET ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* ======== BODY ======== */
body {
    background: #F9F9F9; /* لون خلفية المتجر */
    color: #1c1c1c;
    overflow-x: hidden;
}

/* ======== INTRO / LOADING ======== */
#intro {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(249, 249, 249, 0.95);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.5s ease;
}

#intro img {
    width: 200px;
    animation: logoLoad 2s ease-in-out infinite;
}

@keyframes logoLoad {
    0% { transform: scale(0.5) rotate(0deg); opacity: 0; }
    50% { transform: scale(1.1) rotate(10deg); opacity: 1; }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

/* ======== HEADER ======== */
header, .header-auto {
    background: rgba(255,255,255,0.95) !important;
    border-bottom: 1px solid #ccc !important;
}

header a, header .menu-item, .header-auto a {
    color: #1c1c1c !important;
    transition: all 0.3s ease;
}

header a:hover, header .menu-item:hover, .header-auto a:hover {
    color: #d4af37 !important;
    transform: scale(1.1);
}

/* ======== PRODUCT CARDS ======== */
.product-card, .product-item {
    background: #fff !important;
    border: 1px solid #ccc !important;
    border-radius: 15px !important;
    overflow: hidden;
    transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.product-card:hover, .product-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-card img, .product-item img {
    transition: transform 0.5s ease;
}

.product-card:hover img, .product-item:hover img {
    transform: scale(1.05);
}

/* ======== INFO / BUTTONS ======== */
.product-card .info, .product-item .info {
    text-align: center;
}

.product-card .info h3, .product-item .info h3 {
    color: #d4af37 !important;
}

.product-card .info button, .product-item .info button {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    background: #d4af37;
    color: #111;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card .info button:hover, .product-item .info button:hover {
    background: #f5e17a;
}

/* ======== FOOTER ======== */
footer, .footer-auto {
    background: #F9F9F9 !important;
    color: #1c1c1c !important;  /* كل النصوص سوداء داكنة */
    text-align: center !important;
    padding: 30px 0 !important;
}

footer a, .footer-auto a {
    color: #1c1c1c !important; /* روابط سوداء داكنة */
    text-decoration: none !important;
}

footer a:hover, .footer-auto a:hover {
    color: #1c1c1c !important; /* لا يوجد أصفر */
}

/* ======== ADDITIONAL EFFECTS ======== */
.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.7s ease;
}
.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}