/* ═══════════════════════════════════════
   TOP RATE & TOP ITEMS
═══════════════════════════════════════ */
.top-items-section {
  background-color: #fce154;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin-bottom: 60px;
  display: flex;
  gap: 30px;
}

.promo-card {
  background-color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  flex: 0 0 350px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-card__image {
  margin-bottom: 30px;
  display: flex;
  justify-content: center;
}

.promo-card__image img {
  max-height: 200px;
}

.promo-card__title {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 15px;
  color: var(--text-dark);
}

.promo-card__desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 25px;
}

.promo-card .btn {
  align-self: center;
}

.top-items-grid {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.top-items-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.top-items-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.top-items-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
}

.top-items-nav {
  display: flex;
  gap: 10px;
}

.top-items-nav button {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-dark);
  transition: var(--transition);
}

.top-items-nav button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.mini-product-card {
  background-color: var(--white);
  border-radius: var(--radius-md);
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 15px;
  transition: var(--transition);
}

.mini-product-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}

.mini-product-card__image {
  width: 80px;
  height: 80px;
  background-color: var(--bg-color);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}

.mini-product-card__image img {
  max-width: 100%;
  max-height: 100%;
  mix-blend-mode: multiply;
}

.mini-product-card__content {
  flex: 1;
}

.mini-product-card__title {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mini-product-card__rating {
  font-size: 11px;
  color: var(--secondary-color);
  margin-bottom: 8px;
}

.mini-product-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.mini-product-card__price {
  font-weight: 700;
  font-size: 15px;
}

.mini-product-card__price del {
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 400;
  margin-left: 5px;
}

.mini-product-card__add {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 5px;
}

.mini-product-card__add:hover {
  background-color: #095c62;
}

/* ═══════════════════════════════════════
   OUR PRODUCTS FILTER
═══════════════════════════════════════ */
.products-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}

.products-filter-title {
  font-size: 28px;
  font-weight: 800;
}

.products-filter-tabs {
  display: flex;
  gap: 15px;
  overflow-x: auto;
  padding-bottom: 5px;
}

.products-filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab {
  padding: 8px 20px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
  background-color: var(--white);
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}

.filter-tab.active, .filter-tab:hover {
  background-color: var(--primary-color);
  color: var(--white);
  border-color: var(--primary-color);
}

/* ═══════════════════════════════════════
   PROMO BANNERS ROW
═══════════════════════════════════════ */
.promo-banners-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.promo-banner {
  border-radius: var(--radius-lg);
  padding: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  transition: var(--transition);
}

.promo-banner:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.promo-banner--pink {
  background-color: #fde8f5;
}

.promo-banner--yellow {
  background-color: #fef08a;
}

.promo-banner--green {
  background-color: #bbf7d0;
}

.promo-banner__content {
  flex: 1;
}

.promo-banner__title {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--text-dark);
  line-height: 1.2;
}

.promo-banner__desc {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.promo-banner__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  color: var(--text-dark);
}

