/* ══════════════════════════════════════════════════════════════════
   MAXLI PERFUME — ALL PRODUCTS CATALOG STYLESHEET (PRODUCTION)
   Clean Full-Width E-Commerce (No Side Filters, Top Controls)
   ══════════════════════════════════════════════════════════════════ */

/* ── PAGE HEADER / HERO WITH BACKGROUND IMAGE ── */
.prod-page-hero {
  position: relative;
  min-height: 330px;
  padding: 125px clamp(20px, 4vw, 64px) 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-bottom: 1px solid rgba(0, 229, 255, 0.18);
  overflow: hidden;
  background: #030a16;
}

.prod-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.prod-hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transform: translateZ(0);
}

.prod-hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 45% 45%, rgba(3, 10, 22, 0.2) 0%, rgba(3, 10, 22, 0.65) 85%),
              linear-gradient(180deg, rgba(3, 10, 22, 0.5) 0%, rgba(3, 10, 22, 0.1) 40%, rgba(3, 10, 22, 0.75) 100%);
}

.prod-hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.prod-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.3rem, 4.6vw, 3.6rem);
  font-weight: 400;
  line-height: 1.18;
  color: var(--cream);
  margin-bottom: 12px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.95), 0 2px 8px rgba(0, 0, 0, 0.9);
}

.prod-hero-title em {
  font-style: italic;
  color: var(--cyan-bright);
  text-shadow: 0 0 28px rgba(0, 229, 255, 0.65), 0 2px 10px rgba(0, 0, 0, 0.9);
}

.prod-hero-sub {
  font-size: clamp(0.76rem, 1.1vw, 0.9rem);
  color: var(--cyan-ice);
  letter-spacing: 0.16em;
  font-weight: 500;
  text-transform: uppercase;
  display: inline-block;
  padding: 6px 20px;
  background: rgba(3, 10, 22, 0.65);
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 30px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

/* ── TOP CATEGORY PILL FILTERS BAR ── */
.prod-pills-bar {
  padding: 26px clamp(16px, 4vw, 48px) 12px;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.prod-pills-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 6px;
  background: rgba(4, 14, 30, 0.75);
  border: 1px solid rgba(0, 229, 255, 0.18);
  border-radius: 40px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
}

.p-filter-pill {
  background: transparent;
  border: 1px solid transparent;
  color: var(--cyan-pale);
  font-family: var(--body);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 30px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.p-pill-dot {
  display: none !important;
}

.p-pill-count {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 12px;
  background: rgba(0, 229, 255, 0.1);
  color: var(--cyan-bright);
  transition: all 0.25s ease;
}

.p-filter-pill:hover:not(.active) {
  background: rgba(0, 229, 255, 0.1);
  color: #ffffff;
  border-color: rgba(0, 229, 255, 0.3);
  transform: translateY(-1px);
}

.p-filter-pill.active {
  background: linear-gradient(135deg, #00e5ff 0%, #0284c7 100%);
  color: #030a16;
  border-color: var(--cyan-bright);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.55);
  font-weight: 700;
  transform: scale(1.02);
}

.p-filter-pill.active .p-pill-count {
  background: rgba(3, 10, 22, 0.22);
  color: #030a16;
}

@media (max-width: 640px) {
  .prod-pills-bar {
    padding: 18px 12px 6px;
  }
  .prod-pills-container {
    width: 100%;
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 8px;
    border-radius: 26px;
  }
  .prod-pills-container::-webkit-scrollbar {
    display: none;
  }
  .p-filter-pill {
    padding: 8px 14px;
    font-size: 0.78rem;
    flex-shrink: 0;
  }
}

/* ── STICKY TOP CONTROLS & FILTER BAR (NO SIDE FILTER) ── */
.prod-top-controls {
  position: sticky;
  top: 60px;
  z-index: 100;
  background: rgba(3, 10, 22, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0, 229, 255, 0.18);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  padding: 16px clamp(20px, 4vw, 64px);
  transition: all 0.3s ease;
}

.prod-controls-container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* Row 1: Search, Sort, Grid View Toggles */
.prod-controls-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.prod-search-box {
  position: relative;
  flex: 1;
  min-width: 260px;
  max-width: 440px;
}

.prod-search-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--cyan-bright);
  opacity: 0.7;
  pointer-events: none;
  display: flex;
  align-items: center;
}

