/* تحسين الخطوط */
body {
    font-family: 'Cairo', sans-serif;
    background-color: #f8f5f0;
    color: #333;
}



/* تخصيص أزرار المتجر */
button, .btn, .salla-btn {
    background: linear-gradient(135deg, #a67b5b, #7b4d35);
    color: #fff !important;
    border-radius: 8px;
    transition: all 0.3s ease-in-out;
}

button:hover, .btn:hover, .salla-btn:hover {
    background: linear-gradient(135deg, #7b4d35, #a67b5b);
    transform: scale(1.05);
}

/* تأثير hover على المنتجات */
.product-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.product-card:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* تحسين العناوين */
h1, h2, h3, h4 {
    font-weight: bold;
    color: #4a3f35;
}

/* تخصيص ألوان روابط المتجر */
a {
    color: #a67b5b;
    transition: color 0.3s ease-in-out;
}

a:hover {
    color: #7b4d35;
}

/* تحسين أقسام العطور */
.section-title {
    font-size: 22px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 2px solid #a67b5b;
    padding-bottom: 10px;
    display: inline-block;
}

/* تأثير ظهور تدريجي */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s ease-in-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

}

img.loaded {
    opacity: 1;
}