/* للكود البسيط (simple-details) */
.s-product-card-image .simple-details ~ .s-product-card-content,
.s-product-card-image .simple-details + * .s-product-card-content { }

/* استخدام بديل عملي: اختفاء المحتوى في الكارد لو الكارد يحتوى overlay */
.s-product-card-image .simple-details,
.s-product-card-image .s-box-details { /* فقط تعريف لوجود العنصر */ }

/* نستخدم selector على مستوى الـ entry: لو الصورة تحوي detail نخفى المحتوى الاصلي */
.s-product-card-image:has(.simple-details) ~ .s-product-card-content,
.s-product-card-image:has(.s-box-details) ~ .s-product-card-content,
.s-product-card-image:has(.simple-details) + .s-product-card-content,
.s-product-card-image:has(.s-box-details) + .s-product-card-content {
  display: none !important;
}

/* ملاحظة: :has() مدعوم في معظم المتصفحات الحديثة، لكن لو المتصفح قديم يمكن استخدام الخيار الأول العام */

/* ===== 🌙 DARK MODE ===== */
body.dark-mode {
  --main-color: #F60B8A;
  --second-color: #B8326A;
  --third-color: #1E1E1E;
  --fourth-color: #121212;
  --body: #121212;
  background-color: var(--body);
  color: var(--main-color);
}

body.dark-mode .bg-inherit,
body.dark-mode .main-nav-container,
body.dark-mode header.store-header,
body.dark-mode .top-navbar {
  background: var(--fourth-color);
}

body.dark-mode .main-menu li.root-level>a {
  color: var(--main-color);
}

body.dark-mode .main-menu li.root-level>a:hover {
  background-color: var(--second-color);
  color: var(--fourth-color);
}

body.dark-mode .s-product-card-entry {
  background-color: rgba(20, 20, 20, 0.4) !important;
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.05);
}

body.dark-mode .testimonial-card {
  background-color: #1e1e1e;
  color: var(--main-color);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.05);
}

body.dark-mode .s-button-btn {
  background-color: var(--second-color);
  color: var(--fourth-color);
}

/* Add custom CSS styles below */ 
@import url('https://fonts.googleapis.com/css2?family=Cairo&display=swap');
/* زر العودة للأعلى */
body.dark-mode #backToTop .icon {
  color: var(--second-color);
}
body.dark-mode .circle {
  stroke: var(--second-color);
}

.tamara-summary-widget__container .summary-widget-content
Specificity: (0,2,0)
 {
    display: flex
;
    width: 100%;
    color: white;
}

/* Add custom CSS styles below */ 

/* ============ 🌐 GLOBAL VARIABLES ============== */
:root {
    --main-color: #f0e2e9;
    --second-color: #ffffff;
    --third-color: #ffffff; 
    --fourth-color: #fff;
    --orange-color:#fcffff;
    --body: #000000;
    --logo: url(https://cdn.salla.sa/cdn-cgi/image/fit=scale-down,width=400,height=400,onerror=redirect,format=auto/mraRz/HBeSCHZ5uI4Lb4bZvNBBfb8EhXjF0RnJSFWw22zB.png);
}
/* ========== ✨ GENERAL RESET =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
/*pading left and right*/
.s-block,
.banner-entry {
  padding: 0 1rem;
}
/* ============= 📜 SCROLLBAR STYLING ============ */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
body {
  font-family: 'Cairo', sans-serif;
    /* bg img */
/*  background-image: url(https://i.postimg.cc/NjdzH79N/image.png) !important; */
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
}
/* ==================== 🎨 BODY FONT ==================== */
body,
h1, h2, h3, h4, h5, h6,
button, input, textarea {
  font-family: 'Cairo', sans-serif;
}

::-webkit-scrollbar-track-piece {
    background-color: var(--body);
    -webkit-border-radius: 0;
}
.flex-col {
    background: #000000 !important;
}
::-webkit-scrollbar-thumb:vertical {
    height: 200px;
    background-color: var(--main-color);
    -webkit-border-radius: 0;
}

::-webkit-scrollbar-thumb:vertical:hover {
    background-color: var(--second-color);
}

::-webkit-scrollbar-thumb:horizontal {
    width: 200px;
    background-color: var(--body);
    -webkit-border-radius: 0;
}

::selection {
    color: var(--third-color);
    background: var(--second-color);
}


.s-block {
    margin-top: 2rem;
    background: unset;
}

.loader-init {
    display: none !important;
}
/* =============== 🔝 NAVBAR STYLING ============= */
/* ----- start nav -----*/

.bg-inherit {
    background: #000000;
}

.main-nav-container {
    min-height: 70px;
    background: var(--fourth-color);
    box-shadow: none;
}

@media (min-width: 1024px) {
    .main-nav-container {
        min-height: 100px;
        background: var(--fourth-color);
        box-shadow: none;
    }
}

header.store-header {
    background: #000000;
}

.top-navbar {
    background: unset;
}

.s-contacts-topnav-link:last-child:where([dir=rtl], [dir=rtl] *) {
    display: none;
}

@media only screen and (min-width: 1024px) {
    .main-menu li.root-level > a {
        color: var(--main-color);
        position: relative;
        display: inline-block;
        padding: 10px 15px;
        text-decoration: none;
        transition: all 0.3s ease-in-out;
    }

    .main-menu li.root-level>a:after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 2px;
        background-color: var(--second-color);
        transition: width 0.3s ease-in-out;
    }

    .main-menu li.root-level>a:hover {
        color: var(--third-color);
        /* تغيير اللون */
        background-color: var(--main-color);
        /* لون خلفية مختلف */
        transform: translateY(-5px);
        /* رفع العنصر لفوق */
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        /* إضافة ظل */
        border-radius: 3px 3px 0px 0px;
    }

    .main-menu li.root-level>a:hover::after {
        width: 100%;
        /* الخط يظهر بالكامل عند hover */
    }
}