.prod-search-input {
  width: 100%;
  background: rgba(11, 31, 60, 0.75);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 28px;
  padding: 10px 42px 10px 40px;
  color: var(--text-main);
  font-family: var(--body);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  transition: all 0.25s ease;
  outline: none;
}

.prod-search-input:focus {
  background: rgba(15, 40, 78, 0.95);
  border-color: var(--cyan-bright);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
}

.prod-search-input::placeholder {
  color: var(--text-dim);
  font-size: 0.82rem;
}

.prod-search-clear {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: var(--cyan-pale);
  font-size: 1rem;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
}

.prod-search-clear:hover {
  color: var(--cyan-bright);
}

.prod-actions-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.prod-sort-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}

.prod-sort-label {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  white-space: nowrap;
}

.prod-sort-select {
  background: rgba(11, 31, 60, 0.75);
  border: 1px solid rgba(0, 229, 255, 0.25);
  border-radius: 24px;
  padding: 9px 34px 9px 14px;
  color: var(--cyan-ice);
  font-family: var(--body);
  font-size: 0.82rem;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2300e5ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  transition: all 0.25s ease;
}

.prod-sort-select:focus {
  border-color: var(--cyan-bright);
  box-shadow: 0 0 12px rgba(0, 229, 255, 0.3);
}

.prod-sort-select option {
  background: #07152b;
  color: #fff;
  padding: 8px;
}

/* Grid View Switcher */
.prod-view-switch {
  display: flex;
  align-items: center;
  background: rgba(11, 31, 60, 0.75);
  border: 1px solid rgba(0, 229, 255, 0.22);
  border-radius: 24px;
  padding: 3px;
  gap: 2px;
}

.prod-view-btn {
  background: transparent;
  border: none;
  color: var(--text-dim);
  padding: 6px 9px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

.prod-view-btn.active,
.prod-view-btn:hover {
  background: rgba(0, 229, 255, 0.18);
  color: var(--cyan-bright);
}

/* Row 2: Category Filter Pills */
.prod-categories-scroller {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.prod-categories-scroller::-webkit-scrollbar {
  display: none;
}

.p-pill {
  background: rgba(11, 31, 60, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.2);
  border-radius: 24px;
  padding: 7px 16px;
  font-family: var(--body);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.p-pill:hover {
  background: rgba(15, 40, 78, 0.85);
  color: var(--cyan-bright);
  border-color: rgba(0, 229, 255, 0.4);
}

.p-pill.active {
  background: linear-gradient(135deg, rgba(0, 229, 255, 0.24), rgba(0, 180, 216, 0.12));
  border-color: var(--cyan-bright);
  color: #ffffff;
  font-weight: 500;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.35);
}

.p-pill-count {
  background: rgba(0, 229, 255, 0.18);
  color: var(--cyan-bright);
  font-size: 0.7rem;
  padding: 1px 7px;
  border-radius: 12px;
  font-weight: 600;
}

.p-pill.active .p-pill-count {
  background: var(--cyan-bright);
  color: #030a16;
}

/* Row 3: Secondary Filters & Results Counter */
.prod-meta-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.prod-price-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.p-chip {
  background: transparent;
  border: 1px solid rgba(224, 242, 254, 0.16);
  border-radius: 18px;
  padding: 4px 12px;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s ease;
}

.p-chip:hover,
.p-chip.active {
  border-color: var(--cyan-bright);
  color: var(--cyan-bright);
  background: rgba(0, 229, 255, 0.08);
}

.prod-results-status {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
}

.prod-count-txt {
  font-size: 0.76rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  text-transform: uppercase;
}

.prod-count-txt strong {
  color: var(--cyan-bright);
  font-weight: 600;
}

.prod-reset-btn {
  background: transparent;
  border: none;
  color: var(--cyan-pale);
  font-size: 0.74rem;
  letter-spacing: 0.08em;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
  display: none;
  transition: color 0.2s;
}

.prod-reset-btn:hover {
  color: var(--cyan-bright);
}

/* ── PRODUCT GRID CONTAINER (PERFORMANCE OPTIMIZED) ── */
.prod-catalog-section {
  padding: 44px clamp(16px, 3.5vw, 48px) 90px;
  max-width: 1400px;
  margin: 0 auto;
}

.prod-main-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(16px, 1.8vw, 24px);
  contain: layout style;
}

/* 3-column view mode fallback */
.prod-main-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* ── CLEAN LUXURY PRODUCT CARD (ZERO LAG) ── */
.p-ecom-card {
  background: #081324;
  border: 1px solid rgba(0, 229, 255, 0.12);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
  contain: content;
  transform: translateZ(0);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.p-ecom-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 229, 255, 0.4);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.55), 0 0 14px rgba(0, 229, 255, 0.12);
}

