/* ================================================
   SJ Men's Fashion – Home Page Styles
   All the "sexy" sections for the landing page
   ================================================ */

/* ══════════════════════════════════════════════
   1. ANNOUNCEMENT BAR
══════════════════════════════════════════════ */
.announcement-bar {
  background: var(--black);
  color: var(--white);
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #222;
}

.announcement-marquee {
  display: flex;
  white-space: nowrap;
  animation: marqueeScroll 30s linear infinite;
  gap: 0;
}

.announcement-marquee span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--grey-300);
  padding-right: 0;
  flex-shrink: 0;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════
   2. HERO V2
══════════════════════════════════════════════ */
.hero-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 104px);
  background: var(--black);
  position: relative;
  overflow: hidden;
}

/* Left side */
.hero-v2-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 72px 56px 56px;
  position: relative;
  z-index: 2;
  border-right: 1px solid #1a1a1a;
}

.hero-v2-left::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(37,99,235,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
  padding: 6px 14px;
  border: 1px solid rgba(37,99,235,0.3);
  border-radius: 20px;
  width: fit-content;
}

.hero-v2-title {
  font-size: clamp(3rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  color: var(--white);
  letter-spacing: -2px;
  margin-bottom: 24px;
}

.hero-v2-title em {
  font-style: italic;
  color: var(--blue);
  position: relative;
}

.hero-v2-sub {
  font-size: 1rem;
  color: var(--grey-400);
  max-width: 420px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero-v2-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: var(--white);
  color: var(--black);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.3px;
  transition: var(--transition);
  text-decoration: none;
  border: 2px solid var(--white);
}
.btn-hero-primary:hover {
  background: var(--grey-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,255,255,0.15);
}

.btn-hero-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 700;
  transition: var(--transition);
  text-decoration: none;
}
.btn-hero-ghost:hover {
  border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.06);
}

.hero-v2-pills {
  display: flex;
  gap: 8px;
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.hero-v2-pills::-webkit-scrollbar { display: none; }

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--grey-300);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}
.hero-pill svg { width: 14px; height: 14px; flex-shrink: 0; }

.hero-pill:hover {
  background: rgba(255,255,255,0.14);
  color: var(--white);
  border-color: rgba(255,255,255,0.3);
}

.hero-v2-stats {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid #1e1e1e;
}

.hstat { text-align: center; }
.hstat-num {
  display: block;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
}
.hstat-lbl {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-top: 4px;
}
.hstat-div {
  width: 1px;
  height: 36px;
  background: #1e1e1e;
}

/* Right side */
.hero-v2-right {
  position: relative;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  flex-direction: column;
}

.hero-v2-right::before {
  content: '';
  position: absolute;
  bottom: -200px; right: -200px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(22,163,74,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  height: 100%;
  gap: 2px;
}

.hgc {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 4px;
  display: block;
  text-decoration: none;
  transition: var(--transition-slow);
}

.hgc:hover .hgc-img { transform: scale(1.07); }
.hgc:hover .hgc-inner { transform: translateY(-4px); }

.hgc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.hgc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
}

.hgc-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  padding: 20px 16px;
  transition: transform 0.35s ease;
}

.hgc-cat {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
}
.hgc-price {
  font-size: 0.82rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2px;
}

/* Floating badges */
.hero-float-badge,
.hero-float-badge-2 {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
  z-index: 10;
  animation: floatBob 3s ease-in-out infinite;
}

.hero-float-badge {
  top: 24px; right: 24px;
}
.hero-float-badge-2 {
  position: static;
  animation: none;
  background: #25d366;
  color: #fff;
  white-space: nowrap;
  border-radius: 0;
  box-shadow: none;
  justify-content: center;
  padding: 14px 20px;
  margin-top: auto;
  width: 100%;
  gap: 10px;
}

.hfb-icon { font-size: 1.4rem; }

.hfb2-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.hfb2-text { white-space: nowrap; }

@keyframes floatBob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* ══════════════════════════════════════════════
   3. TRUST BAR
══════════════════════════════════════════════ */
.trust-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-200);
  padding: 20px 0;
}

.trust-bar-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 140px;
}

.trust-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.trust-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.trust-item > div > strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--black);
}