.sicon-user-circle {
    color: var(--main-color);
    border: none;
}

.sicon-user-circle:hover {
    color: var(--second-color);
}

.header-btn__icon.icon:where([dir=rtl], [dir=rtl] *) {
    color: var(--main-color) !important;
    border: none;
}

.header-btn__icon.icon:hover {
    color: var(--second-color) !important;
}

.sicon-shopping-bag:before {
    content: "\e901";
    text-align: center;
}

.sicon-user-circle:before {
    content: "\f077";
    text-align: center;
}

i.text-base.sicon-shopping-bag:before {
    content: "\ea6e";
    text-align: center;
}

.s-cart-summary-total {
    color: var(--main-color);
}

.sicon-menu {
    color: var(--main-color);
}

.sicon-menu:hover {
    color: var(--second-color);
}

.s-contacts-topnav-link:where([dir=rtl], [dir=rtl] *) {
    color: var(--main-color);
}

.s-contacts-topnav-link:hover {
    color: var(--second-color);
}

.topnav-link-item:last-child:where([dir=rtl], [dir=rtl] *) {
    color: var(--main-color);
}

.topnav-link-item:last-child:hover {
    color: var(--second-color);
}

.topnav-link-item.right-side:first-child:where([dir=rtl], [dir=rtl] *) {
    color: var(--main-color);
}

.topnav-link-item.right-side:first-child:hover {
    color: var(--second-color);
}

.s-search-icon svg {
    fill: var(--main-color);
}

.s-cart-summary-count {
    background-color: var(--second-color);
}

.top-navbar .s-search-input {
    border-style: none;
    background: var(--third-color);
    box-shadow: 1px 1px 5px var(--main-color);
}

.s-user-menu-trigger {
    background: transparent;
}
.navbar-brand {
  display: flex;
  align-items: center;
}

.navbar-brand img {
  max-height: 8rem;
  display: block;
}
/*----- end nav -----*/
/* ============== 📱 SIDEBAR & MENU ===============*/
/*----- start sidebar -----*/

@media only screen and (max-width: 1024px) {
    .mm-spn.mm-spn--navbar.mm-spn--main:where([dir=rtl], [dir=rtl] *):after {
        padding-right: .75rem;
        color: var(--third-color);
    }
    
}

.mm-spn.mm-spn--navbar ul {
    top: calc(50px + 1px);
    top: calc(var(--mm-spn-item-height) + 1px);
    color: var(--third-color);
    background: none;
}

@media only screen and (max-width: 1024px) {
    .mm-spn li a span:hover {
        padding: 0;
        color: var(--main-color);
        background: none;

    }
}

[dir=rtl] .mm-spn.mm-spn--navbar.mm-spn--main:after {
    padding-right: 0.75rem;
    content: "";
    background: none;
    text-align: center !important;
    display: block;
    height: 90px !important;
    background-image: var(--logo) !important;
    background-size: contain !important;
    background-repeat: no-repeat !important;
    background-position: top center !important;
    margin: 30px 50px 11px 50px;
}

/* Navbar Menu Adjustments */
@media (max-width: 650px) {
    ul.main-menu.mm-spn--open {
        margin-top: 100px;
        background: none;
    }
}

.mm-spn.mm-spn--navbar ul::before {
    content: "";
    display: block;
    position: fixed;
    z-index: 2;
    width: 100%;
    opacity: 0;
}

/* Content Styling */
.mm-ocd__content {
    background: #d2ddebb8;
}

@media only screen and (max-width: 1024px) {
    .mm-ocd__content {
        overflow-y: auto;
        min-width: 100% !important;
    }

    .mm-spn li a,
    .mm-spn li>span {
        padding: 18px;
        display: flex;
        gap: 1rem;
        margin: 7px;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .mm-spn li a span {
        padding: 0;
        font-size: 15px;
        color: var(--main-color);
    }

    .mm-spn.mm-spn--light {
        color: var(--main-color);
                background:var(--third-color);
    }


}

/* Cancel Icon */
.sicon-cancel::before {
    content: "\ea47";
    color: var(--main-color);
    font-size: 25px;
}

/* Navbar Positioning */
@media (min-width: 991px) {
    .mm-spn.mm-spn--navbar ul {
        top: calc(var(--mm-spn-item-height) + 80px);
    }
}

@media (min-width: 650px) {
    .mm-spn.mm-spn--navbar ul {
        top: calc(var(--mm-spn-item-height) + 100px);
    }
}

/* Close Button */
.btn--close-sm {
    background-color: transparent;
}


/* Section Styling */
section:nth-of-type(40) {
    width: 100%;
    padding: 0 !important;
    padding-top: 40px !important;
    padding-right: 10px !important;
}

section:nth-of-type(40) .lazy__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100% !important;
    background-size: 100% 100% !important;
    background-position: center;
}

.s-product-card-image-contain {
    object-fit: cover;
}

.container {
    max-width: 1500px;
    background-color: black;
}

