/* ============================================
   ONLINE YOGA CLUB — Landing Page Styles
   Mobile-first | CSS Custom Properties
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --dark: #1A1A1A;
  --dark-overlay: rgba(26, 26, 26, 0.65);
  --primary: #D4726A;
  --primary-hover: #C4625A;
  --accent-gold: #C9A96E;
  --light-bg: #FDF8F5;
  --white: #FFFFFF;
  --text-dark: #3D2B1F;
  --text-light: #F5F0EB;
  --text-muted: #8A7A6D;

  /* Typography */
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Raleway', Arial, sans-serif;

  /* Spacing */
  --section-padding: 60px 20px;
  --container-max: 1100px;
  --radius: 12px;
  --radius-pill: 50px;
  --radius-btn: 30px;
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

ul, ol {
  list-style: none;
}

/* --- Container --- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Section base --- */
section {
  padding: var(--section-padding);
}

/* --- Section titles --- */
.section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 40px;
  line-height: 1.2;
}

/* --- CTA Button --- */
.cta-btn {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 16px 48px;
  border-radius: var(--radius-btn);
  text-align: center;
  transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.cta-btn:hover {
  background: var(--primary-hover);
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(212, 114, 106, 0.35);
}

.cta-btn--white {
  background: var(--white);
  color: var(--dark);
}

.cta-btn--white:hover {
  background: var(--text-light);
  transform: scale(1.03);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.2);
}

.cta-wrap {
  text-align: center;
  margin-top: 40px;
}

/* --- Image placeholder --- */
.img-placeholder {
  background: linear-gradient(135deg, #e8d5cc 0%, #d4bfb3 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  padding: 16px;
  overflow: hidden;
}

.img-placeholder--dark {
  background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
  color: var(--text-muted);
}

/* --- Scroll animations --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   1. HERO SECTION
   ============================================ */
.hero {
  background: var(--dark);
  color: var(--text-light);
  text-align: center;
  padding: 60px 20px 50px;
  position: relative;
  overflow: hidden;
}

/* Background placeholder overlay */
.hero__bg {
  position: absolute;
  inset: 0;
  background: var(--dark-overlay);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero__logo {
  margin-bottom: 24px;
}

.hero__logo-img {
  max-width: 120px;
  height: auto;
  margin: 0 auto;
  border-radius: 50%;
}

.hero__pre-title {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 16px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: 1px;
}

.hero__subtitle {
  font-size: 17px;
  color: var(--text-light);
  max-width: 500px;
  margin: 0 auto 24px;
  line-height: 1.6;
}

.hero__bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 20px;
  margin-bottom: 32px;
}

.hero__bullets li {
  font-size: 15px;
  color: var(--text-light);
  position: relative;
  padding-left: 16px;
}

.hero__bullets li::before {
  content: '•';
  color: var(--primary);
  font-size: 20px;
  position: absolute;
  left: 0;
  top: -2px;
}

/* Photo + Price badge wrapper */
.hero__photo-wrap {
  position: relative;
  display: inline-block;
  margin-bottom: 28px;
}

.hero__photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  margin: 0 auto;
  border: 3px solid var(--accent-gold);
  object-fit: cover;
  object-position: top;
}

.hero__price-badge {
  position: absolute;
  right: -30px;
  bottom: 10px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  background: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8px;
}

.hero__price-old {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: line-through;
}

.hero__price-new {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
}

.hero .cta-btn {
  margin-bottom: 28px;
}

/* Urgency bar */
.hero__urgency {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.hero__urgency-item {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 14px 18px;
  text-align: left;
}

.hero__urgency-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.hero__urgency-text {
  font-size: 13px;
  line-height: 1.4;
}

.hero__urgency-text small {
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  margin-top: 2px;
}

/* Countdown timer */
.countdown {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.countdown__block {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.countdown__number {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  min-width: 36px;
}

.countdown__label {
  font-size: 10px;
  color: var(--text-muted);
  text-transform: lowercase;
  margin-top: 2px;
}

.countdown__sep {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--accent-gold);
  line-height: 1;
  margin-top: 2px;
}

.countdown__expired {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent-gold);
  font-weight: 700;
}

.hero__bonus-highlight {
  color: var(--accent-gold);
  font-weight: 600;
}


/* ============================================
   2. TARGET AUDIENCE — "Этот клуб для тебя"
   ============================================ */
.target {
  background: var(--white);
  padding: var(--section-padding);
}

.target .section-title {
  color: var(--text-dark);
}

.bubbles {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
}

.bubble {
  background: rgba(212, 114, 106, 0.08);
  border: 1px solid var(--primary);
  border-radius: var(--radius-pill);
  padding: 16px 28px;
  font-size: 14px;
  color: var(--text-dark);
  text-align: center;
  line-height: 1.5;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  /* staggered animation */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}

.bubble.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.bubble:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(212, 114, 106, 0.15);
}


