/* ============================================
   PickMyChairs — Catalog & Product Detail Styles
   Matches site design system: Poppins font,
   --primary, --accent, --bg, etc.
   ============================================ */

/* ─── CATALOG HERO ──────────────────────────── */
.catalog-hero {
  position: relative;
  height: 320px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.catalog-hero-bg {
  position: absolute;
  inset: 0;
}

.catalog-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.catalog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.85) 0%, rgba(18, 18, 18, 0.3) 100%);
}

.catalog-hero-content {
  position: relative;
  z-index: 2;
  padding-bottom: 2.5rem;
}

.catalog-hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.02em;
}

.catalog-hero-subtitle {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.05rem;
  max-width: 600px;
}

.catalog-hero-subtitle strong {
  color: var(--accent);
}

/* ─── BREADCRUMB ─────────────────────────────── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.82rem;
  flex-wrap: wrap;
}

.catalog-hero .breadcrumb {
  margin-bottom: 0.75rem;
}

.catalog-hero .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 200ms;
}

.catalog-hero .breadcrumb a:hover {
  color: #fff;
}

.catalog-hero .breadcrumb-sep {
  color: rgba(255, 255, 255, 0.4);
}

.catalog-hero .breadcrumb-current {
  color: var(--accent);
  font-weight: 500;
}

/* ─── CATEGORY CHIPS BAR ─────────────────────── */
.category-chips-bar {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-height);
  z-index: 30;
  padding: 0.9rem 0;
}

.category-chips {
  display: flex;
  gap: 0.6rem;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 2px;
}

.category-chips::-webkit-scrollbar {
  display: none;
}

.chip {
  white-space: nowrap;
  padding: 0.5rem 0.9rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--bg);
  color: var(--muted);
  font-size: 0.70rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  font-family: inherit;
}

.chip:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
  background: var(--accent-soft);
}

.chip-active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.chip-active:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ─── CATALOG BODY LAYOUT ────────────────────── */
.catalog-body {
  padding: 2rem 0 3rem;
  background: var(--bg);
}

.catalog-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 2rem;
  align-items: start;
}

/* ─── SIDEBAR ─────────────────────────────────── */
.catalog-sidebar {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 1.5rem;
  position: sticky;
  top: calc(var(--nav-height) + 70px);
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.sidebar-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
}

.sidebar-close {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--muted);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  transition: background 200ms;
}

.sidebar-close:hover {
  background: var(--border);
}

.filter-group {
  margin-bottom: 1.5rem;
}

.filter-title {
  font-size: 0.82rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--text);
  transition: color 200ms;
}

.filter-check:hover {
  color: var(--primary);
}

.filter-check input[type="checkbox"] {
  display: none;
}

.filter-check-mark {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  flex-shrink: 0;
}

.filter-check-mark::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--accent);
  transform: scale(0);
  transition: transform var(--transition-fast);
}

.filter-check input:checked+.filter-check-mark {
  border-color: var(--accent);
}

.filter-check input:checked+.filter-check-mark::after {
  transform: scale(1);
}

.filter-check-count {
  margin-left: auto;
  font-size: 0.75rem;
  color: var(--muted);
  background: var(--bg);
  padding: 0.1rem 0.5rem;
  border-radius: var(--radius-pill);
}

.filter-actions {
  margin-bottom: 1.5rem;
}

.btn-sm {
  padding: 0.45rem 1rem;
  font-size: 0.82rem;
}