/*----- end sidebar -----*/
/* ==================== 🖼️ CONTENT & BANNERS ==================== */
/*----- start content -----*/

.banner-entry {
    width: 50vw;
    min-height: 200px;
    background: unset;
}

@me.banner-entry {
  width: 100%;
  min-height: 200px;
  background: unset;
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.banner-entry.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.lazy__bg {
  position: relative;
  overflow: hidden;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  transition: transform 0.4s ease;
}

/* زر "تسوق الآن" – مخفي مبدئيًا */
.lazy__bg::after {
  content: "تسوق الآن";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--main-color, #4caf50);
  color: white;
  padding: 8px 20px;
  font-size: 15px;
  border-radius: 30px;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
  z-index: 2;
}

/* تأثير الظهور عند الهوفر فقط على الشاشات الكبيرة */
@media (min-width: 768px) {
  .banner-entry {
    width: 42vw;
    min-height: 350px;
  }

  .lazy__bg:hover::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.05);
  }

  .lazy__bg:hover {
    transform: scale(1.05);
  }
}



.gap-3 {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;

}

@media only screen and (max-width: 600px) {
    .banner-entry {
        height: auto;
    }
}

@media (min-width: 768px) {
    .two-row .banner-entry:first-child {
        height: auto !important;
    }
}

.s-slider-block__display-all {
    display: inline-block;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: #414042;
    color: var(--color-primary);
    color: var(--main-color);
}

.s-slider-block__display-all:hover {
    display: inline-block;
    font-size: .875rem;
    line-height: 1.25rem;
    font-weight: 700;
    color: #414042;
    color: var(--color-primary);
    color: var(--second-color);
}

a.s-block__display-all {
    color: var(--main-color);
}

a.s-block__display-all:hover {
    color: var(--second-color);
}
.s-slider-block__title-right h2,
.s-reviews-header  {
  color: var(--main-color);
  font-size: 2em;
  font-weight: 900;
  margin: 0;
  padding-bottom: 8px;
  position: relative;
  display: inline-block;
  animation: fadeInDown 0.7s ease-out;
}

/* خط تحت العنوان */
.s-slider-block__title-right h2:after,.s-reviews-header::after  {
  content: "";
  position: absolute;
  bottom: -6px; /* مسافة صغيرة تحت النص */
  right: 0;
  width: 50%; /* ✅ الخط من الأول */
  height: 5px;
  border-radius: 50px;
  background: linear-gradient(90deg, var(--main-color), var(--second-color));
  animation: lineGlow 1.2s ease-out;
  box-shadow: 0 0 10px rgba(0,0,0,0.08);
}

/* ✨ حركة لمعة بسيطة */
@keyframes lineGlow {
  0% {
    opacity: 0;
    transform: scaleX(0);
  }
  60% {
    opacity: 1;
    transform: scaleX(1.1);
  }
  100% {
    opacity: 1;
    transform: scaleX(1);
  }
}
.s-slider-block__title-right h2::after,
.s-reviews-header::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  height: 5px;
  width: 100%;
  background: linear-gradient(90deg, var(--main-color), var(--second-color));
  border-radius: 50px;
  transform: scaleX(1);
  transform-origin: right;
  transition: transform 0.9s ease-in-out, box-shadow 0.9s ease-in-out; 
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.08);
}

/* 👇 تأثير hover أكبر وأبطأ */
.s-slider-block__title-right h2:hover::after,
.s-reviews-header:hover::after {
  transform: scaleX(1.8); /* أكبر تمدد */

}
.s-reviews-testimonial{
 background-color: var(--body);
}

.banner--fixed img {
    display: block;
    width: 100%;
    border-radius: .375rem;
    border-style: none;
    --tw-bg-opacity: 1;
    background-color: #f3f4f6;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
    -o-object-fit: cover;
    object-fit: cover;
    background: none;
}

.s-breadcrumb-item {
    display: inline-block;
    color: var(--main-color);
}

.s-breadcrumb-item:hover {
    display: inline-block;
    color: var(--second-color);
}

.s-breadcrumb-primary-reverse li {
    color: var(--second-color);
    opacity: 0.8;
}

.s-breadcrumb-primary-reverse li:hover {
    color: var(--second-color);
    opacity: 0.8;
}

.profile-header .breadcrumbs a {
    color: var(--second-color);
}

.profile-header .breadcrumbs a:hover {
    color: var(--second-color);
}

.btn--outline-primary {
    border-width: 1px;
    border-color: #414042;
    border-color: var(--main-color);
    color: #414042;
    color: var(--main-color);
}

.no-content-placeholder .icon {
    margin-bottom: 1rem;
    display: flex;
    height: 8rem;
    width: 8rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: #f3f4f6;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
    font-size: 3rem;
    line-height: 1;
    --tw-text-opacity: 1;
    color: #d1d5db;
    color: var(--third-color);
    background: var(--main-color);
}

.no-content-placeholder p {
    margin-bottom: 1rem;
    font-size: 1rem;
    line-height: 1.5rem;
    --tw-text-opacity: 1;
    color: #6b7280;
    color: rgba(107, 114, 128, var(--tw-text-opacity));
    color: var(--main-color);
}

.rtl\:pl-3:where([dir=rtl], [dir=rtl] *) {
    padding-left: .75rem;
    color: var(--third-color);
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
    color: var(--third-color);
    background: var(--main-color);
    padding: 5px;
    border-radius: 30px;
    text-align: center;
}

.px-5 {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
    color: #d55530;
}