.trust-item > div > span {
  display: block;
  font-size: 0.72rem;
  color: var(--grey-500);
  font-weight: 600;
}

.trust-sep {
  width: 1px;
  height: 32px;
  background: var(--grey-200);
  flex-shrink: 0;
}

/* ══════════════════════════════════════════════
   4. CATEGORY SHOWCASE
══════════════════════════════════════════════ */
.section-header-v2 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  flex-wrap: wrap;
}

.cat-showcase-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 16px;
  height: 520px;
}

.cat-card-big,
.cat-card-small {
  display: block;
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  text-decoration: none;
  transition: var(--transition-slow);
}

.cat-card-big { height: 100%; }
.cat-card-small { flex: 1; min-height: 0; }

.cat-card-big:hover,
.cat-card-small:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

.cat-card-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.5s ease;
}

.cat-card-big:hover .cat-card-photo,
.cat-card-small:hover .cat-card-photo {
  transform: scale(1.05);
}

.cat-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 55%, rgba(0,0,0,0.1) 100%);
  z-index: 0;
  transition: transform 0.5s ease;
}

.cat-card-big:hover .cat-card-bg,
.cat-card-small:hover .cat-card-bg {
  opacity: 0.9;
}

.cat-card-content {
  position: relative;
  z-index: 1;
  padding: 28px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.cat-card-icon {
  font-size: 3.5rem;
  display: block;
  margin-bottom: 12px;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.4));
}

.cat-card-small .cat-card-icon { font-size: 2.4rem; }

.cat-card-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 6px;
  letter-spacing: -0.5px;
}

.cat-card-small .cat-card-title { font-size: 1.1rem; }

.cat-card-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  line-height: 1.5;
}

.cat-card-cta {
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  opacity: 0.8;
  transition: var(--transition);
}

.cat-card-big:hover .cat-card-cta,
.cat-card-small:hover .cat-card-cta {
  opacity: 1;
  letter-spacing: 1px;
}

.cat-card-count {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.8);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.15);
  z-index: 2;
}

.cat-right-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cat-right-top,
.cat-right-bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}

/* ══════════════════════════════════════════════
   5. PRODUCT SECTION
══════════════════════════════════════════════ */
.products-section-bg {
  background: var(--grey-50);
  border-top: 1px solid var(--grey-200);
  border-bottom: 1px solid var(--grey-200);
}

.product-tabs {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 24px 0 28px;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--grey-200);
}

.ptab {
  padding: 8px 18px;
  border: none;
  background: transparent;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--grey-500);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  transition: var(--transition);
  border-radius: var(--radius) var(--radius) 0 0;
}

.ptab:hover { color: var(--black); background: var(--white); }
.ptab.active { color: var(--black); border-bottom-color: var(--black); }

/* ══════════════════════════════════════════════
   6. PROMO BANNER
══════════════════════════════════════════════ */
.promo-banner-section {
  background: var(--black);
  padding: 0;
  overflow: hidden;
}

.promo-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 320px;
  align-items: center;
  gap: 0;
  position: relative;
}

.promo-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 25% 50%, rgba(234,88,12,0.18) 0%, transparent 55%),
    radial-gradient(circle at 75% 50%, rgba(37,99,235,0.10) 0%, transparent 55%);
  pointer-events: none;
}

.promo-banner-left {
  padding: 60px;
  position: relative;
  z-index: 1;
}

.promo-eyebrow {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
  padding: 5px 12px;
  border: 1px solid rgba(234,88,12,0.4);
  border-radius: 20px;
}

.promo-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.promo-sub {
  font-size: 0.9rem;
  color: var(--grey-400);
  margin-bottom: 28px;
  line-height: 1.6;
}

.promo-code {
  background: rgba(234,88,12,0.2);
  color: var(--orange);
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  letter-spacing: 1px;
  border: 1px dashed var(--orange);
}

.btn-promo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--orange);
  color: var(--white);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
  border: 2px solid var(--orange);
}
.btn-promo:hover {
  background: #c2410c;
  border-color: #c2410c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(234,88,12,0.35);
}

.promo-banner-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 60px;
  position: relative;
  z-index: 1;
  border-left: 1px solid #1a1a1a;
}