/* Sidebar CTA */
.sidebar-cta {
  background: linear-gradient(135deg, var(--accent-soft) 0%, #fff5eb 100%);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  text-align: center;
}

.sidebar-cta-icon {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.sidebar-cta h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.sidebar-cta p {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.sidebar-cta .btn {
  width: 100%;
  justify-content: center;
}

/* ─── CATALOG TOOLBAR ────────────────────────── */
.catalog-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.catalog-result-count {
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 500;
}

.catalog-toolbar-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.filter-toggle-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: inherit;
  transition: all var(--transition-fast);
}

.filter-toggle-btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.catalog-sort {
  padding: 0.5rem 1rem;
  border-radius: var(--radius-pill);
  border: 1.5px solid var(--border);
  background: var(--bg-alt);
  color: var(--text);
  font-size: 0.85rem;
  font-family: inherit;
  cursor: pointer;
  outline: none;
  transition: border-color var(--transition-fast);
}

.catalog-sort:focus {
  border-color: var(--accent);
}

/* ─── PRODUCT GRID ───────────────────────────── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ─── PRODUCT CARD ───────────────────────────── */
.product-card {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: all var(--transition-med);
  position: relative;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(31, 44, 36, 0.12);
  border-color: var(--accent);
}

.product-card-img {
  position: relative;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #f8f6f3 0%, #efe9e1 100%);
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 1rem;
  transition: transform 400ms ease-out;
}

.product-card:hover .product-card-img img {
  transform: scale(1.08);
}

.product-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-card-badge.badge-new {
  background: var(--primary);
}

.product-card-badge.badge-value {
  background: #2e7d32;
}

.product-card-badge.badge-premium {
  background: linear-gradient(120deg, #8b6336, #c4935c);
}

.product-card-body {
  padding: 1rem 1.25rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-category {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent-dark);
  margin-bottom: 0.35rem;
}

.product-card-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.4rem;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: auto;
}

.product-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border);
}

.product-card-quote {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-dark);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.product-card-arrow {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.product-card:hover .product-card-arrow {
  background: var(--accent);
  transform: translateX(3px);
}

/* ─── EMPTY STATE ────────────────────────────── */
.catalog-empty {
  text-align: center;
  padding: 4rem 2rem;
}

.catalog-empty-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.catalog-empty h3 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.catalog-empty p {
  color: var(--muted);
  margin-bottom: 1.25rem;
}

/* ─── QUOTE BANNER ───────────────────────────── */
.quote-banner {
  background: linear-gradient(120deg, var(--primary) 0%, #0f1a14 100%);
  padding: 3.5rem 0;
}

.quote-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.quote-banner-text h2 {
  font-size: 1.8rem;
  color: #fff;
  margin-bottom: 0.4rem;
}

.quote-banner-text p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  max-width: 500px;
}

.quote-banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.3) !important;
  color: #fff !important;
}

.btn-light:hover {
  border-color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
}

/* ─── SIDEBAR OVERLAY (mobile) ───────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 49;
  opacity: 0;
  transition: opacity 300ms;
}

.sidebar-overlay.active {
  display: block;
  opacity: 1;
}

/* ──────────────────────────────────────────────
   PRODUCT DETAIL PAGE (PDP)
   ────────────────────────────────────────────── */

.pdp-breadcrumb-section {
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  padding: 0.9rem 0;
}

.pdp-breadcrumb-section .breadcrumb a {
  color: var(--muted);
}

.pdp-breadcrumb-section .breadcrumb a:hover {
  color: var(--primary);
}

.pdp-breadcrumb-section .breadcrumb-sep {
  color: var(--border);
}

.pdp-breadcrumb-section .breadcrumb-current {
  color: var(--primary);
  font-weight: 500;
}

/* ─── PDP LAYOUT ─────────────────────────────── */
.pdp-section {
  padding: 2.5rem 0;
  background: var(--bg);
}

.pdp-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 3rem;
  align-items: start;
}

/* ─── PDP GALLERY ────────────────────────────── */
.pdp-gallery {
  position: sticky;
  top: calc(var(--nav-height) + 20px);
}

.pdp-main-image {
  position: relative;
  background: linear-gradient(135deg, #f8f6f3 0%, #efe9e1 100%);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.pdp-main-image img {
  width: 85%;
  height: 85%;
  object-fit: contain;
  transition: transform 400ms ease;
}

.pdp-main-image:hover img {
  transform: scale(1.05);
}

.pdp-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.pdp-thumbnails {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  scrollbar-width: thin;
}

.pdp-thumbnails::-webkit-scrollbar {
  height: 6px;
}

.pdp-thumbnails::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

.pdp-thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: var(--radius-md);
  border: 2px solid var(--border);
  overflow: hidden;
  cursor: pointer;
  transition: border-color var(--transition-fast);
  background: var(--bg-alt);
}

