/* ============================================================
   LEFT RIGHT FOOTWEAR — Homepage v2 (Calcetto Style)
   ============================================================ */

/* ===== HERO ===== */
.v2-hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}
.v2-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.v2-hero:hover .v2-hero-bg { transform: scale(1.0); }
.v2-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(5,10,20,0.95) 0%, rgba(10,20,45,0.88) 50%, rgba(15,30,60,0.55) 100%);
}
/* Full-width hero inner — text spans full width, shoe is absolute */
.v2-hero-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 90px 48px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.v2-hero-content { color: #fff; position: relative; z-index: 3; }
.v2-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.9);
  font-size: 11px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 30px;
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-bottom: 20px;
  width: fit-content;
}
.v2-hero-h1 {
  display: flex;
  flex-direction: column;
  line-height: 1;
  margin-bottom: 20px;
}
/* Stacked full-width text like Calcetto */
.v2-h1-top {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3.5vw, 3rem);
  font-weight: 900;
  color: rgba(255,255,255,0.4);
  letter-spacing: 8px;
  text-transform: uppercase;
}
.v2-h1-mid {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(3.5rem, 9vw, 8.5rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  text-transform: uppercase;
  line-height: 0.9;
  text-shadow: 0 6px 40px rgba(37,99,235,0.3);
  white-space: nowrap;
}
.v2-h1-bot {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 600;
  color: #60a5fa;
  letter-spacing: 14px;
  text-transform: uppercase;
  margin-top: 6px;
}
.v2-hero-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 28px;
  line-height: 1.7;
  max-width: 500px;
}
.v2-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 36px; }
.v2-btn-primary {
  background: #fff;
  color: #0f172a;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(255,255,255,0.15);
}
.v2-btn-primary:hover { background: #f1f5f9; transform: translateY(-2px); }
.v2-btn-wa {
  background: #25D366;
  color: #fff !important;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
}
.v2-btn-wa:hover { background: #1ebe5a; transform: translateY(-2px); }
.v2-hero-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.v2-hs { display: flex; flex-direction: column; }
.v2-hs-num { font-family: 'Poppins', sans-serif; font-size: 20px; font-weight: 800; color: #fff; }
.v2-hs-lbl { font-size: 10px; color: rgba(255,255,255,0.5); letter-spacing: .5px; text-transform: uppercase; }
.v2-hs-div { width: 1px; height: 32px; background: rgba(255,255,255,0.2); }

/* Hero image — absolute right side, doesn't affect text layout */
.v2-hero-img-wrap {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}
.v2-hero-shoe-bg {
  position: absolute;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,99,235,0.2), transparent 70%);
  filter: blur(40px);
}
.v2-hero-shoe {
  width: 90%;
  max-width: 580px;
  object-fit: contain;
  filter: drop-shadow(0 40px 80px rgba(0,0,0,0.7));
  animation: v2ShoeFloat 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}
@keyframes v2ShoeFloat {
  0%, 100% { transform: translateY(0px) rotate(-3deg); }
  50%       { transform: translateY(-20px) rotate(1deg); }
}
.v2-hero-tag {
  position: absolute;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  z-index: 4;
  pointer-events: auto;
}
.v2-tag-1 { bottom: 20%; left: 5%; }
.v2-tag-2 { top: 20%; right: 5%; }
.v2-hero-tag .v2-tag-icon { font-size: 22px; }
.v2-hero-tag strong { font-size: 12px; font-weight: 700; display: block; }
.v2-hero-tag small { font-size: 10px; color: rgba(255,255,255,0.65); }

/* Marquee strip */
.v2-hero-marquee {
  position: relative;
  z-index: 2;
  background: #2563EB;
  overflow: hidden;
  padding: 10px 0;
}
.v2-marquee-track {
  display: flex;
  gap: 32px;
  white-space: nowrap;
  animation: v2Marquee 22s linear infinite;
  width: max-content;
}
.v2-marquee-track span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  text-transform: uppercase;
}
@keyframes v2Marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== SECTION HEADER ===== */
.v2-section-header {
  max-width: 1280px;
  margin: 0 auto 28px;
  padding: 0 32px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.v2-section-header h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.5px;
}
.v2-see-all {
  font-size: 13px;
  font-weight: 600;
  color: #2563EB;
  text-decoration: none;
  transition: gap 0.2s;
}
.v2-see-all:hover { text-decoration: underline; }

