/* ═══════════════════════════════════════════════════════════════
   CLB Studio — Company Website Theme
   BG: #f5f5f5, Accent: #5a0000, Text: #1a1a1a
   ═══════════════════════════════════════════════════════════════ */

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #f5f5f5;
  color: #1a1a1a;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: #5a0000; text-decoration: none; transition: color .2s; }
a:hover { color: #7a1a1a; }
ul { list-style: none; }

/* ── Container ─────────────────────────────────────────────── */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── Header / Navbar ───────────────────────────────────────── */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(90,0,0,.08);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav { display: flex; align-items: center; height: 72px; }
.nav__logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav__logo img { height: 72px; width: auto; padding: 8px 0; }

.nav__links { display: flex; gap: 28px; margin-left: auto; align-items: center; }
.nav__links a {
  font-size: .875rem; font-weight: 500; color: #444;
  transition: color .2s;
  position: relative;
  white-space: nowrap;
}
.nav__links a:hover { color: #5a0000; }
.nav__links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: #5a0000;
  transition: width .25s ease;
}
.nav__links a:hover::after { width: 100%; }

/* Language flags */
.nav__langs {
  display: flex; gap: 6px; margin-left: 20px; align-items: center;
  padding-left: 20px; border-left: 1px solid #ddd;
}
.nav__langs button {
  background: none; border: 2px solid transparent; border-radius: 4px;
  cursor: pointer; padding: 2px; line-height: 0;
  transition: border-color .2s, opacity .2s;
  opacity: .5;
}
.nav__langs button:hover { opacity: .8; }
.nav__langs button.active { border-color: #5a0000; opacity: 1; }
.nav__langs img { width: 22px; height: 16px; border-radius: 2px; }

/* Mobile hamburger */
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: 12px;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px; background: #5a0000;
  margin: 5px 0; transition: transform .3s, opacity .3s;
}

/* ── Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 8px;
  font-size: .95rem; font-weight: 600;
  transition: all .25s ease; cursor: pointer; border: none;
}
.btn--primary {
  background: #5a0000; color: #fff;
  box-shadow: 0 4px 14px rgba(90,0,0,.25);
}
.btn--primary:hover {
  background: #7a1a1a; color: #fff;
  box-shadow: 0 6px 20px rgba(90,0,0,.3);
  transform: translateY(-1px);
}
.btn--outline {
  background: transparent; color: #5a0000;
  border: 2px solid #5a0000;
}
.btn--outline:hover {
  background: rgba(90,0,0,.06); color: #5a0000;
}
.btn--sm { padding: 10px 24px; font-size: .85rem; }
.btn svg { width: 18px; height: 18px; }

/* ── Hero — LiveCrew Banner ────────────────────────────────── */
.hero {
  position: relative;
  padding-top: 96px;
  background: #fff;
}
.hero__banner {
  position: relative;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 24px;
}
.hero__banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.hero__overlay {
  text-align: center;
  padding: 40px 0 0;
}
.hero__tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600; color: #5a0000;
  text-transform: uppercase; letter-spacing: .12em;
  margin-bottom: 12px;
}
.hero__desc {
  font-size: clamp(.95rem, 1.8vw, 1.1rem);
  color: #555;
  max-width: 680px; margin: 0 auto 28px;
  line-height: 1.7;
}
.hero__actions {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
}

