/* ═══════ PAGE BANNER (shop/category pages) ════════════════ */
.page-banner {
  padding: clamp(60px, 8vw, 100px) clamp(16px, 5vw, 80px) clamp(32px, 4vw, 56px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  /* Subtle warm gradient lifts the banner above flat black */
  background: radial-gradient(
      ellipse 80% 100% at 0% 0%,
      rgba(232, 25, 44, 0.035),
      transparent 60%
    ),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025), transparent);
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.breadcrumb a {
  cursor: pointer;
  transition: color 0.2s;
}
.breadcrumb a:hover {
  color: var(--orange);
}
.breadcrumb span {
  color: rgba(255, 255, 255, 0.15);
}
.page-banner h1 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 800;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: -0.01em;
}
.page-banner h1 em {
  font-style: normal;
  -webkit-text-stroke: 1px var(--white);
  color: transparent;
}
.page-banner p {
  font-size: clamp(13px, 1.4vw, 16px);
  color: var(--dim);
  margin-top: 12px;
  max-width: 560px;
  line-height: 1.6;
}

/* ═══════ SHOP CATEGORY NAV BAR ════════════════════════════ */
.shop-cat-nav {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 clamp(16px, 5vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  overflow-x: auto;
  scrollbar-width: none;
  background: #000;
}
.shop-cat-nav::-webkit-scrollbar {
  display: none;
}
.shop-cat-nav a {
  display: block;
  padding: 16px 20px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  white-space: nowrap;
  color: rgba(255, 255, 255, 0.5);
  border-bottom: 2px solid transparent;
  transition:
    color 0.2s,
    border-color 0.2s;
  cursor: pointer;
}
.shop-cat-nav a:hover {
  color: var(--white);
}
.shop-cat-nav a.active {
  color: var(--white);
  border-bottom-color: var(--orange);
}

/* ═══════ FILTER + SORT BAR ════════════════════════════════ */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(16px, 5vw, 80px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  gap: 12px;
  flex-wrap: wrap;
}
.filter-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-pill {
  padding: 8px 18px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--btn-radius);
  background: rgba(255, 255, 255, 0.025);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    transform 0.2s var(--ease),
    box-shadow 0.2s;
  color: rgba(255, 255, 255, 0.6);
}
.filter-pill:hover {
  border-color: var(--orange);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}
.filter-pill.active-filter {
  border-color: rgba(244, 123, 32, 0.75);
  background: rgba(244, 123, 32, 0.16);
  color: var(--white);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}
.filter-right {
  display: flex;
  align-items: center;
  gap: 14px;
}
.sort-select {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--btn-radius);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  cursor: pointer;
  outline: none;
  transition:
    border-color 0.2s,
    background 0.2s;
  color-scheme: dark;
}
.sort-select:hover {
  border-color: rgba(244, 123, 32, 0.55);
  background: rgba(255, 255, 255, 0.075);
}
.sort-select option {
  background: #0b0b0b;
  color: rgba(255, 255, 255, 0.9);
}
.item-count {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Mobile col toggle */
.col-toggle {
  display: none;
  gap: 4px;
}
.col-btn {
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    transform 0.2s var(--ease);
}
.col-btn:hover {
  transform: translateY(-1px);
  border-color: rgba(244, 123, 32, 0.55);
}
.col-btn.active {
  border-color: var(--orange);
  background: rgba(244, 123, 32, 0.1);
}
.col-btn svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  opacity: 0.7;
}

/* ═══════ SHOP PRODUCT GRID ════════════════════════════════ */
.shop-grid {
  padding: 2px;
}
.shop-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.shop-products.col-2 {
  grid-template-columns: repeat(2, 1fr);
}
.shop-products.col-1 {
  grid-template-columns: 1fr;
}

