/** Shopify CDN: Minification failed

Line 37:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement-bar (INDEX:0) */
.inout-announcement-bar {
  width: 100%;
  background-color: #F4511E;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.inout-announcement-bar__text {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Cairo', 'Tajawal', 'Noto Sans Arabic', Arial, sans-serif;
  text-align: center;
  direction: rtl;
  line-height: 1.5;
  letter-spacing: 0.01em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* END_SECTION:announcement-bar */

/* START_SECTION:inout-featured-product (INDEX:22) */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;500;600;700;800;900&display=swap');

.ifp *, .ifp *::before, .ifp *::after { box-sizing: border-box; margin: 0; }
.ifp {
  width: 100%;
  max-width: 100vw;
  overflow-x: hidden;
  font-family: 'Cairo','Tajawal','Noto Sans Arabic',Arial,sans-serif;
  direction: rtl;
}

/* Top header */
.ifp-top-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
  padding: 0 40px 36px;
}
.ifp-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #ddd5c8;
  border-radius: 999px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  color: #2d2d2d;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.ifp-trust-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}
.ifp-section-title {
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  font-weight: 900;
  color: var(--c-navy);
  line-height: 1.3;
  margin: 0;
}
.ifp-section-sub {
  font-size: 15px;
  line-height: 1.85;
  color: var(--c-gray);
  max-width: 580px;
  margin: 0 auto;
}

/* Inner grid */
.ifp-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap, 48px);
  padding: 0 40px;
  align-items: start;
}

/* ── Gallery column ── */
.ifp-gal-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: sticky;
  top: 20px;
}

/* Main frame */
.ifp-main-frame {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--r, 18px);
  background: #f5f0e8;
  border: 1px solid var(--c-border);
  box-shadow: 0 6px 32px rgba(0,0,0,.09);
  cursor: zoom-in;
}
.ifp-mimg {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform .45s ease;
}
.ifp-mimg.on { display: block; }
.ifp-main-frame:hover .ifp-mimg.on { transform: scale(1.04); }

/* No product placeholder */
.ifp-noimg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 300px;
  padding: 40px 24px;
}
.ifp-noimg svg { width: 80px; opacity: .55; }
.ifp-noimg p { font-size: 13px; color: #a0927e; text-align: center; line-height: 1.6; }

/* Float badge */
.ifp-float-badge {
  position: absolute;
  top: 14px; right: 14px;
  z-index: 5;
  background: var(--c-orange);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 3px 12px rgba(244,81,30,.4);
  pointer-events: none;
}

/* Arrow buttons */
.ifp-arr {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  z-index: 4;
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.08);
  width: 38px; height: 38px;
  border-radius: 50%;
  font-size: 15px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
  color: var(--c-navy);
  transition: background .2s, transform .2s;
}
.ifp-arr:hover { background:#fff; transform:translateY(-50%) scale(1.1); }
.ifp-arr-r { right: 10px; }
.ifp-arr-l { left: 10px; }

/* Thumbnail strip */
.ifp-thumbs {
  display: flex;
  gap: 8px;
  direction: rtl;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
  scrollbar-color: #d4c9b8 transparent;
  -webkit-overflow-scrolling: touch;
}
.ifp-thumbs::-webkit-scrollbar { height: 4px; }
.ifp-thumbs::-webkit-scrollbar-thumb { background: #d4c9b8; border-radius: 4px; }
.ifp-thumb {
  flex-shrink: 0;
  width: 72px; height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--c-border);
  cursor: pointer;
  padding: 0;
  background: #f5f0e8;
  transition: border-color .2s, transform .15s, box-shadow .2s;
}
.ifp-thumb img { width:100%; height:100%; object-fit:cover; display:block; transition: transform .3s; }
.ifp-thumb.on  { transform: scale(1.06); box-shadow: 0 3px 12px rgba(0,0,0,.14); }
.ifp-thumb:hover:not(.on) img { transform: scale(1.08); }

/* ── Info column ── */
.ifp-info-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: right;
  padding-top: 4px;
}

.ifp-brand {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--c-orange);
}

