/* Add custom CSS styles *//* 1. توحيد خلفية المتجر والهيدر والفوتر باللون الجديد #BBAA99 */
html, body, #app, .main-content, .app-content, 
section, footer, .main-footer, .site-footer, 
.product-single, .s-product-single, .main-wrapper,
.main-header, .site-header, header, .header-wrapper,
.footer-copyright, .sub-footer, [class*="footer"],
.store-footer-nav {
    background-color: #BBAA99 !important;
    background: #BBAA99 !important;
    border: none !important;
    box-shadow: none !important;
}

/* 2. تلوين أيقونة المنيو (الثلاث خطوط) بالبني الغامق */
.s-hamburger-button span, 
.s-hamburger-button span::before, 
.s-hamburger-button span::after,
.menu-trigger span,
.icon-menu {
    background-color: #4B3A26 !important;
}

/* 3. الأزرار الذهبية الفخمة مع نص بني واضح */
.btn-add-to-cart, .s-button-element, .buy-now-btn, [class*="button"] {
    background: linear-gradient(45deg, #BF953F, #FCF6BA, #B38728) !important;
    border: none !important;
    border-radius: 8px !important;
}

/* نص الأزرار بني غامق */
.btn-add-to-cart *, .s-button-element *, .buy-now-btn *, [class*="button"] * {
    color: #4B3A26 !important;
    -webkit-text-fill-color: #4B3A26 !important;
    font-weight: 800 !important;
}

/* 4. نصوص الوصف والأسعار (بني فخم صريح) */
p, span, h1, h2, h3, .product-details__description *, 
.product-single__title, .product-single__price, .product-single__price * {
    color: #4B3A26 !important;
    -webkit-text-fill-color: #4B3A26 !important;
}

/* 5. حركة اللوقو الهادئة */
@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.header__logo img {
    animation: logoFloat 4s ease-in-out infinite !important;
}

/* 6. كروت المنتجات والفوتر الدائري */
.product-card {
    background-color: #ffffff !important;
    border: 1px solid rgba(116, 95, 63, 0.1) !important;
    border-radius: 12px !important;
}
.main-footer, footer {
    border-radius: 40px 40px 0 0 !important;
}
/* الكود القاتل لتكرار المربع - استهداف مباشر للصور المكررة */
.share-button, .s-product-card-share, .product-share {
    background: #D4AF37 !important; /* لون ذهبي واحد */
    box-shadow: none !important;
    border: none !important;
}

/* إخفاء أي صورة خلفية مكررة يحطها النظام */
.share-button img, .s-product-card-share img, .share-button svg, .s-product-card-share svg {
    filter: brightness(0) !important; /* تحويل الأيقونة للأسود */
    background: none !important;
    box-shadow: none !important;
}

/* مسح الطبقات الشفافة والمكررة نهائياً */
.share-button::before, .share-button::after, 
.s-product-card-share::before, .s-product-card-share::after,
.share-button span {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
}