.elementor-13 .elementor-element.elementor-element-dc2845a{--display:flex;}.elementor-widget-image .widget-image-caption{color:var( --e-global-color-text );font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );}.elementor-13 .elementor-element.elementor-element-3eec2c0 img{width:100%;border-radius:12px 12px 12px 12px;}.elementor-13 .elementor-element.elementor-element-15fc7e3{--display:flex;}.elementor-widget-heading .elementor-heading-title{font-family:var( --e-global-typography-primary-font-family ), Sans-serif;font-weight:var( --e-global-typography-primary-font-weight );color:var( --e-global-color-primary );}.elementor-13 .elementor-element.elementor-element-8e9f9dd .elementor-heading-title{font-family:"Cairo", Sans-serif;font-weight:bold;color:var( --e-global-color-3293d15 );}.elementor-13 .elementor-element.elementor-element-5ecfd80 .elementor-heading-title{font-family:"Cairo", Sans-serif;font-size:1px;font-weight:bold;color:#298384;}.elementor-13 .elementor-element.elementor-element-a026e3e{--display:flex;}.elementor-13 .elementor-element.elementor-element-25d4d9c{--display:flex;}.elementor-13 .elementor-element.elementor-element-b6eda27{--display:flex;}@media(max-width:767px){.elementor-13 .elementor-element.elementor-element-8e9f9dd{text-align:start;}}/* Start custom CSS for shortcode, class: .elementor-element-b3306f0 *//* =========================
   Shopify Simple Cards - WooCommerce
   Colors: #298384 / #9d346a
   Font: Cairo
   Mobile: 2 columns
   Buttons same height + fixed at bottom of card
========================= */

:root{
  --c1:#298384;
  --c2:#9d346a;
  --ink:#111;
  --muted:#6b7280;
  --card:#ffffff;
  --border:rgba(17,17,17,.08);

  /* Button height control */
  --btn-h: 44px; /* عدّل الرقم لو عايز الزر أطول/أقصر */
}

/* Cairo font */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&display=swap");

.woocommerce, .woocommerce *{
  font-family:"Cairo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif !important;
}

/* Products grid */
.woocommerce ul.products{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:18px;
  margin:0;
  padding:0;
}

/* 2 columns on mobile */
@media (max-width: 767px){
  .woocommerce ul.products{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:12px;
  }
}

/* Card */
.woocommerce ul.products li.product{
  list-style:none;
  background: var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  text-align:center;
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;

  /* equal height + push button down */
  display:flex;
  flex-direction:column;
}

/* Hover */
.woocommerce ul.products li.product:hover{
  transform: translateY(-3px);
  border-color: rgba(41,131,132,.25);
  box-shadow: 0 14px 28px rgba(0,0,0,.07);
}

/* Make the link area flexible (stretches) */
.woocommerce ul.products li.product > a.woocommerce-LoopProduct-link{
  display:flex;
  flex-direction:column;
  flex: 1 1 auto; /* مهم عشان المحتوى يتمدد ويخلي الزر تحت */
  text-decoration:none !important;
}

/* Image */
.woocommerce ul.products li.product img{
  width:100%;
  border-radius:12px;
  margin:0 0 12px 0;

  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title{
  font-size:15px;
  font-weight:600;
  color: var(--ink);
  line-height:1.45;
  margin:10px 0 8px;

  /* keeps layout aligned */
  min-height: 44px;
}

/* Rating */
.woocommerce ul.products li.product .star-rating{
  margin:6px auto 10px;
}

/* Price (normal, above button) */
.woocommerce ul.products li.product .price{
  font-size:14px;
  font-weight:700;
  color: var(--c2);
  margin:0 0 12px;
}
.woocommerce ul.products li.product .price del{
  color: var(--muted);
  opacity:.7;
}

/* Sale badge */
.woocommerce span.onsale{
  background: var(--c1) !important;
  color:#fff !important;
  border-radius:999px !important;
  padding:6px 10px !important;
  font-weight:700 !important;
}

/* Add to cart button: SAME HEIGHT + ALWAYS BOTTOM */
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product button.button,
.woocommerce ul.products li.product .added_to_cart{
  width:100%;

  /* push button to bottom */
  margin-top:auto !important;

  display:flex;
  align-items:center;
  justify-content:center;

  min-height: var(--btn-h);
  height: var(--btn-h);
  line-height: 1; /* يمنع اختلاف ارتفاع النص */

  border:0 !important;
  border-radius:10px;
  padding: 0 14px; /* padding أفقي فقط لأن الارتفاع ثابت */

  font-size:13px;
  font-weight:700;
  text-decoration:none !important;
  color:#fff !important;

  background: linear-gradient(
    135deg,
    rgba(41,131,132,0.92) 0%,
    rgba(41,131,132,0.70) 35%,
    rgba(157,52,106,0.92) 100%
  );

  box-shadow: 0 10px 18px rgba(17,17,17,.10);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

/* Ensure Woo "View cart" doesn't wrap weirdly */
.woocommerce ul.products li.product .added_to_cart{
  white-space:nowrap;
}

/* Hover */
.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product button.button:hover,
.woocommerce ul.products li.product .added_to_cart:hover{
  transform: translateY(-2px);
  filter: brightness(1.04) saturate(1.02);
  box-shadow: 0 14px 24px rgba(17,17,17,.14);
}

/* Mobile tweaks */
@media (max-width: 767px){
  :root{ --btn-h: 42px; } /* ارتفاع ثابت للزر على الموبايل */

  .woocommerce ul.products li.product{
    padding:12px;
    border-radius:12px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title{
    font-size:14px;
    min-height: 42px;
  }
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-a026e3e *//* تثبيت زر إضافة للسلة في نفس المستوى بكل الكروت */
.sl4-card{
  display: flex !important;
  flex-direction: column !important;
}

.sl4-card-actions{
  margin-top: auto !important;
}/* End custom CSS */
/* Start custom CSS for shortcode, class: .elementor-element-47f0b93 *//* =========================
   Shopify Simple Cards - WooCommerce
   Colors: #298384 / #9d346a
   Font: Cairo
   Mobile: 2 columns
   Buttons same height + fixed at bottom of card
========================= */

:root{
  --c1:#298384;
  --c2:#9d346a;
  --ink:#111;
  --muted:#6b7280;
  --card:#ffffff;
  --border:rgba(17,17,17,.08);

  /* Button height control */
  --btn-h: 44px; /* عدّل الرقم لو عايز الزر أطول/أقصر */
}

/* Cairo font */
@import url("https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700&display=swap");

.woocommerce, .woocommerce *{
  font-family:"Cairo", system-ui, -apple-system, "Segoe UI", Arial, sans-serif !important;
}

/* Products grid */
.woocommerce ul.products{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:18px;
  margin:0;
  padding:0;
}

/* 2 columns on mobile */
@media (max-width: 767px){
  .woocommerce ul.products{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap:12px;
  }
}

/* Card */
.woocommerce ul.products li.product{
  list-style:none;
  background: var(--card);
  border:1px solid var(--border);
  border-radius:14px;
  padding:14px;
  text-align:center;
  overflow:hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;

  /* equal height + push button down */
  display:flex;
  flex-direction:column;
}

/* Hover */
.woocommerce ul.products li.product:hover{
  transform: translateY(-3px);
  border-color: rgba(41,131,132,.25);
  box-shadow: 0 14px 28px rgba(0,0,0,.07);
}

/* Make the link area flexible (stretches) */
.woocommerce ul.products li.product > a.woocommerce-LoopProduct-link{
  display:flex;
  flex-direction:column;
  flex: 1 1 auto; /* مهم عشان المحتوى يتمدد ويخلي الزر تحت */
  text-decoration:none !important;
}

/* Image */
.woocommerce ul.products li.product img{
  width:100%;
  border-radius:12px;
  margin:0 0 12px 0;

  aspect-ratio: 1 / 1;
  object-fit: cover;
}

/* Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title{
  font-size:15px;
  font-weight:600;
  color: var(--ink);
  line-height:1.45;
  margin:10px 0 8px;

  /* keeps layout aligned */
  min-height: 44px;
}

/* Rating */
.woocommerce ul.products li.product .star-rating{
  margin:6px auto 10px;
}

/* Price (normal, above button) */
.woocommerce ul.products li.product .price{
  font-size:14px;
  font-weight:700;
  color: var(--c2);
  margin:0 0 12px;
}
.woocommerce ul.products li.product .price del{
  color: var(--muted);
  opacity:.7;
}

/* Sale badge */
.woocommerce span.onsale{
  background: var(--c1) !important;
  color:#fff !important;
  border-radius:999px !important;
  padding:6px 10px !important;
  font-weight:700 !important;
}

/* Add to cart button: SAME HEIGHT + ALWAYS BOTTOM */
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product button.button,
.woocommerce ul.products li.product .added_to_cart{
  width:100%;

  /* push button to bottom */
  margin-top:auto !important;

  display:flex;
  align-items:center;
  justify-content:center;

  min-height: var(--btn-h);
  height: var(--btn-h);
  line-height: 1; /* يمنع اختلاف ارتفاع النص */

  border:0 !important;
  border-radius:10px;
  padding: 0 14px; /* padding أفقي فقط لأن الارتفاع ثابت */

  font-size:13px;
  font-weight:700;
  text-decoration:none !important;
  color:#fff !important;

  background: linear-gradient(
    135deg,
    rgba(41,131,132,0.92) 0%,
    rgba(41,131,132,0.70) 35%,
    rgba(157,52,106,0.92) 100%
  );

  box-shadow: 0 10px 18px rgba(17,17,17,.10);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}

/* Ensure Woo "View cart" doesn't wrap weirdly */
.woocommerce ul.products li.product .added_to_cart{
  white-space:nowrap;
}

/* Hover */
.woocommerce ul.products li.product a.button:hover,
.woocommerce ul.products li.product button.button:hover,
.woocommerce ul.products li.product .added_to_cart:hover{
  transform: translateY(-2px);
  filter: brightness(1.04) saturate(1.02);
  box-shadow: 0 14px 24px rgba(17,17,17,.14);
}

/* Mobile tweaks */
@media (max-width: 767px){
  :root{ --btn-h: 42px; } /* ارتفاع ثابت للزر على الموبايل */

  .woocommerce ul.products li.product{
    padding:12px;
    border-radius:12px;
  }

  .woocommerce ul.products li.product .woocommerce-loop-product__title{
    font-size:14px;
    min-height: 42px;
  }
}/* End custom CSS */