/* Card Media Stage */
.p-card-stage {
  position: relative;
  width: 100%;
  padding-top: 112%;
  background: #040d1a;
  overflow: hidden;
  cursor: pointer;
}

.p-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0);
  transition: transform 0.4s ease;
}

.p-ecom-card:hover .p-card-img {
  transform: scale(1.04);
}

/* Single Clean Badge (Top Left) */
.p-card-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  z-index: 2;
  line-height: 1;
}

.p-card-badge.badge-save {
  background: #e11d48;
  color: #ffffff;
}

.p-card-badge.badge-rebate {
  background: #f59e0b;
  color: #030a16;
}

.p-card-badge.badge-best {
  background: var(--cyan-bright);
  color: #030a16;
}

.p-card-badge.badge-default {
  background: rgba(3, 10, 22, 0.88);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: var(--cyan-bright);
}

/* Wishlist Button (Top Right) */
.p-wish-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(3, 10, 22, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: all 0.2s ease;
}

.p-wish-btn:hover {
  border-color: var(--cyan-bright);
  color: var(--cyan-bright);
  transform: scale(1.08);
}

.p-wish-btn.active {
  background: rgba(225, 29, 72, 0.95);
  border-color: #e11d48;
  color: #ffffff;
}

.p-wish-btn.active svg {
  fill: #ffffff;
}

/* Card Body */
.p-card-body {
  padding: 14px 16px 16px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.p-card-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6px;
}

.p-card-vol {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  font-weight: 500;
}

.p-card-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  color: #fbbf24;
  font-size: 0.72rem;
}

.p-card-rating span {
  color: var(--text-dim);
  font-size: 0.66rem;
}

.p-card-name {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 4px;
}

.p-card-name a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.p-card-name a:hover,
.p-card-name:hover {
  color: var(--cyan-bright);
}

.p-card-notes {
  font-size: 0.72rem;
  color: var(--cyan-ice);
  opacity: 0.75;
  letter-spacing: 0.03em;
  margin-bottom: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-style: italic;
}

/* Pricing Row */
.p-card-pricing {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 14px;
}

.p-price-current {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--cyan-bright);
}

.p-price-mrp {
  font-size: 0.8rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.p-price-save {
  margin-left: auto;
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.3);
}

/* Card Action Container */
.p-card-action-wrap {
  margin-top: auto;
  width: 100%;
}

/* Full-width Add to Bag Button */
.p-btn-add {
  margin-top: auto;
  width: 100%;
  height: 40px;
  background: rgba(0, 229, 255, 0.08);
  border: 1px solid rgba(0, 229, 255, 0.35);
  color: #ffffff;
  padding: 0 10px;
  border-radius: 6px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.p-btn-add:hover {
  background: var(--cyan-bright);
  color: #030a16;
  border-color: var(--cyan-bright);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.45);
}

