/* =====================================================
   PRODUCTS.CSS — Sukrish SteelVridhi | Full Width
   Dynamic & Responsive Product Cards
   Palette: --gold #d0a03a | --gold-2 #f3c85f | --charcoal #141414
   ===================================================== */

/* =====================================================
   BASE STYLES & RESETS
===================================================== */
.pp-banner .wrap,
.products-section .wrap,
.pp-cat .wrap,
.pp-spec-wrap,
.brands-section .wrap,
.strip-inner,
.pp-catnav-inner,
.pp-cat-inner,
.section-row {
  /* max-width: 100% !important;
  width: 100% !important; */
}

/* ---------------------------------------------------
   1. PAGE BANNER - FULL WIDTH
--------------------------------------------------- */
.pp-banner {
  position: relative;
  overflow: hidden;
  background: linear-gradient(120deg, #141414, #1d1812, #141414, #20180d);
  background-size: 300% 300%;
  animation: ppBgShift 16s ease infinite;
  color: #fff;
  padding: 210px 0 100px;
  width: 100%;
  min-height: 500px;
  display: flex;
  align-items: center;
}

@keyframes ppBgShift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.pp-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 46px 46px;
  z-index: 0;
}

.pp-banner-glow {
  position: absolute;
  top: -160px;
  right: -120px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208,160,58,.20), transparent 70%);
  z-index: 0;
  pointer-events: none;
  animation: ppGlowPulse 6s ease-in-out infinite;
}

@keyframes ppGlowPulse {
  0%, 100% { opacity: .7; transform: scale(1); }
  50%      { opacity: 1;  transform: scale(1.12); }
}

.pp-banner-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
  padding: 0 3%;
}

.pp-crumb {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: .8rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #cfcfcf;
  margin-bottom: 18px;
  font-weight: 600;
}

.pp-crumb a        { color: #cfcfcf; transition: .3s; text-decoration: none; }
.pp-crumb a:hover  { color: var(--gold-2); }
.pp-crumb i        { opacity: .5; font-style: normal; }
.pp-crumb b        { color: var(--gold-2); font-weight: 800; }

.pp-banner h1 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  letter-spacing: .02em;
  font-size: clamp(2.1rem, 4.6vw, 3.4rem);
  line-height: 1.16;
  font-weight: 800;
  margin-bottom: 20px;
}

.pp-banner h1 span { color: var(--gold-2); }

.pp-banner p {
  font-size: 1rem;
  line-height: 1.75;
  color: #d7d7d7;
  max-width: 640px;
  margin-bottom: 32px;
}

.pp-banner-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------------------------------------------------
   2. STANDARDS STRIP - FULL WIDTH
--------------------------------------------------- */
.standards-strip {
  background: #fff;
  padding: 22px 3%;
  border-bottom: 1px solid #e5e5e5;
  box-shadow: 0 8px 25px rgba(0,0,0,.04);
  width: 100%;
}

.strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  flex-wrap: wrap;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 auto;
  padding: 0;
}

.strip-inner strong {
  text-transform: uppercase;
  font-size: .86rem;
  letter-spacing: .08em;
  margin-right: 20px;
}

.strip-inner span { font-weight: 800; color: #101010; }

.strip-inner i {
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  display: inline-block;
}

/* ---------------------------------------------------
   3. STICKY CATEGORY NAV - FIXED BELOW HEADER
--------------------------------------------------- */
.pp-catnav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: #fff;
  border-bottom: 1px solid #ece6da;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  width: 100%;
  padding: 0 3%;
  transition: top 0.3s ease;
}

.header-sticky .pp-catnav {
  top: 80px;
}

@media (min-width: 901px) {
  .site-header.scrolled ~ main .pp-catnav {
    top: 95px;
  }
}

@media (max-width: 900px) {
  .pp-catnav {
    top: 0;
  }
  .site-header.scrolled ~ main .pp-catnav {
    top: 65px;
  }
}

.pp-catnav-inner {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  padding: 14px 0;
  scrollbar-width: thin;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
}