/* product card in shop */
.shop-product-card {
  position: relative;
  overflow: hidden;
  background: #111;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.4s var(--ease);
}
.shop-product-card:hover {
  box-shadow:
    0 0 40px rgba(244, 123, 32, 0.09),
    0 8px 32px rgba(0, 0, 0, 0.5);
}
.shop-product-card .product-img-wrap {
  width: 100%;
  padding-top: calc(621 / 414 * 100%);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.shop-product-card:hover .product-img-wrap .img-placeholder {
  transform: scale(1.05);
}
.shop-product-card .product-info {
  padding: 12px 14px 16px;
  background: #0a0a0a;
  flex: 1;
}
.shop-product-card .product-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
  line-height: 1.2;
}
.shop-product-card .product-seller {
  font-size: 11px;
  margin-bottom: 7px;
}
.shop-product-card .product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.shop-product-card .product-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--dim);
}
.shop-product-card .product-price strong {
  color: var(--yellow);
}
.shop-product-card .add-to-cart {
  display: block;
  width: 100%;
  padding: 11px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--btn-radius);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  cursor: pointer;
  margin-top: 10px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  transition:
    background 0.3s var(--ease),
    border-color 0.3s,
    box-shadow 0.3s,
    transform 0.2s var(--ease);
}
.shop-product-card:hover .add-to-cart {
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  border-color: transparent;
  box-shadow:
    0 8px 22px rgba(244, 123, 32, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.shop-product-card .add-to-cart:hover {
  transform: translateY(-1px);
}
.shop-product-card .add-to-cart:active {
  transform: scale(0.985);
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: clamp(32px, 4vw, 56px);
}
.page-btn {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition:
    background 0.2s,
    border-color 0.2s,
    color 0.2s,
    transform 0.2s var(--ease);
  color: rgba(255, 255, 255, 0.5);
}
.page-btn:hover {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-1px);
}
.page-btn.active-page {
  border-color: var(--orange);
  background: rgba(244, 123, 32, 0.12);
  color: var(--white);
}

/* ═══════ PRODUCT DETAIL PAGE ══════════════════════════════ */
.product-detail-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: clamp(24px, 4vw, 48px) clamp(16px, 5vw, 80px) clamp(48px, 6vw, 80px);
  align-items: flex-start;
}
.pd-gallery {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  position: sticky;
  top: calc(var(--nav-h) + 16px);
}
.pd-thumbs {
  display: flex;
  flex-direction: column;
  gap: 6px;
  width: 76px;
  flex-shrink: 0;
  order: -1;
}
.pd-thumb {
  width: 76px;
  height: 102px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s;
  flex-shrink: 0;
}
.pd-thumb .img-placeholder {
  width: 100%;
  height: 100%;
}
.pd-thumb.active {
  border-color: var(--orange);
}
.pd-thumb:hover:not(.active) {
  border-color: rgba(255, 255, 255, 0.3);
}
.pd-main-img {
  flex: 1;
  aspect-ratio: 414/621;
  overflow: hidden;
  min-width: 0;
  position: relative;
  background: #111;
}
.pd-main-img > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pd-main-img .img-placeholder {
  width: 100%;
  height: 100%;
}
.pd-img-prev,
.pd-img-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.45);
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  width: 38px;
  height: 56px;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background 0.18s;
  padding: 0;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.pd-img-prev:hover,
.pd-img-next:hover {
  background: rgba(0, 0, 0, 0.75);
}
.pd-img-prev {
  left: 8px;
}
.pd-img-next {
  right: 8px;
}
.pd-info {
  padding-top: 8px;
}
.pd-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 10px;
}
.pd-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(20px, 3vw, 38px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
  margin-bottom: 10px;
}
.pd-seller-store {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--orange);
  margin: -2px 0 12px;
}
.pd-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 600;
  color: var(--yellow);
  margin: 16px 0;
}
.pd-section {
  margin: 18px 0;
}
.pd-size-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.size-guide-link {
  color: var(--orange);
  cursor: pointer;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: underline;
  transition: color 0.2s;
}
.size-guide-link:hover {
  color: var(--yellow);
}
.pd-sizes {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.size-btn {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.65);
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s;
}
.size-btn:hover {
  border-color: var(--white);
  color: var(--white);
}
.size-btn.selected {
  border-color: var(--orange);
  background: rgba(244, 123, 32, 0.15);
  color: var(--white);
}
.pd-colors {
  display: flex;
  gap: 10px;
}
.pd-color-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition:
    transform 0.2s,
    border-color 0.2s;
}
.pd-color-btn:hover {
  transform: scale(1.15);
}
.pd-color-btn.selected {
  transform: scale(1.1);
}
.pd-add-cart {
  display: block;
  width: 100%;
  padding: 16px;
  margin-top: 22px;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition:
    background 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    transform 0.2s var(--ease);
}
.pd-add-cart:hover {
  background: linear-gradient(135deg, var(--orange) 0%, var(--yellow) 100%);
  box-shadow: 0 8px 28px rgba(244, 123, 32, 0.3);
  transform: translateY(-2px);
}
.pd-buy-now {
  display: block;
  width: 100%;
  padding: 15px;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: var(--white);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}