/* Card Stepper (+ / - quantity controller) — Sleek Luxury Segmented Control */
.p-card-stepper {
  width: 100%;
  height: 40px;
  background: rgba(2, 9, 22, 0.95);
  border: 1px solid rgba(0, 229, 255, 0.38);
  border-radius: 6px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0;
  margin: 0;
  overflow: hidden;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.p-card-stepper:hover {
  border-color: var(--cyan-bright, #00e5ff);
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.25);
}

.p-step-btn {
  width: 44px;
  min-width: 44px;
  height: 100%;
  background: transparent;
  border: none;
  border-radius: 0;
  color: #00e5ff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  touch-action: manipulation;
  padding: 0;
  outline: none;
}

.p-step-btn.p-step-minus {
  border-right: 1px solid rgba(0, 229, 255, 0.2);
}

.p-step-btn.p-step-plus {
  border-left: 1px solid rgba(0, 229, 255, 0.2);
}

.p-step-btn:hover {
  background: rgba(0, 229, 255, 0.15);
  color: #ffffff;
}

.p-step-btn:active {
  background: rgba(0, 229, 255, 0.3);
  transform: none;
}

.p-step-center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  user-select: none;
  font-family: inherit;
  letter-spacing: 0.08em;
}

.p-step-val {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.p-step-unit {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(224, 242, 254, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}

/* ── EMPTY SEARCH / FILTER STATE ── */
.prod-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 80px 20px;
  background: rgba(7, 21, 43, 0.6);
  border: 1px dashed rgba(0, 229, 255, 0.25);
  border-radius: 16px;
  display: none;
}

.prod-empty-icon {
  font-size: 3rem;
  color: var(--cyan-bright);
  margin-bottom: 14px;
  display: inline-block;
  opacity: 0.8;
}

.prod-empty-title {
  font-family: var(--serif);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 8px;
}

.prod-empty-desc {
  color: var(--text-dim);
  font-size: 0.9rem;
  max-width: 440px;
  margin: 0 auto 24px;
}

.btn-reset-filters {
  background: transparent;
  border: 1px solid var(--cyan-bright);
  color: var(--cyan-bright);
  padding: 9px 24px;
  border-radius: 30px;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s;
}

.btn-reset-filters:hover {
  background: var(--cyan-bright);
  color: #030a16;
  box-shadow: 0 0 16px rgba(0, 229, 255, 0.4);
}

/* ── QUICK VIEW MODAL ── */
.qv-modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.qv-modal.open {
  opacity: 1;
  visibility: visible;
}

.qv-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(3, 10, 22, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.qv-dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 860px;
  max-height: 90vh;
  overflow-y: auto;
  background: #07152b;
  border: 1px solid rgba(0, 229, 255, 0.35);
  border-radius: 18px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.8), 0 0 40px rgba(0, 229, 255, 0.2);
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  animation: qvScale 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes qvScale {
  from { transform: scale(0.94); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

.qv-close-btn {
  position: absolute;
  top: 16px;
  right: 18px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(11, 31, 60, 0.8);
  border: 1px solid rgba(0, 229, 255, 0.25);
  color: var(--text-main);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.2s;
}

.qv-close-btn:hover {
  background: var(--cyan-bright);
  color: #030a16;
}

.qv-media-col {
  position: relative;
  background: #030a16;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px;
  overflow: hidden;
}

.qv-media-col img {
  max-height: 360px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.7));
  transition: transform 0.4s ease;
}

.qv-media-col img:hover {
  transform: scale(1.05);
}

.qv-info-col {
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.qv-tag {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-weight: 600;
  margin-bottom: 6px;
}

.qv-title {
  font-family: var(--serif);
  font-size: 1.65rem;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 8px;
}

.qv-stars-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  color: #fbbf24;
  margin-bottom: 14px;
}

.qv-stars-row span {
  color: var(--text-dim);
}

.qv-pricing-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0, 229, 255, 0.14);
  margin-bottom: 16px;
}

.qv-price-cur {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--cyan-bright);
}

.qv-price-old {
  font-size: 0.95rem;
  color: var(--text-dim);
  text-decoration: line-through;
}

.qv-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}

/* Olfactory Pyramid in Quick View */
.qv-notes-pyramid {
  background: rgba(11, 31, 60, 0.6);
  border: 1px solid rgba(0, 229, 255, 0.16);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 20px;
}

.qv-pyramid-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.78rem;
  padding: 4px 0;
}

.qv-pyramid-row:not(:last-child) {
  border-bottom: 1px solid rgba(224, 242, 254, 0.08);
}

.qv-note-tier {
  width: 72px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cyan-bright);
  font-size: 0.68rem;
  flex-shrink: 0;
}