/* ===== COLLECTIONS ===== */
.v2-collections { padding: 64px 0 0; background: #fff; }
.v2-collections-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.v2-coll-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.v2-coll-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.v2-coll-card:hover .v2-coll-bg { transform: scale(1.07); }
.v2-coll-overlay {
  position: absolute;
  inset: 0;
  transition: opacity 0.3s;
}
.v2-coll-card:hover .v2-coll-overlay { opacity: 0.8; }
.v2-coll-text {
  position: absolute;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #fff;
}
.v2-coll-line1 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 900;
  letter-spacing: 2px;
  line-height: 1;
  text-transform: uppercase;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.v2-coll-line2 {
  font-family: Georgia, serif;
  font-size: clamp(1rem, 2vw, 1.7rem);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.9);
  line-height: 1.1;
}
.v2-coll-tag {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 20px;
  margin-top: 8px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.v2-coll-count {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  color: rgba(255,255,255,0.85);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: .5px;
  z-index: 2;
}

/* ===== PROMO BANNER ===== */
.v2-promo-banner {
  margin: 48px 32px;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  height: 220px;
  background-size: cover;
  background-position: center 40%;
  max-width: 1216px;
  margin-left: auto;
  margin-right: auto;
}
.v2-promo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,10,25,0.88) 0%, rgba(5,10,25,0.5) 60%, transparent 100%);
}
.v2-promo-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 48px;
}
.v2-promo-text { color: #fff; }
.v2-promo-line1 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #60a5fa;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.v2-promo-line2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.6rem, 4vw, 3rem);
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 20px;
}
.v2-promo-btn {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 28px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
}
.v2-promo-btn:hover { background: #fff; color: #0f172a; }

/* ===== FEATURED PRODUCTS ===== */
.v2-products-section { padding: 64px 0; background: #f8fafc; }
.v2-filter-tabs {
  max-width: 1280px;
  margin: 0 auto 32px;
  padding: 0 32px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.v2-ftab {
  padding: 8px 20px;
  border-radius: 30px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  font-size: 12px;
  font-weight: 600;
  color: #64748b;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.v2-ftab:hover { border-color: #2563EB; color: #2563EB; }
.v2-ftab.active { background: #2563EB; color: #fff; border-color: #2563EB; }
.v2-products-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

/* Product card */
.v2-prod-card {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}
.v2-prod-card:hover {
  box-shadow: 0 10px 36px rgba(37,99,235,0.12);
  transform: translateY(-5px);
}
.v2-prod-img-wrap {
  display: block;
  position: relative;
  height: 220px;
  background: #f8fafc;
  overflow: hidden;
  text-decoration: none;
}
.v2-prod-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s;
}
.v2-prod-card:hover .v2-prod-img-wrap img { transform: scale(1.06); }
.v2-prod-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #ef4444;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 4px;
  letter-spacing: .5px;
  z-index: 2;
}
.v2-prod-hover {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.v2-prod-card:hover .v2-prod-hover { opacity: 1; }
.v2-quick-wa {
  background: #25D366;
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background 0.2s;
}
.v2-quick-wa:hover { background: #1ebe5a; }
.v2-prod-info { padding: 14px 16px 16px; }
.v2-prod-code {
  font-size: 9px;
  font-weight: 700;
  color: #2563EB;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.v2-prod-name {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
  margin-bottom: 8px;
  line-height: 1.4;
  transition: color 0.2s;
}
.v2-prod-name:hover { color: #2563EB; }
.v2-prod-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 4px; }
.v2-prod-price {
  font-family: 'Poppins', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #1e293b;
}
.v2-prod-price small { font-size: 10px; font-weight: 500; color: #94a3b8; }
.v2-prod-mrp { font-size: 11px; color: #94a3b8; text-decoration: line-through; }
.v2-prod-moq { font-size: 10px; color: #64748b; margin-bottom: 12px; }
.v2-prod-actions { display: flex; gap: 8px; }
.v2-wa-btn {
  flex: 1;
  background: #25D366;
  color: #fff !important;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background 0.2s;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 2px 8px rgba(37,211,102,0.25);
}
.v2-wa-btn:hover { background: #1ebe5a; }
.v2-detail-btn {
  flex: 1;
  background: #f1f5f9;
  color: #475569;
  padding: 9px 10px;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: 'Poppins', sans-serif;
}
.v2-detail-btn:hover { background: #2563EB; color: #fff; }
.v2-view-all-btn {
  display: inline-block;
  border: 2px solid #2563EB;
  color: #2563EB;
  padding: 13px 40px;
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.2s;
}
.v2-view-all-btn:hover { background: #2563EB; color: #fff; }

/* ===== MOST WANTED BANNER ===== */
.v2-most-wanted {
  position: relative;
  height: 340px;
  overflow: hidden;
}
.v2-mw-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  transition: transform 6s ease;
}
.v2-most-wanted:hover .v2-mw-bg { transform: scale(1.04); }
.v2-mw-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,10,25,0.9) 0%, rgba(5,10,25,0.6) 50%, rgba(5,10,25,0.2) 100%);
}
.v2-mw-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 80px;
}
.v2-mw-text { color: #fff; }
.v2-mw-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #60a5fa;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.v2-mw-title {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 28px;
  letter-spacing: 1px;
}
.v2-mw-title span {
  font-family: Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 0.7em;
  color: rgba(255,255,255,0.8);
}
.v2-mw-btn {
  display: inline-block;
  background: #fff;
  color: #0f172a;
  padding: 13px 36px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.2s;
  border-radius: 4px;
}
.v2-mw-btn:hover { background: #2563EB; color: #fff; }

/* ===== NEW ARRIVALS ===== */
.v2-new-arrivals { padding: 64px 0; background: #fff; }
.v2-new-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 22px;
}
.v2-new-card { background: #f8fafc; border-radius: 14px; overflow: hidden; }
.v2-new-img-wrap {
  display: block;
  position: relative;
  height: 260px;
  background: #f1f5f9;
  overflow: hidden;
  text-decoration: none;
}
.v2-new-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.4s;
}
.v2-new-card:hover .v2-new-img-wrap img { transform: scale(1.06); }
.v2-new-label {
  position: absolute;
  top: 12px;
  left: 12px;
  background: #2563EB;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  padding: 3px 10px;
  border-radius: 4px;
  letter-spacing: 1px;
  z-index: 2;
}
.v2-new-hover {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.v2-new-card:hover .v2-new-hover { opacity: 1; }
.v2-new-info { padding: 14px 16px 18px; }

/* ===== TRUST / WHY US ===== */
.v2-trust { background: #0f172a; padding: 64px 0; }
.v2-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.v2-trust-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 16px;
  padding: 32px 28px;
  transition: background 0.3s, border-color 0.3s;
}
.v2-trust-card:hover { background: rgba(37,99,235,0.12); border-color: rgba(37,99,235,0.4); }
.v2-tc-icon { font-size: 36px; margin-bottom: 16px; }
.v2-trust-card h3 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.v2-trust-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; margin: 0; }

/* ===== TESTIMONIALS ===== */
.v2-testimonials { background: #f8fafc; padding: 64px 0; }
.v2-testi-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.v2-testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.06);
  transition: box-shadow 0.3s;
}
.v2-testi-card:hover { box-shadow: 0 8px 28px rgba(37,99,235,0.1); }
.v2-testi-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.v2-testi-card p { font-size: 14px; color: #475569; line-height: 1.7; margin: 0 0 18px; font-style: italic; }
.v2-testi-author { display: flex; flex-direction: column; gap: 2px; }
.v2-testi-author strong { font-size: 13px; font-weight: 700; color: #1e293b; }
.v2-testi-author span { font-size: 11px; color: #94a3b8; }

/* ===== BRAND STORY ===== */
.v2-brand-strip {
  background: #fff;
  padding: 72px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1280px;
  margin: 0 auto;
  gap: 64px;
  align-items: center;
  padding-left: 32px;
  padding-right: 32px;
}
.v2-brand-num {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  color: #2563EB;
  line-height: 1;
}
.v2-brand-label {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 3px;
  color: #64748b;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.v2-brand-left p { font-size: 14px; color: #475569; line-height: 1.8; }
.v2-brand-right img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  height: 400px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* ===== CTA ===== */
.v2-cta-section { background: #2563EB; padding: 56px 0; }
.v2-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.v2-cta-text h2 {
  font-family: 'Poppins', sans-serif;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.v2-cta-text p { font-size: 14px; color: rgba(255,255,255,0.8); }
.v2-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.v2-cta-wa-btn {
  background: #25D366;
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: background 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.v2-cta-wa-btn:hover { background: #1ebe5a; }
.v2-cta-catalog-btn {
  background: rgba(255,255,255,0.12);
  color: #fff !important;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255,255,255,0.4);
  transition: background 0.2s;
}
.v2-cta-catalog-btn:hover { background: rgba(255,255,255,0.22); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .v2-hero-inner { padding: 70px 24px 36px; }
  .v2-hero-img-wrap { width: 45%; opacity: 0.35; }
  .v2-h1-mid { font-size: clamp(2.8rem, 8vw, 5.5rem); white-space: normal; }
  .v2-brand-strip { grid-template-columns: 1fr; }
  .v2-brand-right { display: none; }
}
@media (max-width: 820px) {
  .v2-hero-img-wrap { display: none; }
  .v2-hero-inner { padding: 70px 20px 30px; }
  .v2-h1-mid { font-size: clamp(2.5rem, 10vw, 4.5rem); white-space: normal; }
}
@media (max-width: 768px) {
  .v2-section-header, .v2-collections-grid, .v2-products-grid,
  .v2-new-grid, .v2-trust-inner, .v2-testi-grid { padding: 0 16px; }
  .v2-section-header { margin-bottom: 20px; }
  .v2-mw-inner { padding: 0 24px; }
  .v2-promo-banner { margin: 24px 16px; height: 160px; }
  .v2-promo-line2 { font-size: 1.6rem; }
  .v2-promo-inner { padding: 0 24px; }
  .v2-cta-inner { flex-direction: column; text-align: center; }
  .v2-hero-inner { padding: 60px 20px 20px; }
  .v2-h1-mid { font-size: 3.5rem; }
  .v2-hero-tag { display: none; }
  .v2-brand-strip { padding: 48px 16px; }
  .v2-trust { padding: 40px 0; }
  .v2-trust-inner { padding: 0 16px; }
  .v2-most-wanted { height: 240px; }
  .v2-mw-title { font-size: 2.5rem; }
}
@media (max-width: 480px) {
  .v2-collections-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .v2-products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .v2-new-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .v2-prod-img-wrap { height: 160px; }
  .v2-new-img-wrap { height: 180px; }
  .v2-prod-price { font-size: 14px; }
  .v2-prod-name { font-size: 12px; }
  .v2-hero-stats { gap: 16px; }
}

/* ===== Legacy card classes (used by content-product.php on shop/category pages) ===== */
.hp-product-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  transition: box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: column;
  border: none;
}
.hp-card-link-overlay {
  position: absolute;
  inset: 0;
  z-index: 5;
  cursor: pointer;
}
.hp-wa-btn,
.hp-detail-btn,
.hp-prod-name {
  position: relative;
  z-index: 6;
}
.hp-product-card:hover {
  box-shadow: 0 12px 40px rgba(37,99,235,0.13);
  transform: translateY(-6px);
}
.hp-product-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hp-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.45s ease;
}
.hp-product-card:hover .hp-product-img img { transform: scale(1.07); }
.img-badge-moq-top {
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(30,41,59,0.75);
  backdrop-filter: blur(4px);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 20px;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.quick-btns {
  position: absolute;
  inset: 0;
  background: rgba(15,23,42,0.55);
  backdrop-filter: blur(3px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  opacity: 0;
  transition: opacity 0.3s;
}
.hp-product-card:hover .quick-btns { opacity: 1; }
.qb-btn {
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
  transition: background 0.2s;
  backdrop-filter: blur(2px);
}
.qb-btn:hover { background: rgba(255,255,255,0.28); color: #fff; }
.hp-product-info { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.hp-prod-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.hp-prod-code { font-size: 10px; color: #2563EB; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; }
.hp-gst-tag { background: #eff6ff; color: #2563EB; font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 10px; text-transform: uppercase; }
.hp-prod-name { font-family: 'Poppins',sans-serif; font-size: 14px; font-weight: 600; color: #1e293b; text-decoration: none; display: block; margin-bottom: 12px; flex: 1; line-height: 1.4; transition: color 0.2s; }
.hp-prod-name:hover { color: #2563EB; }
.hp-price-row { display: flex; align-items: baseline; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.hp-mrp { font-size: 11px; color: #94a3b8; text-decoration: line-through; }
.hp-b2b { font-family: 'Poppins',sans-serif; font-size: 20px; font-weight: 800; color: #1e293b; }
.hp-b2b small { font-size: 11px; font-weight: 500; color: #94a3b8; }
.hp-save { background: #dcfce7; color: #15803d; font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 20px; }
.hp-card-actions { display: flex; gap: 8px; margin-top: auto; }
.hp-wa-btn {
  flex: 1;
  background: #25D366;
  color: #fff !important;
  border: none;
  padding: 11px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  text-decoration: none;
  transition: background 0.2s;
  font-family: 'Poppins',sans-serif;
  box-shadow: 0 3px 10px rgba(37,211,102,0.25);
}
.hp-wa-btn:hover { background: #1ebe5a; color: #fff !important; }
.hp-detail-btn {
  flex: 1;
  background: #f1f5f9;
  color: #475569;
  border: none;
  padding: 11px 10px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  font-family: 'Poppins',sans-serif;
}
.hp-detail-btn:hover { background: #2563EB; color: #fff; }