.pp-catnav-inner::-webkit-scrollbar        { height: 4px; }
.pp-catnav-inner::-webkit-scrollbar-thumb  { background: var(--gold); border-radius: 10px; }
.pp-catnav-inner::-webkit-scrollbar-track  { background: #f0f0f0; }

.pp-catnav-inner a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  padding: 9px 18px;
  border: 1px solid #ece6da;
  border-radius: 30px;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #3a3a3a;
  transition: all .3s ease;
  flex-shrink: 0;
  text-decoration: none;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.pp-catnav-inner a i { color: var(--gold); font-size: .85em; }

.pp-catnav-inner a::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.pp-catnav-inner a:hover::before,
.pp-catnav-inner a.active::before {
  opacity: 1;
}

.pp-catnav-inner a:hover,
.pp-catnav-inner a.active {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(208,160,58,.3);
  border-color: var(--gold);
}

.pp-catnav-inner a:hover i,
.pp-catnav-inner a.active i {
  color: #fff;
  position: relative;
  z-index: 1;
}

.pp-catnav-inner a span,
.pp-catnav-inner a i {
  position: relative;
  z-index: 1;
}

.pp-catnav::before,
.pp-catnav::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 30px;
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pp-catnav::before {
  left: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.95), transparent);
}

.pp-catnav::after {
  right: 0;
  background: linear-gradient(270deg, rgba(255,255,255,0.95), transparent);
}

.pp-catnav.show-left::before,
.pp-catnav.show-right::after {
  opacity: 1;
}

/* ---------------------------------------------------
   4. PRODUCT OVERVIEW GRID - DYNAMIC
--------------------------------------------------- */
.products-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fff, #f5f5f2);
  width: 100%;
}

.products-section .wrap {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 3% !important;
  margin: 0 !important;
}

.section-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 40px;
  flex-wrap: wrap;
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
}

.section-row h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  font-weight: 800;
  color: #111;
  margin-top: 10px;
}

.section-row p {
  max-width: 480px;
  color: #666;
  font-size: 1rem;
  line-height: 1.7;
}

/* =====================================================
   DYNAMIC PRODUCT CARDS
===================================================== */

.pp-overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0;
  padding: 0;
}

/* Product Card Base */
.product-card {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  animation: cardReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.08s);
  background: #fff;
  border: 1px solid #ece6da;
  border-radius: 16px;
  padding: 0;
  text-decoration: none;
  color: inherit;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,.04);
  display: flex;
  flex-direction: column;
  position: relative;
  isolation: isolate;
  min-height: 320px;
  perspective: 800px;
  transform-style: preserve-3d;
  cursor: pointer;
}

@keyframes cardReveal {
  from {
    opacity: 0;
    transform: translateY(40px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Card Shimmer Effect */
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(208, 160, 58, 0.06) 45%,
    rgba(208, 160, 58, 0.1) 50%,
    rgba(208, 160, 58, 0.06) 55%,
    transparent 60%
  );
  background-size: 300% 300%;
  animation: shimmer 3s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.product-card:hover::before {
  opacity: 1;
}

@keyframes shimmer {
  0% { background-position: -300% 0; }
  100% { background-position: 300% 0; }
}

/* Card Bottom Border Animation */
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.product-card:hover::after {
  width: 100%;
}

/* Card Hover Effects */
.product-card:hover {
  transform: translateY(-8px) rotateX(2deg) rotateY(4deg);
  border-color: rgba(208,160,58,.4);
  box-shadow: 0 25px 60px rgba(208, 160, 58, 0.18),
              0 8px 20px rgba(0, 0, 0, 0.06);
}

/* Glow Effect on Card */
.product-card .card-glow {
  position: absolute;
  inset: -2px;
  border-radius: 18px;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
              rgba(208, 160, 58, 0.12) 0%, 
              transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 0;
}

.product-card:hover .card-glow {
  opacity: 1;
}

/* Product Image */
.product-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  filter: saturate(.8);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.6s ease;
  display: block;
  flex-shrink: 0;
}

.product-card:hover img {
  transform: scale(1.08) translateY(-5px);
  filter: saturate(1.05);
}

/* Product Badge */
.product-card b {
  position: absolute;
  top: 14px;
  left: 14px;
  background: linear-gradient(135deg, var(--gold), var(--gold-2));
  color: #fff;
  padding: 5px 11px;
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .05em;
  z-index: 5;
  animation: badgePulse 3s ease-in-out infinite;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover b {
  transform: scale(1.05);
}

@keyframes badgePulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.85; box-shadow: 0 0 20px rgba(208, 160, 58, 0.3); }
}