.pd-buy-now:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.07);
}
.pd-customize {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  margin-top: 8px;
  border: 1.5px dashed var(--orange);
  background: transparent;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px;
  transition:
    background 0.22s,
    color 0.22s,
    border-color 0.22s;
}
.pd-customize:hover {
  background: rgba(244, 123, 32, 0.08);
  border-color: var(--white);
  color: var(--white);
}
.qv-customize-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  padding: 9px;
  margin-top: 4px;
  border: none;
  background: transparent;
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: color 0.2s;
}
.qv-customize-link:hover {
  color: var(--white);
}
.pd-desc {
  margin: 28px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.pd-desc-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 12px;
  list-style: none;
  cursor: pointer;
}
.pd-desc-title::-webkit-details-marker {
  display: none;
}
.pd-desc p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.75;
  margin-bottom: 12px;
}
.pd-desc ul {
  margin: 0 0 12px 18px;
  list-style: disc;
}
.pd-desc ul li {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.8;
  margin-bottom: 4px;
}
.pd-trust {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}
.pd-trust-item,
.pd-delivery-note {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.025);
  border-radius: 6px;
  padding: 9px 11px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.2;
}
.pd-trust-icon {
  font-size: 13px;
  line-height: 1;
}
.pd-delivery-note {
  display: flex;
  width: 100%;
  justify-content: center;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
  .breadcrumb {
    display: none;
  }
  .product-detail-layout {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding: 0 0 34px;
  }
  .pd-gallery {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
  }
  .pd-main-img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
    min-height: unset;
    flex: none;
  }
  .pd-main-img > img {
    object-fit: cover;
  }
  .pd-thumbs {
    order: 2;
    display: flex;
    flex-direction: row;
    gap: 7px;
    width: 100%;
    height: auto;
    padding: 0 14px 2px;
    overflow-x: auto;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }
  .pd-thumbs::-webkit-scrollbar {
    display: none;
  }
  .pd-thumb {
    width: 58px;
    height: 76px;
    flex: 0 0 58px;
    scroll-snap-align: start;
    border-width: 1px;
  }
  .pd-info {
    padding: 2px 16px 0;
  }
  .pd-tag {
    font-size: 9px;
    letter-spacing: 0.18em;
    margin-bottom: 6px;
  }
  .pd-name {
    font-size: clamp(22px, 8vw, 30px);
    line-height: 0.95;
    margin-bottom: 6px;
    letter-spacing: 0;
  }
  .pd-price {
    font-size: 20px;
    margin: 8px 0 10px;
  }
  .pd-section {
    margin: 11px 0;
  }
  .pd-size-label {
    font-size: 10px;
    letter-spacing: 0.14em;
    margin-bottom: 7px;
  }
  .pd-colors {
    gap: 8px;
  }
  .pd-color-btn {
    width: 24px;
    height: 24px;
  }
  .pd-sizes {
    gap: 6px;
  }
  .size-btn {
    width: 40px;
    height: 38px;
    font-size: 11px;
  }
  .pd-add-cart {
    padding: 13px;
    margin-top: 14px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  .pd-buy-now {
    padding: 12px;
    margin-top: 7px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  .pd-customize {
    padding: 11px;
    margin-top: 7px;
    font-size: 12px;
    letter-spacing: 0.12em;
  }
  .pd-desc {
    margin: 16px 0 0;
    padding-top: 12px;
  }
  .pd-desc-title {
    position: relative;
    margin-bottom: 0;
    padding: 3px 24px 3px 0;
    font-size: 10px;
    letter-spacing: 0.18em;
  }
  .pd-desc-title::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--orange);
    font-size: 15px;
    line-height: 1;
  }
  .pd-desc[open] .pd-desc-title {
    margin-bottom: 9px;
  }
  .pd-desc[open] .pd-desc-title::after {
    content: "-";
  }
  .pd-desc p {
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 8px;
  }
  .pd-desc ul {
    margin-left: 16px;
    margin-bottom: 6px;
  }
  .pd-desc ul li {
    font-size: 12px;
    line-height: 1.55;
    margin-bottom: 2px;
  }
  .pd-trust {
    gap: 7px;
    margin-top: 13px;
    padding-top: 12px;
  }
  .pd-trust-item {
    font-size: 9px;
    letter-spacing: 0.08em;
    padding: 8px 9px;
  }
  .pd-delivery-note {
    font-size: 10px;
    letter-spacing: 0.06em;
    padding: 9px 10px;
    justify-content: flex-start;
    text-align: start;
  }
}

