html {
  overflow-x: hidden !important;
}

body {
    overflow-x: hidden !important;
    background-color: #2c3b54; /* اللون المطلوب */
}
/* ✅ إخفاء التوب ناف بار بالكامل */
.top-navbar {
    display: none !important;
}
.s-cart-summary-total {
    display: none !important;
}









 /* ======= ناف بار ======= */

/* 0) إلغاء أي ستايلات خلفية من القالب */
#mainnav,
#mainnav.bg-white,
#mainnav.shadow-default.bg-white {
  background: transparent !important;
}

/* 1) خصائص الناف الأساسية */
#mainnav.main-nav-container {
  position: sticky;                 /* يثبت أعلى الصفحة ويتحرّك مع السكروول */
  top: 0;
  z-index: 2000;

  /* 🎨 الخلفية المطلوبة — #2768B0 بشفافية 0.90 (rgb(39,104,176)) */
  background-color: rgba(39, 104, 176, 0.90) !important;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.22);

  /* تأكيد عدم وجود تأثيرات قديمة */
  transform: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}

/* 2) الحاوية الداخلية تكون شفافة */
#mainnav .inner,
#mainnav .inner.bg-inherit {
  background: transparent !important;
}

/* 3) ألوان داخل الناف (نصوص/روابط/أيقونات) */
#mainnav,
#mainnav a,
#mainnav .header-btn__icon,
#mainnav .icon,
#mainnav .s-cart-summary-count,
#mainnav .s-cart-summary-total,
#s-cart-icon svg {
  color: #fff !important;
  fill: #fff !important;
  stroke: none !important;
}

/* 4) تكبير اللوجو وتناسق حجمه */
#mainnav .navbar-brand img {
  height: 56px;
  max-height: 60px;
  width: auto;
}
@media (max-width: 1024px) {
  #mainnav .navbar-brand img {
    height: 48px;
    max-height: 52px;
  }
}
@media (max-width: 768px) {
  #mainnav .navbar-brand img {
    height: 46px;
    max-height: 50px;
  }
}

/* =======================[ Right-side spacing ]====================== */
#mainnav .flex.items-center.justify-end > .btn--rounded-gray:first-of-type { 
  margin-inline-end: 10px; 
}
#mainnav .header-btn {               /* زر الحساب */
  margin-inline-start: 6px;
}
#mainnav salla-cart-summary {        /* السلة */
  margin-inline-start: 10px;
}
#mainnav salla-cart-summary .s-cart-summary-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* 10) أيقونات الحساب/السلة — Hover خفيف */
#mainnav .header-btn__icon,
#s-cart-icon svg {
  opacity: .95;
  transition: opacity .2s ease, transform .2s ease, filter .2s ease;
}
#mainnav .header-btn__icon:hover,
#s-cart-icon svg:hover {
  opacity: 1;
  transform: translateY(-1px);
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.25));
}

/* 11) شارة عدد السلة — أوضح */
#mainnav .s-cart-summary-count {
  background: #3963c4;               /* لمسة برتقالية متناسقة */
  color: #fff !important;
  border-radius: 999px;
  padding: 2px 6px;
  font-weight: 800;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}

/* 12) مسافات رأسية داخل الناف */
#mainnav .container {
  padding-block: 8px;
}

/* 13) موبايل — لون أيقونة الهامبرجر */
@media (max-width: 768px) {
  #mainnav .sicon-menu { color: #fff !important; }
}

 /* ======= ناف بار ======= */











/* ============================== 05) Section Titles Styling ============================== */

.s-block__title {
    width: 100%;
    text-align: center;
    position: relative;
}

.s-block__title .right-side {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-direction: column;
}

.s-block__title .right-side h2 {
    display: inline-block;
    font-size: 30px;
    position: relative;
    padding: 0 20px;
    color: white;
    white-space: nowrap;
    z-index: 1;
    margin-bottom: 5px;
}

.s-block__title .right-side h2::before,
.s-block__title .right-side h2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: auto;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    z-index: -1;
}

.s-block__title .right-side h2::before {
    left: -9999px;
    right: calc(100% + 20px);
}

.s-block__title .right-side h2::after {
    right: -9999px;
    left: calc(100% + 20px);
}

.s-block__title .right-side::after {
    content: 'يرجى تحديد الخيار الأنسب لك';
    font-size: 14px;
    color: white;
    display: block;
    text-align: center;
    white-space: nowrap;
}

/* ============================ /05) Section Titles Styling ============================== */







/* ============================== 07) Banner Styling & Animation ============================== */