.promo-banner__btn i {
  background-color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

.promo-banner__btn:hover {
  background-color: var(--white);
}

.promo-banner__image {
  flex: 0 0 120px;
}

.promo-banner__image img {
  max-width: 100%;
}

/* ═══════════════════════════════════════
   NEWLY LAUNCHED & THEMED SECTIONS
═══════════════════════════════════════ */
.themed-section {
  padding: 38px 0;
  border-radius: 40px;
  margin-bottom: 34px;
  position: relative;
}

.themed-section--teal {
  background-color: #a8e6cf;
}

.themed-section--pink {
  background-color: #f8d7e8;
}

.themed-section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.themed-section-header h2 {
  font-size: 28px;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.themed-section-header p {
  color: var(--text-dark);
  opacity: 0.8;
  font-size: 14px;
}

.themed-section-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}

.themed-section-nav {
  display: flex;
  gap: 10px;
}

.themed-section-nav button {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.themed-section-nav button:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-view-all {
  background-color: var(--white);
  color: var(--text-dark);
  padding: 10px 20px;
  border-radius: var(--radius-full);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-view-all i {
  background-color: var(--primary-color);
  color: var(--white);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}

/* ═══════════════════════════════════════
   HOT DEALS SECTION
═══════════════════════════════════════ */
.hot-deals-section {
  display: flex;
  gap: 30px;
  margin-bottom: 60px;
}

.hot-deals-left {
  flex: 0 0 300px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hot-deals-label {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 14px;
}

.hot-deals-title {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}

.hot-deals-desc {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 30px;
}

.countdown-timer {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.countdown-box {
  background-color: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 15px 10px;
  text-align: center;
  min-width: 60px;
  box-shadow: var(--shadow-sm);
}

.countdown-val {
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: var(--danger);
  margin-bottom: 5px;
}

.countdown-label {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
}

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

/* ═══════════════════════════════════════
   BRAND LOGO CAROUSEL (with dots)
═══════════════════════════════════════ */
.brands-section {
  padding: 44px 0;
  background: var(--white);
  border-top: 1px solid var(--border-color);
  margin-bottom: 40px;
}

.brands-section__header {
  text-align: center;
  margin-bottom: 24px;
}

.brands-section__header h2 {
  font-size: 24px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 0 0 4px;
  letter-spacing: -0.3px;
}

.brands-section__header p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

/* ─── Carousel ─── */
.brand-carousel {
  position: relative;
  padding: 0 8px;
}

.brand-carousel__viewport {
  position: relative;
  overflow: hidden;
}

.brand-carousel__track {
  position: relative;
  min-height: 132px;
}

.brand-carousel__slide {
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  gap: 24px;
  flex-wrap: nowrap;
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
  position: absolute;
  inset: 0;
}

.brand-carousel__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

/* ─── A single brand — circular avatar with the name beneath ─── */
.brand-logo {
  flex: 1 1 0;
  min-width: 0;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 4px;
  text-decoration: none;
}

/* The round image well — uniform circle for every brand. */
.brand-logo__circle {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: #f5f6f8;
  border: 1px solid #eceef1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease,
              background .25s ease, border-color .25s ease;
}

.brand-logo:hover .brand-logo__circle {
  transform: translateY(-3px);
  background: #ffffff;
  border-color: #e2e8f0;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.10);
}

/* Image fills and fits inside the circle. */
.brand-logo__circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  /* Uniform greyscale at rest, full colour on hover. */
  filter: grayscale(1);
  opacity: 0.75;
  transition: filter .25s ease, opacity .25s ease;
}

.brand-logo:hover .brand-logo__circle img {
  filter: grayscale(0);
  opacity: 1;
}

/* Fallback initial when a brand has no logo image. */
.brand-logo__initial {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  font-weight: 800;
  color: #94a3b8;
  text-transform: uppercase;
  transition: color .25s ease;
}

.brand-logo:hover .brand-logo__initial {
  color: var(--primary-color, #0b7077);
}

/* Brand name beneath the circle. */
.brand-logo__name {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
  color: #64748b;
  text-align: center;
  max-width: 110px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color .25s ease;
}

.brand-logo:hover .brand-logo__name {
  color: var(--text-dark, #0f172a);
}

/* ─── Dot pagination ─── */
.brand-carousel__dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
}

.brand-carousel__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  background: #cbd5e1;
  border-radius: 50%;
  cursor: pointer;
  transition: width .25s ease, background-color .25s ease;
}

.brand-carousel__dot:hover {
  background: #94a3b8;
}

.brand-carousel__dot.is-active {
  width: 24px;
  border-radius: 4px;
  background: var(--primary-color);
}

/* ─── Empty state ─── */
.brands-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--text-muted);
}

.brands-empty i { font-size: 36px; color: #cbd5e1; margin-bottom: 10px; }
.brands-empty p { margin: 0; font-size: 13px; }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  .brands-section { padding: 32px 0; margin-bottom: 28px; }
  .brands-section__header h2 { font-size: 20px; }
  .brand-carousel__slide { gap: 16px; }
  .brand-logo__circle { width: 72px; height: 72px; }
  .brand-logo__initial { font-size: 26px; }
  .brand-logo__name { font-size: 12px; max-width: 90px; }
}

@media (max-width: 480px) {
  .brand-carousel__slide { gap: 10px; }
  .brand-logo__circle { width: 58px; height: 58px; }
  .brand-logo__initial { font-size: 22px; }
  .brand-logo__name { font-size: 11px; max-width: 72px; }
  .brand-carousel__dot { width: 7px; height: 7px; }
  .brand-carousel__dot.is-active { width: 18px; }
}

/* ─── Back-compat aliases for old class names elsewhere ─── */
.shop-by-brand { padding: 44px 0; }
.shop-by-brand-header { text-align: center; margin-bottom: 24px; }
.shop-by-brand-header h2 { font-size: 24px; font-weight: 800; color: var(--text-dark); }
.brand-slider-container { overflow: hidden; -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent); }
.brand-slider-track { display: flex; gap: 40px; width: max-content; align-items: center; }
.brand-item { display: inline-flex; align-items: center; justify-content: center; height: 56px; min-width: 120px; padding: 0 12px; text-decoration: none; opacity: 0.92; transition: opacity .2s ease, transform .2s ease; }
.brand-item:hover { opacity: 1; transform: translateY(-2px); }
.brand-item img { max-height: 100%; max-width: 140px; object-fit: contain; }

/* RESPONSIVE */
@media (max-width: 992px) {
  .top-items-section {
    flex-direction: column;
  }
  .promo-card {
    flex: auto;
  }
  .promo-banners-row {
    grid-template-columns: 1fr;
  }
  .products-filter-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .top-items-grid {
    grid-template-columns: 1fr;
  }
}

/* ═══════════════════════════════════════
   HIGH-CONVERTING CONTENT SECTIONS
═══════════════════════════════════════ */

/* ── Announcement bar ── */
.ann-bar { position: relative; width: 100%; }
.ann-bar__inner { max-width: 1280px; margin: 0 auto; padding: 9px 44px; display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; font-size: 14px; font-weight: 600; text-align: center; }
.ann-bar__cta { display: inline-flex; align-items: center; gap: 6px; font-weight: 800; text-decoration: none; border-bottom: 1.5px solid; padding-bottom: 1px; }
.ann-bar__cta i { font-size: 10px; }
.ann-bar__x { position: absolute; right: 14px; top: 50%; transform: translateY(-50%); background: none; border: none; font-size: 22px; line-height: 1; cursor: pointer; opacity: .7; }
.ann-bar__x:hover { opacity: 1; }

/* ── Countdown / urgency banner ── */
.cd-banner { padding: 30px 0; color: #fff; }
.cd-banner__inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.cd-banner__title { font-size: clamp(20px, 3vw, 30px); font-weight: 900; margin: 0 0 4px; color: #fff; }
.cd-banner__sub { margin: 0; opacity: .92; font-size: 14px; }
.cd-banner__timer { display: flex; align-items: center; gap: 8px; }
.cd-unit { background: rgba(255,255,255,.16); border-radius: 12px; min-width: 60px; padding: 8px 6px; text-align: center; backdrop-filter: blur(2px); }
.cd-unit span { display: block; font-size: 26px; font-weight: 900; line-height: 1; font-variant-numeric: tabular-nums; }
.cd-unit small { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; opacity: .85; }
.cd-sep { font-size: 24px; font-weight: 800; opacity: .6; }
.cd-expired { font-size: 16px; font-weight: 800; background: rgba(255,255,255,.16); padding: 12px 20px; border-radius: 12px; }
.cd-banner__btn { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: #111827; font-weight: 800; padding: 13px 26px; border-radius: 999px; text-decoration: none; white-space: nowrap; transition: transform .12s, box-shadow .12s; }
.cd-banner__btn:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,.22); color: #111827; }
@media (max-width: 760px) { .cd-banner__inner { flex-direction: column; text-align: center; } }

/* ── CTA banner ── */
.cta-band { padding: 34px 0; }
.cta-band__box { border-radius: 20px; padding: 48px 36px; color: #fff; }
.cta-band__box--center { text-align: center; }
.cta-band__box--left { text-align: left; }
.cta-band__title { font-size: clamp(22px, 3.4vw, 34px); font-weight: 900; margin: 0 0 10px; color: #fff; line-height: 1.2; }
.cta-band__sub { font-size: clamp(14px, 1.6vw, 17px); opacity: .94; margin: 0 0 22px; max-width: 640px; }
.cta-band__box--center .cta-band__sub { margin-left: auto; margin-right: auto; }
.cta-band__btn { display: inline-flex; align-items: center; gap: 9px; background: #fff; color: #111827; font-weight: 800; font-size: 15px; padding: 14px 30px; border-radius: 999px; text-decoration: none; transition: transform .12s, box-shadow .12s; }
.cta-band__btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.25); color: #111827; }

/* ── Trust badges ── */
.trust-badges { padding: 30px 0; }
.trust-badges__heading { text-align: center; font-size: clamp(18px, 2.4vw, 24px); font-weight: 800; margin: 0 0 22px; color: var(--text-dark, #1e293b); }
.trust-badges__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 14px; }
.trust-badge { display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--border-color, #e2e8f0); border-radius: 14px; padding: 16px 18px; transition: box-shadow .15s, transform .1s; }
.trust-badge:hover { box-shadow: 0 10px 26px -16px rgba(2,6,23,.3); transform: translateY(-2px); }
.trust-badge__ic { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 19px; background: color-mix(in srgb, var(--primary-color, #0d9488) 12%, #fff); color: var(--primary-color, #0d9488); flex-shrink: 0; }
.trust-badge__title { font-weight: 800; font-size: 14px; color: var(--text-dark, #1e293b); }
.trust-badge__sub { font-size: 12px; color: var(--text-muted, #64748b); margin-top: 2px; }

/* ── FAQ accordion ── */
.faq-sec { padding: 40px 0; }
.faq-sec__head { text-align: center; margin-bottom: 26px; }
.faq-sec__title { font-size: clamp(22px, 3vw, 30px); font-weight: 900; margin: 0; color: var(--text-dark, #1e293b); }
.faq-sec__sub { color: var(--text-muted, #64748b); margin: 8px 0 0; font-size: 15px; }
.faq-sec__list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--border-color, #e2e8f0); border-radius: 14px; overflow: hidden; }
.faq-item__q { list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 20px; font-weight: 700; font-size: 15px; color: var(--text-dark, #1e293b); }
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__chev { transition: transform .2s; font-size: 13px; color: var(--primary-color, #0d9488); flex-shrink: 0; }
.faq-item[open] .faq-item__chev { transform: rotate(180deg); }
.faq-item__a { padding: 0 20px 18px; color: var(--text-muted, #475569); font-size: 14px; line-height: 1.7; }
.faq-item[open] .faq-item__q { border-bottom: 1px solid #f1f5f9; }

/* ── Testimonials / social proof ── */
.ts-sec { padding: 40px 0; }
.ts-sec__head { text-align: center; margin-bottom: 26px; }
.ts-sec__title { font-size: clamp(22px, 3vw, 30px); font-weight: 900; margin: 0; color: var(--text-dark, #1e293b); }
.ts-sec__sub { color: var(--text-muted, #64748b); margin: 8px 0 0; font-size: 15px; }
.ts-track--slider { display: flex; gap: 18px; overflow-x: auto; scroll-snap-type: x mandatory; padding: 6px 2px 14px; -webkit-overflow-scrolling: touch; }
.ts-track--slider::-webkit-scrollbar { height: 6px; }
.ts-track--slider::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 6px; }
.ts-track--slider .ts-card { flex: 0 0 340px; scroll-snap-align: start; }
.ts-track--grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 18px; }
.ts-card { background: #fff; border: 1px solid var(--border-color, #e2e8f0); border-radius: 16px; padding: 22px; display: flex; flex-direction: column; }
.ts-card__stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; margin-bottom: 12px; }
.ts-card__stars .far { color: #e2e8f0; }
.ts-card__quote { font-size: 15px; line-height: 1.7; color: var(--text-dark, #334155); margin: 0 0 18px; flex: 1; }
.ts-card__by { display: flex; align-items: center; gap: 12px; }
.ts-card__avatar { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.ts-card__avatar--ph { display: flex; align-items: center; justify-content: center; background: color-mix(in srgb, var(--primary-color, #0d9488) 14%, #fff); color: var(--primary-color, #0d9488); font-weight: 800; font-size: 17px; }
.ts-card__meta { display: flex; flex-direction: column; }
.ts-card__name { font-weight: 800; font-size: 14px; color: var(--text-dark, #1e293b); }
.ts-card__role { font-size: 12px; color: var(--text-muted, #64748b); }

/* ── Newsletter / lead capture ── */
.lc-sec { padding: 36px 0; }
.lc-box { border-radius: 22px; padding: 46px 30px; text-align: center; color: #fff; }
.lc-incentive { display: inline-block; background: rgba(255,255,255,.16); color: #fff; font-weight: 800; font-size: 12px; letter-spacing: .04em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; margin-bottom: 14px; }
.lc-title { font-size: clamp(22px, 3.4vw, 34px); font-weight: 900; margin: 0 0 10px; color: #fff; line-height: 1.2; }
.lc-sub { font-size: clamp(14px, 1.6vw, 17px); opacity: .92; margin: 0 auto 22px; max-width: 560px; }
.lc-form { display: flex; gap: 10px; max-width: 520px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.lc-input { flex: 1 1 260px; min-width: 0; border: none; border-radius: 999px; padding: 14px 22px; font-size: 15px; outline: none; color: #1e293b; }
.lc-btn { background: #fff; color: #111827; font-weight: 800; font-size: 15px; border: none; border-radius: 999px; padding: 14px 28px; cursor: pointer; white-space: nowrap; transition: transform .12s, box-shadow .12s; }
.lc-btn:hover { transform: translateY(-2px); box-shadow: 0 12px 30px rgba(0,0,0,.28); }
.lc-msg { display: none; margin-top: 14px; font-weight: 700; background: rgba(255,255,255,.16); border-radius: 10px; padding: 10px 16px; }
.lc-fine { font-size: 12px; opacity: .7; margin: 14px 0 0; }