.promo-icons-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.promo-product-img {
  width: 200px;
  height: 220px;
  object-fit: cover;
  border-radius: 4px;
  filter: drop-shadow(0 8px 30px rgba(234,88,12,0.3));
}

.promo-tag {
  position: absolute;
  top: -10px; right: -20px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 900;
  padding: 6px 12px;
  border-radius: var(--radius);
  letter-spacing: 0.5px;
  transform: rotate(6deg);
  box-shadow: 0 4px 12px rgba(234,88,12,0.4);
}

.promo-countdown-wrap {
  text-align: center;
}

.promo-countdown-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 10px;
}

.promo-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pcd-unit {
  background: rgba(255,255,255,0.06);
  border: 1px solid #2a2a2a;
  border-radius: var(--radius);
  padding: 10px 16px;
  text-align: center;
  min-width: 64px;
}

.pcd-unit span {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--white);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.pcd-unit small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--grey-600);
  margin-top: 4px;
  display: block;
}

.pcd-sep {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--grey-700);
  margin-top: -8px;
}

/* ══════════════════════════════════════════════
   7. STYLE PICKS
══════════════════════════════════════════════ */
.style-picks-section {
  background: var(--grey-50);
  border-top: 1px solid var(--grey-200);
}

.style-picks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.style-pick-card {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--grey-200);
  transition: var(--transition-slow);
}

.style-pick-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}

.sp-visual {
  height: 220px;
  position: relative;
  overflow: hidden;
  border-radius: 4px 4px 0 0;
}

.sp-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.style-pick-card:hover .sp-visual img {
  transform: scale(1.06);
}

.sp-visual-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.08) 60%);
}

.sp-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 4px 10px;
  border-radius: 20px;
}

.sp-info {
  padding: 20px;
}

.sp-info h4 {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--black);
}

.sp-info p {
  font-size: 0.82rem;
  color: var(--grey-500);
  line-height: 1.6;
  margin-bottom: 14px;
}

.sp-links {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
}

.sp-links a {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
}
.sp-links a:hover { color: var(--blue); }
.sp-links span { color: var(--grey-400); }

/* ══════════════════════════════════════════════
   8. WHY SECTION
══════════════════════════════════════════════ */
.why-section {
  background: var(--black);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(37,99,235,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(22,163,74,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: #0f0f0f;
  border: 1px solid #0f0f0f;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.why-card {
  background: #111;
  padding: 36px 32px;
  transition: var(--transition-slow);
  position: relative;
}

.why-card:hover { background: #161616; }

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 32px; right: 32px;
  height: 1px;
  background: #1a1a1a;
}

.why-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.why-icon-wrap svg {
  width: 24px;
  height: 24px;
  display: block;
}

.why-card h4 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.82rem;
  color: var(--grey-600);
  line-height: 1.7;
}

/* ══════════════════════════════════════════════
   9. TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-section {
  background: var(--white);
}

.stars-summary {
  text-align: right;
}

.stars-row { display: flex; gap: 3px; margin-bottom: 4px; }
.stars-row svg { width: 18px; height: 18px; }
.stars-label { font-size: 0.8rem; color: var(--grey-500); font-weight: 700; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  transition: var(--transition-slow);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--grey-300);
}

.testimonial-card.tc-featured {
  background: var(--black);
  border-color: var(--black);
}

.testimonial-card.tc-featured .tc-text { color: var(--grey-300); }
.testimonial-card.tc-featured strong { color: var(--white); }
.testimonial-card.tc-featured span { color: var(--grey-600); }
.testimonial-card.tc-featured .tc-badge { border-color: rgba(255,255,255,0.2); color: rgba(255,255,255,0.5); }

.tc-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.tc-stars svg { width: 14px; height: 14px; }

.tc-text {
  font-size: 0.88rem;
  color: var(--grey-600);
  line-height: 1.75;
  margin-bottom: 20px;
  font-style: italic;
}

.tc-text::before { content: '"'; }
.tc-text::after { content: '"'; }

.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.tc-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  flex-shrink: 0;
}

.tc-author strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--black);
}

.tc-author span {
  display: block;
  font-size: 0.74rem;
  color: var(--grey-500);
  font-weight: 600;
}

.tc-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: var(--grey-400);
  border: 1px solid var(--grey-200);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ══════════════════════════════════════════════
   10. WHATSAPP CTA
══════════════════════════════════════════════ */
.whatsapp-cta-section {
  background: #0d1f0d;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.whatsapp-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(37,211,102,0.12) 0%, transparent 60%);
  pointer-events: none;
}

.wa-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0;
  position: relative;
  z-index: 1;
}