.banner-entry .lazy__bg.bg-no-repeat {
    background-size: cover !important;
    background-position: center center !important;
    height: 205px !important;
}

/* انيميشن البانر */
.banner-entry {
    opacity: 1;
    transform: translateX(0);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}

.banner-entry.invisible {
    opacity: 0;
    transform: translateX(-50px);
}

/* ============================ /07) Banner Styling & Animation ============================== */



/* ============================== 09) Custom Buttons & Inputs ============================== */

.s-button-btn {
    padding: 15px 25px;
    border: none;
    width: 100%;
    max-width: 250px;
    border-radius: 15px;
    color: #212121;
    z-index: 1;
    background: #e8e8e8;
    position: relative;
    font-weight: 1000;
    font-size: 17px;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
    overflow: hidden;
    display: block;
    margin: 0 auto; /* يوسّط الزر داخل الكارت */
}

.s-button-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    border-radius: 15px;
    background-color: #212121;
    z-index: -1;
    box-shadow: 4px 8px 19px -3px rgba(0, 0, 0, 0.27);
    transition: all 250ms;
}

.s-button-btn:hover {
    color: #e8e8e8;
}

.s-button-btn:hover::before {
    width: 100%;
}

/* تحسين العرض على الموبايل */
@media (max-width: 768px) {
    .s-button-btn {
        width: 90%;
        max-width: none;
        font-size: 15px;
        padding: 12px 20px;
    }
}

/* ============================ باقي التنسيقات ============================== */

.s-quantity-input-input,
.shadow-default .bg-white,
.s-comment-form-content,
.center-between w-full,
.s-product-card-price {
    color: black;
}

#product-filter {
    color: #000 !important;
}

h1 {
    color: white !important;
}

.content.content--single-page {
    color: black !important;
}

.shadow-default.bg-white.p-5.xs\:p-7.rounded-md.mb-5.relative.transition-height.duration-1000,
.shadow-default.bg-white.p-5.xs\:p-7.rounded-md.mb-5.relative.transition-height.duration-1000 h2,
.shadow-default.bg-white.p-5.xs\:p-7.rounded-md.mb-5.relative.transition-height.duration-1000 span,
.shadow-default.bg-white.p-5.xs\:p-7.rounded-md.mb-5.relative.transition-height.duration-1000 b,
.shadow-default.bg-white.p-5.xs\:p-7.rounded-md.mb-5.relative.transition-height.duration-1000 button span {
    color: #000 !important;
}

.s-product-options-multiple-options-wrapper label div {
    color: #333 !important;
}

.main-content {
    color: white !important;
}

/* ============================ /09) Custom Buttons & Inputs ============================== */










/* ============================== 11) Social Icons Styling ============================== */

.s-social-list {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px;
    border-radius: 27px;
    background-color: rgba(49, 49, 49, 0.8);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.055);
    width: fit-content;
}

.s-social-link a {
    width: 35px;
    height: 35px;
    background-color: rgba(117, 117, 117, 0);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.s-social-link a:hover {
    transform: scale(1.2);
    border-radius: 15px;
}

.s-social-link a:active {
    transform: scale(1.1);
    transition-duration: 0.3s;
}

.s-social-icon svg {
    display: flex;
    scale: 1.3;
    width: 17px;
    height: 17px;
    fill: white;
}

.s-social-link:nth-child(1) a:hover {
    background-color: #d62976;
}

.s-social-link:nth-child(2) a:hover {
    background-color: #00acee;
}

.s-social-link:nth-child(3) a:hover {
    background-color: #fffc00;
}

.s-social-link:nth-child(3) a:hover .s-social-icon svg path {
    fill: #000000;
}

.s-social-link:nth-child(4) a:hover {
    background-color: #000000;
}

.s-social-link:nth-child(4) a:hover .s-social-icon svg {
    fill: #FFFFFF;
}

/* ============================ /11) Social Icons Styling ============================== */



/* ============================== 12) Contact Icons Styling ============================== */

.s-contacts-item a {
    display: flex;
    align-items: center;
    gap: 10px;
    width: auto;
    padding: 10px;
    border-radius: 10px;
    text-decoration: none;
    color: white;
}

.s-contacts-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    transition: transform 0.4s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.s-contacts-icon:hover {
    transform: scale(1.2);
    border-radius: 15px;
}

.s-contacts-icon svg {
    width: 20px;
    height: 20px;
    fill: white;
    transition: fill 0.3s ease;
}

.s-contacts-item:nth-child(1) a:hover .s-contacts-icon svg {
    fill: #25d366;
}

.s-contacts-item:nth-child(2) a:hover .s-contacts-icon svg {
    fill: #007bff;
}

.s-contacts-item:nth-child(3) a:hover .s-contacts-icon svg {
    fill: #d44638;
}

/* ============================ /12) Contact Icons Styling ============================== */



/* ============================== 13) Reviews & Testimonials (General) ============================== */

.s-comments-item-user-wrapper,
.s-comments-count-label,
.s-comments-item-content,
.s-comments-item-has-order-check-text,
.s-comments-item-timestamp {
    color: white !important;
}

#testimonials-filter {
    color: black !important;
}