.ifp-ptitle {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--c-navy);
  line-height: 1.25;
}

.ifp-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.ifp-badge-pill {
  background: #fff7f0;
  border: 1px solid #fad5c0;
  color: var(--c-orange);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

.ifp-desc {
  font-size: 15px;
  line-height: 1.9;
  color: var(--c-gray);
}

.ifp-hr { border: none; border-top: 1px solid var(--c-border); }

/* Price box */
.ifp-pricebox {
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: 14px;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,.04);
}
.ifp-price-row { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; }
.ifp-price { font-size: 2.4rem; font-weight: 900; color: var(--c-navy); line-height: 1; }
.ifp-price-note { font-size: 13px; color: var(--c-gray); font-weight: 500; }
.ifp-price-old  { font-size: 1.1rem; color: var(--c-gray); font-weight: 500; text-decoration: line-through; }
.ifp-cod {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 700; color: var(--c-green);
}
.ifp-cod-dot { width:8px; height:8px; border-radius:50%; background:var(--c-green); flex-shrink:0; }

/* Feature grid — 2-column pill cards */
.ifp-feats {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.ifp-feat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 16px;
  background: var(--c-card);
  border: 1.5px solid var(--c-border);
  border-radius: 999px;
  direction: rtl;
  transition: border-color .2s, box-shadow .2s, background .15s;
  cursor: default;
}
.ifp-feat:hover {
  border-color: var(--c-orange);
  box-shadow: 0 2px 12px rgba(244,81,30,.1);
  background: #fff9f7;
}
.ifp-feat-check {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px;
  flex-shrink: 0;
  background: #fff3ee;
  border: 1.5px solid #fad5c0;
  border-radius: 50%;
  color: var(--c-orange);
  font-size: 13px;
  font-weight: 900;
}
.ifp-feat-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--c-navy);
  flex: 1;
  text-align: right;
  line-height: 1.3;
}

/* Buttons */
.ifp-btns { display: flex; flex-direction: column; gap: 10px; }

.ifp-btn-main {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%;
  background: var(--c-btn);
  color: var(--c-btntxt) !important;
  text-decoration: none !important;
  border-radius: 14px;
  font-family: 'Cairo','Tajawal',Arial,sans-serif;
  font-size: 18px; font-weight: 900;
  padding: 18px 24px;
  cursor: pointer;
  border: none;
  transition: filter .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 24px rgba(244,81,30,.28);
}
.ifp-btn-main:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 8px 32px rgba(244,81,30,.4); }
.ifp-btn-arrow { font-size: 18px; transition: transform .2s; }
.ifp-btn-main:hover .ifp-btn-arrow { transform: translateX(-5px); }

.ifp-btn-cart {
  display: flex; align-items: center; justify-content: center;
  width: 100%;
  background: transparent;
  color: var(--c-navy) !important;
  text-decoration: none !important;
  border: 2px solid var(--c-navy);
  border-radius: 14px;
  font-family: 'Cairo','Tajawal',Arial,sans-serif;
  font-size: 16px; font-weight: 700;
  padding: 14px 24px;
  cursor: pointer;
  transition: background .2s, color .2s;
}
.ifp-btn-cart:hover { background: var(--c-navy); color: #fff !important; }
.ifp-btn-cart:disabled { opacity: .5; cursor: not-allowed; }

/* Trust row */
.ifp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.ifp-trust-card {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  background: var(--c-card);
  border: 1px solid var(--c-border);
  border-radius: 12px;
  padding: 14px 8px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,.04);
}
.ifp-trust-icon  { font-size: 22px; line-height: 1; }
.ifp-trust-label { font-size: 11px; font-weight: 700; color: var(--c-navy); line-height: 1.4; }

