/* ============================================================
   SAFQA — amzv2_product.css  v3
   Amazon.eg product detail — comprehensive rewrite
   ============================================================ */

/* ── RESET / BASE ── */
.amzv2 {
  background: #fff;
  padding: 0 0 48px;
  font-family: "Inter", "Amazon Ember", Arial, sans-serif;
  font-size: 14px;
  color: #0f1111;
  line-height: 1.6;
}
.amzv2 * { box-sizing: border-box; }

/* ── BREADCRUMBS ── */
.amzv2__breadcrumbs {
  padding: 10px 0 12px;
  font-size: 12px;
  color: #565959;
}
.amzv2__breadcrumbs a { color: #007185; text-decoration: none; }
.amzv2__breadcrumbs a:hover { color: #c7511f; text-decoration: underline; }

/* ── 3-COLUMN GRID ── */
.amzv2__cols {
  display: grid;
  grid-template-columns: minmax(300px, 40%) 1fr 280px;
  gap: 16px 24px;
  align-items: start;
}
@media (max-width: 1200px) {
  .amzv2__cols { grid-template-columns: 35% 1fr 250px; gap: 14px 18px; }
}
@media (max-width: 960px) {
  .amzv2__cols { grid-template-columns: 1fr 260px; }
  .amzv2__col-img { grid-column: 1 / -1; grid-row: 1; }
  .amzv2__col-buy { grid-column: 2; grid-row: 2; }
  .amzv2__col-info { grid-column: 1; grid-row: 2; }
}
@media (max-width: 640px) {
  .amzv2__cols { grid-template-columns: 1fr; gap: 0; }
  .amzv2__col-buy { grid-column: auto; grid-row: auto; }
  .amzv2__col-info { grid-column: auto; grid-row: auto; padding-bottom: 70px; }

  /* Mobile Sticky Buy Actions */
  .amzv2__buybox {
    border: none;
    border-top: 1px solid #d5d9d9;
    border-radius: 0;
    padding: 10px 16px;
    position: fixed;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    background: #fff;
  }
  .amzv2__buy-buttons {
    flex-direction: row;
    margin: 0;
    width: 100%;
    gap: 10px;
  }
  .amzv2__buy-buttons .ty-btn {
    flex: 1;
    margin: 0 !important;
  }
  /* Hide non-actionable buybox elements in sticky bar on mobile */
  .amzv2__buy-price, .amzv2__buy-stock, .amzv2__seller-table, .amzv2__wishlist, .amzv2__qty-wrap {
    display: none !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   COL A — IMAGE GALLERY (vertical thumbs on left like Amazon)
   ═══════════════════════════════════════════════════════════════ */
.amzv2__col-img {
  position: sticky;
  top: 70px;
}
.amzv2__img-wrap {
  display: flex !important;
  flex-direction: row !important;
  align-items: flex-start !important;
  gap: 10px;
}
/* Thumbnails strip — vertical */
.amzv2__img-wrap .ty-product-thumbnails_gallery,
.amzv2__img-wrap .ty-product-thumbnails,
.amzv2__img-wrap .cm-image-gallery-wrapper {
  order: -1 !important;
  flex-shrink: 0 !important;
  width: 44px !important;
  max-width: 44px !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  overflow-y: auto !important;
  max-height: 460px !important;
}
.amzv2__img-wrap .ty-product-thumbnails.owl-carousel,
.amzv2__img-wrap .ty-product-thumbnails_gallery .owl-carousel,
.amzv2__img-wrap .cm-image-gallery {
  display: flex !important;
  flex-direction: column !important;
  flex-wrap: nowrap !important;
  width: 44px !important;
  gap: 4px !important;
}
/* Each thumbnail */
.amzv2__img-wrap .cm-item-gallery,
.amzv2__img-wrap .ty-product-thumbnails__item {
  float: none !important;
  width: 40px !important;
  height: 40px !important;
  border: 1px solid #d5d9d9 !important;
  border-radius: 3px !important;
  padding: 2px !important;
  cursor: pointer;
  box-sizing: border-box !important;
  transition: border-color 0.15s;
}
.amzv2__img-wrap .cm-item-gallery:hover,
.amzv2__img-wrap .ty-product-thumbnails__item:hover,
.amzv2__img-wrap .cm-item-gallery.active,
.amzv2__img-wrap .ty-product-thumbnails__item.active,
.amzv2__img-wrap .cm-gallery-item.active {
  border-color: #007185 !important;
  box-shadow: 0 0 0 2px rgba(0,113,133,0.15) !important;
}
.amzv2__img-wrap .cm-item-gallery img,
.amzv2__img-wrap .ty-product-thumbnails__item img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
}
/* Main image — no border like Amazon */
.amzv2__img-wrap .ty-product-img {
  flex: 1 !important;
  min-width: 0 !important;
  text-align: center;
  background: #fff;
}
.amzv2__col-img .ty-product-img img {
  max-width: 100% !important;
  max-height: 460px !important;
  height: auto !important;
  object-fit: contain !important;
  display: block;
  margin: 0 auto;
}
/* ── Carousel nav ── */
/*
 * DOM fact (from owl.carousel.js buildControls):
 *   .owl-controls is appendTo($elem) — appended DIRECTLY to .cm-image-gallery
 *   (.ty-product-thumbnails.owl-carousel), NOT to .cm-image-gallery-wrapper.
 *
 * Structure:
 *   .cm-image-gallery  (flex col, 44px wide) ← our relative anchor
 *     .owl-wrapper-outer  (the scrolling track)
 *     .owl-controls       (sibling of .owl-wrapper-outer)
 *       .owl-buttons
 *         .owl-prev  (was left arrow)
 *         .owl-next  (was right arrow)
 *
 * Fix: make .cm-image-gallery position:relative + add top/bottom padding.
 * Absolutely position .owl-prev at top:0, .owl-next at bottom:0.
 * .owl-controls/.owl-buttons get width:0; overflow:visible so they don't
 * consume flex space. The arrows escape via absolute positioning.
 */

/* Hide main-image carousel dots/nav entirely */
.amzv2__img-wrap .owl-nav,
.amzv2__img-wrap .owl-dots,
.amzv2__col-img .owl-dots {
  display: none !important;
}
/* Hide the cm-previewer (main big image) carousel controls */
.amzv2__img-wrap .ty-product-img .owl-controls {
  display: none !important;
}

/* ── Thumb strip: vertical nav arrows ── */

/* Carousel element: relative anchor, reserve space for top/bottom arrows */
.amzv2__img-wrap .cm-image-gallery {
  position: relative !important;
  padding-top: 30px !important;
  padding-bottom: 30px !important;
  overflow: visible !important;
}

/* Controls block: pull out of flow, zero height, overflow visible */
.amzv2__img-wrap .cm-image-gallery .owl-controls {
  position: static !important;
  width: 0 !important;
  height: 0 !important;
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 !important;
}
.amzv2__img-wrap .cm-image-gallery .owl-buttons {
  width: 0 !important;
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Both arrows: shared base — absolute within .cm-image-gallery */
.amzv2__img-wrap .cm-image-gallery .owl-prev,
.amzv2__img-wrap .cm-image-gallery .owl-next {
  position: absolute !important;
  left: 0 !important;
  right: 0 !important;
  width: 44px !important;
  height: 26px !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: #ffffff !important;
  border: 1px solid #D5D9D9 !important;
  border-radius: 3px !important;
  cursor: pointer !important;
  box-shadow: 0 1px 2px rgba(0,0,0,.06) !important;
  transition: background .12s, border-color .12s !important;
  z-index: 2 !important;
}

/* UP arrow pinned to top of the carousel */
.amzv2__img-wrap .cm-image-gallery .owl-prev {
  top: 0 !important;
  bottom: auto !important;
}

/* DOWN arrow pinned to bottom of the carousel */
.amzv2__img-wrap .cm-image-gallery .owl-next {
  bottom: 0 !important;
  top: auto !important;
}

/* Hover */
.amzv2__img-wrap .cm-image-gallery .owl-prev:hover,
.amzv2__img-wrap .cm-image-gallery .owl-next:hover {
  background: #f7f8f8 !important;
  border-color: #A2A6AC !important;
}

/* Hide the original left/right icon spans */
.amzv2__img-wrap .cm-image-gallery .owl-prev *,
.amzv2__img-wrap .cm-image-gallery .owl-next * {
  display: none !important;
}

/* Up chevron (border triangle, no icon font needed) */
.amzv2__img-wrap .cm-image-gallery .owl-prev::after {
  content: "" !important;
  display: block !important;
  width: 8px !important;
  height: 8px !important;
  border-top: 2px solid #565959 !important;
  border-right: 2px solid #565959 !important;
  transform: rotate(-45deg) translateY(2px) !important;
}

/* Down chevron */
.amzv2__img-wrap .cm-image-gallery .owl-next::after {
  content: "" !important;
  display: block !important;
  width: 8px !important;
  height: 8px !important;
  border-bottom: 2px solid #565959 !important;
  border-right: 2px solid #565959 !important;
  transform: rotate(45deg) translateY(-2px) !important;
}

/* Hover: darken chevron */
.amzv2__img-wrap .cm-image-gallery .owl-prev:hover::after,
.amzv2__img-wrap .cm-image-gallery .owl-next:hover::after {
  border-color: #0f1111 !important;
}
/* Mobile: horizontal thumbnails below image */
@media (max-width: 640px) {
  .amzv2__img-wrap { flex-direction: column !important; gap: 8px; }
  .amzv2__img-wrap .ty-product-thumbnails_gallery,
  .amzv2__img-wrap .ty-product-thumbnails,
  .amzv2__img-wrap .cm-image-gallery-wrapper {
    order: 1 !important;
    flex-direction: row !important;
    width: 100% !important;
    max-width: 100% !important;
    max-height: none !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }
  .amzv2__img-wrap .owl-carousel,
  .amzv2__img-wrap .cm-image-gallery {
    flex-direction: row !important;
    width: 100% !important;
  }
}

/* ═══════════════════════════════════════════════════════════════
   COL B — PRODUCT INFO (center)
   ═══════════════════════════════════════════════════════════════ */
.amzv2__col-info { min-width: 0; padding-top: 4px; }

/* Badges — above title, Amazon Best Seller pill style */
.amzv2__badges {
  margin-bottom: 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.amzv2__badges .ab-stickers-container,
.amzv2__badges .ab-stickers-wrapper {
  display: inline-flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  width: auto !important;
  position: static !important;
  margin: 0 !important;
}
.amzv2__badges .ab-sticker-full_size,
.amzv2__badges .ab-sticker-small_size {
  display: inline-block !important;
  width: auto !important;
  position: static !important;
}
.amzv2__badges .T-sticker,
.amzv2__badges .ab-sticker {
  display: inline-block !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  padding: 4px 10px !important;
  border-radius: 3px !important;
  white-space: nowrap !important;
  width: auto !important;
  max-width: fit-content !important;
}
/* Hide stickers everywhere else in center column — only show in badges area */
.amzv2__price-block .ab-stickers-container,
.amzv2__price-block .ab-stickers-wrapper,
.amzv2__price-block .T-sticker,
.amzv2__about-body .ab-stickers-container { display: none !important; }

/* Brand */
.amzv2__brand { font-size: 13px; margin-bottom: 2px; }
.amzv2__brand a { color: #007185; text-decoration: none; }
.amzv2__brand a:hover { color: #c7511f; text-decoration: underline; }

/* Title */
.amzv2__title {
  font-size: 24px !important;
  font-weight: 400 !important;
  line-height: 1.3 !important;
  color: #0f1111 !important;
  margin: 0 0 8px !important;
  padding: 0 !important;
}

/* Rating row */
.amzv2__rating-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 8px;
  font-size: 13px;
}
.amzv2__rating-row a { color: #007185; text-decoration: none; }
.amzv2__rating-row a:hover { color: #c7511f; }
.amzv2__sku { font-size: 12px; color: #565959; }

/* Social proof */
.amzv2__social-proof {
  font-size: 13px;
  color: #0f1111;
  font-weight: 600;
  margin-bottom: 8px;
}

/* Divider */
.amzv2__divider { height: 1px; background: #e7e7e7; margin: 12px 0; }

/* Price block */
.amzv2__price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}
.amzv2__badge-pct {
  background: #cc0c39;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 2px;
}
.amzv2__main-price,
.amzv2__main-price .ty-price {
  font-size: 28px;
  font-weight: 400;
  color: #0f1111;
  line-height: 1.2;
}
.amzv2__main-price .ty-price-num { font-size: 28px !important; }
.amzv2__list-price { font-size: 13px; color: #565959; }
.amzv2__list-price .ty-price,
.amzv2__list-price del,
.amzv2__list-price s { text-decoration: line-through; color: #565959; }

/* Points */
.amzv2__points { font-size: 13px; color: #007185; margin: 4px 0 0; }

/* About this item */
.amzv2__about { margin: 16px 0; }
.amzv2__section-heading {
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #0f1111 !important;
  margin: 0 0 10px !important;
  padding: 0 0 8px !important;
  border-bottom: 1px solid #e7e7e7 !important;
}
.amzv2__about-body {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
}
.amzv2__about-body ul { padding-inline-start: 20px; margin: 0; list-style: disc; }
.amzv2__about-body li { margin-bottom: 4px; }
.amzv2__about-body p { margin: 0 0 8px; }

/* Options */
/* Options - Premium Pills Style */
.amzv2__options { margin: 16px 0; }
.amzv2__options .ty-product-options__item {
  margin-bottom: 15px;
}
.amzv2__options .ty-control-group__label {
  font-weight: 600 !important;
  color: #0f1111 !important;
  margin-bottom: 8px !important;
  display: block;
}
.amzv2__options .ty-control-group { margin-bottom: 10px; }
.amzv2__options select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #d5d9d9;
  border-radius: 8px;
  background: #f8f9fa;
  font-size: 14px;
  color: #0f1111;
  outline: none;
  transition: all 0.2s ease;
}
.amzv2__options select:focus {
  border-color: #007185;
  box-shadow: 0 0 0 2px rgba(0,113,133,0.2);
  background: #fff;
}

/* Promo text */
.amzv2__promo { font-size: 14px; font-weight: 600; color: #c7511f; margin: 12px 0; }

/* Vendor block — hide (info is in buy box seller table) */
.amzv2 .ut2-vendor-block { display: none !important; }

/* ── INFORMATION ACCORDION ── */
.amzv2__accordion { margin-top: 20px; }
.amzv2__acc-item { border-bottom: 1px solid #e7e7e7; }
.amzv2__acc-toggle {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  padding: 14px 0 !important;
  background: none !important;
  border: none !important;
  cursor: pointer !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: #0f1111 !important;
  text-align: inherit !important;
}
.amzv2__acc-toggle:hover { color: #c7511f !important; }
.amzv2__chevron { flex-shrink: 0; transition: transform 0.2s ease; color: #6b7280; }
.amzv2__acc-item--open .amzv2__chevron { transform: rotate(180deg); }
.amzv2__acc-body {
  overflow: hidden;
  max-height: 3000px;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding-bottom: 14px;
}
.amzv2__acc-body--closed { max-height: 0 !important; padding-bottom: 0 !important; overflow: hidden !important; }
.amzv2__acc-content { font-size: 14px; line-height: 1.6; color: #333; }
.amzv2__features-table { font-size: 14px; }

/* ═══════════════════════════════════════════════════════════════
   COL C — BUY BOX (right column like Amazon)
   ═══════════════════════════════════════════════════════════════ */
.amzv2__col-buy { min-width: 0; }
.amzv2__buybox {
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
  position: sticky;
  top: 70px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.04);
  transition: box-shadow 0.3s ease;
}
.amzv2__buybox:hover {
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

/* Buy box price */
.amzv2__buy-price { margin-bottom: 4px; }
.amzv2__buy-price .ty-price-update,
.amzv2__buy-price .ty-price { font-size: 20px; color: #0f1111; font-weight: 400; }
.amzv2__buy-price .ty-price-num { font-size: 20px !important; }
.amzv2__buy-price .ab-stickers-container,
.amzv2__buy-price .ab-stickers-wrapper { display: none !important; }
.amzv2__buy-points { font-size: 12px; color: #007185; margin: 2px 0 6px; }

/* Stock status — custom Amazon style */
.amzv2__buy-stock { margin: 8px 0; }
.amzv2__in-stock {
  color: #007600;
  font-size: 18px;
  font-weight: 600;
  display: block;
}
.amzv2__low-stock {
  color: #b12704;
  font-size: 13px;
  font-weight: 600;
  display: block;
  margin-top: 2px;
}
.amzv2__out-stock {
  color: #b12704;
  font-size: 16px;
  font-weight: 600;
  display: block;
}

/* Advanced options area — hide stock duplication and vendor info */
.amzv2__buy-adv {
  margin: 0;
  font-size: 13px;
  color: #565959;
}
.amzv2__buy-adv .ty-qty-in-stock,
.amzv2__buy-adv .ty-qty-out-of-stock,
.amzv2__buy-adv .ty-control-group__label,
.amzv2__buy-adv .ut2-pb__vendor,
.amzv2__buy-adv .ty-product-company { display: none !important; }
.amzv2__buy-adv .ty-control-group { font-size: 13px !important; margin: 2px 0 !important; }

/* Buy actions wrapper */
.amzv2__buy-actions { margin: 8px 0 0; }

/* Qty — Amazon rounded dropdown */
.amzv2__qty-wrap {
  display: inline-flex;
  align-items: center;
  margin: 10px 0;
  border: 1px solid #d5d9d9;
  border-radius: 7px;
  background: #f0f2f2;
  box-shadow: 0 2px 5px rgba(15,17,17,0.08);
  overflow: hidden;
}
.amzv2__qty-label {
  font-size: 13px;
  color: #0f1111;
  padding: 7px 10px;
  white-space: nowrap;
}
.amzv2__qty-select {
  border: none !important;
  border-radius: 0 !important;
  background: #f0f2f2 !important;
  font-size: 13px !important;
  padding: 7px 10px !important;
  height: auto !important;
  min-height: 0 !important;
  width: auto !important;
  min-width: 40px !important;
  cursor: pointer !important;
  color: #0f1111 !important;
  outline: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='8' height='5'%3E%3Cpath d='M0 0l4 5 4-5z' fill='%23555'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: left 8px center !important;
  padding-left: 22px !important;
}
.amzv2__qty-select:hover { background-color: #e3e6e6 !important; }

/* Hide old +/- qty */
.amzv2__buybox .ut2-qty__wrap,
.amzv2__buybox .ty-value-changer { display: none !important; }

/* Buttons */
.amzv2__buy-buttons {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 10px 0;
}
.amzv2__buy-buttons .ty-btn__add-to-cart {
  width: 100% !important;
  border-radius: 100px !important;
  background: linear-gradient(to bottom, #f8e367, #ffd814) !important;
  border: 1px solid #fcd200 !important;
  color: #0f1111 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  height: 42px !important;
  line-height: 40px !important;
  padding: 0 16px !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
  text-align: center !important;
  transition: all 0.2s ease !important;
}
.amzv2__buy-buttons .ty-btn__add-to-cart:hover { 
  background: linear-gradient(to bottom, #fdf09d, #f7ca00) !important; 
  box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
  transform: translateY(-1px);
}
.amzv2__buy-buttons .ty-btn__buy-now,
.amzv2__buy-buttons .ty-btn__secondary,
.amzv2__buy-buttons .ty-btn__outline,
.amzv2__buy-buttons .cm-form-submit:not(.ty-btn__add-to-cart):not([class*="wishlist"]),
.amzv2__buy-actions .ty-btn__outline {
  width: 100% !important;
  border-radius: 100px !important;
  background: linear-gradient(to bottom, #ffb84d, #ffa41c) !important;
  border: 1px solid #ff8f00 !important;
  color: #0f1111 !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  height: 42px !important;
  line-height: 40px !important;
  padding: 0 16px !important;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05) !important;
  text-align: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: all 0.2s ease !important;
}
.amzv2__buy-buttons .ty-btn__buy-now:hover,
.amzv2__buy-buttons .ty-btn__secondary:hover,
.amzv2__buy-buttons .ty-btn__outline:hover,
.amzv2__buy-buttons .cm-form-submit:not(.ty-btn__add-to-cart):not([class*="wishlist"]):hover,
.amzv2__buy-actions .ty-btn__outline:hover {
  background: linear-gradient(to bottom, #ffc773, #e89413) !important;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1) !important;
  transform: translateY(-1px);
}

/* Seller table */
.amzv2__seller-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12px;
  margin: 10px 0 0;
}
.amzv2__seller-table tr { border: none; }
.amzv2__seller-lbl {
  color: #565959;
  padding: 4px 0;
  width: 40%;
  vertical-align: top;
}
.amzv2__seller-val {
  color: #007185;
  padding: 4px 0;
}
.amzv2__seller-val a { color: #007185; }
.amzv2__seller-val a:hover { color: #c7511f; text-decoration: underline; }
.amzv2__seller-secure { font-size: 11px; color: #565959; }

/* Wishlist */
.amzv2__wishlist { margin-top: 8px; }
.amzv2__wishlist .ty-btn {
  width: 100% !important;
  border-radius: 20px !important;
  background: #fff !important;
  border: 1px solid #d5d9d9 !important;
  color: #0f1111 !important;
  font-size: 12px !important;
  height: 32px !important;
  line-height: 30px !important;
  padding: 0 12px !important;
}
.amzv2__wishlist .ty-btn:hover { background: #f7f8f8 !important; }

/* ── TABS AREA ── */
.amzv2__tabs-area {
  margin-top: 36px;
  border-top: 2px solid #e7e7e7;
  padding-top: 0;
}
/* Reviews section inner padding — matches Amazon's content inset */
.amzv2__tabs-area .ty-product-reviews-view {
  padding: 0 !important;
}
.amzv2__tabs-area .ty-product-reviews-view__main-content-right {
  padding-left: 32px !important;
  padding-right: 0 !important;
}
.amzv2__tabs-area .ty-product-review-post {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.amzv2__tabs-area .tab-list-title {
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #0f1111 !important;
  padding: 20px 0 12px !important;
  margin: 0 !important;
  border-bottom: 1px solid #e7e7e7 !important;
}
.amzv2__tabs-area .ty-wysiwyg-content {
  font-size: 14px;
  line-height: 1.7;
  color: #333;
  padding: 16px 0;
}

/* ═══════════════════════════════════════════════════════════════
   STICKER BADGES — small Amazon pills
   ═══════════════════════════════════════════════════════════════ */
.amzv2 .ab-stickers-container {
  display: inline-flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  width: auto !important;
  margin: 0 0 6px !important;
  position: static !important;
}
.amzv2 .ab-sticker-full_size,
.amzv2 .ab-sticker-small_size {
  display: inline-block !important;
  width: auto !important;
  max-width: fit-content !important;
  position: static !important;
}
.amzv2 .ab-sticker-full_size .tss,
.amzv2 .ab-sticker-small_size .tfs { display: none !important; }
.amzv2 .T-sticker,
.amzv2 .ab-sticker,
.amzv2 [class*="ab-sticker"] .ab-sticker__name {
  display: inline-block !important;
  width: auto !important;
  max-width: fit-content !important;
  font-size: 11px !important;
  font-weight: 600 !important;
  padding: 3px 8px !important;
  border-radius: 2px !important;
  line-height: 1.3 !important;
  white-space: nowrap !important;
}
.amzv2 .ab-stickers-wrapper {
  position: static !important;
  display: inline-flex !important;
  flex-wrap: wrap !important;
  gap: 6px !important;
  width: auto !important;
}

/* ═══════════════════════════════════════════════════════════════
   HIDE / CLEAN unwanted elements
   ═══════════════════════════════════════════════════════════════ */
.amzv2 .ty-min-qty-description { display: none !important; }
.amzv2__buybox .ut2-qty__wrap { display: none !important; }

/* RTL rules are in rtl_noflip.css to prevent rtlcss from flipping them */
/* ─────────────────────────────────────────────────────────────
   PRICE ROW — clean Amazon typography
   ───────────────────────────────────────────────────────────── */

/* Outer wrapper: column-flex so list price sits on its own line */
.amzv2__price-row {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 6px;
}

/* Price + discount on one flex line, vertically centered */
.amzv2__price-block {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 8px !important;
  margin-bottom: 0 !important;
}

/* ── Discount percentage — Amazon flat red text, no box ───── */
.amzv2__discount-pct {
  font-size: 28px !important;
  font-weight: 300 !important;
  color: #cc0c39 !important;
  line-height: 1 !important;
  flex-shrink: 0 !important;
  white-space: nowrap !important;
}

/* ── Main price — large, same baseline as discount ─────────── */
.amzv2__main-price {
  display: inline-flex !important;
  align-items: baseline !important;
  font-size: 28px !important;
  font-weight: 500 !important;
  color: #0f1111 !important;
  line-height: 1 !important;
}
.amzv2__main-price .ty-price,
.amzv2__main-price .ty-price-update,
.amzv2__main-price .ut2-cost-base {
  font-size: 28px !important;
  font-weight: 500 !important;
  color: #0f1111 !important;
  line-height: 1 !important;
}
.amzv2__main-price .ty-price-num {
  font-size: 28px !important;
  font-weight: 500 !important;
  color: #0f1111 !important;
  vertical-align: baseline !important;
}
/* Currency symbol (EGP) — small, top-aligned like Amazon */
.amzv2__main-price .ut2-currency-sup {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #0f1111 !important;
  vertical-align: top !important;
  line-height: 1.8 !important;
  margin-inline-end: 1px !important;
}
/* Cents (.00) — small, top-aligned */
.amzv2__main-price .ty-price-num > sup,
.amzv2__main-price bdi > span > sup {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #0f1111 !important;
  vertical-align: top !important;
  line-height: 1.8 !important;
}
/* Kill sticker noise inside the price span */
.amzv2__main-price .ab-stickers-container,
.amzv2__main-price .ab-stickers-wrapper,
.amzv2__main-price .ab-sticker-full_size,
.amzv2__main-price input[type="hidden"],
.amzv2__main-price .pc-inline-debug {
  display: none !important;
}

/* ── List price — muted, strikethrough, below the main row ── */
.amzv2__list-price {
  font-size: 13px !important;
  color: #565959 !important;
  display: block !important;
  margin-top: 0 !important;
}
.amzv2__list-price .ty-list-price,
.amzv2__list-price .ty-strike {
  text-decoration: line-through !important;
  color: #565959 !important;
}
.amzv2__list-price .ty-price-num,
.amzv2__list-price bdi {
  font-size: 13px !important;
  color: #565959 !important;
  text-decoration: line-through !important;
  font-weight: 400 !important;
}
.amzv2__list-price .ut2-currency-sup,
.amzv2__list-price .ty-price-num sup {
  font-size: 11px !important;
  color: #565959 !important;
  vertical-align: baseline !important;
}

/* ── Brand line — below title like Amazon ────────────────── */
.amzv2__brand {
  font-size: 13px !important;
  color: #565959 !important;
  margin: 3px 0 4px !important;
}
.amzv2__brand a {
  color: #007185 !important;
  text-decoration: none !important;
  font-size: 13px !important;
}
.amzv2__brand a:hover {
  color: #c7511f !important;
  text-decoration: underline !important;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING FINAL POLISH — Amazon exact match
   ═══════════════════════════════════════════════════════════════ */

/* ── PDP: Kill empty ab-sticker div inside price span ─────── */
.amzv2__main-price .ab-sticker-full_size:empty,
.amzv2__main-price .ab-stickers-container:empty,
.amzv2__main-price .ab-stickers-container .ab-sticker-full_size:empty {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}
/* Kill the entire stickers container inside price if it has no rendered stickers */
.amzv2__main-price .ab-stickers-container {
  display: none !important;
}

/* ── PDP: Price row exact Amazon layout ─────────────────────
   -19% [flat red] + EGP14,499.00 [large dark] on one line
   List Price: EGP17,999.00 [small grey strikethrough] below  */

.amzv2__price-row {
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
  margin-bottom: 8px !important;
}
.amzv2__price-block {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
}

/* Discount % — flat crimson, 28px light weight, no box */
.amzv2__discount-pct {
  font-size: 28px !important;
  font-weight: 300 !important;
  color: #cc0c39 !important;
  line-height: 1 !important;
  white-space: nowrap !important;
  flex-shrink: 0 !important;
  display: inline !important;
  background: none !important;
  padding: 0 !important;
  border: none !important;
  border-radius: 0 !important;
}

/* Main price — large, dark, Amazon weight */
.amzv2__main-price {
  display: inline-flex !important;
  align-items: baseline !important;
  gap: 1px !important;
  flex-shrink: 0 !important;
}
.amzv2__main-price .ty-price-num {
  font-size: 28px !important;
  font-weight: 500 !important;
  color: #0f1111 !important;
  line-height: 1 !important;
}
.amzv2__main-price .ut2-currency-sup {
  font-size: 13px !important;
  font-weight: 400 !important;
  color: #0f1111 !important;
  vertical-align: top !important;
  line-height: 1.8 !important;
}
.amzv2__main-price .ty-price-num > sup {
  font-size: 13px !important;
  font-weight: 400 !important;
  vertical-align: top !important;
  line-height: 1.8 !important;
  color: #0f1111 !important;
}
/* Kill any red price color from sqz-amazon-block leaking in */
.amzv2__main-price .ty-price-num,
.amzv2__main-price bdi,
.amzv2__main-price .ty-price bdi,
.amzv2__main-price .ut2-cost-base {
  color: #0f1111 !important;
}

/* List price — muted grey, smaller, strikethrough */
.amzv2__list-price {
  font-size: 13px !important;
  color: #565959 !important;
  display: block !important;
  line-height: 1.4 !important;
}
.amzv2__list-price .ty-price-num,
.amzv2__list-price bdi {
  font-size: 13px !important;
  color: #565959 !important;
  text-decoration: line-through !important;
  font-weight: 400 !important;
}

/* ── GRID CARD: Amazon-style discount display ───────────────
   Replace the red pill badge (.ty-discount-label) with flat
   inline text "-19%" in dark red, positioned above/beside price  */

/* 1. Kill the pill badge entirely on grid cards */
.ut2-gl__price .ty-discount-label,
.ut2-gl__price .ty-discount-label__item,
.ut2-gl__price .ty-discount-label__value {
  background: none !important;
  background-color: transparent !important;
  color: #cc0c39 !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  padding: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  position: static !important;
  float: none !important;
  height: auto !important;
  line-height: 1.4 !important;
  display: inline !important;
  white-space: nowrap !important;
}
/* Hide the "Save" word, keep only the percentage */
.ut2-gl__price .ty-discount-label__value em {
  display: none !important;
}
/* Add the minus sign before the percentage */
.ut2-gl__price .ty-discount-label__value::before {
  content: "-" !important;
  color: #cc0c39 !important;
}

/* 2. Grid price layout — price + discount % on same row */
.ut2-gl__price-wrap {
  display: flex !important;
  flex-direction: column !important;
  gap: 1px !important;
}
.ut2-gl__price {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: wrap !important;
  align-items: baseline !important;
  gap: 6px !important;
  min-height: 0 !important;
}

/* 3. Main price on grid — prominent dark */
.ut2-gl__price .ty-price-num,
.ut2-gl__price bdi,
.ut2-gl__price .ty-price bdi {
  font-size: 18px !important;
  font-weight: 700 !important;
  color: #0f1111 !important;
}

/* 4. List/original price — small grey strikethrough */
.ut2-gl__price .ty-list-price {
  display: block !important;
  width: 100% !important;
  order: 1 !important;
}
.ut2-gl__price .ty-list-price .ty-price-num,
.ut2-gl__price .ty-list-price bdi {
  font-size: 12px !important;
  font-weight: 400 !important;
  color: #888 !important;
  text-decoration: line-through !important;
}

/* 5. Currency symbol on grid — small superscript */
.ut2-gl__price .ut2-currency-sup {
  font-size: 11px !important;
  color: #0f1111 !important;
  vertical-align: top !important;
  line-height: 1.8 !important;
  font-weight: 400 !important;
}

/* ── Product image sticker (Save X%) — Amazon pill style ──── */
/* Keep it visible but position it cleanly in the image corner  */
.ut2-gl__image .ab-stickers-container,
.ut2-gl__image .ab-stickers-wrapper {
  position: absolute !important;
  top: 6px !important;
  inset-inline-start: 6px !important;
  z-index: 2 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3px !important;
}
.ut2-gl__image .ab-sticker {
  background: #cc0c39 !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 2px 6px !important;
  border-radius: 3px !important;
  display: inline-block !important;
  line-height: 1.4 !important;
}

/* ── PDP image sticker — clean corner position ──────────────── */
/* The "Save 30%" badge on product detail page image area        */
.amzv2__col-img .ab-stickers-container__product_labels,
.amzv2__img-wrap .ab-stickers-container__product_labels {
  position: absolute !important;
  top: 8px !important;
  inset-inline-start: 8px !important;
  z-index: 3 !important;
  display: inline-flex !important;
  flex-direction: column !important;
  gap: 4px !important;
  /* NOT overlapping the breadcrumb area */
  max-width: 80px !important;
}
.amzv2__col-img .ab-sticker,
.amzv2__img-wrap .ab-sticker {
  background: #cc0c39 !important;
  color: #fff !important;
  font-size: 11px !important;
  font-weight: 700 !important;
  padding: 3px 8px !important;
  border-radius: 3px !important;
  line-height: 1.4 !important;
  white-space: nowrap !important;
  display: inline-block !important;
  max-width: fit-content !important;
}
/* Hide the ab-sticker that's outside the image area (floating on breadcrumb) */
.amzv2__breadcrumbs .ab-stickers-container,
.amzv2__breadcrumbs ~ .ab-stickers-container,
.amzv2 > .ab-stickers-container {
  display: none !important;
}