.s-reviews-testimonial__text {
    color: black !important;
    font-size: 1.1em !important;
    font-weight: bold !important;
}

/* ============================ /13) Reviews & Testimonials (General) ============================== */



/* ============================== 14) FAQ Section Styling ============================== */

.faq-section {
    padding: 20px;
    margin: 40px auto;
    max-width: 800px;
    width: 90%;
    box-sizing: border-box;
}

.faq-section-title {
    margin-top: 30px;
    text-align: center;
    color: white;
    margin-bottom: 30px;
    font-size: 2em;
    font-weight: bold;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-content: center;
    align-items: start;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease-in-out;
    border: 2px solid transparent;
    direction: rtl;
    text-align: right;
}

.faq-item.active {
    border-color: #ffc107;
}

.faq-question-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    color: #333;
    font-weight: bold;
    cursor: pointer;
    user-select: none;
    font-size: 1.1em;
}

.faq-question-text {
    flex-grow: 1;
    margin-left: 10px;
}

.faq-icon {
    font-size: 1.5em;
    color: #333;
    transition: transform 0.3s ease-in-out;
    flex-shrink: 0;
    width: 25px;
    text-align: center;
}

.faq-answer-content {
    background-color: #f9f9f9;
    color: #555;
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, padding 0.3s ease-in-out;
}

.faq-item.active .faq-answer-content {
    padding-top: 15px;
    padding-bottom: 15px;
}

.faq-answer-content p {
    margin: 0;
    line-height: 1.6;
    text-align: right;
}

/* ============================ /14) FAQ Section Styling ============================== */



/* ============================== 15) Customer Reviews (Slider Cards) ============================== */
/* --- تجميل قسم آراء العملاء --- */

salla-reviews {
    padding: 0 !important;
    margin: 0 !important;
}

.s-reviews-testimonials-slider {
    padding: 10px 0 !important;
    margin: 0 !important;
}

.s-reviews-testimonial {
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    padding: 30px;
    margin: 0 10px;
    box-sizing: border-box;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.s-reviews-testimonial__avatar img {
    border-radius: 50%;
    width: 85px;
    height: 85px;
    object-fit: cover;
    border: 4px solid #ffc107;
    margin-bottom: 15px;
}

.s-reviews-testimonial__text p {
    font-size: 1.1em;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-weight: 500;
}

.s-reviews-testimonial__info h2 {
    font-size: 1.3em;
    color: #000;
    margin-top: 10px;
    margin-bottom: 5px;
    font-weight: bold;
}

.s-reviews-testimonial__rating {
    margin-top: 10px;
}

.s-reviews-testimonial__rating .s-rating-stars-btn-star svg {
    width: 22px;
    height: 22px;
}

.s-reviews-testimonial__icon {
    color: rgba(0, 0, 0, 0.08);
    font-size: 4em;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}

.s-reviews-testimonial__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
}

/* ============================ /15) Customer Reviews (Slider Cards) ============================== */



/* ============================== 16) FIXES: Reviews Section BG + Stars + Footer (v1) ============================== */

salla-reviews,
salla-reviews .s-reviews-testimonials,
salla-reviews .s-reviews-testimonials-slider {
    background: transparent !important;
}

salla-reviews .shadow-default.bg-white {
    background: transparent !important;
    box-shadow: none !important;
}