span.text-gray-500.line-through {
    color: var(--second-color);
}

.product__description a {
    --tw-text-opacity: 1;
    color: var(--main-color);
    color: rgba(29, 78, 216, var(--tw-text-opacity));
    color: var(--main-color);
}
.px-5{
  color: var(--main-color);
}
.s-products-list-placeholder span {
    margin-bottom: 1rem;
    display: flex;
    height: 8rem;
    width: 8rem;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    --tw-bg-opacity: 1;
    background-color: #f3f4f6;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
    font-size: 3rem;
    line-height: 1;
    --tw-text-opacity: 1;
    color: #d1d5db;
    color: rgba(209, 213, 219, var(--tw-text-opacity));
    background: var(--main-color);
}

.s-products-list-placeholder p {
    padding-top: .5rem;
    text-align: center;
    --tw-text-opacity: 1;
    color: #9ca3af;
    color: rgba(156, 163, 175, var(--tw-text-opacity));
    color: var(--main-color);
}

.s-products-list-placeholder span svg {
    margin-left: auto;
    margin-right: auto;
    height: 4rem;
    width: 4rem;
    fill: var(--third-color);
    text-align: center;
}

.s-block--photos-slider {
    margin-top: 0 !important;
}

.swiper {
    padding-left: 0 !important;
}

salla-slider.photos-slider .swiper-slide {
    position: relative;
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 0px;
    padding-left: 0px;
    height: auto;
    width: 100%;
    overflow: hidden;
}

.swiper.s-slider-container.swiper-initialized.swiper-horizontal.swiper-rtl.swiper-backface-hidden {
    margin-right: 0px;
    margin-left: 0px;
    padding-right: 0px;
    padding-left: 0px important;
}

.s-block--tabs-produtcs .tab-trigger.is-active button {
    border-color: #414042;
    border-color: var(--main-color);
    background-color: #414042;
    color: #ff6767;
    color: var(--third-color);
    background: var(--main-color);
}

button.btn--wishlist.animated.hidden.sm\:inline-flex.s-button-element.s-button-icon.s-button-outline.s-button-light-outline.s-button-loader-center.s-button-wrap.hydrated.not-added {
    color: var(--second-color);
}

.btn--wishlist.is-added {
    --tw-text-opacity: 1;
    color: var(--main-color);
}

.s-comments-product {
    margin-bottom: 1rem;
    --tw-bg-opacity: 1;
    background-color: #f3f4f6;
    background-color: rgba(243, 244, 246, var(--tw-bg-opacity));
    padding-top: 1rem;
    padding-bottom: 1rem;
    background: unset;
}

.s-breadcrumb-arrow svg {
    height: .875rem;
    width: .875rem;
    fill: var(--second-color);
}

button.s-slider-next.s-slider-nav-arrow.swiper-button-disabled.swiper-button-lock {
    opacity: 0;
}

button.s-slider-prev.s-slider-nav-arrow.swiper-button-disabled.swiper-button-lock {
    opacity: 0;
}

.s-login-modal-header-icon svg {
    height: 1.25rem;
    width: 1.25rem;
    flex-shrink: 0;
    fill: var(--main-color);
}

.s-modal-title {
    color: var(--main-color);
}

span.s-login-modal-header-icon {
    border: 2px solid var(--main-color);
}

label.s-login-modal-label {
    color: var(--main-color);
    font-weight: bold;
}

.iti__selected-dial-code {
    color: var(--main-color);
    font-weight: bold;
}

input.s-tel-input-control.tel-input.s-ltr {
    border: 2px solid var(--main-color);
}

a.s-login-modal-link {
    color: var(--main-color);
}

a.s-login-modal-link:hover {
    color: var(--second-color);
}

.s-block--features__item .feature-icon {
    margin-bottom: .75rem;
    display: flex;
    height: 6rem;
    width: 6rem;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 9999px;
    background-color: #414042;
    background-color: var(--main-color);
}

.s-block--features__item .feature-icon i {
    font-size: 3.875rem;
    line-height: 2.25rem;
    color: #ff6767;
    color: var(--third-color);
}

.s-block--features__item h2 {
    margin-bottom: .25rem;
    font-size: 20px;
    line-height: 1.25rem;
    font-weight: 700;
    --tw-text-opacity: 1;
    color: #1f2937;
    color: rgba(31, 41, 55, var(--tw-text-opacity));
}

.s-block--features__item p {
    font-size: 15px;
    line-height: 1.25rem;
    --tw-text-opacity: 1;
    color: #6b7280;
    color: var(--main-color);
    font-weight: 700;
}

#salla-modal:not(.s-search-modal)>div.s-modal-wrapper>div>div.s-modal-header:before {
    display: block !important;
    content: '';
    background: var(--logo);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 102px;
    margin: 15px auto;
}

@media (max-width: 1024px) {
    salla-slider.photos-slider .swiper:where([dir="rtl"], [dir="rtl"] *) {
        padding-bottom: 0px;
    }
}

/*----- end content -----*/


/* ================ 🛒Start PRODUCT CARD ============= */
/* =================== 🎨 كارد المنتج ===============*/
/*///////////////////////////////////*/

