/* ============================================
   LUXE — Homepage Redesign Styles
   ============================================ */

/* ---- Hero trust bar ---- */
.hero-trust {
  position: absolute;
  bottom: 0;
  left: 0; right: 0;
  background: rgba(10,10,10,0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  padding: 16px 32px;
  border-top: 1px solid rgba(201,168,76,0.15);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}
.hero-trust-item svg { color: var(--gold); flex-shrink: 0; }
.hero-trust-sep { color: rgba(255,255,255,0.2); font-size: 16px; }

/* ---- Hero primary CTA emphasis ---- */
.hero-cta-main {
  position: relative;
  background: var(--gold);
  border-color: var(--gold);
  color: var(--black);
  box-shadow: 0 0 0 0 rgba(201,168,76,0.4);
  animation: heroCtaPulse 2.6s ease-in-out infinite;
}
.hero-cta-main:hover {
  background: var(--gold-3);
  border-color: var(--gold-3);
  color: var(--black);
}
@keyframes heroCtaPulse {
  0%   { box-shadow: 0 0 0 0 rgba(201,168,76,0.35); }
  70%  { box-shadow: 0 0 0 14px rgba(201,168,76,0); }
  100% { box-shadow: 0 0 0 0 rgba(201,168,76,0); }
}

/* ---- Footer accent ---- */
.footer { position: relative; border-top: 1px solid var(--gold); }

/* ═══════════════════════════════════════════
   HOMEPAGE PRODUCT STRIPS (New Arrivals / Best Sellers)
   ═══════════════════════════════════════════ */
.home-strip .section-header { margin-bottom: 48px; }
.strip-sub {
  max-width: 480px;
  margin: 14px auto 0;
  font-size: 14px;
  color: var(--grey);
  font-weight: 300;
  letter-spacing: 0.01em;
}
.home-strip-grid {
  min-height: 120px;
}
.home-strip .load-more-wrap { margin-top: 48px; }

/* ═══════════════════════════════════════════
   WHY CHOOSE LUXE
   ═══════════════════════════════════════════ */
.why-luxe {
  background: var(--black);
  padding: 100px 0;
  overflow: hidden;
}
.why-luxe-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.why-luxe-header {
  text-align: center;
  margin-bottom: 72px;
}
.why-luxe-sub {
  font-size: 15px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  max-width: 480px;
  margin: 16px auto 0;
  line-height: 1.7;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.why-card {
  padding: 48px 36px;
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 0;
  transition: border-color 0.3s, background 0.3s;
  text-align: center;
}
.why-card:hover {
  background: rgba(201,168,76,0.04);
  border-color: rgba(201,168,76,0.2);
}
.why-icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76,0.06);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  color: var(--gold);
  transition: border-color 0.3s, background 0.3s;
}
.why-card:hover .why-icon {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
}
.why-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.why-card p {
  font-size: 13px;
  line-height: 1.75;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
}

/* ═══════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 56px;
}
.testimonial-card {
  background: var(--white);
  padding: 36px 32px;
  border-radius: 2px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.3s, transform 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-family: var(--font-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--black);
  font-style: italic;
  flex: 1;
}
.testimonial-card blockquote::before { content: '\201C'; }
.testimonial-card blockquote::after  { content: '\201D'; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(0,0,0,0.06);
}
.testimonial-author img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--black);
  letter-spacing: 0.04em;
}
.testimonial-author span {
  font-size: 11px;
  color: var(--grey);
  letter-spacing: 0.06em;
}

/* Aggregate rating */
.testimonials-aggregate {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.agg-stars { font-size: 20px; color: var(--gold); letter-spacing: 2px; }
.agg-score {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--black);
}
.agg-count { font-size: 12px; color: var(--grey); letter-spacing: 0.08em; }
.agg-platforms {
  font-size: 11px;
  color: rgba(0,0,0,0.35);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: flex;
  gap: 8px;
  align-items: center;
}
.agg-sep { color: rgba(0,0,0,0.2); }

/* ═══════════════════════════════════════════
   BRAND LOGOS
   ═══════════════════════════════════════════ */
.brand-logos { padding: 60px 0; }
.brand-logos-header { text-align: center; margin-bottom: 40px; }
.brand-logos-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.brand-logo-item {
  padding: 20px 40px;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: rgba(0,0,0,0.22);
  border-right: 1px solid rgba(0,0,0,0.08);
  transition: color 0.25s ease;
  white-space: nowrap;
}
.brand-logo-item:last-child { border-right: none; }
.brand-logo-item:hover { color: rgba(0,0,0,0.55); }

/* ═══════════════════════════════════════════
   INSTAGRAM GALLERY
   ═══════════════════════════════════════════ */
.instagram-gallery .section-header { margin-bottom: 12px; }
.ig-sub {
  font-size: 14px;
  color: rgba(255,255,255,0.45);
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.6;
}
.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  margin-bottom: 40px;
}
.ig-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  display: block;
}
.ig-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94), filter 0.4s ease;
  filter: brightness(0.85);
}
.ig-item:hover img {
  transform: scale(1.08);
  filter: brightness(1);
}
.ig-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  opacity: 0;
  transition: background 0.35s ease, opacity 0.35s ease;
}
.ig-item:hover .ig-overlay {
  background: rgba(10,10,10,0.35);
  opacity: 1;
}
.ig-cta { text-align: center; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-logo-item { padding: 16px 24px; font-size: 16px; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .hero-trust { display: none; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .why-luxe-inner { padding: 0 24px; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 520px; margin-left: auto; margin-right: auto; }
  .ig-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 600px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-card { padding: 36px 24px; }
  .why-luxe { padding: 64px 0; }
  .testimonials-grid { gap: 16px; }
  .brand-logos-row { gap: 0; }
  .brand-logo-item { padding: 12px 16px; font-size: 14px; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); width: 50%; text-align: center; }
  .brand-logo-item:nth-child(even) { border-left: 1px solid rgba(0,0,0,0.06); }
  .ig-grid { grid-template-columns: repeat(2, 1fr); gap: 3px; }
  .ig-item:last-child { display: none; }
}