/* Card Content */
.product-card .card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 16px 18px 18px;
  position: relative;
  z-index: 1;
}

.product-card h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 6px;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
              color 0.3s ease;
  transform-origin: left center;
}

.product-card:hover h3 {
  transform: translateX(5px);
  color: var(--gold);
}

.product-card p {
  font-size: .8rem;
  color: #777;
  line-height: 1.5;
  margin: 0;
  flex: 1;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease;
  transform-origin: top center;
}

.product-card:hover p {
  transform: translateY(-2px);
}

/* Learn More Link */
.product-card .learn-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--gold);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(10px);
}

.product-card:hover .learn-more {
  opacity: 1;
  transform: translateY(0);
}

.product-card .learn-more i {
  transition: transform 0.3s ease;
}

.product-card:hover .learn-more i {
  transform: translateX(4px);
}

/* =====================================================
   CATEGORY DETAIL SECTIONS
===================================================== */

.pp-cat {
  padding: 72px 0;
  width: 100%;
  scroll-margin-top: 120px;
  position: relative;
  overflow: hidden;
}

.pp-cat .wrap {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 3% !important;
  margin: 0 !important;
}

.pp-cat--alt { background: #faf8f4; }

.pp-cat::before {
  content: "";
  position: absolute;
  top: 0; right: -200px;
  width: 500px; height: 100%;
  background: radial-gradient(ellipse at right, rgba(208,160,58,.055), transparent 65%);
  pointer-events: none;
}

.pp-cat--alt::before {
  right: auto; left: -200px;
  background: radial-gradient(ellipse at left, rgba(208,160,58,.055), transparent 65%);
}

.pp-cat-inner {
  display: block;
  max-width: 100% !important;
  width: 100% !important;
  margin: 0;
  padding: 0 !important;
}

.pp-cat-media  { display: none !important; }
.pp-cat-num    { display: none !important; }

.pp-cat--alt .pp-cat-inner { display: block; }

.pp-cat-content { 
  width: 100%; 
  max-width: 100% !important;
}

.pp-cat-content .eyebrow { display: inline-flex; }

.pp-cat-content h2 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  font-weight: 800;
  color: #111;
  margin-bottom: 10px;
  line-height: 1.05;
}

.pp-cat-content > p {
  color: #5f636b;
  line-height: 1.75;
  font-size: .97rem;
  max-width: 100%;
  margin-bottom: 30px;
}

/* =====================================================
   CHIP CARDS - DYNAMIC
===================================================== */

.pp-chip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 26px;
  width: 100%;
}

.pp-chip-with-image {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
  animation: chipReveal 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: calc(var(--i, 0) * 0.06s);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  padding: 0;
  background: #fff;
  border: 1px solid #e8e2d6;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
  isolation: isolate;
  box-shadow: 0 4px 16px rgba(0,0,0,.05);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.4s ease;
  will-change: transform;
}

@keyframes chipReveal {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.pp-chip-with-image::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: linear-gradient(180deg, rgba(208,160,58,.06), rgba(208,160,58,.12));
  z-index: 0;
  transition: height .45s cubic-bezier(.2,.8,.2,1);
}

.pp-chip-with-image:hover::before { height: 100%; }

.pp-chip-with-image::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  height: 3px;
  width: 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-2));
  border-radius: 0 0 14px 14px;
  transition: width .6s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.pp-chip-with-image:hover::after { width: 100%; }

