/* =========================================================
   Elegant Taste Co. — Clean Salla CSS
   Brand color: #EA2328
   Version: cleaned safe build
   ========================================================= */

:root {
  --et-red: #EA2328;
  --et-red-dark: #d91f24;
  --et-text: #1f2933;
  --et-muted: #667085;
  --et-soft: #f7f8fa;
  --et-border: #eee5e0;
  --et-shadow: 0 18px 42px rgba(31, 41, 51, 0.07);
  --et-shadow-lg: 0 22px 60px rgba(31, 41, 51, 0.08);
}

/* =========================================================
   1) Header polish — safe
   ========================================================= */

header a[href="/"] img,
header .navbar-brand img,
header .store-logo img,
header .s-header-logo img {
  max-height: 42px !important;
  width: auto !important;
  object-fit: contain !important;
}

header nav a,
header .main-menu a,
header .navbar a {
  font-weight: 800 !important;
  color: var(--et-text) !important;
  transition: color 0.22s ease;
}

header nav a:hover,
header .main-menu a:hover,
header .navbar a:hover {
  color: var(--et-red) !important;
}

header a[href*="offers"] {
  color: var(--et-red) !important;
  font-weight: 900 !important;
}

header input[type="search"],
header input[placeholder*="البحث"],
header input[placeholder*="كلمة"] {
  border-radius: 999px !important;
  background: #f5f6f7 !important;
  border: 1px solid #edf0f2 !important;
  min-height: 38px !important;
}

.announcement,
.announcement-bar,
.s-announcement-bar,
.top-navbar,
.top-bar {
  font-weight: 800 !important;
}

@media (max-width: 768px) {
  header a[href="/"] img,
  header .navbar-brand img,
  header .store-logo img,
  header .s-header-logo img {
    max-height: 34px !important;
  }

  header input[type="search"],
  header input[placeholder*="البحث"],
  header input[placeholder*="كلمة"] {
    min-height: 34px !important;
    font-size: 12px !important;
  }
}

/* =========================================================
   2) Homepage custom sections
   ========================================================= */

/* ---------- Need Section ---------- */

.et-need-section {
  direction: rtl;
  max-width: 1180px;
  margin: 42px auto 34px !important;
  padding: 0 18px;
}

.et-need-head {
  text-align: center;
  margin-bottom: 26px;
}

.et-need-head span {
  display: inline-flex;
  color: var(--et-red) !important;
  background: rgba(234, 35, 40, 0.08) !important;
  border: 1px solid rgba(234, 35, 40, 0.14);
  padding: 8px 15px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 900;
  margin-bottom: 12px;
}

.et-need-head h2 {
  margin: 0 0 8px;
  font-size: 32px !important;
  font-weight: 900;
  color: var(--et-text);
  letter-spacing: -0.5px;
}

.et-need-head p {
  margin: 0;
  color: var(--et-muted) !important;
  font-size: 15px !important;
}

.et-need-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 18px;
}

.et-need-card {
  display: block;
  text-decoration: none !important;
  background: #ffffff;
  border: 1px solid var(--et-border);
  border-radius: 22px !important;
  padding: 24px 20px !important;
  min-height: 170px !important;
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.07) !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.et-need-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 35, 40, 0.22) !important;
  box-shadow: 0 22px 50px rgba(31, 41, 51, 0.10) !important;
}

.et-need-icon {
  width: 62px !important;
  height: 62px !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, rgba(234, 35, 40, 0.12), rgba(234, 35, 40, 0.04));
  color: var(--et-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(234, 35, 40, 0.16);
  box-shadow: 0 10px 24px rgba(234, 35, 40, 0.08) !important;
}