.s-product-card-fit-height .s-product-card-image{
height: 20rem;
  max-height: 20rem;
}
.s-products-slider-card .s-product-card-entry {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(3.8px);
    -webkit-backdrop-filter: blur(10px);
    --c: var(--main-color);
    --b: 3px;
    --g: 5px;
    padding: calc(var(--g) + var(--b));
    --_g: #0000 25%,var(--c) 0;
    background: conic-gradient(from 180deg at top var(--b) right var(--b),var(--_g)) var(--_i,200%) 0/200% var(--_i,var(--b)) no-repeat,conic-gradient(at bottom var(--b) left var(--b),var(--_g)) 0 var(--_i,200%)/var(--_i,var(--b)) 200% no-repeat;
    transition: .3s,background-position .3s .3s;
    cursor: pointer;
    background-color: #ffffff46 !important;
    backdrop-filter: blur(1px);
    -webkit-backdrop-filter: blur(10px);
    scale: 0.98;
}

.swiper-slide {
    margin-bottom: 10px;
}

.s-product-card-price {
    color: var(--main-color);
}

.s-product-card-entry:hover {
    --_i: 100%;
    transition: .3s,background-size .3s .3s;
}

.s-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.s-products-slider-card .s-product-card-entry .s-button-btn {
    pointer-events: auto;
    width: 68px !important;
    position: absolute !important;
    top: 66px !important;
    left: 18px !important;
    animation: goldenPulse 1.5s infinite;
    transition: transform 0.2s ease;
    font-size: 0.75rem;
}

/* شاشات صغيرة جداً */
@media (max-width: 480px) {
    .s-products-slider-card .s-product-card-entry .s-button-btn {
        transform: scale(0.9);
        left: 5px !important;
    }
}

.s-product-card-content-footer .s-button-btn {
    position: initial !important;
    width: 100% !important;
    animation: goldenPulse 1.5s infinite;
    transition: transform 0.2s ease;
    font-size: 0.75rem;
}
.s-add-product-button-main .s-fast-checkout-button{
color: var(--main-color) !important;
}
.s-products-slider-card .s-product-card-entry .s-button-btn .s-button-text span {
    display: none;
}

@keyframes goldenPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(255, 215, 0, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(255, 215, 0, 0);
    }
}

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

.s-button-btn , .s-block--tabs-produtcs .tab-trigger.is-active button {
    border-radius: 8px;
    background-color: var(--main-color);
    color: var(--third-color);
    font-weight: bold;
    transition: background-color 0.3s ease;
    border-color: var(--main-color);
}

.s-button-btn:hover , .s-block--tabs-produtcs .tab-trigger.is-active button {
    background-color: var(--main-color);
    color: var(--third-color);
}
.s-product-card-content-title a {
  color: var(--main-color);
  font-weight: 700;
  font-size: 1.1rem;
  display: block;
  margin-bottom: 5px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.3s ease;
}
 .s-product-card-content-title a:hover{
color: var(--second-color);
} 
.s-slider-block__title h2::after,
.s-block__title h2::after {
    content: "";
    position: absolute;
    bottom: 0; /* أسفل العنوان */
    left: 50%;
    transform: translateX(-50%);
    width: 60%; /* أو 100% حسب ما تحب */
    height: 3px;
    background-color: var(--second-color); 
    border-radius: 2px;
}
.s-fast-checkout-button.outline {
color: var(--second-color) !important; 
border:var(--second-color) !important; 
}


.stars {
  direction: rtl; /* مهم جداً عشان يشتغل كويس بالعربي */
  unicode-bidi: bidi-override;
  display: inline-block;
  font-size: 20px;
  color: #ddd; /* اللون الافتراضي للنجوم */
  position: relative;
}

.stars::before {
  content: "★★★★★"; /* 5 نجوم */
  letter-spacing: 2px;
}

.stars::after {
  content: "★★★★★"; /* النجوم المعبية */
  letter-spacing: 2px;
  color: gold; /* لون النجوم الذهبية */
  position: absolute;
  top: 0;
  right: 0;
  width: var(--rating, 0%);
  overflow: hidden;
}

/*=================*/
/* 🟢 مسافة بين كل سكشن */
section,
.s-block,
.s-slider-block__title,
.s-block--banners,
.s-products-slider-card,
.s-reviews-header {
  margin-bottom: 40px; /* ✅ مسافة تحت كل عنصر */
}

/* 🟢 مسافة أقل في الموبايل */
@media (max-width: 768px) {
  section,
  .s-block,
  .s-slider-block__title,
  .s-block--banners,
  .s-products-slider-card,
  .s-reviews-header {
    margin-bottom: 25px;
  }
} 
/* end product */
.tamara-summary-widget--inline-outlined {
    border-radius: 12px;
    border: 1px solid var(--inline-border-color);
    padding: var(--inline-outline-space-y) var(--inline-outline-space-x);
    transition: background-color .3s linear;
    color: white !important;
}
/* ============== 🧩 FOOTER DESIGN ============== */
/* start footer */

.store-footer {
    background: linear-gradient(to top, var(--second-color), var(--second-color), var(--main-color)) !important;
    margin-top: 115px;
}