.pp-chip-with-image:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(208,160,58,.4);
  box-shadow: 0 20px 50px rgba(208, 160, 58, 0.15),
              0 6px 15px rgba(0, 0, 0, 0.06);
}

.pp-chip-with-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  flex-shrink: 0;
  border-radius: 0;
  background: #f0ece3;
  filter: saturate(.82);
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1),
              filter 0.5s ease;
  display: block;
  position: relative;
  z-index: 1;
  will-change: transform;
}

.pp-chip-with-image:hover img {
  filter: saturate(1.05);
  transform: scale(1.1);
}

.pp-chip-with-image .chip-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 14px 16px 16px;
  width: 100%;
  position: relative;
  z-index: 1;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.4s ease;
}

.pp-chip-with-image:hover .chip-info {
  transform: translateY(-3px);
}

.pp-chip-with-image .chip-info strong {
  font-size: .9rem;
  font-weight: 800;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: .03em;
  line-height: 1.25;
  transition: color .3s ease;
}

.pp-chip-with-image:hover .chip-info strong { 
  color: #8a6200; 
}

.pp-chip-with-image .chip-info span {
  font-size: .75rem;
  color: #8a8a8a;
  font-weight: 500;
  letter-spacing: .02em;
}

.pp-cat--alt .pp-chip-with-image { background: #fff; }

/* =====================================================
   FINISH NOTE
===================================================== */

.pp-finish-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: .88rem;
  color: #555;
  line-height: 1.65;
  background: rgba(208,160,58,.07);
  border-left: 3px solid var(--gold);
  padding: 14px 20px;
  border-radius: 0 10px 10px 0;
  max-width: 100%;
  margin-top: 4px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.pp-finish-note:hover {
  background: rgba(208,160,58,.12);
  transform: translateX(4px);
}

.pp-finish-note i { color: var(--gold); margin-top: 3px; flex-shrink: 0; }
.pp-finish-note b { color: #222; }

/* =====================================================
   SPEC TABLES
===================================================== */

.pp-spec-wrap {
  padding: 0 3%;
  margin-top: 50px;
  max-width: 100% !important;
  width: 100% !important;
  margin-left: 0;
  margin-right: 0;
}

.pp-spec-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
  padding: 0;
}

.pp-spec-head h3 {
  font-family: 'Barlow Condensed', sans-serif;
  text-transform: uppercase;
  font-size: 1rem;
  letter-spacing: .03em;
  font-weight: 800;
  color: #111;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pp-spec-head h3 i { color: var(--gold); }

.pp-spec-head span {
  font-size: .75rem;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pp-table-scroll {
  overflow-x: auto;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,.06);
  border: 1px solid #ece6da;
  -webkit-overflow-scrolling: touch;
  transition: box-shadow 0.3s ease;
}

.pp-table-scroll:hover {
  box-shadow: 0 20px 50px rgba(0,0,0,.1);
}

.pp-spec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
  background: #fff;
}

.pp-spec-table thead th {
  background: linear-gradient(135deg, var(--gold-2), var(--gold));
  color: #161616;
  text-transform: uppercase;
  font-size: .72rem;
  letter-spacing: .05em;
  font-weight: 800;
  padding: 14px 16px;
  text-align: left;
  white-space: nowrap;
}

.pp-spec-table tbody td {
  padding: 12px 16px;
  font-size: .86rem;
  color: #333;
  border-bottom: 1px solid #f0ece2;
  white-space: nowrap;
  transition: background 0.3s ease;
}

.pp-spec-table tbody tr:nth-child(even)  { background: #faf8f4; }
.pp-spec-table tbody tr:hover            { background: rgba(208,160,58,.08); }
.pp-spec-table tbody td:first-child      { font-weight: 700; color: #111; }

.pp-table-note {
  margin-top: 12px;
  font-size: .78rem;
  color: #8d8d8d;
  line-height: 1.6;
  padding: 0;
}

/* =====================================================
   BRANDS SECTION
===================================================== */

.brands-section { 
  padding: 70px 0; 
  width: 100%; 
  background: linear-gradient(180deg, #f5f5f2, #fff);
}

.brands-section .wrap {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 3% !important;
  margin: 0 !important;
}

.brands-heading {
  text-align: center;
  max-width: 100%;
  margin: 0 auto 50px;
}

.brands-heading h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  text-transform: uppercase;
  font-weight: 800;
  color: #111;
  margin: 10px 0;
}

.brands-heading p {
  color: #666;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.brands-slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.brands-track {
  display: flex;
  align-items: center;
  gap: 50px;
  width: max-content;
  animation: moveBrands 24s linear infinite;
}

@keyframes moveBrands {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.brands-slider:hover .brands-track {
  animation-play-state: paused;
}

.brand-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  flex-shrink: 0;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-card:hover {
  transform: translateY(-10px) scale(1.08);
}

.brand-card img {
  height: 60px;
  width: auto;
  object-fit: contain;
  opacity: .95;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  filter: grayscale(20%);
}

.brand-card:hover img {
  transform: scale(1.15);
  filter: grayscale(0%);
  opacity: 1;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
===================================================== */

/* 1600px - Extra Large Screens */
@media (min-width: 1600px) {
  .pp-overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 28px;
  }
  .pp-chip-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 22px;
  }
  .pp-chip-with-image img {
    height: 220px;
  }
  .product-card img {
    height: 220px;
  }
}

/* 1400px - Large Desktop */
@media (max-width: 1400px) {
  .pp-overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
  }
  .pp-chip-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 18px;
  }
}

/* 1200px - Standard Desktop */
@media (max-width: 1200px) {
  .pp-chip-with-image img {
    height: 170px;
  }
}

/* 1024px - Small Desktop / Tablet Landscape */
@media (max-width: 1024px) {
  .pp-overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 18px;
  }
  .pp-chip-grid {
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 16px;
  }
  .pp-chip-with-image img {
    height: 150px;
  }
  .product-card img {
    height: 170px;
  }
  .pp-cat {
    padding: 64px 0;
    scroll-margin-top: 110px;
  }
}