/* ============================================
   3. OFFER — "Что ты получаешь"
   ============================================ */
.offer {
  background: var(--light-bg);
  padding: var(--section-padding);
}

.offer .section-title {
  color: var(--text-dark);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.offer-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.offer-card__img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}

.offer-card__body {
  padding: 20px;
}

.offer-card__title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.offer-card__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 14px;
}

.offer-card__link {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
  transition: color 0.3s ease;
}

.offer-card__link:hover {
  color: var(--primary-hover);
}


/* ============================================
   4. TRAINER — "О тренере"
   ============================================ */
.trainer {
  background: var(--dark);
  color: var(--text-light);
  padding: var(--section-padding);
}

.trainer__inner {
  max-width: 900px;
  margin: 0 auto;
}

.trainer__photo {
  width: 100%;
  max-width: 360px;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  margin: 0 auto 30px;
  border: 2px solid var(--accent-gold);
  object-fit: cover;
  object-position: top;
}

.trainer__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent-gold);
  margin-bottom: 10px;
}

.trainer__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
  line-height: 1.2;
}

.trainer__role {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.trainer__bio {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-light);
  margin-bottom: 24px;
}

.trainer__quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--primary);
  line-height: 1.4;
  margin-bottom: 30px;
}

.trainer__diplomas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.trainer__diploma-link {
  display: block;
  cursor: zoom-in;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 10px;
  overflow: hidden;
}

.trainer__diploma-link:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.trainer__diploma {
  width: 140px;
  height: 140px;
  border-radius: 10px;
  border: 1px solid var(--accent-gold);
  object-fit: cover;
}


/* ============================================
   5. REVIEWS — "Отзывы"
   ============================================ */
.reviews {
  background: var(--light-bg);
  padding: var(--section-padding);
}

.reviews .section-title {
  color: var(--text-dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.review-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  color: var(--white);
  font-weight: 700;
}

.review-card__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--text-dark);
}

.review-card__city {
  font-size: 13px;
  color: var(--text-muted);
}

.review-card__stars {
  color: var(--accent-gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card__text {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-dark);
}


/* ============================================
   6. STEPS — "Как это работает"
   ============================================ */
.steps {
  background: var(--white);
  padding: var(--section-padding);
}

.steps .section-title {
  color: var(--text-dark);
}

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 500px;
  margin: 0 auto;
}

.step {
  text-align: center;
  position: relative;
}

/* Connecting line between steps */
.step:not(:last-child)::after {
  content: '';
  display: block;
  width: 2px;
  height: 32px;
  border-left: 2px dashed var(--accent-gold);
  margin: 16px auto 0;
}

.step__number {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}

.step__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.step__text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}


/* ============================================
   7. FAQ — Accordion
   ============================================ */
.faq {
  background: var(--light-bg);
  padding: var(--section-padding);
}

.faq .section-title {
  color: var(--text-dark);
}

.faq-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  transition: color 0.3s ease;
  gap: 12px;
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question__icon {
  font-size: 20px;
  font-weight: 400;
  color: var(--primary);
  flex-shrink: 0;
  transition: transform 0.3s ease;
  width: 24px;
  text-align: center;
}

.faq-item.is-open .faq-question__icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer__inner {
  padding: 0 20px 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-muted);
}


/* ============================================
   8. FINAL CTA
   ============================================ */
.final-cta {
  background: var(--dark);
  color: var(--text-light);
  padding: 70px 20px;
  text-align: center;
}

.final-cta__line {
  width: 60px;
  height: 2px;
  background: var(--accent-gold);
  margin: 0 auto 30px;
}

.final-cta__title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 14px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.final-cta__subtitle {
  font-size: 16px;
  color: var(--text-light);
  margin-bottom: 24px;
}

.final-cta__price {
  margin-bottom: 28px;
}

.final-cta__price-old {
  font-size: 18px;
  color: var(--text-muted);
  text-decoration: line-through;
  display: block;
  margin-bottom: 4px;
}

.final-cta__price-new {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--accent-gold);
}

.final-cta__note {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: 16px;
}


