/* =========================
   LOMIRA BEAUTY - ZID CSS
   تصميم فاخر واحترافي
========================= */

/* الخط العام */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;600;700&display=swap');

body {
    font-family: 'Cairo', sans-serif;
    background: #fff;
    color: #222;
}

/* الهيدر */
.header,
.main-header {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #f3d7df;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* اسم المتجر */
.store-name,
.logo-text {
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #d88aa0;
}

/* القائمة */
.navbar a {
    color: #444 !important;
    font-weight: 600;
    transition: 0.3s ease;
}

.navbar a:hover {
    color: #d88aa0 !important;
}

/* البنر */
.hero-section {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(216,138,160,0.15);
}

/* بطاقات المنتجات */
.product-card {
    border-radius: 22px;
    overflow: hidden;
    background: #fff;
    border: 1px solid #f8dfe6;
    transition: 0.35s ease;
    box-shadow: 0 6px 18px rgba(0,0,0,0.04);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(216,138,160,0.18);
}

/* صور المنتجات */
.product-card img {
    transition: 0.4s ease;
}

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

/* اسم المنتج */
.product-title {
    font-size: 17px;
    font-weight: 700;
    color: #333;
}

/* السعر */
.product-price {
    color: #d88aa0;
    font-size: 20px;
    font-weight: 700;
}

/* زر السلة */
.btn,
button,
.add-to-cart-btn {
    background: linear-gradient(135deg, #e7a6b8, #d88aa0);
    color: white !important;
    border: none;
    border-radius: 14px;
    padding: 12px 24px;
    font-weight: 700;
    transition: 0.3s ease;
    box-shadow: 0 8px 18px rgba(216,138,160,0.25);
}

.btn:hover,
button:hover,
.add-to-cart-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #d88aa0, #c96e89);
    box-shadow: 0 12px 25px rgba(216,138,160,0.35);
}

/* الأقسام */
.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
    position: relative;
}

.section-title::after {
    content: '';
    width: 80px;
    height: 4px;
    background: #d88aa0;
    position: absolute;
    bottom: -10px;
    right: 0;
    border-radius: 20px;
}

/* الفوتر */
footer {
    background: #fff5f8;
    border-top: 1px solid #f3d7df;
    padding: 40px 0;
}

footer p,
footer a {
    color: #777;
}

/* أيقونة السلة */
.cart-icon,
.cart-count {
    background: #d88aa0;
    color: #fff;
    border-radius: 50%;
}

/* البحث */
.search-input {
    border-radius: 14px;
    border: 1px solid #f1cdd7;
    padding: 12px 18px;
}

.search-input:focus {
    border-color: #d88aa0;
    box-shadow: 0 0 0 4px rgba(216,138,160,0.12);
}

/* أنيميشن ناعم */
* {
    scroll-behavior: smooth;
}

/* للجوال */
@media (max-width: 768px) {

    .section-title {
        font-size: 26px;
    }

    .product-card {
        border-radius: 18px;
    }

    .btn,
    button {
        width: 100%;
    }

}
/* ====================================
   الشريط العلوي المتحرك - LOMIRA BEAUTY
==================================== */

/* الشريط العلوي */
.announcement-bar,
.top-bar {
    background: linear-gradient(270deg, #f7d7e0, #e7a6b8, #d88aa0, #f7d7e0);
    background-size: 600% 600%;
    animation: gradientMove 12s ease infinite;
    overflow: hidden;
    position: relative;
    height: 45px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* النص المتحرك */
.announcement-bar p,
.top-bar p,
.marquee-text {
    white-space: nowrap;
    position: absolute;
    color: white;
    font-size: 15px;
    font-weight: 700;
    animation: marqueeMove 18s linear infinite;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* حركة الخلفية */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* حركة النص */
@keyframes marqueeMove {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* تأثير لمعة */
.announcement-bar::before,
.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.18);
    transform: skewX(-25deg);
    animation: shine 5s infinite;
}

@keyframes shine {
    0% {
        right: -100%;
    }

    100% {
        right: 150%;
    }
}

/* للجوال */
@media (max-width: 768px) {

    .announcement-bar,
    .top-bar {
        height: 40px;
    }

    .announcement-bar p,
    .top-bar p,
    .marquee-text {
        font-size: 13px;
    }
/* ====================================
   الشريط العلوي المتحرك - LOMIRA BEAUTY
==================================== */

/* الشريط العلوي */
.announcement-bar,
.top-bar {
    background: linear-gradient(270deg, #f7d7e0, #e7a6b8, #d88aa0, #f7d7e0);
    background-size: 600% 600%;
    animation: gradientMove 12s ease infinite;
    overflow: hidden;
    position: relative;
    height: 45px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}

/* النص المتحرك */
.announcement-bar p,
.top-bar p,
.marquee-text {
    white-space: nowrap;
    position: absolute;
    color: white;
    font-size: 15px;
    font-weight: 700;
    animation: marqueeMove 18s linear infinite;
    text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

/* حركة الخلفية */
@keyframes gradientMove {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* حركة النص */
@keyframes marqueeMove {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* تأثير لمعة */
.announcement-bar::before,
.top-bar::before {
    content: '';
    position: absolute;
    top: 0;
    right: -100%;
    width: 50%;
    height: 100%;
    background: rgba(255,255,255,0.18);
    transform: skewX(-25deg);
    animation: shine 5s infinite;
}

@keyframes shine {
    0% {
        right: -100%;
    }

    100% {
        right: 150%;
    }
}

/* للجوال */
@media (max-width: 768px) {

    .announcement-bar,
    .top-bar {
        height: 40px;
    }

    .announcement-bar p,
    .top-bar p,
    .marquee-text {
        font-size: 13px;
    }

}