/* Row 1: icon + title */
.wa-cta-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 14px;
}

.wa-cta-icon {
  flex-shrink: 0;
  filter: drop-shadow(0 0 20px rgba(37,211,102,0.4));
}

.wa-cta-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 0;
}

/* Row 2: subtitle */
.wa-cta-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 28px;
  white-space: nowrap;
  text-align: center;
}

/* Row 3: steps horizontal */
.wa-cta-steps {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-top: 32px;
  margin-bottom: 48px;
  width: 100%;
}

.wa-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.35rem;
  color: rgba(255,255,255,0.8);
  font-weight: 700;
  white-space: nowrap;
}

.wa-step-arrow {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  stroke: rgba(37,211,102,0.5);
  margin: 0 16px;
}

.wa-step-num {
  width: 38px;
  height: 38px;
  background: rgba(37,211,102,0.2);
  border: 1px solid rgba(37,211,102,0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 900;
  color: #25d366;
  flex-shrink: 0;
}

/* Row 4: 3 buttons */
.wa-cta-actions {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 24px;
}

/* Shared base for all 3 buttons */
.wa-cta-btn,
.wa-cta-btn-secondary,
.wa-cta-btn-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 4px;
  font-size: 0.88rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
  width: auto;
}

.wa-cta-btn {
  background: #25d366;
  color: var(--white);
  box-shadow: 0 4px 24px rgba(37,211,102,0.35);
}
.wa-cta-btn:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(37,211,102,0.45);
}

.wa-btn-icon { width: 18px; height: 18px; flex-shrink: 0; }

.wa-cta-btn-secondary {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.wa-cta-btn-secondary:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

.wa-cta-btn-phone {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.2);
}
.wa-cta-btn-phone:hover {
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}

/* Row 5: hours */
.wa-cta-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  font-weight: 600;
  margin-top: 10px;
}

/* ══════════════════════════════════════════════
   11. BRANDS WE CARRY
══════════════════════════════════════════════ */
.brands-section {
  padding: 80px 0 72px;
  background: var(--white);
  overflow: hidden;
  position: relative;
  border-top: 1px solid var(--grey-100);
}

