.top-navbar:not(.topnav-has-bg) {
    background-color: var(--header-bg);
    color: #ffffff;
}
.main-nav-container {
    background-color: var(--header-bg);
    color: #ffffff;
}
/* قسم المميزات */
.features-section {
  --main-color: #8a1538;

  direction: rtl;
  box-sizing: border-box;
  width: 100%;
  padding: 35px 24px 45px;
  overflow: hidden;
  background: #ffffff;
  font-family: inherit;
}

.features-section *,
.features-section *::before,
.features-section *::after {
  box-sizing: border-box;
}

/* العنوان العلوي */
.features-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1220px;
  margin: 0 auto 34px;
}

.features-heading h2 {
  margin: 0;
  color: var(--main-color);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 800;
  line-height: 1.3;
}

.features-heading p {
  margin: 0;
  color: var(--main-color);
  font-size: 14px;
}

/* شبكة البطاقات */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 1220px;
  margin: 0 auto;
}

/* المربع الزجاجي */
.feature-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 218px;
  padding: 28px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(138, 21, 56, 0.18);
  border-radius: 26px;

  box-shadow:
    0 12px 35px rgba(138, 21, 56, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

/* لمعة زجاجية خفيفة */
.feature-card::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -50px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(138, 21, 56, 0.07);
  filter: blur(15px);
  pointer-events: none;
}