.et-need-icon svg {
  width: 32px !important;
  height: 32px !important;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.et-need-card:hover .et-need-icon {
  background: var(--et-red);
  color: #ffffff;
  transform: scale(1.05);
}

.et-need-card h3 {
  margin: 0 0 8px !important;
  color: var(--et-text);
  font-size: 17px !important;
  font-weight: 900;
  line-height: 1.5;
}

.et-need-card p {
  margin: 0;
  color: #6b7280;
  font-size: 13px !important;
  line-height: 1.8 !important;
}

@media (max-width: 1100px) {
  .et-need-grid {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .et-need-section {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .et-need-head h2 {
    font-size: 24px !important;
  }

  .et-need-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .et-need-card {
    border-radius: 20px !important;
  }
}

@media (max-width: 520px) {
  .et-need-section {
    padding: 0 14px;
  }

  .et-need-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  .et-need-card {
    min-height: auto !important;
    padding: 20px 18px !important;
  }
}

/* ---------- Journey Section ---------- */

.et-journey-section {
  direction: rtl;
  max-width: 1180px;
  margin: 22px auto 42px !important;
  padding: 0 18px;
}

.et-journey-head {
  text-align: center;
  margin-bottom: 26px;
}

.et-journey-head span {
  display: inline-flex;
  color: var(--et-red) !important;
  background: rgba(234, 35, 40, 0.08) !important;
  border: 1px solid rgba(234, 35, 40, 0.14);
  padding: 8px 15px !important;
  border-radius: 999px !important;
  font-size: 13px !important;
  font-weight: 900;
  margin-bottom: 12px;
}

.et-journey-head h2 {
  margin: 0 0 8px;
  font-size: 32px !important;
  font-weight: 900;
  color: var(--et-text);
  letter-spacing: -0.5px;
}

.et-journey-head p {
  margin: 0 auto;
  max-width: 720px;
  color: var(--et-muted) !important;
  font-size: 15px !important;
  line-height: 1.9;
}

.et-journey-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.et-journey-card {
  position: relative;
  background: #ffffff;
  border: 1px solid var(--et-border);
  border-radius: 24px !important;
  padding: 28px 24px;
  min-height: 190px !important;
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.07) !important;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.et-journey-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 35, 40, 0.22) !important;
}

.et-journey-card:before {
  content: "";
  position: absolute;
  top: -45px;
  left: -45px;
  width: 110px;
  height: 110px;
  background: rgba(234, 35, 40, 0.06);
  border-radius: 50%;
}

.et-journey-icon {
  width: 62px !important;
  height: 62px !important;
  border-radius: 20px !important;
  background: linear-gradient(135deg, rgba(234, 35, 40, 0.10), rgba(234, 35, 40, 0.04));
  color: var(--et-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(234, 35, 40, 0.12);
  position: relative;
  z-index: 1;
  box-shadow: 0 10px 24px rgba(234, 35, 40, 0.08) !important;
}

.et-journey-icon svg {
  width: 32px !important;
  height: 32px !important;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 3.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.et-journey-card h3 {
  margin: 0 0 10px;
  color: var(--et-text);
  font-size: 18px !important;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.et-journey-card p {
  margin: 0;
  color: #6b7280;
  font-size: 14px !important;
  line-height: 1.9 !important;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .et-journey-grid {
    grid-template-columns: 1fr;
  }

  .et-journey-card {
    min-height: auto !important;
  }
}

@media (max-width: 768px) {
  .et-journey-section {
    margin-top: 30px !important;
    margin-bottom: 30px !important;
  }

  .et-journey-head h2 {
    font-size: 24px !important;
  }

  .et-journey-card {
    border-radius: 20px !important;
  }
}

@media (max-width: 560px) {
  .et-journey-section {
    padding: 0 14px;
  }

  .et-journey-card {
    padding: 22px 18px;
  }
}

/* ---------- Offer Strip ---------- */

.et-offer-strip {
  direction: rtl;
  max-width: 1180px;
  margin: 34px auto 46px;
  padding: 0 18px;
}

.et-offer-content {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 34px 38px;
  background:
    radial-gradient(circle at 8% 20%, rgba(234, 35, 40, 0.12), transparent 26%),
    radial-gradient(circle at 92% 80%, rgba(31, 41, 51, 0.08), transparent 28%),
    linear-gradient(135deg, #fff7f4 0%, #ffffff 48%, #f5f6f7 100%);
  border: 1px solid rgba(234, 35, 40, 0.10);
  box-shadow: 0 20px 55px rgba(31, 41, 51, 0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.et-offer-content:before {
  content: "";
  position: absolute;
  top: -110px;
  right: -90px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(234, 35, 40, 0.16);
}

.et-offer-content:after {
  content: "";
  position: absolute;
  bottom: -130px;
  left: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(234, 35, 40, 0.045);
}

.et-offer-text,
.et-offer-actions {
  position: relative;
  z-index: 2;
}

.et-offer-text span {
  display: inline-flex;
  color: var(--et-red);
  background: rgba(234, 35, 40, 0.08);
  border: 1px solid rgba(234, 35, 40, 0.14);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.et-offer-text h2 {
  margin: 0 0 8px;
  color: var(--et-text);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.et-offer-text p {
  margin: 0;
  max-width: 620px;
  color: var(--et-muted);
  font-size: 15px;
  line-height: 1.9;
}

.et-offer-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.et-offer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.et-offer-btn.primary {
  background: var(--et-red);
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(234, 35, 40, 0.20);
}

.et-offer-btn.secondary {
  background: #ffffff;
  color: var(--et-red) !important;
  border: 1px solid rgba(234, 35, 40, 0.20);
}

.et-offer-btn:hover {
  transform: translateY(-3px);
}

@media (max-width: 768px) {
  .et-offer-strip {
    margin: 28px auto 36px;
    padding: 0 14px;
  }

  .et-offer-content {
    padding: 28px 20px;
    border-radius: 24px;
    flex-direction: column;
    text-align: center;
  }

  .et-offer-text h2 {
    font-size: 24px;
  }

  .et-offer-actions {
    width: 100%;
    flex-direction: column;
  }

  .et-offer-btn {
    width: 100%;
  }
}

/* ---------- AC Help Section ---------- */

.et-ac-help {
  direction: rtl;
  max-width: 1180px;
  margin: 42px auto 48px;
  padding: 0 18px;
}

.et-ac-card {
  display: grid;
  grid-template-columns: 0.95fr 1.25fr;
  gap: 28px;
  align-items: center;
  background:
    radial-gradient(circle at 10% 20%, rgba(234, 35, 40, 0.10), transparent 26%),
    linear-gradient(135deg, #fff7f4 0%, #ffffff 55%, #f7f8fa 100%);
  border: 1px solid rgba(234, 35, 40, 0.10);
  border-radius: 32px;
  padding: 32px;
  box-shadow: var(--et-shadow-lg);
}

.et-ac-steps {
  display: grid;
  gap: 14px;
}

.et-ac-step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: #ffffff;
  border: 1px solid var(--et-border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 12px 28px rgba(31, 41, 51, 0.05);
}

.et-ac-step span {
  width: 34px;
  height: 34px;
  background: var(--et-red);
  color: #ffffff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  flex-shrink: 0;
}

.et-ac-step h3 {
  margin: 0 0 5px;
  color: var(--et-text);
  font-size: 15px;
  font-weight: 900;
}

.et-ac-step p {
  margin: 0;
  color: var(--et-muted);
  font-size: 13px;
  line-height: 1.8;
}

.et-ac-content span {
  display: inline-flex;
  color: var(--et-red);
  background: rgba(234, 35, 40, 0.08);
  border: 1px solid rgba(234, 35, 40, 0.14);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.et-ac-content h2 {
  margin: 0 0 12px;
  color: var(--et-text);
  font-size: 32px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.6px;
}

.et-ac-content p {
  margin: 0 0 18px;
  color: var(--et-muted);
  font-size: 15px;
  line-height: 2;
}

.et-ac-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.et-ac-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none !important;
}

.et-ac-btn.primary {
  background: var(--et-red);
  color: #ffffff !important;
  box-shadow: 0 14px 30px rgba(234, 35, 40, 0.20);
}

.et-ac-btn.secondary {
  background: #ffffff;
  color: var(--et-text) !important;
  border: 1px solid var(--et-border);
}

.et-ac-content strong {
  display: block;
  color: #179A4A;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .et-ac-card {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .et-ac-help {
    margin: 34px auto 40px;
    padding: 0 14px;
  }

  .et-ac-card {
    padding: 24px 18px;
    border-radius: 24px;
  }

  .et-ac-content h2 {
    font-size: 24px;
  }

  .et-ac-actions {
    flex-direction: column;
  }

  .et-ac-btn {
    width: 100%;
  }
}

/* ---------- Shipping Note Homepage ---------- */

.et-shipping-note {
  direction: rtl;
  max-width: 1180px;
  margin: 42px auto 46px;
  padding: 0 18px;
}

.et-shipping-head {
  text-align: center;
  margin-bottom: 24px;
}

.et-shipping-head span {
  display: inline-flex;
  color: var(--et-red);
  background: rgba(234, 35, 40, 0.08);
  border: 1px solid rgba(234, 35, 40, 0.14);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.et-shipping-head h2 {
  margin: 0 0 8px;
  color: var(--et-text);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.et-shipping-head p {
  margin: 0 auto;
  max-width: 640px;
  color: var(--et-muted);
  font-size: 15px;
  line-height: 1.9;
}

.et-shipping-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.et-shipping-card {
  background: #ffffff;
  border: 1px solid var(--et-border);
  border-radius: 24px;
  padding: 26px 22px;
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.07);
  position: relative;
  overflow: hidden;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.et-shipping-card:hover {
  transform: translateY(-5px);
  border-color: rgba(234, 35, 40, 0.22);
}

.et-shipping-card:before {
  content: "";
  position: absolute;
  top: -45px;
  left: -45px;
  width: 110px;
  height: 110px;
  background: rgba(234, 35, 40, 0.055);
  border-radius: 50%;
}

.et-shipping-icon {
  width: 62px;
  height: 62px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(234, 35, 40, 0.12), rgba(234, 35, 40, 0.04));
  color: var(--et-red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border: 1px solid rgba(234, 35, 40, 0.16);
  box-shadow: 0 10px 24px rgba(234, 35, 40, 0.08);
  position: relative;
  z-index: 1;
}

.et-shipping-icon svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.et-shipping-card h3 {
  margin: 0 0 8px;
  color: var(--et-text);
  font-size: 18px;
  font-weight: 900;
  position: relative;
  z-index: 1;
}

.et-shipping-card p {
  margin: 0;
  color: var(--et-muted);
  font-size: 14px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  .et-shipping-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .et-shipping-note {
    margin: 32px auto 36px;
    padding: 0 14px;
  }

  .et-shipping-head h2 {
    font-size: 24px;
  }

  .et-shipping-card {
    border-radius: 20px;
    padding: 22px 18px;
  }
}

/* =========================================================
   3) Salla native category/product safe polish
   No hiding. No display:none. No section:has().
   ========================================================= */

.s-products-list-wrapper,
.salla-products-list {
  max-width: 1180px !important;
  margin-inline: auto !important;
}

/* Native product cards */
.s-product-card-entry {
  border-radius: 24px !important;
  border: 1px solid var(--et-border) !important;
  background: #ffffff !important;
  box-shadow: var(--et-shadow) !important;
  overflow: hidden !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.s-product-card-entry:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(234, 35, 40, 0.22) !important;
  box-shadow: 0 26px 60px rgba(31, 41, 51, 0.12) !important;
}

.s-product-card-image {
  background: #ffffff !important;
  padding: 20px !important;
}

.s-product-card-image img {
  object-fit: contain !important;
  max-height: 230px !important;
}

.s-product-card-content {
  padding: 18px 18px 20px !important;
  text-align: center !important;
}

.s-product-card-content-title,
.s-product-card-content-title a {
  color: var(--et-text) !important;
  font-size: 15px !important;
  font-weight: 900 !important;
  line-height: 1.7 !important;
}

.s-product-card-price {
  color: var(--et-text) !important;
  font-size: 17px !important;
  font-weight: 900 !important;
}

/* Product listing button only */
.s-product-card-entry .s-button-btn,
.s-product-card-content-footer button {
  border-radius: 999px !important;
  min-height: 42px !important;
  font-weight: 900 !important;
  border-color: var(--et-red) !important;
  color: var(--et-red) !important;
}

.s-product-card-entry .s-button-btn:hover,
.s-product-card-content-footer button:hover {
  background: var(--et-red) !important;
  color: #ffffff !important;
}

/* Product page add to cart buttons — scoped */
.product-form .s-button-primary,
.product-form button[type="submit"],
form[action*="cart"] .s-button-primary,
form[action*="cart"] button[type="submit"] {
  background: var(--et-red) !important;
  color: #ffffff !important;
  border-color: var(--et-red) !important;
  font-weight: 900 !important;
}

.product-form .s-button-primary *,
.product-form button[type="submit"] *,
form[action*="cart"] .s-button-primary *,
form[action*="cart"] button[type="submit"] * {
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

.product-form .s-button-primary:hover,
.product-form button[type="submit"]:hover,
form[action*="cart"] .s-button-primary:hover,
form[action*="cart"] button[type="submit"]:hover {
  background: var(--et-red-dark) !important;
  border-color: var(--et-red-dark) !important;
}

.product-gallery img,
.product-images img {
  object-fit: contain !important;
}

.product-title,
.product-page h1,
.product-single h1 {
  color: var(--et-text) !important;
  font-weight: 900 !important;
  line-height: 1.45 !important;
  letter-spacing: -0.4px;
}

.product-summary p,
.product-page .product-short-description {
  color: var(--et-muted) !important;
  line-height: 1.9 !important;
}

@media (max-width: 768px) {
  .s-product-card-entry {
    border-radius: 20px !important;
  }

  .s-product-card-image img {
    max-height: 190px !important;
  }

  .product-title,
  .product-page h1,
  .product-single h1 {
    font-size: 22px !important;
    text-align: center;
  }
}

/* Optional custom product description block — applies only if you add this HTML class manually */

.et-product-desc {
  direction: rtl;
  background: #ffffff;
  border: 1px solid var(--et-border);
  border-radius: 26px;
  padding: 28px;
  margin-top: 24px;
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.06);
}

.et-desc-intro h2 {
  margin: 0 0 12px;
  color: var(--et-text);
  font-size: 26px;
  font-weight: 900;
  line-height: 1.5;
}

.et-desc-intro p,
.et-desc-box li,
.et-desc-note p {
  color: var(--et-muted);
  font-size: 14px;
  line-height: 2;
}

.et-desc-intro p {
  margin: 0 0 22px;
  font-size: 15px;
}

.et-desc-box {
  background: #fffafa;
  border: 1px solid rgba(234, 35, 40, 0.10);
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 16px;
}

.et-desc-box h3 {
  margin: 0 0 12px;
  color: var(--et-text);
  font-size: 18px;
  font-weight: 900;
}

.et-desc-box ul {
  margin: 0;
  padding: 0 20px 0 0;
}

.et-desc-note {
  background: linear-gradient(135deg, rgba(234, 35, 40, 0.08), rgba(234, 35, 40, 0.03));
  border: 1px solid rgba(234, 35, 40, 0.14);
  border-radius: 22px;
  padding: 20px;
}

.et-desc-note strong {
  display: block;
  color: var(--et-red);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 8px;
}

.et-desc-note p {
  margin: 0;
  color: var(--et-text);
}

@media (max-width: 768px) {
  .et-product-desc {
    padding: 22px 18px;
    border-radius: 22px;
  }

  .et-desc-intro h2 {
    font-size: 22px;
  }
}

/* =========================================================
   4) Shared informational pages
   ========================================================= */

.et-about-page,
.et-shipping-page,
.et-return-page,
.et-contact-page,
.et-privacy-page,
.et-faq-page {
  direction: rtl;
  max-width: 1180px;
  margin: 50px auto 70px;
  padding: 0 18px;
}

.et-about-hero,
.et-shipping-hero,
.et-return-hero,
.et-contact-hero,
.et-privacy-hero,
.et-faq-hero {
  text-align: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(234, 35, 40, 0.10), transparent 25%),
    radial-gradient(circle at 88% 80%, rgba(31, 41, 51, 0.06), transparent 28%),
    linear-gradient(135deg, #fff7f4 0%, #ffffff 55%, #f7f8fa 100%);
  border: 1px solid rgba(234, 35, 40, 0.10);
  border-radius: 32px;
  padding: 54px 28px;
  box-shadow: var(--et-shadow-lg);
  margin-bottom: 24px;
}

.et-about-hero span,
.et-shipping-hero span,
.et-return-hero span,
.et-contact-hero span,
.et-privacy-hero span,
.et-faq-hero span {
  display: inline-flex;
  color: var(--et-red);
  background: rgba(234, 35, 40, 0.08);
  border: 1px solid rgba(234, 35, 40, 0.14);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.et-about-hero h1,
.et-shipping-hero h1,
.et-return-hero h1,
.et-contact-hero h1,
.et-privacy-hero h1,
.et-faq-hero h1 {
  margin: 0 0 14px;
  color: var(--et-text);
  font-size: 38px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.8px;
}

.et-about-hero p,
.et-shipping-hero p,
.et-return-hero p,
.et-contact-hero p,
.et-privacy-hero p,
.et-faq-hero p {
  margin: 0 auto;
  max-width: 780px;
  color: var(--et-muted);
  font-size: 16px;
  line-height: 2;
}

/* About */

.et-about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.et-about-card {
  background: #ffffff;
  border: 1px solid var(--et-border);
  border-radius: 24px;
  padding: 28px 24px;
  box-shadow: var(--et-shadow);
}

.et-about-card h2 {
  margin: 0 0 10px;
  color: var(--et-text);
  font-size: 22px;
  font-weight: 900;
}

.et-about-card p {
  margin: 0;
  color: var(--et-muted);
  font-size: 14px;
  line-height: 2;
}

.et-about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.et-about-values div {
  background: #fffafa;
  border: 1px solid rgba(234, 35, 40, 0.10);
  border-radius: 22px;
  padding: 22px 18px;
}

.et-about-values strong {
  display: block;
  color: var(--et-red);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 8px;
}

.et-about-values p {
  margin: 0;
  color: var(--et-muted);
  font-size: 13px;
  line-height: 1.9;
}

/* Shipping, Return, Privacy shared cards */

.et-shipping-main-grid,
.et-return-grid,
.et-privacy-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.et-shipping-main-card,
.et-return-card,
.et-privacy-card {
  background: #ffffff;
  border: 1px solid var(--et-border);
  border-radius: 26px;
  padding: 30px 26px;
  box-shadow: var(--et-shadow);
  position: relative;
  overflow: hidden;
}

.et-shipping-main-card:before,
.et-return-card:before,
.et-privacy-card:before {
  content: "";
  position: absolute;
  top: -65px;
  left: -65px;
  width: 150px;
  height: 150px;
  background: rgba(234, 35, 40, 0.055);
  border-radius: 50%;
}

.et-shipping-badge,
.et-return-badge,
.et-privacy-badge {
  display: inline-flex;
  color: #ffffff;
  background: var(--et-red);
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.et-shipping-main-card h2,
.et-return-card h2,
.et-privacy-card h2 {
  margin: 0 0 10px;
  color: var(--et-text);
  font-size: 24px;
  font-weight: 900;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.et-shipping-main-card p,
.et-return-card p,
.et-privacy-card p {
  margin: 0 0 16px;
  color: var(--et-muted);
  font-size: 14px;
  line-height: 2;
  position: relative;
  z-index: 1;
}

.et-shipping-main-card ul,
.et-return-card ul,
.et-privacy-card ul {
  margin: 0;
  padding: 0 20px 0 0;
  position: relative;
  z-index: 1;
}

.et-shipping-main-card li,
.et-return-card li,
.et-privacy-card li {
  color: var(--et-text);
  font-size: 14px;
  line-height: 2;
  font-weight: 700;
}

.et-shipping-alert,
.et-return-alert,
.et-privacy-alert,
.et-contact-note,
.et-faq-contact {
  background: linear-gradient(135deg, rgba(234, 35, 40, 0.08), rgba(234, 35, 40, 0.03));
  border: 1px solid rgba(234, 35, 40, 0.14);
  border-radius: 24px;
  padding: 24px 26px;
  margin-bottom: 18px;
}

.et-shipping-alert strong,
.et-return-alert strong,
.et-privacy-alert strong,
.et-contact-note strong,
.et-faq-contact strong {
  display: block;
  color: var(--et-red);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 8px;
}

.et-shipping-alert p,
.et-return-alert p,
.et-privacy-alert p,
.et-contact-note p,
.et-faq-contact p {
  margin: 0 auto;
  color: var(--et-text);
  font-size: 14px;
  line-height: 2;
}

.et-shipping-jubail,
.et-return-info,
.et-privacy-info,
.et-privacy-contact {
  background: #ffffff;
  border: 1px solid var(--et-border);
  border-radius: 26px;
  padding: 28px;
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.06);
  margin-bottom: 18px;
}

.et-shipping-jubail h2,
.et-return-info h2,
.et-privacy-info h2,
.et-privacy-contact h2 {
  margin: 0 0 18px;
  color: var(--et-text);
  font-size: 24px;
  font-weight: 900;
}

.et-shipping-jubail p,
.et-privacy-contact p {
  margin: 0;
  color: var(--et-muted);
  font-size: 14px;
  line-height: 2;
}

.et-shipping-steps,
.et-return-steps,
.et-return-info-grid,
.et-privacy-info-grid,
.et-privacy-rights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.et-shipping-steps,
.et-return-steps,
.et-privacy-rights {
  text-align: center;
}

.et-shipping-steps div,
.et-return-steps div,
.et-return-info-grid div,
.et-privacy-info-grid div,
.et-privacy-rights div {
  background: #fffafa;
  border: 1px solid rgba(234, 35, 40, 0.10);
  border-radius: 22px;
  padding: 22px 18px;
}

.et-shipping-steps strong,
.et-return-steps strong,
.et-privacy-rights strong {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--et-red);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 900;
  margin-bottom: 12px;
}

.et-shipping-steps h3,
.et-return-steps h3,
.et-privacy-rights h3 {
  margin: 0 0 8px;
  color: var(--et-text);
  font-size: 17px;
  font-weight: 900;
}

.et-shipping-steps p,
.et-return-steps p,
.et-return-info-grid p,
.et-privacy-info-grid p,
.et-privacy-rights p {
  margin: 0;
  color: var(--et-muted);
  font-size: 13px;
  line-height: 1.9;
}

.et-return-info-grid strong,
.et-privacy-info-grid strong {
  display: block;
  color: var(--et-red);
  font-size: 16px;
  font-weight: 900;
  margin-bottom: 8px;
}

.et-privacy-contact {
  text-align: center;
}

.et-privacy-contact p {
  margin: 0 auto 16px;
  max-width: 720px;
}

.et-privacy-contact a {
  display: inline-flex;
  color: #ffffff !important;
  background: var(--et-red);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 900;
}

/* Contact */

.et-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.et-contact-card {
  background: #ffffff;
  border: 1px solid var(--et-border);
  border-radius: 26px;
  padding: 30px 24px;
  box-shadow: var(--et-shadow);
  text-align: center;
}

.et-contact-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(234, 35, 40, 0.12), rgba(234, 35, 40, 0.04));
  color: var(--et-red);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  border: 1px solid rgba(234, 35, 40, 0.16);
}

.et-contact-card h2 {
  margin: 0 0 10px;
  color: var(--et-text);
  font-size: 22px;
  font-weight: 900;
}

.et-contact-card p {
  margin: 0 0 14px;
  color: var(--et-muted);
  font-size: 14px;
  line-height: 2;
}

.et-contact-card a {
  display: inline-flex;
  color: var(--et-red) !important;
  background: rgba(234, 35, 40, 0.08);
  border: 1px solid rgba(234, 35, 40, 0.14);
  padding: 9px 15px;
  border-radius: 999px;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 900;
}

.et-contact-note {
  text-align: center;
}

/* FAQ */

.et-faq-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-bottom: 18px;
}

.et-faq-item {
  background: #ffffff;
  border: 1px solid var(--et-border);
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.06);
  position: relative;
  overflow: hidden;
}

.et-faq-item:before {
  content: "";
  position: absolute;
  top: -50px;
  left: -50px;
  width: 120px;
  height: 120px;
  background: rgba(234, 35, 40, 0.055);
  border-radius: 50%;
}

.et-faq-item h2 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: var(--et-text);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
}

.et-faq-item p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--et-muted);
  font-size: 14px;
  line-height: 2;
}

.et-faq-contact {
  text-align: center;
}

.et-faq-contact strong {
  font-size: 20px;
}

.et-faq-contact p {
  max-width: 720px;
  margin-bottom: 16px;
}

.et-faq-contact a {
  display: inline-flex;
  color: #ffffff !important;
  background: var(--et-red);
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 900;
}

@media (max-width: 900px) {
  .et-about-grid,
  .et-about-values,
  .et-shipping-main-grid,
  .et-shipping-steps,
  .et-return-grid,
  .et-return-info-grid,
  .et-return-steps,
  .et-contact-grid,
  .et-privacy-grid,
  .et-privacy-info-grid,
  .et-privacy-rights,
  .et-faq-list {
    grid-template-columns: 1fr;
  }

  .et-about-hero h1,
  .et-shipping-hero h1,
  .et-return-hero h1,
  .et-contact-hero h1,
  .et-privacy-hero h1,
  .et-faq-hero h1 {
    font-size: 28px;
  }
}

@media (max-width: 560px) {
  .et-about-page,
  .et-shipping-page,
  .et-return-page,
  .et-contact-page,
  .et-privacy-page,
  .et-faq-page {
    margin: 32px auto 46px;
    padding: 0 14px;
  }

  .et-about-hero,
  .et-shipping-hero,
  .et-return-hero,
  .et-contact-hero,
  .et-privacy-hero,
  .et-faq-hero {
    padding: 38px 20px;
    border-radius: 26px;
  }

  .et-about-hero h1,
  .et-shipping-hero h1,
  .et-return-hero h1,
  .et-contact-hero h1,
  .et-privacy-hero h1,
  .et-faq-hero h1 {
    font-size: 24px;
  }

  .et-about-card,
  .et-shipping-main-card,
  .et-shipping-alert,
  .et-shipping-jubail,
  .et-return-card,
  .et-return-alert,
  .et-return-info,
  .et-contact-card,
  .et-contact-note,
  .et-privacy-card,
  .et-privacy-alert,
  .et-privacy-info,
  .et-privacy-contact,
  .et-faq-item,
  .et-faq-contact {
    border-radius: 22px;
    padding: 22px 18px;
  }
}

/* Product Cards Clean Polish - Elegant Taste */

.s-product-card-entry {
  border-radius: 24px !important;
  border: 1px solid #eee5e0 !important;
  background: #ffffff !important;
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.07) !important;
  overflow: hidden !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}

.s-product-card-entry:hover {
  transform: translateY(-4px) !important;
  border-color: rgba(234, 35, 40, 0.22) !important;
  box-shadow: 0 26px 60px rgba(31, 41, 51, 0.12) !important;
}

.s-product-card-image {
  background: #ffffff !important;
  padding: 18px !important;
  min-height: 230px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.s-product-card-image img {
  object-fit: contain !important;
  max-height: 210px !important;
  width: auto !important;
  margin: 0 auto !important;
}

.s-product-card-content {
  padding: 18px 18px 22px !important;
  text-align: center !important;
}

.s-product-card-content-title,
.s-product-card-content-title a {
  color: #1f2933 !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 1.7 !important;
  min-height: 54px !important;
  display: block !important;
  text-align: center !important;
}

.s-product-card-price {
  color: #1f2933 !important;
  font-size: 18px !important;
  font-weight: 900 !important;
  margin-top: 10px !important;
  margin-bottom: 14px !important;
  text-align: center !important;
}

.s-product-card-content-footer {
  padding: 0 18px 18px !important;
}

.s-product-card-content-footer button,
.s-product-card-content-footer .s-button-btn {
  width: 100% !important;
  min-height: 44px !important;
  border-radius: 999px !important;
  border: 1px solid #EA2328 !important;
  background: #ffffff !important;
  color: #EA2328 !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

.s-product-card-content-footer button *,
.s-product-card-content-footer .s-button-btn * {
  color: #EA2328 !important;
  fill: #EA2328 !important;
  stroke: #EA2328 !important;
}

.s-product-card-content-footer button:hover,
.s-product-card-content-footer .s-button-btn:hover {
  background: #EA2328 !important;
  color: #ffffff !important;
}

.s-product-card-content-footer button:hover *,
.s-product-card-content-footer .s-button-btn:hover * {
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

@media (max-width: 768px) {
  .s-product-card-image {
    min-height: 190px !important;
  }

  .s-product-card-image img {
    max-height: 170px !important;
  }

  .s-product-card-content-title,
  .s-product-card-content-title a {
    font-size: 14px !important;
    min-height: auto !important;
  }
}

/* Elegant Taste - Safe Header Reset */

/* منع تثبيت الهيدر لو الثيم أو كود سابق خلاه ثابت */
@media (min-width: 769px) {
  header,
  .s-header,
  .site-header,
  .store-header,
  .main-header,
  .top-navbar {
    position: static !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
  }
}

/* تحسينات شكلية آمنة فقط */
header a[href="/"] img,
header .navbar-brand img,
header .store-logo img,
header .s-header-logo img {
  max-height: 42px !important;
  width: auto !important;
  object-fit: contain !important;
}

header nav a,
header .main-menu a,
header .navbar a {
  font-weight: 800 !important;
  color: #1f2933 !important;
  transition: color 0.22s ease;
}

header nav a:hover,
header .main-menu a:hover,
header .navbar a:hover {
  color: #EA2328 !important;
}

header a[href*="offers"],
header a[href*="/offers/"] {
  color: #EA2328 !important;
  font-weight: 900 !important;
}

header input[type="search"],
header input[placeholder*="البحث"],
header input[placeholder*="كلمة"] {
  border-radius: 999px !important;
  background: #f5f6f7 !important;
  border: 1px solid #edf0f2 !important;
  min-height: 38px !important;
}

@media (max-width: 768px) {
  header a[href="/"] img,
  header .navbar-brand img,
  header .store-logo img,
  header .s-header-logo img {
    max-height: 34px !important;
  }

  header input[type="search"],
  header input[placeholder*="البحث"],
  header input[placeholder*="كلمة"] {
    min-height: 34px !important;
    font-size: 12px !important;
  }
}

/* Elegant Taste Trust Strip */

.et-trust-strip {
  direction: rtl;
  max-width: 1180px;
  margin: 26px auto 42px;
  padding: 0 18px;
}

.et-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.et-trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #eee5e0;
  border-radius: 22px;
  padding: 18px 16px;
  box-shadow: 0 16px 38px rgba(31, 41, 51, 0.06);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.et-trust-item:hover {
  transform: translateY(-4px);
  border-color: rgba(234, 35, 40, 0.20);
  box-shadow: 0 22px 52px rgba(31, 41, 51, 0.10);
}

.et-trust-icon {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(234, 35, 40, 0.12), rgba(234, 35, 40, 0.04));
  color: #EA2328;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(234, 35, 40, 0.14);
}

.et-trust-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.et-trust-item h3 {
  margin: 0 0 4px;
  color: #1f2933;
  font-size: 15px;
  font-weight: 900;
  line-height: 1.4;
}

.et-trust-item p {
  margin: 0;
  color: #667085;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 700;
}

@media (max-width: 1000px) {
  .et-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .et-trust-strip {
    margin: 22px auto 34px;
    padding: 0 14px;
  }

  .et-trust-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .et-trust-item {
    border-radius: 18px;
    padding: 15px 14px;
  }

  .et-trust-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
  }
}

/* Elegant Taste Shop Paths Section */

.et-shop-paths {
  direction: rtl;
  max-width: 1180px;
  margin: 42px auto 52px;
  padding: 0 18px;
}

.et-shop-paths-head {
  text-align: center;
  margin-bottom: 26px;
}

.et-shop-paths-head span {
  display: inline-flex;
  color: #EA2328;
  background: rgba(234, 35, 40, 0.08);
  border: 1px solid rgba(234, 35, 40, 0.14);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.et-shop-paths-head h2 {
  margin: 0 0 8px;
  color: #1f2933;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.35;
  letter-spacing: -0.7px;
}

.et-shop-paths-head p {
  margin: 0 auto;
  max-width: 680px;
  color: #667085;
  font-size: 15px;
  line-height: 1.9;
}

.et-shop-paths-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.et-shop-path-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 235px;
  text-decoration: none;
  background:
    radial-gradient(circle at 12% 12%, rgba(234, 35, 40, 0.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #fffafa 100%);
  border: 1px solid #eee5e0;
  border-radius: 26px;
  padding: 22px 18px;
  overflow: hidden;
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.et-shop-path-card:hover {
  transform: translateY(-6px);
  border-color: rgba(234, 35, 40, 0.24);
  box-shadow: 0 28px 70px rgba(31, 41, 51, 0.13);
}

.et-shop-path-card:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(234, 35, 40, 0.055);
}

.et-shop-path-card.main {
  background:
    radial-gradient(circle at 12% 12%, rgba(234, 35, 40, 0.13), transparent 32%),
    linear-gradient(135deg, #fff2ef 0%, #ffffff 58%, #f7f8fa 100%);
  border-color: rgba(234, 35, 40, 0.16);
}

.et-shop-path-card.offer {
  background:
    radial-gradient(circle at 12% 12%, rgba(234, 35, 40, 0.16), transparent 32%),
    linear-gradient(135deg, #fff5f2 0%, #ffffff 58%, #fffafa 100%);
}

.et-shop-path-icon {
  width: 58px;
  height: 58px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(234, 35, 40, 0.12), rgba(234, 35, 40, 0.04));
  color: #EA2328;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  border: 1px solid rgba(234, 35, 40, 0.16);
  position: relative;
  z-index: 1;
}

.et-shop-path-icon svg {
  width: 31px;
  height: 31px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.et-shop-path-content {
  position: relative;
  z-index: 1;
}

.et-shop-path-content span {
  display: inline-flex;
  color: #EA2328;
  background: rgba(234, 35, 40, 0.08);
  border: 1px solid rgba(234, 35, 40, 0.12);
  padding: 6px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 10px;
}

.et-shop-path-content h3 {
  margin: 0 0 8px;
  color: #1f2933;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.55;
}

.et-shop-path-content p {
  margin: 0 0 14px;
  color: #667085;
  font-size: 13px;
  line-height: 1.9;
}

.et-shop-path-content strong {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #EA2328;
  font-size: 13px;
  font-weight: 900;
}

.et-shop-path-content strong:after {
  content: "‹";
  margin-right: 7px;
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 1100px) {
  .et-shop-paths-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .et-shop-paths-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .et-shop-paths-head h2 {
    font-size: 26px;
  }
}

@media (max-width: 520px) {
  .et-shop-paths {
    margin: 34px auto 42px;
    padding: 0 14px;
  }

  .et-shop-paths-grid {
    grid-template-columns: 1fr;
  }

  .et-shop-path-card {
    min-height: auto;
    border-radius: 22px;
  }
}

/* Elegant Taste AC Advisor Section */

.et-ac-advisor {
  direction: rtl;
  max-width: 1180px;
  margin: 54px auto 56px;
  padding: 0 18px;
}

.et-ac-advisor-card {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 26px;
  align-items: center;
  background:
    radial-gradient(circle at 12% 18%, rgba(234, 35, 40, 0.14), transparent 28%),
    radial-gradient(circle at 88% 82%, rgba(31, 41, 51, 0.06), transparent 30%),
    linear-gradient(135deg, #fff2ef 0%, #ffffff 55%, #f7f8fa 100%);
  border: 1px solid rgba(234, 35, 40, 0.14);
  border-radius: 34px;
  padding: 34px;
  box-shadow: 0 26px 70px rgba(31, 41, 51, 0.10);
  overflow: hidden;
  position: relative;
}

.et-ac-advisor-card:before {
  content: "";
  position: absolute;
  top: -110px;
  right: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(234, 35, 40, 0.18);
}

.et-ac-advisor-content,
.et-ac-advisor-box {
  position: relative;
  z-index: 1;
}

.et-ac-advisor-content span {
  display: inline-flex;
  color: #EA2328;
  background: rgba(234, 35, 40, 0.08);
  border: 1px solid rgba(234, 35, 40, 0.14);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 14px;
}

.et-ac-advisor-content h2 {
  margin: 0 0 14px;
  color: #1f2933;
  font-size: 34px;
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.8px;
}

.et-ac-advisor-content p {
  margin: 0 0 20px;
  max-width: 690px;
  color: #667085;
  font-size: 15px;
  line-height: 2;
}

.et-ac-advisor-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.et-ac-advisor-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
}

.et-ac-advisor-btn.primary {
  background: #EA2328;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(234, 35, 40, 0.22);
}

.et-ac-advisor-btn.secondary {
  background: #ffffff;
  color: #EA2328;
  border: 1px solid rgba(234, 35, 40, 0.20);
}

.et-ac-advisor-content strong {
  display: block;
  color: #179A4A;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.8;
}

.et-ac-advisor-box {
  display: grid;
  gap: 12px;
}

.et-ac-advisor-step {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  background: #ffffff;
  border: 1px solid #eee5e0;
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 14px 34px rgba(31, 41, 51, 0.06);
}

.et-ac-advisor-step b {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #EA2328;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  flex-shrink: 0;
}

.et-ac-advisor-step h3 {
  margin: 0 0 5px;
  color: #1f2933;
  font-size: 16px;
  font-weight: 900;
}

.et-ac-advisor-step p {
  margin: 0;
  color: #667085;
  font-size: 13px;
  line-height: 1.8;
}

@media (max-width: 900px) {
  .et-ac-advisor-card {
    grid-template-columns: 1fr;
  }

  .et-ac-advisor-content h2 {
    font-size: 27px;
  }
}

@media (max-width: 560px) {
  .et-ac-advisor {
    margin: 40px auto 44px;
    padding: 0 14px;
  }

  .et-ac-advisor-card {
    padding: 24px 18px;
    border-radius: 26px;
  }

  .et-ac-advisor-actions {
    flex-direction: column;
  }

  .et-ac-advisor-btn {
    width: 100%;
  }
}

/* Elegant Taste Delivery Zones Section */

.et-delivery-zones {
  direction: rtl;
  max-width: 1180px;
  margin: 54px auto 58px;
  padding: 0 18px;
}

.et-delivery-head {
  text-align: center;
  margin-bottom: 26px;
}

.et-delivery-head span {
  display: inline-flex;
  color: #EA2328;
  background: rgba(234, 35, 40, 0.08);
  border: 1px solid rgba(234, 35, 40, 0.14);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.et-delivery-head h2 {
  margin: 0 0 8px;
  color: #1f2933;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.6px;
}

.et-delivery-head p {
  margin: 0 auto;
  max-width: 700px;
  color: #667085;
  font-size: 15px;
  line-height: 1.9;
}

.et-delivery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.et-delivery-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #eee5e0;
  border-radius: 26px;
  padding: 24px 20px;
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.07);
}

.et-delivery-card:before {
  content: "";
  position: absolute;
  top: -55px;
  left: -55px;
  width: 130px;
  height: 130px;
  background: rgba(234, 35, 40, 0.055);
  border-radius: 50%;
}

.et-delivery-card.highlight {
  background:
    radial-gradient(circle at 12% 12%, rgba(234, 35, 40, 0.12), transparent 32%),
    linear-gradient(135deg, #fff4f1 0%, #ffffff 70%);
  border-color: rgba(234, 35, 40, 0.16);
}

.et-delivery-badge {
  position: relative;
  z-index: 1;
  display: inline-flex;
  color: #EA2328;
  background: rgba(234, 35, 40, 0.08);
  border: 1px solid rgba(234, 35, 40, 0.14);
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 14px;
}

.et-delivery-card h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 10px;
  color: #1f2933;
  font-size: 19px;
  font-weight: 900;
  line-height: 1.5;
}

.et-delivery-card p {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: #667085;
  font-size: 13px;
  line-height: 1.9;
}

.et-delivery-card ul {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 0 18px 0 0;
}

.et-delivery-card li {
  color: #1f2933;
  font-size: 13px;
  line-height: 1.9;
  font-weight: 800;
}

@media (max-width: 1100px) {
  .et-delivery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .et-delivery-zones {
    margin: 40px auto 46px;
    padding: 0 14px;
  }

  .et-delivery-head h2 {
    font-size: 24px;
  }

  .et-delivery-grid {
    grid-template-columns: 1fr;
  }

  .et-delivery-card {
    border-radius: 22px;
    padding: 22px 18px;
  }
}

/* Elegant Taste Home FAQ Section */

.et-home-faq {
  direction: rtl;
  max-width: 1180px;
  margin: 52px auto 64px;
  padding: 0 18px;
}

.et-home-faq-head {
  text-align: center;
  margin-bottom: 24px;
}

.et-home-faq-head span {
  display: inline-flex;
  color: #EA2328;
  background: rgba(234, 35, 40, 0.08);
  border: 1px solid rgba(234, 35, 40, 0.14);
  padding: 8px 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  margin-bottom: 12px;
}

.et-home-faq-head h2 {
  margin: 0 0 8px;
  color: #1f2933;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.6px;
}

.et-home-faq-head p {
  margin: 0 auto;
  max-width: 700px;
  color: #667085;
  font-size: 15px;
  line-height: 1.9;
}

.et-home-faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.et-home-faq-item {
  background: #ffffff;
  border: 1px solid #eee5e0;
  border-radius: 24px;
  padding: 24px 22px;
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.06);
  position: relative;
  overflow: hidden;
}

.et-home-faq-item:before {
  content: "";
  position: absolute;
  top: -52px;
  left: -52px;
  width: 125px;
  height: 125px;
  background: rgba(234, 35, 40, 0.055);
  border-radius: 50%;
}

.et-home-faq-item h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 9px;
  color: #1f2933;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.6;
}

.et-home-faq-item p {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #667085;
  font-size: 14px;
  line-height: 2;
}

.et-home-faq-action {
  text-align: center;
  margin-top: 18px;
}

.et-home-faq-action a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  background: #EA2328;
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 30px rgba(234, 35, 40, 0.20);
}

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

  .et-home-faq-head h2 {
    font-size: 24px;
  }
}

@media (max-width: 560px) {
  .et-home-faq {
    margin: 40px auto 48px;
    padding: 0 14px;
  }

  .et-home-faq-item {
    border-radius: 20px;
    padding: 22px 18px;
  }

  .et-home-faq-action a {
    width: 100%;
  }
}

/* Elegant Taste Dynamic Product Sections Polish */

section:has(.s-product-card-entry) {
  max-width: 1180px;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 18px !important;
  padding-right: 18px !important;
}

.s-product-card-entry {
  border-radius: 26px !important;
  border: 1px solid #eee5e0 !important;
  background: #ffffff !important;
  box-shadow: 0 18px 42px rgba(31, 41, 51, 0.07) !important;
  overflow: hidden !important;
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease !important;
}

.s-product-card-entry:hover {
  transform: translateY(-5px) !important;
  border-color: rgba(234, 35, 40, 0.24) !important;
  box-shadow: 0 28px 70px rgba(31, 41, 51, 0.12) !important;
}

.s-product-card-image {
  background: #ffffff !important;
  min-height: 210px !important;
  padding: 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.s-product-card-image img {
  object-fit: contain !important;
  max-height: 180px !important;
  width: auto !important;
  margin: 0 auto !important;
}

.s-product-card-content {
  padding: 16px 18px 20px !important;
  text-align: center !important;
}

.s-product-card-content-title,
.s-product-card-content-title a {
  color: #1f2933 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1.7 !important;
  min-height: 48px !important;
  text-align: center !important;
}

.s-product-card-price {
  color: #1f2933 !important;
  font-size: 17px !important;
  font-weight: 900 !important;
  margin-top: 10px !important;
  margin-bottom: 14px !important;
  text-align: center !important;
}

.s-product-card-content-footer {
  padding: 0 18px 18px !important;
}

.s-product-card-content-footer button,
.s-product-card-content-footer .s-button-btn {
  width: 100% !important;
  min-height: 42px !important;
  border-radius: 999px !important;
  border: 1px solid #EA2328 !important;
  background: #ffffff !important;
  color: #EA2328 !important;
  font-size: 14px !important;
  font-weight: 900 !important;
}

.s-product-card-content-footer button *,
.s-product-card-content-footer .s-button-btn * {
  color: #EA2328 !important;
  fill: #EA2328 !important;
  stroke: #EA2328 !important;
}

.s-product-card-content-footer button:hover,
.s-product-card-content-footer .s-button-btn:hover {
  background: #EA2328 !important;
  color: #ffffff !important;
}

.s-product-card-content-footer button:hover *,
.s-product-card-content-footer .s-button-btn:hover * {
  color: #ffffff !important;
  fill: #ffffff !important;
  stroke: #ffffff !important;
}

@media (max-width: 768px) {
  section:has(.s-product-card-entry) {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  .s-product-card-image {
    min-height: 180px !important;
  }

  .s-product-card-image img {
    max-height: 155px !important;
  }

  .s-product-card-content-title,
  .s-product-card-content-title a {
    font-size: 13px !important;
    min-height: auto !important;
  }
}

/* Elegant Taste Mobile Homepage Polish */

@media (max-width: 560px) {

  /* تقليل المسافات العامة بين أقسام الصفحة */
  .et-trust-strip,
  .et-shop-paths,
  .et-journey-section,
  .et-ac-advisor,
  .et-delivery-zones,
  .et-home-faq {
    margin-top: 28px !important;
    margin-bottom: 34px !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  /* تصغير العناوين الرئيسية على الموبايل */
  .et-shop-paths-head h2,
  .et-journey-head h2,
  .et-ac-advisor-content h2,
  .et-delivery-head h2,
  .et-home-faq-head h2 {
    font-size: 23px !important;
    line-height: 1.45 !important;
    letter-spacing: -0.3px !important;
  }

  .et-shop-paths-head p,
  .et-journey-head p,
  .et-ac-advisor-content p,
  .et-delivery-head p,
  .et-home-faq-head p {
    font-size: 13px !important;
    line-height: 1.8 !important;
  }

  /* تسوق حسب احتياجك: نخليه أسرع وأقصر على الجوال */
  .et-shop-paths-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }

  .et-shop-path-card.main {
    grid-column: span 2 !important;
  }

  .et-shop-path-card {
    min-height: auto !important;
    border-radius: 18px !important;
    padding: 16px 13px !important;
  }

  .et-shop-path-icon {
    width: 44px !important;
    height: 44px !important;
    border-radius: 15px !important;
    margin-bottom: 12px !important;
  }

  .et-shop-path-icon svg {
    width: 24px !important;
    height: 24px !important;
  }

  .et-shop-path-content span {
    font-size: 10px !important;
    padding: 5px 9px !important;
    margin-bottom: 7px !important;
  }

  .et-shop-path-content h3 {
    font-size: 14px !important;
    line-height: 1.45 !important;
    margin-bottom: 6px !important;
  }

  .et-shop-path-content p {
    font-size: 11px !important;
    line-height: 1.6 !important;
    margin-bottom: 8px !important;
  }

  .et-shop-path-content strong {
    font-size: 11px !important;
  }

  /* شريط الثقة */
  .et-trust-grid {
    gap: 9px !important;
  }

  .et-trust-item {
    padding: 13px 12px !important;
    border-radius: 16px !important;
  }

  .et-trust-icon {
    width: 42px !important;
    height: 42px !important;
    border-radius: 14px !important;
  }

  .et-trust-icon svg {
    width: 23px !important;
    height: 23px !important;
  }

  .et-trust-item h3 {
    font-size: 13px !important;
  }

  .et-trust-item p {
    font-size: 11px !important;
  }

  /* كروت المنتجات الديناميكية على الموبايل */
  .s-product-card-entry {
    border-radius: 18px !important;
  }

  .s-product-card-image {
    min-height: 145px !important;
    padding: 14px !important;
  }

  .s-product-card-image img {
    max-height: 125px !important;
  }

  .s-product-card-content {
    padding: 12px 12px 14px !important;
  }

  .s-product-card-content-title,
  .s-product-card-content-title a {
    font-size: 12px !important;
    line-height: 1.55 !important;
  }

  .s-product-card-price {
    font-size: 14px !important;
    margin-top: 7px !important;
    margin-bottom: 10px !important;
  }

  .s-product-card-content-footer {
    padding: 0 12px 12px !important;
  }

  .s-product-card-content-footer button,
  .s-product-card-content-footer .s-button-btn {
    min-height: 36px !important;
    font-size: 12px !important;
  }

  /* قسم المكيف */
  .et-ac-advisor-card {
    padding: 22px 16px !important;
    border-radius: 24px !important;
  }

  .et-ac-advisor-step {
    padding: 14px !important;
    border-radius: 17px !important;
  }

  .et-ac-advisor-step h3 {
    font-size: 14px !important;
  }

  .et-ac-advisor-step p {
    font-size: 12px !important;
  }

  /* التوصيل والتركيب */
  .et-delivery-card {
    padding: 18px 16px !important;
    border-radius: 18px !important;
  }

  .et-delivery-card h3 {
    font-size: 16px !important;
  }

  .et-delivery-card p,
  .et-delivery-card li {
    font-size: 12px !important;
  }

  /* الأسئلة */
  .et-home-faq-item {
    padding: 18px 16px !important;
    border-radius: 18px !important;
  }

  .et-home-faq-item h3 {
    font-size: 14px !important;
  }

  .et-home-faq-item p {
    font-size: 12px !important;
  }
}