.bzargo-product-page {
  direction: rtl;
  background: #060f17;
  color: #ffffff;
  min-height: 100vh;
  font-family: "Cairo", sans-serif;
  padding-bottom: 80px;
}

.bzargo-product-shell {
  max-width: 1250px;
  margin: 0 auto;
  padding: 22px 14px;
}

.bzargo-product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

.bzargo-main-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #0f1a26;
  border: 1px solid #2a3b4d;
}

.bzargo-main-product-image {
  width: 100%;
  height: 560px;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

.bzargo-main-image-wrap:hover .bzargo-main-product-image {
  transform: scale(1.03);
}

.bzargo-product-sale-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  background: #fe5a37;
  color: #fff;
  padding: 7px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
}

.bzargo-product-thumbs {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  padding: 12px 2px 4px;
}

.bzargo-thumb {
  width: 76px;
  height: 76px;
  min-width: 76px;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid transparent;
  background: #0f1a26;
  padding: 0;
  cursor: pointer;
}

.bzargo-thumb.active,
.bzargo-thumb:hover {
  border-color: #fe5a37;
}

.bzargo-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bzargo-product-summary {
  background: #0f1a26;
  border: 1px solid #2a3b4d;
  border-radius: 18px;
  padding: 22px;
  position: sticky;
  top: 18px;
}

.bzargo-product-meta-line {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  color: #b8bcc8;
  font-size: 14px;
  margin-bottom: 12px;
}

.stock.in-stock {
  color: #22c55e;
}

.stock.out-of-stock {
  color: #ef4444;
}

.bzargo-single-title {
  font-size: 30px;
  line-height: 1.35;
  margin: 0 0 12px;
  color: #fff;
}

.bzargo-single-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: #b8bcc8;
}

.bzargo-stars {
  color: #fbbf24;
  letter-spacing: 1px;
}

.bzargo-single-price {
  font-size: 28px;
  font-weight: 800;
  color: #fe5a37;
  margin: 16px 0;
}

.bzargo-single-price del {
  color: #94a3b8;
  font-size: 18px;
  margin-inline-start: 8px;
}

.bzargo-single-price ins {
  text-decoration: none;
}

.bzargo-short-desc {
  color: #d1d5db;
  line-height: 1.8;
  margin-bottom: 18px;
}

.bzargo-quantity-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  margin: 18px 0;
  padding: 14px;
  border-radius: 14px;
  background: #111f2a;
}

.bzargo-qty-controls {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid #2a3b4d;
  border-radius: 12px;
}

.qty-minus,
.qty-plus {
  width: 42px;
  height: 42px;
  border: 0;
  background: #18283a;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}

.qty-minus:hover,
.qty-plus:hover {
  background: #fe5a37;
}

.qty-input {
  width: 64px;
  height: 42px;
  border: 0;
  background: #0b1620;
  color: #fff;
  text-align: center;
  font-weight: 700;
}

.bzargo-single-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.bzargo-single-actions button {
  min-height: 50px;
  border: 0;
  border-radius: 14px;
  cursor: pointer;
  font-weight: 800;
}

.bzargo-buy-now {
  background: #fe5a37;
  color: #fff;
}

.bzargo-add-to-cart {
  background: #ffffff;
  color: #111827;
}

.bzargo-single-wishlist {
  grid-column: 1 / -1;
  background: transparent;
  color: #fff;
  border: 1px solid #2a3b4d !important;
}

.bzargo-buy-now:hover,
.bzargo-add-to-cart:hover {
  transform: translateY(-2px);
}

.bzargo-trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 16px;
}

.bzargo-trust-row div {
  background: #111f2a;
  border: 1px solid #2a3b4d;
  border-radius: 12px;
  padding: 10px 8px;
  text-align: center;
  color: #d1d5db;
  font-size: 13px;
}

.bzargo-product-tabs {
  margin-top: 26px;
  background: #0f1a26;
  border: 1px solid #2a3b4d;
  border-radius: 18px;
  overflow: hidden;
}

.bzargo-tabs-nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: #111f2a;
}

.bzargo-tab-btn {
  padding: 16px 10px;
  border: 0;
  background: transparent;
  color: #b8bcc8;
  cursor: pointer;
  font-weight: 800;
}

.bzargo-tab-btn.active,
.bzargo-tab-btn:hover {
  color: #fe5a37;
  background: rgba(254, 90, 55, 0.08);
}

.bzargo-tabs-body {
  padding: 22px;
  color: #d1d5db;
  line-height: 1.8;
}

.bzargo-tab-panel {
  display: none;
}

.bzargo-tab-panel.active {
  display: block;
}

.bzargo-related-products {
  margin-top: 28px;
}

.bzargo-related-products h2 {
  margin: 0 0 14px;
  font-size: 24px;
}

.bzargo-related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.bzargo-related-card {
  background: #0f1a26;
  border: 1px solid #2a3b4d;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: 0.25s ease;
}

.bzargo-related-card:hover {
  transform: translateY(-4px);
  border-color: #fe5a37;
}

.related-img img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  display: block;
}

.bzargo-related-card h3 {
  padding: 12px 12px 4px;
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
}

.related-price {
  padding: 0 12px 12px;
  color: #fe5a37;
  font-weight: 800;
}

.bzargo-mobile-sticky {
  display: none;
}