.footer-is-light .store-footer .store-footer__inner {
    background: linear-gradient(to top, #ffffff00, #f0e2e900);
    margin-top: -37px;
    text-align: center;
    border-style: inset;
    position: relative;
    z-index: 5;
}

@media (min-width: 1024px) {
    .footer-is-light .store-footer .store-footer__inner {
        margin-top: -42px;
        background-color: #000000;
    }
}

@media (min-width: 1024px) {
    .lg\:grid-cols-6 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

.store-footer h3 {
    font-family: "Almarai", sans-serif;
    font-weight: 700;
    text-align: center !important;
    padding: 1rem;
    border-radius: 50px;
    color: var(--main-color);
    font-size: 1.4rem;
    background: #ffffff00;
}

.store-footer h3:hover {
    color: var(--second-color);
    opacity: 1;
    cursor: pointer;
    transition: 0.5s;
}
.mb-5 {
    margin-bottom: 1.25rem;
    background-color: #ffffff;
}
a.flex.items-center.m-0 {
    display: flex;
    flex-direction: column;
}
.tamara-summary-widget--inline-outlined {
    border-radius: 12px;
    border: 1px solid var(--inline-border-color);
    padding: var(--inline-outline-space-y) var(--inline-outline-space-x);
    transition: background-color .3s linear;
    background-color: #ffffff;
}
.store-footer a h3:nth-child(1) {
    font-size: 0rem;
    color: transparent;
    background-image: var(--logo);
    background-size: 70%;
    background-repeat: no-repeat;
    scale: 3.5;
    line-height: 3;
    background-position: center;
    margin-bottom: 50px;
}

@media (max-width: 1024px) {
    .store-footer a h3:nth-child(1) {
        margin-top: 50px;
    }
}

salla-apps-icons,
salla-apps-icons h3 {
    display: none;
}

@media (min-width: 1024px) {
    .rtl\:lg\:pr-20:where([dir="rtl"], [dir="rtl"] *) {
        padding-right: 5rem;
        background: var(--main-color);
        background-repeat: no-repeat;
        background-size: contain;
        scale: 0.7;
        line-height: 0;
        margin-bottom: 0;
        margin-top: 0;
    }
}

.footer-list {
    color: var(--main-color);
}

.store-footer__inner .max-w-sm {
    color: var(--main-color);
}

.s-contacts-list {
    align-items: center !important;
}

.store-footer a {
    color: var(--third-color);
}

.store-footer a:hover {
    color: var(--main-color);
    opacity: 1;
    transform: scale(1.03);
    transition: 0.4s;
}

.footer-is-light .store-footer {
    --tw-bg-opacity: 1;
    --tw-text-opacity: 1;
    background: #000000 !important;
    border-radius: 85px 85px 0 0;
    color: #ffffff;
}

@media (max-width: 1024px) {
    .footer-is-light .store-footer {
        padding-top: 17px;
    }
}

.s-social-list {
    display: flex;
    gap: 0.625rem;
    justify-content: center;
}

.lg\:col-span-2.rtl\:lg\:pl-20.ltr\:lg\:pr-20 {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.s-menu-footer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.s-contacts-list.s-contacts-list-vertical {
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
}

span.unicode {
    display: none;
}

.footer-is-light .store-footer .contact-social {
    border: none;
}

.copyright-text p {
    color: var(--third-color);
}

.store-footer::after {
    content: "برمجة وتطوير ADFAZ";
    top: 0;
    color: var(--third-color) !important;
    font-size: 16px;
    opacity: 0.8;
    text-align: center;
    font-family: sans-serif;
    font-weight: 700;
    width: 100%;
    display: inline-block;
}

/* end footer */
/* ==================== 🧠 JAVASCRIPT STYLE INTERACTIONS ==================== */
/* start JS */
/*loading*/
#loaderr {
    position: fixed;
    z-index: 999999 !important;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color:var(--third-color) !important;
    animation: fade-in 2s forwards;
}

.loading-container {
  width: 500px;
  height: 500px;
  animation: rotateSlide 1.5s ease-in-out infinite;
}

@keyframes rotateSlide {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  50% {
    transform: rotate(180deg) translateX(10px);
  }
  100% {
    transform: rotate(360deg) translateX(0);
  }
}



@keyframes fadeInOut {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 1;
    }
}

@keyframes fade-in {
    0% {
        opacity: 1;
        transform: scale(1)
    }

    90% {
        opacity: 1;
        transform: scale(1)
    }

    99% {
        opacity: 0;
        transform: scale(1)
    }

    100% {
        opacity: 0;
        transform: scale(0.000000000000000000001)
    }
}


.marwan {
    width: 6em;
    height: 6em;
}

.loader-ring {
    animation: ringA 2s linear infinite;
}

.loader-ring-a {
    stroke: var(--main-color);
}

.loader-ring-b {
    animation-name: ringB;
    stroke: var(--second-color);
}

.loader-ring-c {
    animation-name: ringC;
    stroke: var(--main-color);
}

.loader-ring-d {
    animation-name: ringD;
    stroke: var(--second-color);
}
/* Animations */
@keyframes ringA {

    from,
    4% {
        stroke-dasharray: 0 660;
        stroke-width: 20;
        stroke-dashoffset: -330;
    }

    12% {
        stroke-dasharray: 60 600;
        stroke-width: 30;
        stroke-dashoffset: -335;
    }

    32% {
        stroke-dasharray: 60 600;
        stroke-width: 30;
        stroke-dashoffset: -595;
    }

    40%,
    54% {
        stroke-dasharray: 0 660;
        stroke-width: 20;
        stroke-dashoffset: -660;
    }

    62% {
        stroke-dasharray: 60 600;
        stroke-width: 30;
        stroke-dashoffset: -665;
    }

    82% {
        stroke-dasharray: 60 600;
        stroke-width: 30;
        stroke-dashoffset: -925;
    }

    90%,
    to {
        stroke-dasharray: 0 660;
        stroke-width: 20;
        stroke-dashoffset: -990;
    }
}

@keyframes ringB {

    from,
    12% {
        stroke-dasharray: 0 220;
        stroke-width: 20;
        stroke-dashoffset: -110;
    }

    20% {
        stroke-dasharray: 20 200;
        stroke-width: 30;
        stroke-dashoffset: -115;
    }

    40% {
        stroke-dasharray: 20 200;
        stroke-width: 30;
        stroke-dashoffset: -195;
    }

    48%,
    62% {
        stroke-dasharray: 0 220;
        stroke-width: 20;
        stroke-dashoffset: -220;
    }

    70% {
        stroke-dasharray: 20 200;
        stroke-width: 30;
        stroke-dashoffset: -225;
    }

    90% {
        stroke-dasharray: 20 200;
        stroke-width: 30;
        stroke-dashoffset: -305;
    }

    98%,
    to {
        stroke-dasharray: 0 220;
        stroke-width: 20;
        stroke-dashoffset: -330;
    }
}

@keyframes ringC {
    from {
        stroke-dasharray: 0 440;
        stroke-width: 20;
        stroke-dashoffset: 0;
    }

    8% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -5;
    }

    28% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -175;
    }

    36%,
    58% {
        stroke-dasharray: 0 440;
        stroke-width: 20;
        stroke-dashoffset: -220;
    }

    66% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -225;
    }

    86% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -395;
    }

    94%,
    to {
        stroke-dasharray: 0 440;
        stroke-width: 20;
        stroke-dashoffset: -440;
    }
}