/* ═══════ SIZE GUIDE MODAL ══════════════════════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open {
  display: flex;
}
.modal-box {
  background: #111;
  border: 1px solid rgba(255, 255, 255, 0.1);
  max-width: 520px;
  width: 100%;
  max-height: 85vh;
  overflow-y: auto;
  padding: clamp(24px, 4vw, 40px);
}
.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.modal-head h3 {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.modal-head button {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: color 0.2s;
  line-height: 1;
}
.modal-head button:hover {
  color: var(--white);
}
.mockup-modal-head {
  align-items: flex-start;
}
.mockup-modal-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  flex-wrap: wrap;
}
.mockup-download-btn {
  padding: 10px 16px;
  font-size: 11px;
}
.mockup-download-btn:disabled {
  opacity: 0.55;
  cursor: wait;
  transform: none;
  box-shadow: none;
}
.mockup-preview-badge {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 5px 9px;
  border: 1px solid rgba(244, 123, 32, 0.35);
  background: rgba(244, 123, 32, 0.08);
  color: var(--orange);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.modal-icon-close {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
}
.modal-icon-close:hover {
  background: rgba(232, 25, 44, 0.14);
  border-color: rgba(232, 25, 44, 0.45);
  color: var(--white);
}
.mockup-modal-box {
  max-width: min(920px, 94vw);
}
.mockup-preview-frame {
  position: relative;
  background: #050505;
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  overflow: hidden;
}
.mockup-preview-frame .mockup-slide-btn {
  opacity: 1;
}
.mockup-preview-frame img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 72vh;
  object-fit: contain;
}
.size-guide-table {
  overflow-x: auto;
}
.size-guide-table table {
  width: 100%;
  border-collapse: collapse;
}
.size-guide-table th,
.size-guide-table td {
  padding: 11px 14px;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-align: left;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.size-guide-table th {
  font-weight: 700;
  color: var(--orange);
  text-transform: uppercase;
  font-size: 10px;
  letter-spacing: 0.14em;
}
.size-guide-table tr:hover td {
  background: rgba(255, 255, 255, 0.03);
}

/* ═══════ QUICK VIEW MODAL ═════════════════════════════════ */
.qv-overlay {
  position: fixed;
  inset: 0;
  z-index: 1050;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s var(--ease);
}
.qv-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.qv-panel {
  background: #0d0d0d;
  border: 1px solid rgba(255, 255, 255, 0.08);
  width: min(860px, 92vw);
  max-height: 88vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(0.98);
  transition: transform 0.38s var(--ease);
}
.qv-overlay.open .qv-panel {
  transform: translateY(0) scale(1);
}
.qv-drag-handle {
  display: none;
}
@media (max-width: 640px) {
  .qv-overlay {
    align-items: flex-end;
  }
  .qv-panel {
    width: 100%;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    border-bottom: none;
    transform: translateY(100%);
  }
  .qv-overlay.open .qv-panel {
    transform: translateY(0);
  }
  .qv-drag-handle {
    display: block;
    width: 36px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.15);
    margin: 14px auto 0;
  }
}
.qv-close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 10;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: none;
  color: rgba(255, 255, 255, 0.55);
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s,
    color 0.2s;
}
.qv-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}
.qv-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 640px) {
  .qv-body {
    grid-template-columns: 1fr;
  }
}
.qv-img-col {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: #111;
  position: relative;
}
.qv-img-col .img-placeholder {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.qv-info-col {
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 340px;
}
.qv-tag {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
}
.qv-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(20px, 2.8vw, 30px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1;
}
.qv-price {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 16px;
  color: var(--dim);
}
.qv-price strong {
  color: var(--yellow);
  font-size: 20px;
}
.qv-section-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  margin-bottom: 10px;
}
.qv-section-field {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.qv-size-row-label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.qv-required {
  color: var(--red);
  font-size: 11px;
  margin-left: 1px;
}
.qv-selected-color-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: capitalize;
  color: var(--white);
  margin-left: 8px;
}
[data-lang="ar"] .qv-selected-color-label {
  margin-left: 0;
  margin-right: 8px;
}
.qv-colors {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 2px;
}
.qv-color-btn {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
  transition:
    transform 0.18s var(--ease),
    border-color 0.18s var(--ease),
    box-shadow 0.18s var(--ease);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.4);
}
.qv-color-btn:hover {
  transform: scale(1.12);
  border-color: rgba(255, 255, 255, 0.55);
}
.qv-color-btn.active {
  outline: 2px solid var(--white);
  outline-offset: 2px;
  border-color: rgba(255, 255, 255, 0.6);
}
.qv-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.qv-size-btn {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: none;
  color: var(--white);
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    border-color 0.2s,
    background 0.2s,
    color 0.2s,
    transform 0.2s var(--ease);
}
.qv-size-btn:hover {
  border-color: rgba(255, 255, 255, 0.38);
  transform: translateY(-1px);
}
.qv-size-btn.selected {
  border-color: var(--white);
  background: var(--white);
  color: var(--black);
}
.qv-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: auto;
  padding-top: 8px;
}
.qv-add-cart {
  width: 100%;
  padding: 15px 24px;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, var(--red) 0%, var(--orange) 100%);
  border-radius: var(--btn-radius);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
  box-shadow:
    0 8px 22px rgba(244, 123, 32, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  transition:
    opacity 0.2s,
    transform 0.2s var(--ease),
    box-shadow 0.2s;
}
.qv-add-cart:hover:not(:disabled) {
  opacity: 0.95;
  transform: translateY(-2px);
  box-shadow:
    0 12px 28px rgba(244, 123, 32, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.qv-add-cart:disabled,
.qv-add-cart.qv-add-locked {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.qv-full-details {
  width: 100%;
  padding: 13px 24px;
  background: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--btn-radius);
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  transition:
    border-color 0.2s,
    color 0.2s,
    background 0.2s,
    transform 0.2s var(--ease);
}
.qv-full-details:hover {
  border-color: rgba(255, 255, 255, 0.32);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-1px);
}
/* Quick-view trigger button on product cards */
.qv-trigger {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
  background: rgba(8, 8, 8, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--btn-radius);
  color: var(--white);
  cursor: pointer;
  font-family: "Barlow Condensed", sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  z-index: 5;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.32);
  transition:
    opacity 0.22s var(--ease),
    transform 0.22s var(--ease),
    background 0.2s,
    border-color 0.2s,
    box-shadow 0.2s;
}
.qv-trigger:hover {
  background: rgba(244, 123, 32, 0.92);
  border-color: rgba(255, 255, 255, 0.26);
  box-shadow: 0 10px 24px rgba(244, 123, 32, 0.26);
}
.shop-product-card:hover .qv-trigger,
.product-card:hover .qv-trigger {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
  pointer-events: all;
}
@media (max-width: 768px) {
  .qv-trigger {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
    font-size: 9px;
    padding: 6px 12px;
  }
}