/* 900px - Tablet Landscape */
@media (max-width: 900px) {
  .product-card img {
    height: 160px;
  }
  .section-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .pp-banner {
    padding: 190px 0 90px;
  }
  .pp-cat {
    scroll-margin-top: 100px;
  }
}

/* 768px - Tablet Portrait */
@media (max-width: 768px) {
  .pp-overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 16px;
  }
  .pp-chip-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
  }
  .pp-banner {
    padding: 170px 0 70px;
    min-height: 380px;
  }
  .pp-banner p {
    font-size: .93rem;
  }
  .pp-cat {
    padding: 56px 0 44px;
    scroll-margin-top: 90px;
  }
  .pp-spec-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .product-card img {
    height: 150px;
  }
  .pp-chip-with-image img {
    height: 145px;
  }
  .pp-cat-content h2 {
    font-size: clamp(1.7rem, 4vw, 2.4rem);
  }
  .pp-cat-content > p {
    font-size: .93rem;
  }
}

/* 640px - Large Mobile / Phablet */
@media (max-width: 640px) {
  .pp-overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 14px;
  }
  .pp-chip-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }
  .pp-crumb {
    font-size: .72rem;
  }
  .pp-banner {
    padding: 155px 0 64px;
    min-height: 340px;
  }
  .pp-banner h1 {
    margin-bottom: 14px;
  }
  .pp-banner p {
    font-size: .88rem;
  }
  .pp-banner-actions {
    gap: 10px;
  }
  .pp-banner-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .pp-catnav-inner a {
    padding: 8px 14px;
    font-size: .72rem;
    gap: 6px;
  }
  .product-card {
    min-height: 280px;
  }
  .product-card img {
    height: 135px;
  }
  .product-card h3 {
    font-size: .92rem;
    margin: 0 0 4px;
  }
  .product-card p {
    font-size: .75rem;
  }
  .product-card b {
    font-size: .68rem;
    padding: 4px 10px;
    top: 10px;
    left: 10px;
  }
  .product-card .card-content {
    padding: 12px 14px 14px;
  }
  .pp-chip-with-image img {
    height: 130px;
  }
  .pp-chip-with-image .chip-info {
    padding: 12px 14px 14px;
  }
  .pp-chip-with-image .chip-info strong {
    font-size: .84rem;
  }
  .pp-chip-with-image .chip-info span {
    font-size: .7rem;
  }
  .pp-finish-note {
    font-size: .84rem;
    padding: 12px 16px;
  }
  .strip-inner {
    gap: 14px;
  }
  .strip-inner strong {
    font-size: .72rem;
    margin-right: 8px;
    width: 100%;
    text-align: center;
  }
  .strip-inner span {
    font-size: .7rem;
  }
  .strip-inner i {
    width: 4px;
    height: 4px;
  }
  .section-row h2 {
    font-size: 1.8rem;
  }
  .pp-spec-wrap {
    padding: 0 3%;
  }
  .pp-banner-content,
  .products-section .wrap,
  .pp-cat .wrap,
  .brands-section .wrap {
    padding-left: 3% !important;
    padding-right: 3% !important;
  }
  .pp-cat {
    scroll-margin-top: 80px;
  }
}

