/* Bold & Beautiful — Яркие трендовые брови */
:root {
  --t-bg: #FFFFFF;
  --t-bg-alt: #FFF0F6;
  --t-text: #1A1A2E;
  --t-text-muted: #6B6B80;
  --t-accent: #E91E8C;
  --t-accent-hover: #D11A7D;
  --t-surface: #FFF5FA;
  --t-border: #F0D4E4;
  --t-gold: #FFB800;
  --t-font-heading: 'Bebas Neue', sans-serif;
  --t-font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

/* ---- Hero shimmer bg ---- */
@keyframes heroShimmer {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-bg {
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF0F6 25%, #FFF5FA 50%, #FFE0F0 75%, #FFFFFF 100%);
  background-size: 400% 400%;
  animation: heroShimmer 12s ease infinite;
}

/* ---- Float anim ---- */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}

/* ---- Nav scrolled shadow ---- */
.nav-scrolled { box-shadow: 0 2px 20px rgba(233,30,140,0.1); }

/* ---- Price popular badge ---- */
.price-popular {
  background: var(--t-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-left: 0.4rem;
  vertical-align: middle;
}

/* ---- Portfolio slides ---- */
.portfolio-slide {
  position: relative;
  min-height: 300px;
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}
.portfolio-slide .trend-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 2;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  background: linear-gradient(to top, rgba(26,26,46,0.7) 0%, transparent 50%);
}

/* ---- Trend badges ---- */
.trend-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  border-radius: 2rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--t-accent);
  color: #fff;
}
.trend-badge.trend-new {
  background: #25D366;
}
.trend-badge.trend-top {
  background: var(--t-gold);
  color: #1A1A2E;
}

/* ---- FAQ ---- */
.faq-item summary {
  cursor: pointer;
  padding: 1rem 1.25rem;
  font-weight: 600;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-radius: 0.75rem;
  transition: background 0.3s;
  min-height: 48px;
  font-size: 0.95rem;
}
.faq-item summary:hover { background: var(--t-surface); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item[open] summary .faq-chevron { transform: rotate(180deg); }
.faq-chevron {
  transition: transform 0.3s;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

/* ---- Swiper pagination ---- */
.reviews-swiper .swiper-pagination-bullet-active {
  background: var(--t-accent) !important;
}
.portfolio-swiper .swiper-pagination-bullet-active {
  background: var(--t-accent) !important;
}

/* ---- Floating desktop CTA ---- */
.floating-cta a {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  transition: transform 0.3s;
}
.floating-cta a:hover { transform: scale(1.1); }

/* ==========================================
   MOBILE (max-width: 767px)
   ========================================== */
@media (max-width: 767px) {
  .mobile-cta-bar {
    display: flex !important;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 55;
    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 0.625rem 0.75rem;
    padding-bottom: calc(0.625rem + env(safe-area-inset-bottom, 0px));
    gap: 0.5rem;
    border-top: 1px solid var(--t-accent);
    box-shadow: 0 -4px 20px rgba(233,30,140,0.08);
  }
  .mobile-cta-bar a {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    border-radius: 1rem;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
  }

  .floating-cta { display: none !important; }

  body { padding-bottom: calc(3.5rem + env(safe-area-inset-bottom, 0px)); }

  .portfolio-slide { min-height: 260px; }

  .faq-item summary { padding: 0.875rem 1rem; font-size: 0.875rem; }
}

/* ==========================================
   SMALL SCREENS (max-width: 480px)
   ========================================== */
@media (max-width: 480px) {
  .portfolio-slide { min-height: 220px; }
}