/* ═══════ WISHLIST PAGE ═════════════════════════════════════ */
.wishlist-empty {
  text-align: center;
  padding: clamp(60px, 10vw, 100px) 20px;
}
.wishlist-empty-icon {
  font-size: 56px;
  margin-bottom: 20px;
  opacity: 0.18;
  line-height: 1;
}
.wishlist-empty-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 8px;
}
.wishlist-empty-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.2);
  margin-bottom: 28px;
}
.wish-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  padding: 0 clamp(16px, 5vw, 80px) 60px;
}

.product-reviews {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.reviews-heading {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}
.reviews-score {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 1.75rem;
  font-weight: 800;
}
.reviews-stars {
  color: #f5a623;
  letter-spacing: 2px;
  font-size: 1rem;
}
.reviews-count {
  opacity: 0.5;
  font-size: 0.82rem;
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 6px;
  padding: 1rem 1.25rem;
  transition: border-color 0.18s;
}
.review-card:hover {
  border-color: rgba(255, 255, 255, 0.15);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.5rem;
}
.review-author {
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}
.review-stars {
  color: #f5a623;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.review-body {
  font-size: 0.875rem;
  line-height: 1.65;
  opacity: 0.78;
  margin: 0 0 0.4rem 0;
}
.review-date {
  font-size: 0.72rem;
  opacity: 0.38;
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  padding: 1rem 0.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.015);
  border-radius: 6px;
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  min-width: 72px;
}
.trust-badges .trust-icon {
  font-size: 1.35rem;
  line-height: 1;
}
.trust-label {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  opacity: 0.55;
  text-align: center;
}