/* Ambient radial glow behind content */
.brands-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, rgba(37,99,235,0.06) 0%, transparent 50%),
    radial-gradient(circle at 85% 50%, rgba(124,58,237,0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 0%,  rgba(234,88,12,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.brands-header {
  text-align: left;
  margin-bottom: 52px;
  padding: 0 40px;
  position: relative;
}

.brands-label {
  display: inline-flex;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 14px;
  padding: 5px 14px;
  border: 1px solid rgba(234,88,12,0.3);
  border-radius: 20px;
  background: rgba(234,88,12,0.06);
}

.brands-title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--black);
  line-height: 1.15;
}

/* Tracks wrapper */
.brands-tracks {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

/* Track wrapper */
.brands-track-wrap {
  position: relative;
  overflow: hidden;
}

/* Scrolling track */
.brands-track {
  --speed: 70s;
  display: flex;
}

.brands-inner {
  display: flex;
  gap: 10px;
  padding: 5px 0;
  animation: brands-scroll var(--speed) linear infinite;
  white-space: nowrap;
  flex-shrink: 0;
}

.brands-track[style*="--dir:-1"] .brands-inner {
  animation-direction: reverse;
}

@keyframes brands-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Individual brand card — glassy dark */
.brand-card {
  display: inline-flex;
  align-items: center;
  padding: 11px 24px;
  border-radius: 4px;
  font-size: 0.9rem;
  font-weight: 800;
  letter-spacing: 0.6px;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: default;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  background: #0d0d0d;
  border: 1px solid rgba(255,255,255,0.1);
  color: #e5e7eb;
}

/* Per-card colour variants — corner glow, black dominant */
.brand-card.bc-blue {
  background: radial-gradient(ellipse at top left, rgba(59,130,246,0.18) 0%, transparent 65%), #0d0d0d;
  border-color: rgba(59,130,246,0.3);
  color: #93c5fd;
}
.brand-card.bc-orange {
  background: radial-gradient(ellipse at top left, rgba(234,88,12,0.18) 0%, transparent 65%), #0d0d0d;
  border-color: rgba(234,88,12,0.3);
  color: #fb923c;
}
.brand-card.bc-green {
  background: radial-gradient(ellipse at top left, rgba(34,197,94,0.18) 0%, transparent 65%), #0d0d0d;
  border-color: rgba(34,197,94,0.3);
  color: #4ade80;
}
.brand-card.bc-purple {
  background: radial-gradient(ellipse at top left, rgba(167,139,250,0.18) 0%, transparent 65%), #0d0d0d;
  border-color: rgba(167,139,250,0.3);
  color: #c4b5fd;
}
.brand-card.bc-rose {
  background: radial-gradient(ellipse at top left, rgba(251,113,133,0.18) 0%, transparent 65%), #0d0d0d;
  border-color: rgba(251,113,133,0.3);
  color: #fda4af;
}
.brand-card.bc-amber {
  background: radial-gradient(ellipse at top left, rgba(251,191,36,0.18) 0%, transparent 65%), #0d0d0d;
  border-color: rgba(251,191,36,0.3);
  color: #fcd34d;
}

/* Hover lift */
.brand-card:hover {
  transform: translateY(-2px);
  filter: brightness(1.15);
}

/* Pause on hover */
.brands-track-wrap:hover .brands-inner {
  animation-play-state: paused;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Home Page
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-v2-left { padding: 56px 40px 48px; }
  .hero-v2-title { font-size: 3.8rem; }
  .cat-showcase-grid { height: auto; }
  .cat-card-big { min-height: 360px; }
  .cat-card-small { min-height: 160px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .promo-banner-left { padding: 48px 40px; }
  .promo-banner-right { padding: 48px 40px; }
}

/* ══════════════════════════════════════════════
   13. GALLERY TEASER
══════════════════════════════════════════════ */
.gallery-teaser-section {
  padding: 80px 0 72px;
  background: var(--grey-50);
  border-top: 1px solid var(--grey-100);
}

.gallery-teaser-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
}

.gallery-view-all {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--black);
  border: 1.5px solid var(--grey-300);
  padding: 9px 18px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: var(--transition);
}
.gallery-view-all:hover {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.gallery-teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 220px 220px;
  gap: 10px;
}

.glt-item {
  overflow: hidden;
  border-radius: 4px;
  display: block;
  position: relative;
  background: var(--grey-100);
}

.glt-tall {
  grid-row: span 2;
}

.glt-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
  display: block;
}

.glt-item:hover img {
  transform: scale(1.05);
}

@media (min-width: 1025px) {
  .brand-card {
    font-size: 1rem;
    padding: 14px 30px;
    letter-spacing: 0.8px;
  }
  .brands-tracks { gap: 14px; }
}