/* Mobile ≤860px */
@media (max-width: 860px) {
  .ifp-top-header { padding: 0 16px 22px; }
  .ifp-inner { grid-template-columns: 1fr; padding: 0 16px; gap: 20px; }
  .ifp-gal-col { position: static; width: 100%; max-width: 100%; }
  .ifp-main-frame { border-radius: 22px; width: 100%; max-width: 100%; }
  .ifp-section-title { font-size: 26px; line-height: 1.35; word-break: break-word; }
  .ifp-ptitle { font-size: 26px; line-height: 1.35; text-align: center; word-break: break-word; }
  .ifp-price  { font-size: 2rem; }
  .ifp-info-col { align-items: center; text-align: center; }
  .ifp-badges { justify-content: center; }
  .ifp-price-row { justify-content: center; }
  .ifp-cod { justify-content: center; }
  .ifp-desc { font-size: 15px; text-align: center; }
  .ifp-pricebox { border-radius: 16px; padding: 18px 16px; overflow: hidden; }
  .ifp-feats { grid-template-columns: 1fr 1fr; gap: 8px; }
  .ifp-feat { padding: 11px 10px; }
  .ifp-feat-label { font-size: 12px; }
  .ifp-btn-main { font-size: 17px; font-weight: 900; padding: 18px 20px; border-radius: 14px; background: #ff5a1f; }
  .ifp-btn-cart { font-size: 15px; padding: 14px 20px; border-radius: 14px; }
  .ifp-trust { grid-template-columns: repeat(3,1fr); gap: 8px; }
  .ifp-trust-card { padding: 12px 6px; }
  .ifp-trust-label { font-size: 10px; line-height: 1.3; }
}
/* Mobile ≤480px — keep 3 columns, never collapse */
@media (max-width: 480px) {
  .ifp-trust { grid-template-columns: repeat(3,1fr); }
  .ifp-feats { grid-template-columns: 1fr 1fr; }
  .ifp-section-title { font-size: 24px; }
  .ifp-ptitle { font-size: 24px; }
}
/* END_SECTION:inout-featured-product */

/* START_SECTION:inout-product-hero (INDEX:24) */
.inout-phero {
  width: 100%;
  background: linear-gradient(135deg, #fde8df 0%, #fdf4f0 40%, #fafaf8 100%);
  padding: 60px 40px;
  box-sizing: border-box;
  direction: rtl;
}

.inout-phero__wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

/* Info */
.inout-phero__info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: right;
}

/* Badge */
.inout-phero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  border: 1px solid #e8e0d8;
  border-radius: 999px;
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #2d2d2d;
  width: fit-content;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.inout-phero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
}

/* Title */
.inout-phero__title {
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.25;
  color: #1a1a1c;
  margin: 0;
}

.inout-phero__highlight {
  color: #F4511E;
}

/* Description */
.inout-phero__desc {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin: 0;
}

/* Feature pills — single column, vertically stacked */
.inout-phero__features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.inout-phero__pill {
  background: #ffffff;
  border: 1px solid #e0dbd5;
  border-radius: 999px;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 600;
  color: #1a1a1c;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  direction: rtl;
  text-align: right;
}

.inout-phero__check-icon {
  flex-shrink: 0;
  display: block;
}

/* Bottom: price + CTA */
.inout-phero__bottom {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.inout-phero__price-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.inout-phero__price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-direction: row-reverse;
}

.inout-phero__price strong {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1c;
}

.inout-phero__price span {
  font-size: 13px;
  color: #777;
}

.inout-phero__cod {
  font-size: 13px;
  font-weight: 600;
  color: #16a34a;
}

/* CTA Button */
.inout-phero__btn {
  display: inline-block;
  background: #F4511E;
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 700;
  padding: 16px 36px;
  border-radius: 12px;
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.15s ease;
  flex: 1;
  min-width: 200px;
}

.inout-phero__btn:hover {
  background: #d43d0e;
  transform: translateY(-1px);
}

/* Image */
.inout-phero__media {
  border-radius: 20px;
  overflow: hidden;
}

.inout-phero__media img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
}

/* Mobile */
@media (max-width: 768px) {
  .inout-phero {
    padding: 40px 20px;
  }
  .inout-phero__wrap {
    grid-template-columns: 1fr;
  }
  .inout-phero__media {
    order: -1;
  }
  .inout-phero__title {
    font-size: 2rem;
  }
  .inout-phero__btn {
    width: 100%;
  }
}
/* END_SECTION:inout-product-hero */