/* ── Carousel ─────────────────────────────────────────────── */
.carousel-section {
  background: #fff;
  padding: 40px 0 60px;
  overflow: hidden;
}
.carousel {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
}
.carousel__track {
  position: relative;
  flex: 1;
  height: 320px;
  overflow: visible;
}
.carousel__slide {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 10px;
  overflow: hidden;
  transition: all .6s cubic-bezier(.25,.8,.25,1);
  cursor: default;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(.7);
  box-shadow: 0 2px 8px rgba(0,0,0,.1);
}
.carousel__slide img {
  display: block;
  object-fit: cover;
  width: 300px;
  height: 190px;
}
/* Center / active slide */
.carousel__slide--active {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  cursor: pointer;
  pointer-events: auto;
  z-index: 3;
  box-shadow: 0 12px 40px rgba(90,0,0,.22);
}
.carousel__slide--active img {
  width: 480px;
  height: 300px;
}
/* Left neighbor */
.carousel__slide--prev {
  opacity: .65;
  transform: translate(calc(-50% - 380px), -50%) scale(.82);
  pointer-events: none;
  z-index: 2;
}
/* Right neighbor */
.carousel__slide--next {
  opacity: .65;
  transform: translate(calc(-50% + 380px), -50%) scale(.82);
  pointer-events: none;
  z-index: 2;
}
/* Far left (peek) */
.carousel__slide--far-prev {
  opacity: .3;
  transform: translate(calc(-50% - 660px), -50%) scale(.65);
  z-index: 1;
}
/* Far right (peek) */
.carousel__slide--far-next {
  opacity: .3;
  transform: translate(calc(-50% + 660px), -50%) scale(.65);
  z-index: 1;
}
.carousel__btn {
  flex-shrink: 0;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(90,0,0,.15);
  background: #fff;
  color: #5a0000;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .2s;
  z-index: 3;
}
.carousel__btn:hover {
  background: #5a0000;
  color: #fff;
  border-color: #5a0000;
}
.carousel__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}
.carousel__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(90,0,0,.15);
  cursor: pointer;
  transition: all .25s;
  padding: 0;
}
.carousel__dot--active {
  background: #5a0000;
  transform: scale(1.25);
}

/* ── Lightbox ─────────────────────────────────────────────── */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.85);
  align-items: center;
  justify-content: center;
}
.lightbox.open {
  display: flex;
}
.lightbox__img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 16px 64px rgba(0,0,0,.5);
  object-fit: contain;
}
.lightbox__close {
  position: absolute;
  top: 24px; right: 32px;
  background: none; border: none;
  color: #fff; font-size: 2.5rem;
  cursor: pointer; line-height: 1;
  transition: transform .2s;
}
.lightbox__close:hover {
  transform: scale(1.2);
}