.payment-method-selector {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.payment-method-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s;
}
.payment-method-option:has(input:checked) {
  border-color: var(--accent, #e8673c);
  background: rgba(232, 103, 60, 0.06);
}
.payment-method-option input[type="radio"] {
  accent-color: var(--accent, #e8673c);
}
.payment-method-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.payment-method-icon {
  font-size: 1.4rem;
}
.payment-method-label strong {
  display: block;
  font-size: 0.95rem;
}
.payment-method-label small {
  opacity: 0.55;
  font-size: 0.78rem;
}

/* ── Wishlist page (wishlist.html) ───────────────────────────────────────── */
.wl-page-header {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 28px;
}
.wl-page-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.wl-page-count {
  font-size: 13px;
  color: rgba(255, 255, 255, .35);
}
.wl-item {
  display: flex;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .08);
  position: relative;
  align-items: flex-start;
}
.wl-img {
  width: 110px;
  aspect-ratio: 414 / 621;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, .04);
}
.wl-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.wl-info { flex: 1; min-width: 0; }
.wl-name {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-bottom: 4px;
  line-height: 1.2;
  padding-right: 28px;
}
.wl-price {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 8px;
}
.wl-price strong { color: var(--orange); }
.wl-color {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, .45);
  margin-bottom: 10px;
}
.wl-color-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  flex-shrink: 0;
}
.wl-sizes { margin-bottom: 12px; }
.wl-size-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  margin-bottom: 7px;
}
.wl-req { color: var(--orange); }
.wl-size-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.wl-size-btn {
  padding: 4px 9px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 4px;
  background: transparent;
  color: rgba(255, 255, 255, .65);
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  line-height: 1.4;
}
.wl-size-btn:hover { border-color: var(--orange); color: var(--orange); }
.wl-size-btn.selected {
  background: var(--orange);
  border-color: var(--orange);
  color: #fff;
}
.wl-item-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 12px;
}
.wl-atc { padding: 8px 16px; font-size: 12px; }
.wl-move {
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 6px;
  background: transparent;
  color: rgba(255, 255, 255, .55);
  font-size: 12px;
  cursor: pointer;
  transition: border-color .15s, color .15s;
  font-family: "Barlow Condensed", sans-serif;
  font-weight: 600;
  letter-spacing: .04em;
  white-space: nowrap;
}
.wl-move:hover { border-color: var(--orange); color: var(--orange); }
.wl-remove-btn {
  position: absolute;
  top: 18px;
  right: 0;
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, .2);
  font-size: 14px;
  cursor: pointer;
  padding: 4px 6px;
  line-height: 1;
  transition: color .15s;
}
.wl-remove-btn:hover { color: rgba(255, 255, 255, .55); }
.wl-recs {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255, 255, 255, .07);
}
.wl-recs-title {
  font-family: "Barlow Condensed", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .28);
  margin-bottom: 20px;
}
.wl-recs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 16px;
}

/* ── Wishlist Arabic / RTL overrides ─────────────────────────────────────── */
[data-lang="ar"] .wl-page-title,
[data-lang="ar"] .wl-recs-title {
  font-family: "Playpen Sans Arabic", "Cairo", "Barlow", sans-serif !important;
  letter-spacing: 0;
  text-transform: none;
}
[data-lang="ar"] .wl-info {
  text-align: right;
}
[data-lang="ar"] .wl-name {
  padding-right: 0;
  padding-left: 28px;
}
[data-lang="ar"] .wl-remove-btn {
  right: auto;
  left: 0;
}