@media (max-width: 768px) {
  /* Hero */
  .hero-v2 { grid-template-columns: 1fr; min-height: auto; }
  .hero-v2-left {
    padding: 48px 24px 36px;
    border-right: none;
    border-bottom: 1px solid #1a1a1a;
    align-items: center;
    text-align: center;
  }
  .hero-v2-title { font-size: clamp(4rem, 13vw, 5.2rem); letter-spacing: -1.5px; }
  .hero-v2-title em { font-style: normal; }
  .hero-v2-pills { justify-content: center; }
  .hero-pill { font-size: 0.66rem; padding: 5px 10px; }
  .hero-v2-stats { justify-content: center; }
  .hero-v2-right { min-height: 360px; }
  .hero-float-badge { font-size: 0.72rem; padding: 8px 12px; }
  .hero-float-badge-2 { font-size: 0.78rem; padding: 12px 16px; }
  .hfb2-icon { width: 16px; height: 16px; }
  .hero-grid-cards { grid-template-rows: repeat(2, 320px); }

  /* Trust — 2 + 2 + 1 centered grid */
  .trust-bar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .trust-sep { display: none; }
  .trust-item {
    min-width: unset;
    background: var(--grey-50);
    border: 1px solid var(--grey-200);
    border-radius: 4px;
    padding: 14px 12px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
  }
  /* 5th item spans both columns and centers itself */
  .trust-item:last-child {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
  }

  /* Categories — single column, one card per row */
  .cat-showcase-grid {
    display: flex;
    flex-direction: column;
    height: auto;
    gap: 10px;
  }
  .cat-right-col,
  .cat-right-top,
  .cat-right-bottom {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .cat-card-big,
  .cat-card-small {
    width: 100%;
    min-height: 320px;
    height: 320px;
  }

  /* Promo */
  .promo-banner { grid-template-columns: 1fr; }
  .promo-banner-right { border-left: none; border-top: 1px solid #1a1a1a; padding: 32px 24px 40px; justify-content: center; }
  .promo-banner-left { padding: 40px 24px 32px; }
  .promo-product-img { width: 160px; height: 180px; }

  /* Style picks */
  .style-picks-grid { grid-template-columns: 1fr; }

  /* Why grid */
  .why-grid { grid-template-columns: 1fr; }
  .why-section .section-header-v2,
  .why-section .section-header-v2 > div { text-align: center; align-items: center; width: 100%; }
  .why-card {
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
  .why-icon-wrap { margin-left: auto; margin-right: auto; }
  .why-card h4 { font-size: calc(0.95rem + 1.2px); color: var(--white); }
  .why-card p  { font-size: calc(0.82rem + 1.2px); color: var(--white); }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-section .section-header-v2,
  .testimonials-section .section-header-v2 > div { text-align: center; align-items: center; width: 100%; }
  .testimonials-section .section-header-v2 .stars-summary { justify-content: center; align-items: center; }
  .testimonials-section .section-header-v2 .stars-row { justify-content: center; }
  .testimonial-card { text-align: center; }
  .testimonial-card .tc-stars { justify-content: center; }
  .testimonial-card .tc-author { justify-content: center; }

  /* WA CTA */
  .wa-cta-header { justify-content: center; }
  .wa-cta-sub { text-align: center; white-space: normal; max-width: 100%; font-size: 0.88rem; }
  .wa-cta-steps { flex-direction: column; margin-top: 16px; margin-bottom: 20px; align-items: center; }
  .wa-step { padding: 8px 0; width: fit-content; font-size: 0.88rem; white-space: normal; }
  .wa-step-num { width: 26px; height: 26px; }
  .wa-step-arrow { display: none; }
  .wa-cta-actions { flex-direction: row; gap: 8px; flex-wrap: nowrap; width: 100%; }
  .wa-cta-btn, .wa-cta-btn-secondary, .wa-cta-btn-phone { flex: 1; min-width: 0; padding: 11px 6px; font-size: 0.72rem; gap: 5px; }
  .wa-btn-icon { width: 14px; height: 14px; }
  .wa-cta-note { text-align: center; }

  /* Newsletter */
  .newsletter-v2-inner { flex-direction: column; gap: 24px; }
  .nl-right { max-width: 100%; width: 100%; }

  /* Section header v2 */
  .section-header-v2 { flex-direction: column; align-items: flex-start; gap: 10px; }

  /* Product tabs */
  .product-tabs { overflow-x: auto; flex-wrap: nowrap; padding-bottom: 0; }
  .ptab { white-space: nowrap; }
}

@media (max-width: 576px) {
  .announcement-bar { height: 30px; }
  .announcement-marquee span { font-size: 0.65rem; }

  .hero-v2-left { padding: 36px 20px 28px; }
  .hero-v2-title { font-size: clamp(3.6rem, 12vw, 4.4rem); letter-spacing: -1px; }
  .hero-v2-actions { flex-direction: column; }
  .btn-hero-primary, .btn-hero-ghost { width: 100%; justify-content: center; }

  .cat-card-big, .cat-card-small { min-height: 280px; height: 280px; }

  .promo-title { font-size: 2rem; }
  .pcd-unit { min-width: 50px; padding: 8px 12px; }
  .pcd-unit span { font-size: 1.4rem; }

  .wa-cta-icon { display: none; }
  .wa-cta-title { font-size: 1.8rem; }
  .wa-cta-actions { flex-direction: row; flex-wrap: nowrap; gap: 6px; width: 100%; }
  .wa-cta-btn, .wa-cta-btn-secondary, .wa-cta-btn-phone { flex: 1; min-width: 0; font-size: 0.65rem; padding: 10px 4px; gap: 4px; }
  .wa-btn-icon { width: 12px; height: 12px; }

  .nl-form { flex-direction: column; border-radius: var(--radius); }
  .nl-btn { border-radius: 0 0 var(--radius) var(--radius); }

  .hero-grid-cards { grid-template-rows: repeat(2, 240px); }
}

/* ============================================================
   HERO CAROUSEL
============================================================ */
.hero-carousel-section {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #000;
}

.hc-track-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  user-select: none;
}

.hc-track {
  display: flex;
  width: 100%;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.hc-slide {
  position: relative;
  min-width: 100%;
  height: 580px;
  overflow: hidden;
  flex-shrink: 0;
}

.hc-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.8s ease;
}

.hc-slide.active .hc-img {
  transform: scale(1.04);
}

.hc-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.72) 0%,
    rgba(0, 0, 0, 0.38) 55%,
    rgba(0, 0, 0, 0.08) 100%
  );
  pointer-events: none;
}