/* 480px - Standard Mobile */
@media (max-width: 480px) {
  .pp-overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 12px;
  }
  .pp-chip-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
  }
  .pp-banner {
    padding: 150px 0 58px;
    min-height: 320px;
  }
  .pp-banner h1 {
    font-size: clamp(1.8rem, 8.5vw, 2.3rem);
    line-height: 1.2;
  }
  .pp-banner p {
    font-size: .85rem;
    line-height: 1.65;
  }
  .pp-cat {
    padding: 48px 0 38px;
    scroll-margin-top: 70px;
  }
  .product-card {
    min-height: 250px;
  }
  .product-card img {
    height: 115px;
  }
  .product-card b {
    font-size: .62rem;
    padding: 4px 9px;
    top: 8px;
    left: 8px;
  }
  .product-card h3 {
    font-size: .85rem;
  }
  .product-card p {
    font-size: .72rem;
  }
  .product-card .card-content {
    padding: 10px 12px 12px;
  }
  .pp-chip-with-image img {
    height: 115px;
  }
  .pp-chip-with-image .chip-info {
    padding: 10px 12px 12px;
  }
  .pp-chip-with-image .chip-info strong {
    font-size: .8rem;
  }
  .pp-chip-with-image .chip-info span {
    font-size: .67rem;
  }
  .pp-finish-note {
    font-size: .8rem;
    padding: 11px 14px;
    gap: 10px;
  }
  .pp-spec-table {
    min-width: 560px;
  }
  .pp-spec-table thead th,
  .pp-spec-table tbody td {
    padding: 10px 12px;
    font-size: .78rem;
  }
  .section-row h2 {
    font-size: 1.5rem;
  }
  .pp-cat-content h2 {
    font-size: 1.5rem;
  }
  .pp-cat-content > p {
    font-size: .86rem;
  }
  .brand-card img {
    height: 40px;
  }
  .brands-track {
    gap: 30px;
  }
  .pp-banner-content,
  .products-section .wrap,
  .pp-cat .wrap,
  .brands-section .wrap {
    padding-left: 3% !important;
    padding-right: 3% !important;
  }
}