@keyframes ringD {

    from,
    8% {
        stroke-dasharray: 0 440;
        stroke-width: 20;
        stroke-dashoffset: 0;
    }

    16% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -5;
    }

    36% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -175;
    }

    44%,
    50% {
        stroke-dasharray: 0 440;
        stroke-width: 20;
        stroke-dashoffset: -220;
    }

    58% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -225;
    }

    78% {
        stroke-dasharray: 40 400;
        stroke-width: 30;
        stroke-dashoffset: -395;
    }

    86%,
    to {
        stroke-dasharray: 0 440;
        stroke-width: 20;
        stroke-dashoffset: -440;
    }
}
.banner--fixed img {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    /* التحريك من أسفل مع التصغير */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.banner--fixed img.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    /* الرجوع لمكانه الطبيعي مع التكبير */
}

salla-slider.photos-slider {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    /* التحريك من أسفل مع التصغير */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

salla-slider.photos-slider.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    /* الرجوع لمكانه الطبيعي مع التكبير */
}

.lazy__bg {
    opacity: 0;
    transform: translateY(50px) scale(0.8);
    /* التحريك من أسفل مع التصغير */
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.lazy__bg.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    /* الرجوع لمكانه الطبيعي مع التكبير */
}
.scrolling-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 31px;
    color: var(--main-color);
    display: flex;
    align-items: center;
    margin-top: 10px;
    /* Space below the slider */
    font-family: inherit;
    margin-top: -36px;
    padding: 0;
    /* Match the font of the page */
}

@media (max-width: 1024px) {
    .scrolling-text {
        margin-top: 1px;
    }
}

.scrolling-text .text-container {
    display: flex;
    gap: 2rem;
    /* Space between texts */
    animation: banSwiperScroll 35s linear infinite;
    /* Ensure enough content width */
    min-width: 200%;
    /* Make sure the text spans more than the visible area */
}

.scrolling-text .text-container span {
    display: inline-block;
    font-size: 1rem;
    /* Adjust font size */
    white-space: nowrap;
    /* Prevent text wrapping */
}

@keyframes banSwiperScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
        /* Scroll halfway for seamless looping */
    }
}