.hc-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px 80px;
  max-width: 600px;
  gap: 16px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.6s ease 0.15s, opacity 0.6s ease 0.15s;
}

.hc-slide.active .hc-content {
  transform: translateY(0);
  opacity: 1;
}

.hc-eyebrow {
  display: inline-block;
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(37, 99, 235, 0.15);
  border: 1px solid rgba(37, 99, 235, 0.4);
  padding: 4px 12px;
  border-radius: 4px;
  width: fit-content;
}

.hc-title {
  font-family: var(--font);
  font-size: 3.4rem;
  font-weight: 900;
  line-height: 1.08;
  color: #fff;
  letter-spacing: -1.5px;
  margin: 0;
}

.hc-sub {
  font-family: var(--font);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.6;
  max-width: 420px;
  margin: 0;
}

.hc-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: var(--primary);
  border: none;
  border-radius: 4px;
  padding: 12px 24px;
  text-decoration: none;
  width: fit-content;
  transition: background 0.2s, transform 0.2s;
  margin-top: 4px;
}

.hc-cta:hover {
  background: #1d4ed8;
  transform: translateX(3px);
}

/* Arrows */
.hc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  z-index: 10;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.hc-arrow:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.4);
}

.hc-arrow svg {
  width: 20px;
  height: 20px;
}

.hc-arrow-prev { left: 20px; }
.hc-arrow-next { right: 20px; }

/* Dots */
.hc-dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.hc-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.4);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: width 0.3s ease, background 0.3s ease;
}

.hc-dot.active {
  width: 28px;
  background: #fff;
}

/* Counter */
.hc-counter {
  position: absolute;
  bottom: 20px;
  right: 80px;
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  z-index: 10;
}

.hc-counter #hc-current {
  color: #fff;
  font-size: 1rem;
}

/* Carousel responsive */
@media (max-width: 768px) {
  .gallery-teaser-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .glt-tall { grid-row: span 1; }
  .gallery-teaser-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .hc-slide { height: 420px; }
  .hc-title { font-size: 2.2rem; letter-spacing: -0.5px; }
  .hc-content { padding: 40px 28px; max-width: 100%; }
  .hc-arrow { width: 36px; height: 36px; }
  .hc-arrow svg { width: 16px; height: 16px; }
  .hc-arrow-prev { left: 10px; }
  .hc-arrow-next { right: 10px; }
  .hc-counter { right: 24px; }
}

@media (max-width: 576px) {
  .hc-slide { height: 360px; }
  .hc-title { font-size: 1.8rem; }
  .hc-sub { font-size: 0.82rem; }
  .hc-cta { font-size: 0.8rem; padding: 10px 18px; }
}

/* Mobile bottom nav styles moved to style.css for global availability */