salla-reviews .s-reviews-testimonial__rating,
salla-reviews .s-rating,
salla-reviews .s-rating-stars,
salla-reviews .s-rating-stars-btn,
salla-reviews .s-rating-stars-btn-star {
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

salla-reviews .s-rating-stars-btn-star svg,
salla-reviews .s-rating-stars-btn-star svg path {
    fill: #ffc107 !important;
}

salla-reviews .s-rating-stars-btn-star[disabled] svg path {
    fill: #e0e0e0 !important;
}

/* ============================ /16) FIXES ============================== */



/* ============================== 17) HOTFIX: Stars & Footer (stronger scoping) ============================== */

salla-reviews .s-reviews-testimonial .s-reviews-testimonial__rating,
salla-reviews .s-reviews-testimonial .s-reviews-testimonial__rating .s-rating,
salla-reviews .s-reviews-testimonial .s-reviews-testimonial__rating .s-rating-stars,
salla-reviews .s-reviews-testimonial .s-reviews-testimonial__rating .s-rating-stars-btn,
salla-reviews .s-reviews-testimonial .s-reviews-testimonial__rating .s-rating-stars-btn-star {
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    color: #ffc107 !important;
}

salla-reviews .s-reviews-testimonial .s-reviews-testimonial__rating svg,
salla-reviews .s-reviews-testimonial .s-reviews-testimonial__rating svg path {
    fill: currentColor !important;
    stroke: currentColor !important;
}

salla-reviews .s-reviews-testimonial .s-reviews-testimonial__rating .s-rating-stars-btn-star[disabled] svg path {
    color: #e0e0e0 !important;
    fill: #e0e0e0 !important;
    stroke: #e0e0e0 !important;
}

/* ============================ /17) HOTFIX ============================== */



/* ============================== 18) Home Photos Slider (by ID) ============================== */

salla-slider#photos-0-slider {
  
    border-radius: 16px;
    padding: 10px 0;
}

#photos-0-slider .s-slider-block__title {
    background: transparent !important;
    color: #ffffff !important;
}

#photos-0-slider .s-slider-nav-arrow {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border: 1px solid rgba(255, 255, 255, 0.25) !important;
    color: #ffc107 !important;
    border-radius: 12px;
    transition: background-color .2s ease, color .2s ease, border-color .2s ease;
}

#photos-0-slider .s-slider-nav-arrow .s-slider-button-icon svg,
#photos-0-slider .s-slider-nav-arrow .s-slider-button-icon svg path {
    fill: currentColor !important;
    stroke: currentColor !important;
}

#photos-0-slider .s-slider-nav-arrow:hover,
#photos-0-slider .s-slider-nav-arrow:focus {
    background-color: #ffc107 !important;
    color: #1a203c !important;
    border-color: #ffc107 !important;
}

#photos-0-slider .s-slider-nav-arrow[aria-disabled="true"] {
    opacity: .4;
    cursor: not-allowed;
}

#photos-0-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
}
#photos-0-slider .swiper-pagination-bullet-active {
    background: #ffc107 !important;
}

#photos-0-slider .shadow-default,
#photos-0-slider .bg-white,
#photos-0-slider [class*="bg-white"],
#photos-0-slider [class*="shadow-"] {
    background: transparent !important;
    box-shadow: none !important;
}

/* ============================ /18) Home Photos Slider ============================== */



/* ============================== 19) HOTFIX: Stars White Background (wrapper) ============================== */

salla-reviews .s-reviews-testimonial__rating {
  background-color: #ffffff !important;
  border-radius: 8px !important;
  padding: 6px 10px !important;
  display: inline-flex !important;
  align-items: center;
  gap: 6px;
}

salla-reviews .s-reviews-testimonial__rating *,
salla-reviews .s-reviews-testimonial__rating *::before,
salla-reviews .s-reviews-testimonial__rating *::after {
  background: transparent !important;
  background-image: none !important;
  box-shadow: none !important;
  filter: none !important;
  -webkit-filter: none !important;
}

salla-reviews .s-reviews-testimonial__rating .s-rating-stars,
salla-reviews .s-reviews-testimonial__rating .s-rating-stars-btn,
salla-reviews .s-reviews-testimonial__rating .s-rating-stars-btn-star,
salla-reviews .s-reviews-testimonial__rating li {
  background: transparent !important;
  border: 0 !important;
}

salla-reviews .s-reviews-testimonial__rating::before,
salla-reviews .s-reviews-testimonial__rating::after {
  background: none !important;
  box-shadow: none !important;
}

salla-reviews .s-reviews-testimonial__rating .s-rating-stars-btn-star svg,
salla-reviews .s-reviews-testimonial__rating .s-rating-stars-btn-star svg path {
  fill: #ffc107 !important;
  stroke: #ffc107 !important;
}

salla-reviews .s-reviews-testimonial__rating .s-rating-stars-btn-star[disabled] svg path {
  fill: #e0e0e0 !important;
  stroke: #e0e0e0 !important;
}

/* ============================ /19) HOTFIX ============================== */



/* ============================== 20) FINAL FOOTER FIX (Unified Theme) ============================== */

:root {
  --footer-bg:     #1a203c;
  --footer-fg:     #ffffff;
  --footer-accent: #ffc107;
  --footer-muted:  rgba(255,255,255,.75);
  --footer-border: rgba(255,255,255,.14);
}