.pdp-thumb:hover,
.pdp-thumb.active {
  border-color: var(--accent);
}

.pdp-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 4px;
}

/* ─── GALLERY ARROWS ─────────────────────────── */
.gallery-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
  z-index: 5;
  opacity: 0;
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.pdp-main-image:hover .gallery-arrow {
  opacity: 1;
}

.gallery-arrow:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.gallery-arrow-left {
  left: 12px;
}

.gallery-arrow-right {
  right: 12px;
}

.gallery-counter {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-pill);
  z-index: 5;
  opacity: 0;
  transition: opacity 0.25s ease;
  backdrop-filter: blur(4px);
}

.pdp-main-image:hover .gallery-counter {
  opacity: 1;
}

/* Touch devices: always show arrows */
@media (hover: none) {
  .gallery-arrow {
    opacity: 0.85;
  }
  .gallery-counter {
    opacity: 1;
  }
}

/* ─── PDP COLOR VARIANTS ─────────────────────── */
.pdp-active-color-label {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.pdp-active-color-label span {
  color: var(--primary);
  font-weight: 600;
}

.pdp-variants {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.pdp-swatch {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  position: relative;
  transition: all var(--transition-fast);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-swatch:hover {
  transform: scale(1.1);
  border-color: var(--accent);
}

.pdp-swatch.active {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
}

/* Swatch inner colors */
.swatch-fill {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #fff;
}

/* ─── PDP INFO ───────────────────────────────── */
.pdp-category-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent-dark);
  background: var(--accent-soft);
  padding: 0.3rem 0.9rem;
  border-radius: var(--radius-pill);
  margin-bottom: 0.75rem;
}

.pdp-title {
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.pdp-short-desc {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

/* Price Box */
.pdp-price-box {
  background: linear-gradient(135deg, var(--accent-soft) 0%, #fff5eb 100%);
  border: 1px solid rgba(196, 147, 92, 0.2);
  border-radius: var(--radius-md);
  padding: 1.15rem 1.5rem;
  margin-bottom: 1.5rem;
}

.pdp-price-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.pdp-price-sub {
  font-size: 0.82rem;
  color: var(--muted);
}

/* CTA Buttons */
.pdp-cta-group {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.btn-lg {
  padding: 0.85rem 1.8rem;
  font-size: 0.95rem;
}

.pdp-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25d366 !important;
  border: none;
  text-decoration: none;
}

.pdp-btn-wa:hover {
  background: #1da851 !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
}

.pdp-btn-call {
  text-decoration: none;
}

/* Trust Badges */
.pdp-trust-badges {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.trust-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-weight: 500;
}

.trust-badge span:first-child {
  font-size: 1rem;
}

/* Features */
.pdp-features {
  margin-bottom: 2rem;
}

.pdp-features h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.pdp-features-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.pdp-features-list li {
  font-size: 0.85rem;
  color: var(--text);
  padding: 0.35rem 0;
  padding-left: 1.4rem;
  position: relative;
  line-height: 1.4;
}

.pdp-features-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #25d366;
  font-weight: 700;
  font-size: 0.9rem;
}

/* Specs Table */
.pdp-specs {
  margin-bottom: 1rem;
}

.pdp-specs h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.pdp-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.pdp-specs-table tr {
  border-bottom: 1px solid var(--border);
}

.pdp-specs-table tr:last-child {
  border-bottom: none;
}

.pdp-specs-table td {
  padding: 0.65rem 0;
  font-size: 0.85rem;
}

.pdp-specs-table td:first-child {
  font-weight: 600;
  color: var(--primary);
  width: 40%;
}

.pdp-specs-table td:last-child {
  color: var(--text);
}

/* ─── PDP DESCRIPTION SECTION ────────────────── */
.pdp-description-section {
  padding: 2rem 0;
  background: var(--bg-alt);
}

.pdp-description-card {
  background: var(--bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 2rem 2.5rem;
}

.pdp-description-card h2 {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.pdp-description-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
}

/* ─── PDP QUOTE STRIP ────────────────────────── */
.pdp-quote-strip {
  background: linear-gradient(120deg, var(--primary) 0%, #0f1a14 100%);
  padding: 2rem 0;
}

.pdp-quote-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.pdp-quote-inner h3 {
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.2rem;
}

.pdp-quote-inner p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.88rem;
}

/* ─── RECOMMENDED SECTION ────────────────────── */
.pdp-recommended {
  padding: 3rem 0;
  background: var(--bg);
}

.pdp-rec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.pdp-rec-header h2 {
  font-size: 1.5rem;
  color: var(--primary);
}

.pdp-rec-viewall {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--accent-dark);
  transition: color 200ms;
}

.pdp-rec-viewall:hover {
  color: var(--primary);
}

/* ──────────────────────────────────────────────
   ANIMATIONS
   ────────────────────────────────────────────── */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-card {
  animation: fadeInUp 0.4s ease-out both;
}

.product-card:nth-child(1) {
  animation-delay: 0.05s;
}

.product-card:nth-child(2) {
  animation-delay: 0.1s;
}

.product-card:nth-child(3) {
  animation-delay: 0.15s;
}

.product-card:nth-child(4) {
  animation-delay: 0.2s;
}

.product-card:nth-child(5) {
  animation-delay: 0.25s;
}

.product-card:nth-child(6) {
  animation-delay: 0.3s;
}

.product-card:nth-child(7) {
  animation-delay: 0.35s;
}

.product-card:nth-child(8) {
  animation-delay: 0.4s;
}

.product-card:nth-child(9) {
  animation-delay: 0.45s;
}

/* ──────────────────────────────────────────────
   RESPONSIVE — TABLET
   ────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
    z-index: 50;
    border-radius: 0;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 300ms ease;
  }

  .catalog-sidebar.sidebar-open {
    display: block;
    transform: translateX(0);
  }

  .sidebar-close {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .filter-toggle-btn {
    display: flex;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .pdp-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .pdp-gallery {
    position: static;
  }

  .pdp-main-image {
    aspect-ratio: 1 / 1;
  }

  .pdp-features-list {
    grid-template-columns: 1fr;
  }

  .quote-banner-inner {
    flex-direction: column;
    text-align: center;
  }

  .quote-banner-actions {
    justify-content: center;
  }
}

/* ──────────────────────────────────────────────
   RESPONSIVE — MOBILE
   ────────────────────────────────────────────── */
@media (max-width: 640px) {
  .catalog-hero {
    height: 240px;
  }

  .catalog-hero-title {
    font-size: 1.8rem;
  }

  .catalog-hero-subtitle {
    font-size: 0.88rem;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }

  .product-card-body {
    padding: 0.75rem 0.9rem 1rem;
  }

  .product-card-name {
    font-size: 0.85rem;
  }

  .product-card-desc {
    display: none;
  }

  .product-card-category {
    font-size: 0.65rem;
  }

  .product-card-footer {
    padding-top: 0.5rem;
    margin-top: 0.5rem;
  }

  .product-card-quote {
    font-size: 0.7rem;
  }

  .product-card-arrow {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }

  /* ════════════════════════════════════════════
     PDP MOBILE — CLEAN REDESIGN
     ════════════════════════════════════════════ */

  /* ── Breadcrumb ── */
  .pdp-breadcrumb-section {
    padding: 0.6rem 0;
  }

  .pdp-breadcrumb-section .breadcrumb {
    font-size: 0.73rem;
    flex-wrap: wrap;
    gap: 0.15rem;
  }

  .breadcrumb-current {
    display: inline;
    word-break: break-word;
  }

  /* ── Layout ── */
  .pdp-section {
    padding: 1rem 0 1.5rem;
  }

  .pdp-layout {
    gap: 1.5rem;
  }

  .pdp-layout > * {
    min-width: 0;
    overflow: hidden;
  }

  /* ── Gallery ── */
  .pdp-main-image {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: linear-gradient(160deg, #faf8f5 0%, #f0ece5 100%);
    margin-bottom: 0.65rem;
  }

  .pdp-main-image img {
    width: 92%;
    height: 92%;
    object-fit: contain;
    transition: none;
  }

  .pdp-main-image:hover img {
    transform: none;
  }

  .pdp-badge {
    top: 0.6rem;
    left: 0.6rem;
    font-size: 0.65rem;
    padding: 0.2rem 0.65rem;
  }

  .gallery-arrow {
    width: 34px;
    height: 34px;
    font-size: 0.9rem;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 1px 6px rgba(0, 0, 0, 0.1);
    border: none;
    opacity: 0.9;
  }

  .gallery-arrow-left { left: 8px; }
  .gallery-arrow-right { right: 8px; }

  .gallery-counter {
    bottom: 8px;
    font-size: 0.68rem;
    padding: 0.15rem 0.55rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    opacity: 1;
  }

  /* ── Thumbnails ── */
  .pdp-thumbnails {
    gap: 0.45rem;
    padding-bottom: 0.25rem;
    scrollbar-width: none;
  }

  .pdp-thumbnails::-webkit-scrollbar {
    display: none;
  }

  .pdp-thumb {
    width: 52px;
    height: 52px;
    border-radius: 8px;
    border: 1.5px solid var(--border);
  }

  .pdp-thumb.active {
    border-color: var(--accent);
    box-shadow: 0 0 0 1.5px var(--accent);
  }

  .pdp-thumb img {
    padding: 3px;
  }

  /* ── Product Info ── */
  .pdp-category-tag {
    font-size: 0.63rem;
    padding: 0.22rem 0.65rem;
    margin-bottom: 0.45rem;
  }

  .pdp-title {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
    line-height: 1.25;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .pdp-short-desc {
    font-size: 0.85rem;
    margin-bottom: 1rem;
    line-height: 1.5;
    color: var(--muted);
    overflow-wrap: break-word;
  }

  /* ── Price Box ── */
  .pdp-price-box {
    padding: 0.85rem 1rem;
    margin-bottom: 1.1rem;
    border-radius: 12px;
  }

  .pdp-price-label {
    font-size: 0.95rem;
  }

  .pdp-price-sub {
    font-size: 0.75rem;
  }

  /* ── Color Variants ── */
  .pdp-swatch {
    width: 34px;
    height: 34px;
  }

  .pdp-active-color-label {
    font-size: 0.8rem;
    margin-bottom: 0.3rem;
  }

  .pdp-variants {
    gap: 0.5rem;
    margin-bottom: 1rem;
  }

  /* ── CTA Buttons ── */
  .pdp-cta-group {
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
  }

  .pdp-cta-group .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .btn-lg {
    padding: 0.8rem 1.2rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
  }

  .pdp-btn-wa {
    box-shadow: 0 2px 12px rgba(37, 211, 102, 0.15);
  }

  /* ── Trust Badges ── */
  .pdp-trust-badges {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    margin-bottom: 1.4rem;
    padding: 0.7rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
  }

  .trust-badge {
    flex-direction: column;
    text-align: center;
    font-size: 0.68rem;
    gap: 0.12rem;
    line-height: 1.2;
  }

  .trust-badge span:first-child {
    font-size: 1rem;
    display: block;
    margin-bottom: 0.08rem;
  }

  /* ── Features ── */
  .pdp-features {
    margin-bottom: 1.3rem;
  }

  .pdp-features h3 {
    font-size: 0.88rem;
    margin-bottom: 0.55rem;
  }

  .pdp-features-list {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .pdp-features-list li {
    font-size: 0.82rem;
    padding: 0.3rem 0;
    padding-left: 1.25rem;
    line-height: 1.4;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .pdp-features-list li::before {
    font-size: 0.85rem;
  }

  /* ── Specs Table ── */
  .pdp-specs h3 {
    font-size: 0.88rem;
    margin-bottom: 0.55rem;
  }

  .pdp-specs-table {
    table-layout: fixed;
  }

  .pdp-specs-table td {
    padding: 0.5rem 0;
    font-size: 0.8rem;
    word-break: break-word;
    overflow-wrap: break-word;
  }

  .pdp-specs-table td:first-child {
    width: 40%;
  }

  /* ── Description Section ── */
  .pdp-description-section {
    padding: 1rem 0;
  }

  .pdp-description-card {
    padding: 1.1rem 1.15rem;
    border-radius: 12px;
  }

  .pdp-description-card h2 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
  }

  .pdp-description-card p {
    font-size: 0.85rem;
    line-height: 1.65;
    overflow-wrap: break-word;
  }

  /* ── Quote Strip ── */
  .pdp-quote-strip {
    padding: 1.25rem 0;
  }

  .pdp-quote-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.65rem;
  }

  .pdp-quote-inner h3 {
    font-size: 0.95rem;
  }

  .pdp-quote-inner p {
    font-size: 0.8rem;
  }

  .pdp-quote-inner .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    border-radius: 12px;
  }

  /* ── Recommended ── */
  .pdp-recommended {
    padding: 2rem 0;
  }

  .pdp-rec-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .pdp-rec-header h2 {
    font-size: 1.2rem;
  }

  .pdp-rec-viewall {
    font-size: 0.82rem;
  }

  .category-chips {
    gap: 0.4rem;
  }

  .chip {
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
  }

  .catalog-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }
}

/* ──────────────────────────────────────────────
   COMING SOON STATE
   ────────────────────────────────────────────── */
.coming-soon-state {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  border: 2px dashed var(--border);
}

.coming-soon-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  animation: comingSoonBounce 2s ease-in-out infinite;
}

@keyframes comingSoonBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

.coming-soon-state h2 {
  font-size: 1.8rem;
  color: var(--primary);
  margin-bottom: 0.6rem;
  font-weight: 700;
}

.coming-soon-state>p {
  color: #666;
  font-size: 1rem;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.coming-soon-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.coming-soon-categories {
  border-top: 1px solid var(--border);
  padding-top: 2rem;
  margin-top: 0.5rem;
}

.coming-soon-categories-label {
  font-size: 0.85rem;
  color: #888;
  margin-bottom: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.coming-soon-chips {
  display: flex;
  gap: 0.6rem;
  justify-content: center;
  flex-wrap: wrap;
}

.coming-soon-chip {
  background: var(--accent-soft);
  color: var(--accent-dark);
  padding: 0.45rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 500;
  border: 1px solid rgba(196, 147, 92, 0.2);
  transition: all 0.2s ease;
}

.coming-soon-chip:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .coming-soon-state {
    padding: 2.5rem 1.2rem;
  }

  .coming-soon-state h2 {
    font-size: 1.4rem;
  }

  .coming-soon-icon {
    font-size: 2.8rem;
  }

  .coming-soon-actions {
    flex-direction: column;
    align-items: center;
  }

  .coming-soon-actions .btn {
    width: 100%;
    max-width: 300px;
  }
}

/* ──────────────────────────────────────────────
   VERY SMALL SCREENS
   ────────────────────────────────────────────── */
@media (max-width: 380px) {

  .product-grid,
  .product-grid-4 {
    grid-template-columns: 1fr;
  }

  .pdp-title {
    font-size: 1.1rem;
  }

  .pdp-thumb {
    width: 46px;
    height: 46px;
  }

  .pdp-trust-badges {
    gap: 0.2rem;
  }

  .trust-badge {
    font-size: 0.6rem;
  }

  .pdp-rec-header h2 {
    font-size: 1.05rem;
  }
}