/* 375px - Small Mobile */
@media (max-width: 375px) {
  .pp-overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
  }
  .pp-chip-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 9px;
  }
  .pp-banner {
    padding: 145px 0 52px;
  }
  .pp-cat {
    padding: 42px 0 32px;
    scroll-margin-top: 65px;
  }
  .product-card {
    min-height: 220px;
  }
  .product-card img {
    height: 100px;
  }
  .product-card h3 {
    font-size: .8rem;
  }
  .product-card p {
    font-size: .68rem;
  }
  .product-card .card-content {
    padding: 8px 10px 10px;
  }
  .pp-chip-with-image img {
    height: 105px;
  }
  .pp-chip-with-image .chip-info {
    padding: 9px 11px 11px;
  }
  .pp-chip-with-image .chip-info strong {
    font-size: .76rem;
  }
  .pp-chip-with-image .chip-info span {
    font-size: .65rem;
  }
  .pp-catnav-inner a {
    padding: 7px 12px;
    font-size: .68rem;
  }
  .section-row h2 {
    font-size: 1.35rem;
  }
}

/* 320px - Extra Small Mobile */
@media (max-width: 320px) {
  .pp-overview-grid {
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 8px;
  }
  .pp-chip-grid {
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 8px;
  }
  .pp-banner {
    padding: 140px 0 46px;
  }
  .pp-banner h1 {
    font-size: 1.7rem;
  }
  .pp-banner-content {
    max-width: 100%;
  }
  .product-card {
    min-height: 200px;
  }
  .product-card img {
    height: 90px;
  }
  .pp-chip-with-image img {
    height: 95px;
  }
  .pp-catnav-inner a {
    font-size: .64rem;
    padding: 6px 11px;
  }
  .pp-spec-table {
    min-width: 520px;
  }
  .pp-spec-table thead th,
  .pp-spec-table tbody td {
    padding: 9px 10px;
    font-size: .72rem;
  }
  .pp-cat {
    scroll-margin-top: 60px;
  }
}

/* =====================================================
   SCROLL-TRIGGERED ANIMATIONS
===================================================== */

.product-card.reveal-visible,
.pp-chip-with-image.reveal-visible {
  animation-play-state: running;
}

/* Staggered delay for sequential reveal */
.product-card:nth-child(1) { --i: 1; }
.product-card:nth-child(2) { --i: 2; }
.product-card:nth-child(3) { --i: 3; }
.product-card:nth-child(4) { --i: 4; }
.product-card:nth-child(5) { --i: 5; }
.product-card:nth-child(6) { --i: 6; }
.product-card:nth-child(7) { --i: 7; }
.product-card:nth-child(8) { --i: 8; }
.product-card:nth-child(9) { --i: 9; }
.product-card:nth-child(10) { --i: 10; }

.pp-chip-with-image:nth-child(1) { --i: 1; }
.pp-chip-with-image:nth-child(2) { --i: 2; }
.pp-chip-with-image:nth-child(3) { --i: 3; }
.pp-chip-with-image:nth-child(4) { --i: 4; }
.pp-chip-with-image:nth-child(5) { --i: 5; }
.pp-chip-with-image:nth-child(6) { --i: 6; }
.pp-chip-with-image:nth-child(7) { --i: 7; }
.pp-chip-with-image:nth-child(8) { --i: 8; }

/* =====================================================
   MOUSE TRACKING GLOW (JavaScript required)
===================================================== */

.product-card .mouse-glow,
.pp-chip-with-image .mouse-glow {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(208, 160, 58, 0.08), transparent 70%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 0;
}

.product-card:hover .mouse-glow,
.pp-chip-with-image:hover .mouse-glow {
  opacity: 1;
}

/* =====================================================
   FIX: MOBILE MENU OVERLAY ABOVE STICKY NAV
===================================================== */

/* Ensure mobile overlay covers sticky nav */
.mobile-nav-overlay {
  z-index: 150 !important;
}

/* When mobile nav is active, ensure sticky nav is below overlay */
.mobile-nav-overlay.active ~ .pp-catnav,
.mobile-nav-overlay.active ~ main .pp-catnav,
body.mobile-nav-open .pp-catnav {
  z-index: 50 !important;
}

/* Ensure mobile nav itself is above everything */
.mobile-nav {
  z-index: 200 !important;
}

/* When mobile menu is open, reduce z-index of sticky nav */
body.mobile-nav-open .pp-catnav {
  z-index: 50 !important;
  position: relative !important;
}