.feature-card:hover {
  transform: translateY(-5px);
  border-color: rgba(138, 21, 56, 0.35);
  box-shadow:
    0 18px 40px rgba(138, 21, 56, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

/* إزالة ألوان البطاقات السابقة */
.feature-card--cyan,
.feature-card--purple,
.feature-card--gray {
  background: rgba(255, 255, 255, 0.42);
}

/* رقم البطاقة */
.feature-number,
.feature-card--cyan .feature-number,
.feature-card--purple .feature-number,
.feature-card--gray .feature-number {
  position: absolute;
  top: 28px;
  right: 28px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(138, 21, 56, 0.14);
  border-radius: 17px;
  color: var(--main-color);
  background: rgba(138, 21, 56, 0.09);
  font-size: 20px;
  font-weight: 800;
}

/* نص البطاقة */
.feature-content {
  position: relative;
  z-index: 1;
  align-self: flex-end;
  width: 100%;
  padding-top: 70px;
}

.feature-content h3 {
  margin: 0 0 10px;
  color: var(--main-color);
  font-size: 20px;
  font-weight: 800;
  line-height: 1.5;
}

.feature-content p {
  max-width: 340px;
  margin: 0;
  color: var(--main-color);
  font-size: 14px;
  line-height: 2;
  opacity: 0.82;
}

/* التابلت */
@media (max-width: 900px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-card:last-child {
    grid-column: 1 / -1;
  }
}

/* الجوال */
@media (max-width: 600px) {
  .features-section {
    padding: 28px 16px 32px;
  }

  .features-heading {
    display: block;
    margin-bottom: 24px;
  }

  .features-heading h2 {
    font-size: 27px;
  }

  .features-heading p {
    margin-top: 8px;
    font-size: 13px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-card,
  .feature-card:last-child {
    grid-column: auto;
    min-height: 190px;
    padding: 22px;
    border-radius: 22px;
  }

  .feature-number,
  .feature-card--cyan .feature-number,
  .feature-card--purple .feature-number,
  .feature-card--gray .feature-number {
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    border-radius: 15px;
    font-size: 18px;
  }

  .feature-content {
    padding-top: 62px;
  }

  .feature-content h3 {
    font-size: 18px;
  }

  .feature-content p {
    max-width: 100%;
    font-size: 13px;
    line-height: 1.9;
  }
}
}
.features-section {
  margin-top: -30px;
}
/* سكشن الطلب */
.store-cta-section {
  --cta-color: #8a1538;

  direction: rtl;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 24px 40px;
  background: #ffffff;
  font-family: inherit;
}

.store-cta-section *,
.store-cta-section *::before,
.store-cta-section *::after {
  box-sizing: border-box;
}

/* المربع الزجاجي */
.store-cta-box {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 35px;
  max-width: 1220px;
  min-height: 174px;
  margin: 0 auto;
  padding: 35px 48px;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(138, 21, 56, 0.18);
  border-radius: 30px;

  box-shadow:
    0 14px 40px rgba(138, 21, 56, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* اللمعة داخل المربع */
.store-cta-box::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -50px;
  width: 320px;
  height: 260px;
  border-radius: 50%;
  background: rgba(138, 21, 56, 0.08);
  filter: blur(30px);
  pointer-events: none;
}

.store-cta-content {
  position: relative;
  z-index: 1;
}

.store-cta-content h2 {
  margin: 0 0 8px;
  color: var(--cta-color);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.35;
}

.store-cta-content p {
  margin: 0;
  color: var(--cta-color);
  font-size: 15px;
  line-height: 1.8;
  opacity: 0.78;
}

/* زر الرابط */
.store-cta-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 235px;
  min-height: 58px;
  padding: 15px 28px;

  color: #ffffff !important;
  background: var(--cta-color);
  border: 1px solid var(--cta-color);
  border-radius: 999px;

  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none !important;

  box-shadow: 0 10px 24px rgba(138, 21, 56, 0.22);

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.store-cta-button span,
.store-cta-button strong {
  color: #ffffff !important;
}

.store-cta-button strong {
  font-weight: 800;
}

.store-cta-button:hover {
  color: #ffffff !important;
  background: #70102d;
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(138, 21, 56, 0.3);
}

.store-cta-button:active {
  transform: translateY(0);
}

/* الجوال */
@media (max-width: 600px) {
  .store-cta-section {
    padding: 12px 16px 30px;
  }

  .store-cta-box {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    min-height: auto;
    padding: 28px 22px;
    border-radius: 24px;
    text-align: center;
  }

  .store-cta-content h2 {
    margin-bottom: 8px;
    font-size: 25px;
    line-height: 1.45;
  }

  .store-cta-content p {
    font-size: 13px;
    line-height: 1.8;
  }

  .store-cta-button {
    width: 100%;
    min-width: 0;
    min-height: 55px;
    font-size: 14px;
  }
}
/* قسم المنتج المميز */
.featured-product-section {
  --product-color: #8a1538;
  --product-color-dark: #6f102d;

  direction: rtl;
  box-sizing: border-box;
  width: 100%;
  padding: 40px 24px;
  background: #ffffff;
  font-family: inherit;
}

.featured-product-section *,
.featured-product-section *::before,
.featured-product-section *::after {
  box-sizing: border-box;
}

/* عنوان القسم */
.featured-product-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  max-width: 1220px;
  margin: 0 auto 30px;
}

.featured-product-heading h2 {
  margin: 0;
  color: var(--product-color);
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  line-height: 1.3;
}

.featured-product-heading p {
  max-width: 500px;
  margin: 0;
  color: var(--product-color);
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.75;
}

/* البطاقة الزجاجية */
.featured-product-card {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  max-width: 1220px;
  margin: 0 auto;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(138, 21, 56, 0.18);
  border-radius: 28px;

  box-shadow:
    0 16px 45px rgba(138, 21, 56, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* معلومات المنتج */
.featured-product-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 46px;
}

.product-labels {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
}

.product-availability {
  padding: 7px 13px;
  color: #ffffff;
  background: var(--product-color);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.product-category {
  color: var(--product-color);
  font-size: 13px;
  opacity: 0.75;
}

.featured-product-info h3 {
  margin: 0 0 12px;
  color: var(--product-color);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 800;
  line-height: 1.45;
}

.product-description {
  max-width: 500px;
  margin: 0 0 23px;
  color: var(--product-color);
  font-size: 15px;
  line-height: 2;
  opacity: 0.78;
}

/* مميزات المنتج */
.product-features {
  display: grid;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.product-features li {
  position: relative;
  padding-right: 34px;
  color: var(--product-color);
  font-size: 14px;
  line-height: 1.7;
}

.product-features li::before {
  content: "✓";
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  place-items: center;
  width: 23px;
  height: 23px;
  color: #ffffff;
  background: var(--product-color);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
}

/* السعر */
.product-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  margin-bottom: 25px;
  color: var(--product-color);
}

.product-price strong {
  font-size: 42px;
  font-weight: 800;
  line-height: 1;
}

.product-price span {
  font-size: 15px;
  font-weight: 700;
}

.product-price del {
  margin-right: 6px;
  font-size: 13px;
  opacity: 0.55;
}

/* زر المنتج */
.featured-product-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 58px;
  padding: 14px 25px;

  color: #ffffff !important;
  background: var(--product-color);
  border-radius: 15px;

  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;

  box-shadow: 0 10px 25px rgba(138, 21, 56, 0.22);

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.featured-product-button span {
  color: #ffffff !important;
}

.featured-product-button:hover {
  color: #ffffff !important;
  background: var(--product-color-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(138, 21, 56, 0.3);
}

.button-arrow {
  font-size: 21px;
}

/* معرض الصور */
.featured-product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(180px, 0.65fr);
  gap: 1px;
  min-width: 0;
  background: rgba(138, 21, 56, 0.14);
}

.product-main-image,
.product-small-image {
  position: relative;
  overflow: hidden;
  background: #f8f2f4;
}

.product-main-image {
  min-height: 560px;
}

.product-small-images {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1px;
}

.product-main-image img,
.product-small-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.product-main-image:hover img,
.product-small-image:hover img {
  transform: scale(1.025);
}

/* التابلت */
@media (max-width: 900px) {
  .featured-product-card {
    grid-template-columns: 1fr;
  }

  .featured-product-gallery {
    grid-row: 1;
  }

  .product-main-image {
    min-height: 390px;
  }

  .featured-product-info {
    padding: 35px;
  }
}

/* الجوال */
@media (max-width: 600px) {
  .featured-product-section {
    padding: 28px 16px;
  }

  .featured-product-heading {
    display: block;
    margin-bottom: 22px;
  }

  .featured-product-heading h2 {
    font-size: 28px;
  }

  .featured-product-heading p {
    margin-top: 8px;
    font-size: 13px;
  }

  .featured-product-card {
    display: flex;
    flex-direction: column;
    border-radius: 22px;
  }

  /* إبقاء الصور صغيرة على الجوال */
  .featured-product-gallery {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 190px 110px;
    order: 1;
  }

  .product-main-image {
    grid-column: 1 / -1;
    min-height: 0;
  }

  .product-small-images {
    display: contents;
  }

  .product-main-image img,
  .product-small-image img {
    object-fit: cover;
  }

  .featured-product-info {
    order: 2;
    padding: 25px 20px;
  }

  .product-labels {
    margin-bottom: 17px;
  }

  .featured-product-info h3 {
    font-size: 24px;
  }

  .product-description {
    margin-bottom: 20px;
    font-size: 13px;
    line-height: 1.9;
  }

  .product-features {
    gap: 10px;
    margin-bottom: 24px;
  }

  .product-features li {
    padding-right: 31px;
    font-size: 13px;
  }

  .product-price strong {
    font-size: 36px;
  }

  .featured-product-button {
    min-height: 55px;
    border-radius: 13px;
    font-size: 14px;
  }
}
/* قسم المقارنة */
.shiro-comparison-section {
  --shiro-color: #8a1538;
  --shiro-dark: #6f102d;
  --shiro-light: rgba(138, 21, 56, 0.07);

  direction: rtl;
  box-sizing: border-box;
  width: 100%;
  padding: 45px 24px;
  overflow: hidden;
  background: #ffffff;
  font-family: inherit;
}

.shiro-comparison-section *,
.shiro-comparison-section *::before,
.shiro-comparison-section *::after {
  box-sizing: border-box;
}

/* عنوان القسم */
.shiro-comparison-heading {
  max-width: 1220px;
  margin: 0 auto 30px;
  text-align: center;
}

.shiro-comparison-heading > span {
  display: inline-block;
  margin-bottom: 7px;
  color: var(--shiro-color);
  font-size: 13px;
  font-weight: 700;
}

.shiro-comparison-heading h2 {
  margin: 0 0 8px;
  color: var(--shiro-color);
  font-size: clamp(27px, 4vw, 40px);
  font-weight: 800;
  line-height: 1.4;
}

.shiro-comparison-heading p {
  margin: 0;
  color: var(--shiro-color);
  font-size: 14px;
  opacity: 0.7;
}

/* البطاقة الخارجية */
.shiro-comparison-layout {
  display: grid;
  grid-template-columns: minmax(400px, 0.95fr) minmax(350px, 1.05fr);
  align-items: center;
  gap: 35px;
  max-width: 1220px;
  margin: 0 auto;
  padding: 30px;

  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(138, 21, 56, 0.16);
  border-radius: 28px;

  box-shadow:
    0 16px 45px rgba(138, 21, 56, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* جدول المقارنة */
.shiro-comparison-table {
  display: grid;
  grid-template-columns: minmax(180px, 1.5fr) minmax(95px, 0.75fr) minmax(95px, 0.75fr);
  overflow: hidden;
  border: 1px solid rgba(138, 21, 56, 0.13);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 10px 30px rgba(138, 21, 56, 0.06);
}

.comparison-header,
.comparison-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  padding: 15px 13px;
  border-bottom: 1px solid rgba(138, 21, 56, 0.1);
}

.comparison-header {
  min-height: 82px;
  color: var(--shiro-color);
  font-size: 15px;
  font-weight: 800;
  text-align: center;
}

.comparison-header strong,
.comparison-header small {
  display: block;
}

.comparison-header strong {
  font-size: 16px;
}

.comparison-header small {
  margin-top: 3px;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.75;
}

.comparison-feature-title {
  justify-content: flex-start;
  padding-right: 20px;
  font-size: 17px;
}

.shiro-header {
  flex-direction: column;
  color: #ffffff;
  background: var(--shiro-color);
}

.other-header {
  flex-direction: column;
  background: var(--shiro-light);
}

.comparison-cell {
  min-height: 64px;
  color: var(--shiro-color);
}

.comparison-name {
  justify-content: flex-start;
  padding-right: 20px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.6;
}

.shiro-cell {
  background: rgba(138, 21, 56, 0.045);
}

.comparison-table > :nth-last-child(-n + 3) {
  border-bottom: 0;
}

/* علامات المقارنة */
.comparison-check,
.comparison-cross,
.comparison-minus {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
}

.comparison-check {
  color: #ffffff;
  background: var(--shiro-color);
  box-shadow: 0 5px 13px rgba(138, 21, 56, 0.2);
}

.comparison-cross {
  color: var(--shiro-color);
  border: 1.5px solid var(--shiro-color);
  background: transparent;
}

.comparison-minus {
  color: var(--shiro-color);
  background: rgba(138, 21, 56, 0.09);
}

/* صورة المقارنة */
.shiro-comparison-visual {
  min-width: 0;
}

.shiro-comparison-visual a {
  position: relative;
  display: block;
  max-width: 560px;
  height: 390px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 24px;
  background: #f8f2f4;
  text-decoration: none;
}

.shiro-comparison-visual img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.shiro-comparison-visual a:hover img {
  transform: scale(1.025);
}

.comparison-image-overlay {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 55px 24px 22px;
  color: #ffffff;
  background: linear-gradient(
    to top,
    rgba(82, 8, 31, 0.95),
    rgba(82, 8, 31, 0)
  );
}

.comparison-image-overlay span,
.comparison-image-overlay strong,
.comparison-image-overlay small {
  display: block;
  color: #ffffff;
}

.comparison-image-overlay span {
  margin-bottom: 2px;
  font-size: 12px;
  opacity: 0.85;
}

.comparison-image-overlay strong {
  font-size: 25px;
  font-weight: 800;
}

.comparison-image-overlay small {
  margin-top: 3px;
  font-size: 12px;
}

/* الزر */
.comparison-action {
  display: flex;
  justify-content: center;
  margin-top: 25px;
}

.comparison-product-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 250px;
  min-height: 56px;
  padding: 14px 28px;

  color: #ffffff !important;
  background: var(--shiro-color);
  border-radius: 999px;

  font-size: 15px;
  font-weight: 700;
  text-decoration: none !important;

  box-shadow: 0 10px 25px rgba(138, 21, 56, 0.22);
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.comparison-product-button span {
  color: #ffffff !important;
}

.comparison-product-button:hover {
  color: #ffffff !important;
  background: var(--shiro-dark);
  transform: translateY(-3px);
}

/* التابلت */
@media (max-width: 900px) {
  .shiro-comparison-layout {
    grid-template-columns: 1fr;
  }

  .shiro-comparison-visual {
    grid-row: 1;
  }

  .shiro-comparison-visual a {
    height: 300px;
  }
}

/* الجوال */
@media (max-width: 600px) {
  .shiro-comparison-section {
    padding: 30px 12px;
  }

  .shiro-comparison-heading {
    margin-bottom: 22px;
    padding: 0 8px;
  }

  .shiro-comparison-heading h2 {
    font-size: 26px;
  }

  .shiro-comparison-heading p {
    font-size: 13px;
  }

  .shiro-comparison-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 13px;
    border-radius: 22px;
  }

  /* وضع الجدول أولًا على الجوال */
  .shiro-comparison-table {
    order: 1;
    grid-template-columns: minmax(128px, 1.45fr) 76px 76px;
    width: 100%;
    border-radius: 16px;
  }

  .shiro-comparison-visual {
    order: 2;
    width: 100%;
  }

  .comparison-header,
  .comparison-cell {
    min-height: 59px;
    padding: 10px 7px;
  }

  .comparison-header {
    min-height: 72px;
    font-size: 13px;
  }

  .comparison-feature-title {
    justify-content: flex-start;
    padding-right: 12px;
    font-size: 14px;
  }

  .comparison-header strong {
    font-size: 13px;
  }

  .comparison-header small {
    font-size: 9px;
  }

  .comparison-name {
    padding-right: 12px;
    font-size: 11px;
    line-height: 1.5;
  }

  .comparison-check,
  .comparison-cross,
  .comparison-minus {
    width: 23px;
    height: 23px;
    font-size: 14px;
  }

  /* صورة صغيرة على الجوال */
  .shiro-comparison-visual a {
    width: 100%;
    height: 210px;
    border-radius: 17px;
  }

  .shiro-comparison-visual img {
    object-fit: contain;
  }

  .comparison-image-overlay {
    padding: 45px 17px 15px;
  }

  .comparison-image-overlay strong {
    font-size: 20px;
  }

  .comparison-action {
    margin-top: 20px;
  }

  .comparison-product-button {
    width: calc(100% - 24px);
    min-width: 0;
    min-height: 54px;
    font-size: 14px;
  }
}
/* شريط مميزات متجر شيرو */
.shiro-store-benefits {
  --shiro-color: #8a1538;
  --shiro-dark: #6f102d;

  direction: rtl;
  box-sizing: border-box;
  width: 100%;
  padding: 20px 24px;
  background: #ffffff;
  font-family: inherit;
}

.shiro-store-benefits *,
.shiro-store-benefits *::before,
.shiro-store-benefits *::after {
  box-sizing: border-box;
}

.shiro-benefits-container {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 1220px;
  margin: 0 auto;
  overflow: hidden;

  background: rgba(255, 255, 255, 0.52);
  border: 1px solid rgba(138, 21, 56, 0.16);
  border-radius: 24px;

  box-shadow:
    0 13px 35px rgba(138, 21, 56, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);

  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

/* كل ميزة */
.shiro-benefit-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 17px;
  min-height: 130px;
  padding: 25px 20px;
}

.shiro-benefit-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 27px;
  bottom: 27px;
  left: 0;
  width: 1px;
  background: rgba(138, 21, 56, 0.15);
}

/* الأيقونة */
.shiro-benefit-icon {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 61px;
  height: 61px;
  color: #ffffff;
  background:
    linear-gradient(
      145deg,
      var(--shiro-color),
      var(--shiro-dark)
    );
  border-radius: 50%;
  box-shadow: 0 9px 20px rgba(138, 21, 56, 0.2);
}

.shiro-benefit-icon svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* النص */
.shiro-benefit-content {
  min-width: 0;
}

.shiro-benefit-content h3 {
  margin: 0 0 5px;
  color: var(--shiro-color);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.4;
}

.shiro-benefit-content p {
  margin: 0;
  color: var(--shiro-color);
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.72;
}

/* حركة خفيفة */
.shiro-benefit-item,
.shiro-benefit-icon {
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.shiro-benefit-item:hover .shiro-benefit-icon {
  transform: translateY(-3px) scale(1.04);
}

/* التابلت */
@media (max-width: 850px) {
  .shiro-benefit-item {
    gap: 12px;
    padding: 22px 14px;
  }

  .shiro-benefit-icon {
    width: 52px;
    height: 52px;
  }

  .shiro-benefit-icon svg {
    width: 25px;
    height: 25px;
  }

  .shiro-benefit-content h3 {
    font-size: 15px;
  }

  .shiro-benefit-content p {
    font-size: 11px;
  }
}

/* الجوال */
@media (max-width: 600px) {
  .shiro-store-benefits {
    padding: 14px 16px;
  }

  .shiro-benefits-container {
    grid-template-columns: 1fr;
    border-radius: 20px;
  }

  .shiro-benefit-item {
    justify-content: flex-start;
    min-height: 0;
    padding: 18px 20px;
  }

  .shiro-benefit-item:not(:last-child)::after {
    top: auto;
    right: 20px;
    bottom: 0;
    left: 20px;
    width: auto;
    height: 1px;
  }

  .shiro-benefit-icon {
    width: 48px;
    height: 48px;
  }

  .shiro-benefit-icon svg {
    width: 23px;
    height: 23px;
  }

  .shiro-benefit-content h3 {
    margin-bottom: 3px;
    font-size: 15px;
  }

  .shiro-benefit-content p {
    font-size: 11px;
  }
}
/* عنوان مميزات المتجر */
.shiro-benefits-heading {
  max-width: 1220px;
  margin: 0 auto 25px;
  text-align: center;
}
.bg-primary {
    background-color: #8a1538;
}
.text-primary-reverse {
    color: #ffffff;
}