.qv-note-names {
  color: var(--text-main);
  line-height: 1.4;
}

/* Actions Row in Quick View */
.qv-actions-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.qv-qty-box {
  display: flex;
  align-items: center;
  background: rgba(11, 31, 60, 0.9);
  border: 1px solid rgba(0, 229, 255, 0.3);
  border-radius: 8px;
  overflow: hidden;
}

.qv-qty-btn {
  background: transparent;
  border: none;
  color: var(--cyan-bright);
  font-size: 1.1rem;
  padding: 8px 12px;
  cursor: pointer;
  transition: background 0.2s;
}

.qv-qty-btn:hover {
  background: rgba(0, 229, 255, 0.15);
}

.qv-qty-val {
  font-size: 0.9rem;
  font-weight: 600;
  min-width: 28px;
  text-align: center;
  color: var(--cream);
}

.qv-btn-add {
  flex: 1;
  background: linear-gradient(135deg, #00b4d8, #00e5ff);
  border: none;
  color: #030a16;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.82rem;
  padding: 13px 20px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.qv-btn-add:hover {
  box-shadow: 0 0 24px rgba(0, 229, 255, 0.7);
  transform: translateY(-2px);
}

/* Toast Notification */
.prod-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: rgba(7, 21, 43, 0.95);
  border: 1px solid var(--cyan-bright);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.65), 0 0 24px rgba(0, 229, 255, 0.4);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 3000;
  opacity: 0;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  backdrop-filter: blur(12px);
}

.prod-toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.prod-toast i {
  color: var(--cyan-bright);
  font-style: normal;
}

/* ── RESPONSIVE BREAKPOINTS ── */
@media (max-width: 1150px) {
  .prod-main-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 850px) {
  .prod-main-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .qv-dialog {
    grid-template-columns: 1fr;
    max-height: 85vh;
  }
  .qv-media-col {
    padding: 20px;
  }
  .qv-media-col img {
    max-height: 220px;
  }
  .qv-info-col {
    padding: 24px 20px;
  }
  .prod-top-controls {
    top: 52px;
    padding: 12px 16px;
  }
}

@media (max-width: 580px) {
  .prod-page-hero {
    padding: 115px 16px 30px;
  }
  .prod-controls-top-row {
    flex-direction: column;
    align-items: stretch;
  }
  .prod-search-box {
    max-width: 100%;
  }
  .prod-actions-right {
    justify-content: space-between;
    width: 100%;
  }
  .prod-main-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .p-card-body {
    padding: 12px 10px 14px;
  }
  .p-card-name {
    font-size: 0.94rem;
  }
  .p-price-current {
    font-size: 0.98rem;
  }
  .p-card-btn-row {
    grid-template-columns: 1fr;
  }
  .p-btn-quickview {
    display: none;
  }
  /* Stepper mobile adjustment */
  .p-card-stepper {
    height: 38px;
  }
  .p-step-btn {
    width: 34px;
    min-width: 34px;
  }
  .p-step-center {
    gap: 4px;
  }
  .p-step-val {
    font-size: 0.86rem;
  }
  .p-step-unit {
    font-size: 0.64rem;
  }
}

@media (max-width: 320px) {
  .prod-main-grid {
    grid-template-columns: 1fr;
  }
}

/* ── LUXURY E-COMMERCE PAGINATION (NUMBERS ONLY) ── */
.prod-pagination-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(0, 229, 255, 0.12);
}

.p-page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.p-page-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #071222;
  border: 1px solid rgba(0, 229, 255, 0.24);
  color: var(--cyan-pale);
  font-family: var(--body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.35);
}

.p-page-num:hover:not(.active) {
  border-color: var(--cyan-bright);
  color: #ffffff;
  background: rgba(0, 229, 255, 0.14);
  transform: translateY(-2px) scale(1.08);
  box-shadow: 0 6px 18px rgba(0, 229, 255, 0.28);
}

.p-page-num.active {
  background: linear-gradient(135deg, #00e5ff 0%, #0284c7 100%);
  color: #030a16;
  border-color: var(--cyan-bright);
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.6);
  font-weight: 700;
  transform: scale(1.08);
}