/* ============================================
   9. FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 30px 20px;
  text-align: center;
  color: var(--text-muted);
}

.footer__logo {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--accent-gold);
  margin-bottom: 14px;
}

.footer__socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 12px;
}

.footer__socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.footer__socials a:hover {
  border-color: var(--accent-gold);
  transform: translateY(-2px);
}

.footer__socials svg {
  width: 18px;
  height: 18px;
  fill: var(--text-light);
}

.footer__email {
  font-size: 14px;
  color: var(--text-light);
  margin-bottom: 10px;
}

.footer__email a {
  color: var(--text-light);
  transition: color 0.3s ease;
}

.footer__email a:hover {
  color: var(--accent-gold);
}

.footer__copy {
  font-size: 12px;
  color: var(--text-muted);
}

.footer__dev {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 8px;
}

.footer__dev a {
  color: var(--accent-gold);
  transition: color 0.3s ease;
}

.footer__dev a:hover {
  color: var(--primary);
}


/* ============================================
   STICKY CTA (Mobile)
   ============================================ */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 56px;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
}

.sticky-cta.is-visible {
  transform: translateY(0);
}

.sticky-cta a {
  color: var(--white);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.3px;
}


/* ============================================
   MEDIA QUERIES
   ============================================ */

/* --- Tablet (768px+) --- */
@media (min-width: 768px) {
  :root {
    --section-padding: 80px 40px;
  }

  .section-title {
    font-size: 2.4rem;
  }

  /* Hero */
  .hero {
    padding: 80px 40px 60px;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__subtitle {
    font-size: 18px;
  }

  .hero__photo {
    width: 240px;
    height: 240px;
  }

  .hero__price-badge {
    width: 110px;
    height: 110px;
    right: -40px;
  }

  .hero__urgency {
    flex-direction: row;
    gap: 16px;
  }

  .hero__urgency-item {
    flex: 1;
  }

  /* Bubbles desktop-like scatter */
  .bubbles {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 800px;
  }

  .bubble {
    max-width: 260px;
  }

  .bubble:nth-child(1) { transform: translateX(-10px); }
  .bubble:nth-child(2) { transform: translateX(20px) translateY(8px); }
  .bubble:nth-child(3) { transform: translateX(-15px); }
  .bubble:nth-child(4) { transform: translateX(25px) translateY(-5px); }
  .bubble:nth-child(5) { transform: translateX(-5px); }

  .bubble.is-visible:nth-child(1) { transform: translateX(-10px) translateY(0); }
  .bubble.is-visible:nth-child(2) { transform: translateX(20px) translateY(8px); }
  .bubble.is-visible:nth-child(3) { transform: translateX(-15px) translateY(0); }
  .bubble.is-visible:nth-child(4) { transform: translateX(25px) translateY(-5px); }
  .bubble.is-visible:nth-child(5) { transform: translateX(-5px) translateY(0); }

  /* Offer grid 2 columns */
  .offer-grid {
    grid-template-columns: 1fr 1fr;
  }

  /* Trainer 2 columns */
  .trainer__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
  }

  .trainer__photo {
    margin: 0;
    max-width: none;
  }

  /* Reviews 3 columns */
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  /* Steps horizontal */
  .steps-list {
    flex-direction: row;
    max-width: 900px;
    gap: 0;
  }

  .step {
    flex: 1;
    padding: 0 20px;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  /* Horizontal connecting lines between steps */
  .steps-list {
    position: relative;
  }

  .step:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 28px;
    right: -10px;
    width: calc(100% - 40px);
    height: 0;
    border-top: 2px dashed var(--accent-gold);
    display: none;
  }

  /* Sticky CTA hidden on tablet+ */
  .sticky-cta {
    display: none;
  }
}

/* --- Desktop (1024px+) --- */
@media (min-width: 1024px) {
  :root {
    --section-padding: 100px 40px;
  }

  .section-title {
    font-size: 2.6rem;
    margin-bottom: 50px;
  }

  .hero {
    padding: 100px 40px 80px;
  }

  .hero__title {
    font-size: 4.2rem;
  }

  .hero__photo {
    width: 280px;
    height: 280px;
  }

  .hero__price-badge {
    width: 120px;
    height: 120px;
    right: -50px;
    bottom: 15px;
  }

  .hero__price-new {
    font-size: 22px;
  }

  .countdown__number {
    font-size: 34px;
  }

  .trainer__name {
    font-size: 2.4rem;
  }

  .trainer__quote {
    font-size: 1.5rem;
  }

  .trainer__diploma {
    width: 180px;
    height: 180px;
  }

  .final-cta__title {
    font-size: 2.5rem;
    max-width: 600px;
  }

  .final-cta__price-new {
    font-size: 2.8rem;
  }
}


/* ============================================
   LIGHTBOX
   ============================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0, 0, 0, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.lightbox.is-active .lightbox__img {
  transform: scale(1);
}

.lightbox__close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 36px;
  color: var(--white);
  background: none;
  border: none;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.3s ease;
}

.lightbox__close:hover {
  background: rgba(255, 255, 255, 0.15);
}