@media (max-width: 900px) {
  .bzargo-product-hero {
    grid-template-columns: 1fr;
  }

  .bzargo-product-summary {
    position: static;
  }

  .bzargo-main-product-image {
    height: 430px;
  }

  .bzargo-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .bzargo-product-shell {
    padding: 12px;
  }

  .bzargo-main-product-image {
    height: 360px;
  }

  .bzargo-product-summary {
    padding: 16px;
  }

  .bzargo-single-title {
    font-size: 22px;
  }

  .bzargo-single-price {
    font-size: 24px;
  }

  .bzargo-single-actions {
    grid-template-columns: 1fr;
  }

  .bzargo-trust-row {
    grid-template-columns: 1fr;
  }

  .bzargo-tabs-nav {
    overflow-x: auto;
    display: flex;
  }

  .bzargo-tab-btn {
    min-width: 110px;
  }

  .bzargo-mobile-sticky {
    display: block;
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    background: #060f17;
    border-top: 1px solid #2a3b4d;
    padding: 10px 12px;
    z-index: 9999;
  }

  .bzargo-mobile-sticky .bzargo-add-to-cart {
    width: 100%;
    min-height: 48px;
    border: 0;
    border-radius: 14px;
    font-weight: 800;
  }
}
/* 🔥 توزيع الصفحة مثل SHEIN */
.bzargo-product-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* الصور */
.bzargo-product-gallery {
  width: 100%;
}

/* المعلومات */
.bzargo-product-summary {
  width: 100%;
}

/* الصورة الرئيسية */
.bzargo-main-image-wrap img {
  width: 100%;
  border-radius: 16px;
}

/* الصور المصغرة */
.bzargo-product-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

/* إصلاح ظهور صورة داخل summary */
.bzargo-product-summary img {
  display: none !important;
}
.bzargo-urgency-box {
  margin: 14px 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(254, 90, 55, 0.1);
  border: 1px solid rgba(254, 90, 55, 0.35);
  color: #fff;
  font-size: 14px;
  line-height: 1.8;
}

.bzargo-urgency-box strong {
  color: #fe5a37;
}
@media (max-width: 768px) {
  .bzargo-product-hero {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
  }

  .bzargo-product-gallery {
    order: 1 !important;
    width: 100% !important;
  }

  .bzargo-product-summary {
    order: 2 !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .bzargo-main-image-wrap {
    width: 100% !important;
    border-radius: 18px !important;
  }

  .bzargo-main-product-image {
    width: 100% !important;
    height: auto !important;
    max-height: 430px !important;
    object-fit: contain !important;
    background: #0f1a26 !important;
  }

  .bzargo-product-thumbs {
    justify-content: center !important;
    overflow-x: auto !important;
    padding: 10px 0 !important;
  }

  .bzargo-thumb {
    width: 70px !important;
    height: 70px !important;
    min-width: 70px !important;
  }

  .bzargo-single-title {
    font-size: 22px !important;
    line-height: 1.4 !important;
  }

  .bzargo-product-page {
    padding-bottom: 95px !important;
  }

  .bzargo-mobile-sticky {
    display: block !important;
  }
}
.bzargo-sticky-bar {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background: #0f1a26;
  border-top: 1px solid #2a3b4d;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  z-index: 9999;
}

.bzargo-sticky-price {
  font-size: 18px;
  color: #fe5a37;
  font-weight: bold;
}

.bzargo-sticky-actions {
  display: flex;
  gap: 10px;
}

.bzargo-sticky-actions button {
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  cursor: pointer;
}

.bzargo-sticky-buy {
  background: #fe5a37;
  color: #fff;
}

.bzargo-sticky-cart {
  background: #1f2d3a;
  color: #fff;
}
body.single-product .bzargo-product-page {
  padding-bottom: 90px;
}
/* زر إضافة للسلة الرئيسي (Hero Button) */
.bzargo-single-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bzargo-add-to-cart {
  width: 100% !important;
  background: #fe5a37 !important;
  color: #fff !important;
  font-size: 18px !important;
  font-weight: bold;
  padding: 16px !important;
  border-radius: 14px !important;
  box-shadow: 0 6px 20px rgba(254, 90, 55, 0.25);
}

/* زر الشراء */
.bzargo-buy-now {
  width: 100% !important;
  background: #1f2d3a !important;
  color: #fff !important;
  font-size: 16px;
  padding: 14px;
  border-radius: 12px;
}

/* المفضلة */
.bzargo-single-wishlist {
  width: 100%;
  background: #111f2a;
  color: #fff;
}

/* الشريط السفلي (نخليه أصغر وأذكى) */
.bzargo-sticky-bar {
  height: 60px;
}

.bzargo-sticky-actions button {
  padding: 8px 10px;
  font-size: 13px;
}

/* إخفاء الشريط إذا المستخدم فوق */
@media (max-width: 768px) {
  .bzargo-sticky-bar {
    opacity: 0.95;
  }
}
.bzargo-sticky-hidden {
  transform: translateY(120%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.bzargo-sticky-visible {
  transform: translateY(0) !important;
  opacity: 1 !important;
  pointer-events: auto !important;
}

.bzargo-sticky-bar {
  transition: transform 0.28s ease, opacity 0.28s ease !important;
}
.bzargo-cart-toast {
  position: fixed;
  bottom: 80px;
  right: 20px;
  z-index: 99999;
  background: #0f1a26;
  color: #fff;
  border: 1px solid #2a3b4d;
  border-radius: 14px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateY(20px);
  opacity: 0;
  pointer-events: none;
  transition: 0.25s ease;
  box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.bzargo-cart-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.bzargo-cart-toast a {
  color: #fe5a37;
  font-weight: 700;
  text-decoration: none;
}
.bzargo-social-proof {
  margin: 10px 0 18px;
  padding: 12px;
  border-radius: 12px;
  background: #111f2a;
  border: 1px solid #2a3b4d;
  color: #d1d5db;
  font-size: 14px;
  line-height: 1.8;
}