.s-slider-thumbs {
    background: var(--third-color);
    position: relative;
    z-index: 1;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* Apply the animation to the loader */
.banner-swap {
    width: 100%;
    background: linear-gradient(45deg, #000000, #081213);
    color: #ffd7ec;
    overflow: hidden;
    padding: 10px 0;
    position: relative;
}

.bannt {
    display: flex;
    width: 100%;
    animation: banSwiperScroll 12s linear infinite;
    will-change: transform;
}

.bannt:hover {
    animation-play-state: paused;
    /* Pause scroll on hover */
}

.banrerr {
    white-space: nowrap;
    padding: 0 50px;
    font-size: 1.2em;
    font-weight: bold;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

.banrerr:hover {
    color: var(--third-color);
  
    /* Glowing effect */
}

.banrerr i {
    margin-left: 10px;
    margin-right: 10px;
    animation: bounceIcon 1.5s infinite ease-in-out;
    /* Icon bounce */
}

/* Bouncing icon effect */
@keyframes bounceIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Smooth scrolling renamed from tickerScroll to banSwiperScroll */
@keyframes banSwiperScroll {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}
.tamara-summary-widget__container .summary-widget-content {
    display: flex
;
    width: 100%;
    color: white;
}
/* end JS */
/*review*/
/* عنوان القسم */
.s-reviews-header {
  position: relative;
  font-size: 2.5rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--main-color);
  display: inline-block;
  border-radius: 32px;
  padding: 10px 20px;
}

.s-reviews-header::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  transform: translateX(-50%);
  width: 60%;
  height: 4px;
  background-color: var(--main-color);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.s-reviews-header:hover::after {
  width: 90%;
}

/* كروت التقييمات */
.testimonial-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
  margin: 0 1rem;
  text-align: center;
  transition: transform 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-content {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 1rem;
  color: #444;
  line-height: 1.6;
}

.testimonial-author {
  display: block;
  font-weight: 700;
  color: var(--main-color);
  margin-top: 10px;
}
/*=================end review ==================*/

/*whatsaap-icon*/
.whatsapp-icon {
  width: 100px;         /* حجم العرض */
  height: 100px;        /* حجم الطول */
  padding: 10px;       
  border-radius: 50%;  /* شكل دائري */
/*  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);*/
  transition: transform 0.3s ease;
}

/* تأثير عند المرور بالماوس */
.whatsapp-icon:hover {
  transform: scale(1.1);  /* تكبير بسيط عند الهوفر */
}

/*Start loading*/
/* شكل اللودر */
.custom-loader {
  position: fixed;
  inset: 0;
  background-color: white;
  z-index: 999999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.6s ease;
}

/* إخفاء اللودر بعد التحميل */
.custom-loader.hide-loader {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}

/* ✨ صورة اللودر مع أنميشن أكبر */
.loader-image {
  width: 180px;
  height: auto;
   animation: spin-bounce 1.5s infinite ease-in-out;
}

@keyframes spin-bounce {
  0% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
  30% {
    transform: scale(1.1) rotate(120deg);
    opacity: 0.8;
  }
  60% {
    transform: scale(0.95) rotate(240deg);
    opacity: 0.9;
  }
  100% {
    transform: scale(1) rotate(360deg);
    opacity: 1;
  }
}


/*end*/
/* --- box-open effect CSS --- */
.s-product-card-image {
  position: relative;
  perspective: 1400px;
  overflow: visible;
}

/* الصورة */
.s-product-card-image img.s-product-card-image-contain {
  display: block;
  width: 100%;
  height: auto;
  backface-visibility: hidden;
  transition: transform 700ms cubic-bezier(.2,.9,.3,1);
  transform-origin: center center;
}

/* Simple "zoom + reveal details" effect */
.s-product-card-image {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

/* صورة المنتج */
.s-product-card-image img.s-product-card-image-contain {
  display:block;
  width:100%;
  height:auto;
  transition: transform 320ms ease, filter 320ms ease;
  transform-origin: center center;
}

/* طبقة التفاصيل (مخفية افتراضياً) */
.s-product-card-image .simple-details {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  background: linear-gradient(180deg, rgba(0,0,0,0.0) 0%, rgba(0,0,0,0.55) 100%);
  color: #fff;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 320ms ease, opacity 320ms ease;
  pointer-events: none;
  font-size: 0.95rem;
}

/* حالة "مفتوح" */
.s-product-card-image.simple-open img.s-product-card-image-contain {
  transform: scale(1.05) translateY(-6px);
  filter: brightness(.96);
}
.s-product-card-image.simple-open .simple-details {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

/* زر إغلاق صغير داخل التفاصيل (اختياري) */
.s-product-card-image .simple-details .close-simple {
  display:inline-block;
  margin-bottom:6px;
  background: rgba(255,255,255,0.08);
  color:#fff;
  border:none;
  padding:6px 8px;
  border-radius:6px;
  cursor:pointer;
  font-size:0.85rem;
}

/* responsive tweak */
@media (max-width:640px){
  .s-product-card-image .simple-details { padding: 10px; font-size: 0.92rem; }
}
//start list
/* الحاوية الرئيسية للـ section */
.s-block.s-block--categories {
  padding: 30px 0;
  background: #fdfdfd;
}

/* العنوان */
.s-slider-block__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.s-slider-block__title h2 {
  font-size: 22px;
  font-weight: 800;
  margin: 0;
  
}

/* أزرار التنقل */
.s-slider-prev, .s-slider-next {
  background: #fff;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease;
}

.s-slider-prev:hover, .s-slider-next:hover {
  transform: scale(1.1);
}

/* الشرائح */


/* كل شريحة */
.swiper-slide.slide--one-sixth {
  flex: 0 0 calc(33.333% - 10px); /* 3 أعمدة */
  max-width: calc(33.333% - 10px);
  box-sizing: border-box;
  text-align: center;
  margin-bottom: 15px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.swiper-slide.slide--one-sixth:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
}

/* الرابط داخل الشريحة */
.slide--cat-entry {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: #fff;
  border-radius: 12px;
  text-decoration: none;
  color: #222;
}

/* الأيقونة */
.slide--cat-entry i {
  font-size: 36px;
  color: #f60b8a;
  margin-bottom: 10px;
}

/* العنوان داخل الشريحة */
.slide--cat-entry h2 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.slide--cat-entry:hover {
  background: var(--fab-bg); /* اللون الأساسي للخلفية */
  color: #fff; /* لون الخطوص الأبيض */
}

.slide--cat-entry:hover i {
  color: #fff; /* أيقونة أبيض */
}

.slide--cat-entry:hover h2 {
  color: #fff; /* عنوان أبيض */
}

/* حركة مستمرة للأيقونة */
@keyframes iconPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

.slide--cat-entry i {
  font-size: 36px;
  color: #f60b8a;
  margin-bottom: 10px;
  animation: iconPulse 1.5s infinite ease-in-out;
}
.tamara-summary-widget--inline-outlined {
    border-radius: 12px;
    border: 1px solid var(--inline-border-color);
    padding: var(--inline-outline-space-y) var(--inline-outline-space-x);
    transition: background-color .3s linear;
    color: white !important;
}
/* Responsive: لو الشاشة أصغر من 768px */