salla-footer,
.s-footer,
footer,
.footer,
.site-footer,
.footer-wrapper,
.footer-container {
  background-color: var(--footer-bg) !important;
  background-image: none !important;
  color: var(--footer-fg) !important;
  box-shadow: none !important;
}

salla-footer .footer-top,
salla-footer .footer-middle,
salla-footer .footer-bottom,
.s-footer .footer-top,
.s-footer .footer-middle,
.s-footer .footer-bottom,
footer .footer-top,
footer .footer-middle,
footer .footer-bottom {
  background-color: transparent !important;
  background-image: none !important;
  color: var(--footer-fg) !important;
  box-shadow: none !important;
  border: 0 !important;
}

.s-footer .container,
.s-footer .container-fluid,
.s-footer .row,
.s-footer .col,
footer .container,
footer .container-fluid {
  background: transparent !important;
  box-shadow: none !important;
}

.s-footer .shadow-default,
.s-footer .bg-white,
.s-footer [class*="bg-white"],
.s-footer [class*="shadow-"],
.s-footer .card,
.s-footer .panel,
.s-footer .box,
.s-footer .widget,
.s-footer .widgets,
footer .shadow-default,
footer .bg-white,
footer [class*="bg-white"],
footer [class*="shadow-"],
footer .card,
footer .panel,
footer .box,
footer .widget,
footer .widgets {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

.s-footer::before,
.s-footer::after,
footer::before,
footer::after {
  content: none !important;
  background: transparent !important;
  box-shadow: none !important;
}

.s-footer h1,
.s-footer h2,
.s-footer h3,
.s-footer h4,
.s-footer h5,
.s-footer h6,
.s-footer p,
.s-footer span,
.s-footer li,
.s-footer label,
footer h1,
footer h2,
footer h3,
footer h4,
footer h5,
footer h6,
footer p,
footer span,
footer li,
footer label {
  color: var(--footer-fg) !important;
}

.s-footer a,
footer a {
  color: var(--footer-fg) !important;
  text-decoration: none;
}
.s-footer a:hover,
footer a:hover {
  color: var(--footer-accent) !important;
}

.s-footer hr,
.s-footer .divider,
footer hr,
footer .divider {
  border-color: var(--footer-border) !important;
}

.s-footer .s-social-list,
.s-footer .payment-methods,
.s-footer .s-payment-icons,
footer .s-social-list,
footer .payment-methods,
footer .s-payment-icons {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

.s-footer img,
footer img {
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.s-footer svg,
footer svg {
  fill: currentColor;
}

.s-footer input,
.s-footer textarea,
.s-footer select,
footer input,
footer textarea,
footer select {
  background-color: rgba(255, 255, 255, 0.08) !important;
  color: var(--footer-fg) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 8px !important;
}
.s-footer ::placeholder,
footer ::placeholder {
  color: var(--footer-muted) !important;
}

.s-footer button,
footer button,
.s-footer .btn,
footer .btn {
  background-color: var(--footer-accent) !important;
  color: #1a203c !important;
  border: 0 !important;
  border-radius: 8px !important;
}
.s-footer button:hover,
footer button:hover,
.s-footer .btn:hover,
footer .btn:hover {
  filter: brightness(1.05);
}

.s-footer .copyright,
.s-footer .s-copyrights,
footer .copyright {
  background: transparent !important;
  color: var(--footer-fg) !important;
  border-top: 1px solid var(--footer-border) !important;
}

.s-footer .section,
.s-footer .s-block,
.s-footer [class*="section-"],
footer .section,
footer .s-block,
footer [class*="section-"] {
  background: transparent !important;
  box-shadow: none !important;
  border: 0 !important;
}

.s-footer .footer-top,
.s-footer .footer-bottom,
footer .footer-top,
footer .footer-bottom {
  border-top: 1px solid var(--footer-border) !important;
  border-bottom: 1px solid var(--footer-border) !important;
}

/* ============================ /20) FINAL FOOTER FIX ============================== */

/* جعل خلفية قسم التعليقات بنفس لون خلفية البادي */
salla-comments {
  display: block;
  background-color: #2c3b54 !important;
  padding: 30px 0;
}

/* في حال العنصر داخل حاوية (Div) */
.s-comments-container,
.product-comments,
.s-comments-wrapper {
  background-color: #2c3b54 !important;
}

/* لتوحيد لون الخلفية الداخلي بالكامل */
salla-comments * {
  background-color: transparent !important;
  color: #fff !important;
}