/* ---- Homepage v2 additions ---- */

.hero-fallback {
  min-height: 60vh;
  background: linear-gradient(135deg, var(--brand-dark, #4a2c2a), var(--brand, #e75480));
}
.hero-slide-img { max-height: 640px; object-fit: cover; width: 100%; }
.hero-caption h1 { font-weight: 800; text-shadow: 0 2px 12px rgba(0,0,0,.4); }
.hero-caption p { text-shadow: 0 2px 10px rgba(0,0,0,.4); }

/* Video hero slide - full-bleed background video, cinematic feel */
.hero-video-wrap { position: relative; width: 100%; height: 640px; max-height: 80vh; overflow: hidden; background: #000; }
.hero-video-frame {
  position: absolute; top: 50%; left: 50%; width: 177.78vh; height: 100%; min-width: 100%; min-height: 56.25vw;
  transform: translate(-50%, -50%); border: 0; pointer-events: none;
}
.hero-video-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,.55), rgba(0,0,0,.15)); }
@media (max-width: 767px) { .hero-video-wrap, .hero-slide-img { height: 420px; max-height: 420px; } }

/* Brand Introduction band */
.brand-intro-band { background: #fff; }
.brand-intro-title { font-weight: 800; color: var(--brand-dark, #4a2c2a); font-size: 2rem; }
.brand-intro-sub { color: #777; max-width: 640px; margin: 0 auto; }

/* Category cards ("Explore Our Products") */
.cat-card-link { text-decoration: none; display: block; }
.cat-card { background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.06); transition: transform .2s; }
.cat-card-link:hover .cat-card { transform: translateY(-5px); }
.cat-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }
.cat-card-noimg { width: 100%; aspect-ratio: 1/1; display: flex; align-items: center; justify-content: center; background: var(--brand2, #7ed6c1); color: #fff; font-size: 2rem; }
.cat-card-label { padding: 12px; text-align: center; font-weight: 700; color: var(--brand-dark, #4a2c2a); }

/* Brand & Media Highlights grid */
.media-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 991px) { .media-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575px) { .media-grid { grid-template-columns: repeat(2, 1fr); } }
.media-card { position: relative; display: block; border-radius: 14px; overflow: hidden; box-shadow: 0 2px 10px rgba(0,0,0,.08); }
.media-card img { width: 100%; aspect-ratio: 1/1; object-fit: cover; transition: transform .3s; }
.media-card:hover img { transform: scale(1.06); }
.media-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 42px; height: 42px; border-radius: 50%; background: var(--brand, #e75480); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; }

/* Testimonial slider */
.ts-slider { overflow: hidden; padding: 0 44px; }
.ts-track { display: flex; gap: 18px; transition: transform .4s ease; }
.ts-card { background: #fff; border-radius: 18px; padding: 22px; box-shadow: 0 2px 10px rgba(0,0,0,.06); flex: 0 0 calc(25% - 14px); min-width: 0; }
@media (max-width: 991px) { .ts-card { flex-basis: calc(50% - 9px); } }
@media (max-width: 575px) { .ts-card { flex-basis: 100%; } }
.ts-stars { color: #f5b301; font-size: .85rem; }
.ts-content { font-size: .9rem; color: #555; min-height: 70px; }
.ts-avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.ts-avatar-fallback { width: 38px; height: 38px; border-radius: 50%; background: var(--brand, #e75480); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; }
.ts-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%; border: none; background: #fff; box-shadow: 0 2px 8px rgba(0,0,0,.12); color: var(--brand, #e75480); }
.ts-prev { left: 0; }
.ts-next { right: 0; }

/* Final CTA band */
.final-cta-band { background: linear-gradient(135deg, var(--brand-dark, #4a2c2a), var(--brand, #e75480)); color: #fff; }
.final-cta-title { font-weight: 800; font-size: 2.2rem; letter-spacing: .02em; }
.final-cta-sub { opacity: .9; max-width: 560px; margin: 0 auto; }