/* ── Sections common ───────────────────────────────────────── */
section { padding: 80px 0; }
.section__header { text-align: center; margin-bottom: 48px; }
.section__title {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 800; margin-bottom: 8px; color: #1a1a1a;
}
.section__title span { color: #5a0000; }
.section__subtitle {
  font-size: 1.05rem; color: #666; max-width: 540px; margin: 0 auto;
}

/* ── Features ──────────────────────────────────────────────── */
.features { background: #fff; }
.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

/* Feature cards inside product */
.feature-card {
  background: #fff; border-radius: 12px;
  padding: 24px; transition: transform .25s, box-shadow .25s;
  border: 1px solid rgba(0,0,0,.04);
}
.feature-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.feature-card__icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(90,0,0,.08); color: #5a0000;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 12px;
}
.feature-card h4 {
  font-size: .95rem; font-weight: 700; margin-bottom: 6px;
  color: #1a1a1a;
}
.feature-card p { font-size: .85rem; color: #555; line-height: 1.65; }

/* ── Feature photo breaks ──────────────────────────────────── */
.feature-photo {
  display: flex; align-items: center; gap: 40px;
  margin: 48px 0;
  background: #f5f5f5; border-radius: 16px;
  overflow: hidden;
}
.feature-photo--reverse { flex-direction: row-reverse; }
.feature-photo__img {
  flex: 1; min-width: 0;
}
.feature-photo__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.feature-photo__text {
  flex: 1; padding: 36px;
}
.feature-photo__text h3 {
  font-size: 1.4rem; font-weight: 800;
  color: #1a1a1a; margin-bottom: 12px;
}
.feature-photo__text p {
  font-size: .95rem; color: #555; line-height: 1.7;
}

/* ── Gallery ──────────────────────────────────────────────── */
.gallery { background: #f5f5f5; }
.gallery__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.gallery__item {
  position: relative; overflow: hidden;
  border-radius: 12px;
}
.gallery__item--wide {
  grid-column: 1 / -1;
}
.gallery__item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.gallery__item:hover img {
  transform: scale(1.03);
}
.gallery__caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(0,0,0,.7) 0%, transparent 100%);
  color: #fff; padding: 32px 20px 16px;
  font-size: .85rem; font-weight: 500;
}

/* ── Where to Buy ──────────────────────────────────────────── */
.buy { background: #f5f5f5; }
.buy__stores {
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
}
.store-card {
  background: #fff; border-radius: 12px; padding: 32px 40px;
  text-align: center; min-width: 200px;
  border: 1px solid rgba(0,0,0,.04);
  transition: transform .25s, box-shadow .25s;
}
.store-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.store-card__icon {
  width: 56px; height: 56px; border-radius: 14px;
  background: rgba(90,0,0,.08); color: #5a0000;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; font-size: 1.5rem;
}
.store-card h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.store-card p { font-size: .85rem; color: #888; }
.buy__soon {
  text-align: center; font-size: 1rem; color: #888;
  background: #fff; border-radius: 12px; padding: 40px;
  border: 2px dashed #ddd;
}

/* ── Promotions ────────────────────────────────────────────── */
.promos {
  background: linear-gradient(135deg, #5a0000 0%, #3a0000 100%);
  color: #fff;
}
.promos .section__title { color: #fff; }
.promos .section__subtitle { color: rgba(255,255,255,.7); }
.promos__empty {
  text-align: center; font-size: 1rem; color: rgba(255,255,255,.6);
  background: rgba(255,255,255,.08); border-radius: 12px; padding: 40px;
  border: 2px dashed rgba(255,255,255,.15);
}
/* Future: promo cards */
.promo-card {
  background: rgba(255,255,255,.1); border-radius: 12px;
  padding: 28px; border: 1px solid rgba(255,255,255,.1);
}
.promo-card h4 { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.promo-card p { font-size: .9rem; color: rgba(255,255,255,.8); }

/* ── About ─────────────────────────────────────────────────── */
.about { background: #fff; }
.about__content {
  max-width: 720px; margin: 0 auto; text-align: center;
}
.about__content p {
  font-size: 1.05rem; color: #555; line-height: 1.8;
  margin-bottom: 20px;
}
.about__content p:last-child { margin-bottom: 0; }

/* ── FAQ ───────────────────────────────────────────────────── */
.faq { background: #f5f5f5; }
.faq__list { max-width: 720px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid #ddd; }
.faq__q {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 0; font-size: 1rem; font-weight: 600;
  color: #1a1a1a; text-align: left;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
}
.faq__q:hover { color: #5a0000; }
.faq__q::after {
  content: '+'; font-size: 1.4rem; font-weight: 300;
  color: #5a0000; transition: transform .3s;
  flex-shrink: 0;
}
.faq__item.open .faq__q::after { content: '\2212'; }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq__item.open .faq__a { max-height: 200px; }
.faq__a p {
  padding-bottom: 20px; font-size: .9rem;
  color: #555; line-height: 1.7;
}

/* ── Footer ────────────────────────────────────────────────── */
.footer {
  background: #1a1a1a; color: rgba(255,255,255,.5);
  padding: 40px 0; font-size: .85rem;
}
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: #fff; }
.footer__inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px;
}
.footer__brand { max-width: 280px; }
.footer__brand img { height: 40px; margin-bottom: 12px; }
.footer__brand p { color: rgba(255,255,255,.4); line-height: 1.6; }
.footer__col h4 {
  font-size: .8rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .08em; color: rgba(255,255,255,.3);
  margin-bottom: 12px;
}
.footer__col a {
  display: block; padding: 3px 0; font-size: .9rem;
  color: rgba(255,255,255,.6);
}
.footer__col a:hover { color: #fff; }
.footer__bottom {
  margin-top: 32px; padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.08);
  text-align: center; color: rgba(255,255,255,.3);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav__links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; border-bottom: 1px solid #eee;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
  }
  .nav__links.open { display: flex; }
  .nav__links a { padding: 14px 24px; border-bottom: 1px solid #f0f0f0; width: 100%; }
  .nav__links a::after { display: none; }
  .nav__langs { margin-left: 0; padding: 14px 24px; border-left: none; padding-left: 24px; }
  .nav__toggle { display: block; margin-left: auto; }

  .hero__overlay { padding: 28px 0 0; }

  .features__grid { grid-template-columns: 1fr; }

  .feature-photo,
  .feature-photo--reverse { flex-direction: column; }
  .feature-photo__text { padding: 24px; }

  .carousel__track { height: 220px; }
  .carousel__slide img { width: 200px; height: 130px; }
  .carousel__slide--active img { width: 280px; height: 180px; }
  .carousel__slide--prev { transform: translate(calc(-50% - 220px), -50%) scale(.82); }
  .carousel__slide--next { transform: translate(calc(-50% + 220px), -50%) scale(.82); }
  .carousel__slide--far-prev,
  .carousel__slide--far-next { display: none; }

  .gallery__grid { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: auto; }

  .footer__inner { flex-direction: column; align-items: center; text-align: center; }
  .footer__brand { text-align: center; }
}

