.app-inner.flex.flex-col.min-h-full {
    background: #1E3E62 ! IMPORTANT;
}
salla-slider[type=carousel] .s-slider-block__title-nav {
    top: 50% !important;
    background: no-repeat;
}
.mahzam-content {
    background: #1E3E62 !important;
}

/* ---------- Mahzam Section ---------- */
.mahzam-section{
  display:flex;flex-wrap:wrap;gap:32px;
  background:#0f2c4d;color:#fff;
  border-radius:20px;padding:32px;margin:32px 0;
  direction:rtl;

}
.mahzam-content{flex:1;min-width:280px}
.mahzam-content h2{font-size:28px;color:#ffd36b;margin:0 0 8px}
.mahzam-content p{font-size:18px;margin:0 0 24px}
.mahzam-stats div{margin:16px 0;font-size:17px;line-height:1.6}
.mahzam-stats strong{font-size:32px;color:#ffd36b;margin-left:6px}
.mahzam-btn{background:transparent;border:1px solid #fff;
  color:#fff;padding:12px 28px;border-radius:10px;cursor:pointer;
  transition:.3s}
.mahzam-btn:hover{background:#ffd36b;color:#0f2c4d}
.mahzam-image{flex:1;min-width:280px;display:flex;
  align-items:center;justify-content:center}
.mahzam-image img{max-width:100%;border-radius:20px}
@media(max-width:767px){
  .mahzam-section{padding:24px}
  .mahzam-content h2{font-size:24px}
  .mahzam-stats strong{font-size:28px}
}
.mahzam-content {
    padding: 27px;
    border-radius: 47px;
}
/* ---------- /Mahzam Section ---------- */
/*الشريط*/
.pmarquee-wrapper {
  background-color: #162B4A;
  padding: 20px 0; /* زيادة ارتفاع الشريط */
  overflow: hidden;
  white-space: nowrap;
  margin-top: 20px;
  direction: rtl;
}

.pmarquee-track {
  display: inline-block;
  animation: scroll-right-left 200s linear infinite;
}

.pmarquee-text {
  display: inline-block;
  color: #fff;
  font-size: 22px; /* تكبير الخط */
  font-weight: 600;
  margin-left: 60px; /* مسافة بين النصوص */
}

@keyframes scroll-right-left {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
/*services*/

.wow-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  background: linear-gradient(135deg, #091c33, #122d4c);
  padding: 60px 20px;
  border-radius: 20px;
  margin-top: 40px;
  animation: fadeIn 1s ease-in-out;
}

.wow-box {
  background: #0e223d;
  color: #fff;
  width: 300px;
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transform: translateY(50px);
  opacity: 0;
  animation: slideUp 0.7s ease forwards;
  animation-delay: 0.3s;
}

.wow-icon {
  font-size: 48px;
  margin-bottom: 15px;
  animation: pulse 2s infinite;
}

.wow-box h3 {
  font-size: 20px;
  color: #00d2ff;
  margin-bottom: 10px;
}

.wow-box p {
  font-size: 15px;
  color: #cbd6e2;
  margin-bottom: 20px;
}

.wow-btn {
  display: inline-block;
  background-color: #00d2ff;
  color: #000;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease;
}

.wow-btn:hover {
  background-color: #ffffff;
  color: #0077b6;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}
/*conditions*/

.barmeen-installment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0e1c33, #132b4c);
  border-radius: 30px;
  padding: 60px 20px;
  margin-top: 40px;
  animation: fadeInUp 1s ease forwards;
  gap: 30px;
}

.barmeen-image img {
  width: 300px;
  max-width: 100%;
  border-radius: 16px;
  transform: rotate(-5deg) scale(1);
  animation: breatheTilt 4s ease-in-out infinite;
  transition: transform 0.5s ease;
}

.barmeen-content {
  max-width: 400px;
  color: #fff;
  text-align: right;
  animation: slideInRight 1s ease forwards;
}

.barmeen-content h2 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #00d2ff;
  animation: titleIn 1.5s ease forwards;
}

.barmeen-content ul {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.barmeen-content ul li {
  margin-bottom: 10px;
  position: relative;
  padding-right: 25px;
  font-size: 15px;
}

.barmeen-content ul li::before {
  content: '✓';
  position: absolute;
  right: 0;
  color: #00ff9d;
  font-weight: bold;
}

.barmeen-btn {
  display: inline-block;
  background: #00d2ff;
  color: #000;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.3s ease;
}

.barmeen-btn:hover {
  background: #fff;
  color: #0077b6;
  transform: scale(1.05);
}

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(50px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes titleIn {
  from { opacity: 0; transform: translateY(-20px) scale(0.95); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
/*product*/
/* Barmeen Categories Section */
.barmeen-categories {
  background-color: #091C32;
  color: white;
  padding: 60px 20px;
  font-family: 'Cairo', sans-serif;
}

.container-barmeen {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.barmeen-sec-title {
  font-size: 32px;
  margin-bottom: 10px;
}

.barmeen-sec-title span {
  color: #FFD700;
}

.barmeen-sec-subtitle {
  font-size: 18px;
  margin-bottom: 40px;
  color: #ccc;
}

.barmeen-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

/* ====== Card Style ====== */
.barmeen-card {
  background-color: #1E3E62;
  color: white ;
  border-radius: 20px;
  width: 280px;
  padding: 25px 20px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
  text-align: center;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
}

.barmeen-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.25);
}

/* أيقونة صغيرة */
.barmeen-card .card-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 10px;
}

.barmeen-card .card-icon img {
  width: 100%;
  height: auto;
}

/* صورة كبيرة */
.barmeen-card .card-image {
  width: 100%;
  height: 160px;
  margin-bottom: 15px;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}

/* العنوان */
.barmeen-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: white;
}

/* ====== Animation ====== */
.barmeen-card.active {
  animation: fadeUp 0.8s ease forwards;
}

.barmeen-card.delay-1.active {
  animation-delay: 0.2s;
}

.barmeen-card.delay-2.active {
  animation-delay: 0.4s;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.card-image {
  width: 100%;
  height: 450px !Important;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-bottom: 15px;
}
.barmeen-card:nth-child(2) .card-image {
    width: 282px !important;
}
img.w-full.object-contain.rounded-md {
    border-radius: 40px;
}
@media (max-width: 768px) {
salla-slider.photos-slider .swiper-slide {
    position: relative;
    margin-left: 0.5rem;
    margin-right: 0.5rem;
    height: auto;
    width: 101%;
    overflow: hidden;
    border-radius: 0.375rem;
}
salla-slider[type]:not(.hydrated) > div:where([dir="rtl"], [dir="rtl"] *), salla-slider[type]:not(.hydrated) .swiper > div > div:where([dir="rtl"], [dir="rtl"] *), .carousel-slider .swiper:where([dir="rtl"], [dir="rtl"] *) {
    padding-left: 0;
}
img.w-full.object-contain.rounded-md {
    border-radius: 23px;
    /* height: 300px; */
}
.barmeen-installment {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0e1c33, #132b4c);
  border-radius:40px;
  padding: 60px 20px;
  margin-top: 20px;
  animation: fadeInUp 1s ease forwards;
  gap: 30px;
}
}
section.s-block.s-block--main-features {
    background: #091C32;
    padding: 38px;
    color: white;
}
    .s-block__title h2, .s-slider-block__title h2 {
        font-size: 1.875rem;
        line-height: 2.25rem;
        color: white;
}
.inner.w-full.bg-inherit {
    background: #1E3E62;
}
.top-nav {
    background: #122847 !important;
}
.top-nav .s-contacts-topnav-link {
    border-style: none;
    font-size: 1rem;
    line-height: 1.5rem;
    opacity: 1;
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 300ms;
    font-family: system-ui;
    font-weight: 600;
}
.barmeen-card .card-image {
    width: 100%;
    height: 300px !important;
    margin-bottom: 15px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}
.barmeen-cards a {
    width: 354px !important;
}
.s-block--main-features .box h4 {
    margin-bottom: 0.25rem;
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 600;
    --tw-text-opacity: 1;
    color: rgba(39, 39, 42, 1);
    color: white;
    font-size: 23px;
}
.box h3 {
    background: #1E3E62 ! IMPORTANT;
}
.s-block--main-features .box p {
    font-size: 0.975rem;
    line-height: 1.70rem;
    font-weight: 500;
    --tw-text-opacity: 1;
    color: #00D2FF;
}
.text-zinc-800 {
    --tw-text-opacity: 1;
    color: rgba(39, 39, 42, 1);
    color: white;
}
.footer-is-light .store-footer {
    --tw-bg-opacity: 1;
    background-color: rgba(249, 250, 251, 1);
    background-color: rgba(249, 250, 251, var(--tw-bg-opacity, 1));
    --tw-text-opacity: 1;
    color: rgba(55, 65, 81, 1);
    background: #091C32 ! IMPORTANT;
    color: white;
}
.full-about-block:before {
    background: #091C32;
}
/*before*/
.product-index .app-inner.flex.flex-col.min-h-full {
    background: none ! IMPORTANT;
}
button.undefined.s-button-element.s-button-btn.s-button-outline.s-button-wide.s-button-primary-outline.s-button-loader-center {
    border: 1px solid #1E3E62;
    background: #1E3E62;
    color: white;
}
header.page-header.h-16 {
    background: #122847 !important;
    color: white !important;
    box-shadow: 1px 12px 3px 2px #122847;
}
.product-single .app-inner.flex.flex-col.min-h-full {
    background: #F3F4F6 ! IMPORTANT;
}
button.undefined.s-button-element.s-button-btn.s-button-solid.s-button-wide.s-button-primary.s-button-loader-center {
    background: #1E3E62;
    border: none;
}

.sm\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
        font-weight: 600;
        font-family: "Tajawal", sans-serif !important;
}
.text-primary {
    color: #5cd5c4;
    color: var(--color-primary);
    color: #122847;
}
.s-fast-checkout-button.outline {
    background-color: transparent;
    color: #1E3E62 !important;
    border: 1px solid #1E3E62 !important;

}
.product-index .s-block--testimonials {
    display: none;
}