@import url("https://fonts.googleapis.com/css2?family=Bonheur+Royale&family=Cormorant+Garamond:wght@300;400;500;600;700&family=Playfair+Display:wght@400;500;600;700&display=swap");

:root {
  --bg: #080808;
  --bg-soft: #0b0b0b;
  --surface: rgba(255, 255, 255, 0.05);
  --surface-strong: rgba(255, 255, 255, 0.08);
  --surface-glass: rgba(22, 18, 14, 0.78);
  --surface-card: rgba(18, 15, 12, 0.72);
  --text: #f6f1ea;
  --text-muted: #b5aa9d;
  --primary: #f4a125;
  --primary-deep: #d98916;
  --border: rgba(255, 255, 255, 0.1);
  --border-gold: rgba(244, 161, 37, 0.3);
  --danger: #f06b6b;
  --radius-lg: 24px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-1: 0 16px 50px rgba(0, 0, 0, 0.45);
  --shadow-gold: 0 8px 30px rgba(244, 161, 37, 0.28);
  --font-body: "Cormorant Garamond", serif;
  --font-heading: "Playfair Display", serif;
  --font-script: "Bonheur Royale", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
}

body.menu-open,
body.cart-open {
  overflow: hidden;
}

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

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

.icon {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.icon--sm {
  width: 14px;
  height: 14px;
}

.icon--lg {
  width: 72px;
  height: 72px;
}

.page-shell {
  min-height: 100vh;
}

.container {
  width: min(1220px, 92vw);
  margin: 0 auto;
}

.hide-mobile {
  display: inline;
}

.btn {
  border: 0;
  border-radius: 999px;
  padding: 11px 24px;
  min-height: 42px;
  font: 500 12px/1 var(--font-body);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background-color 0.28s ease, color 0.28s ease;
  cursor: pointer;
}

.btn--primary {
  color: #1d1408 !important;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: var(--shadow-gold);
  font-weight: 600;
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(244, 161, 37, 0.4);
}

.btn--ghost {
  color: var(--text-muted);
  border: 1px solid var(--border);
  background: var(--surface);
}

.btn--ghost:hover {
  border-color: var(--border-gold);
  color: var(--text);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 70;
  padding: 18px 0;
  background: rgba(10, 8, 6, 0.74);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.25s ease, background-color 0.25s ease;
}

.site-header--scrolled {
  padding: 9px 0;
  background: rgba(10, 8, 6, 0.88);
}

.site-header__inner {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand__logo {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 8px;
  border: 1px solid var(--border-gold);
  background: rgba(16, 12, 8, 0.85);
}

.brand__name {
  font: 400 24px/32px var(--font-script);
  color: var(--primary);
  letter-spacing: 0.02em;
}

.main-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav__link {
  padding: 9px 12px;
  border-radius: 999px;
  font: 500 14px/1 var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: background-color 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}

.main-nav__link:hover,
.main-nav__link--active {
  color: var(--text);
  background: rgba(244, 161, 37, 0.1);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 8;
}

.btn--lang {
  min-width: 70px;
  padding-inline: 12px;
  letter-spacing: 0.12em;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 86px;
  background: rgba(10, 8, 6, 0.96);
  border: 1px solid var(--border-gold);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.45);
  padding: 6px;
  z-index: 240;
  display: none;
  flex-direction: column;
  gap: 4px;
}

.lang-menu--open {
  display: flex;
}

.lang-menu__item {
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font: 500 12px/1 var(--font-body);
  min-height: 34px;
  cursor: pointer;
}

.lang-menu__item:hover {
  background: rgba(244, 161, 37, 0.1);
  color: var(--text);
}

.lang-menu__item--active {
  color: var(--text);
  background: rgba(244, 161, 37, 0.16);
}

.tf-gtranslate {
  position: relative;
  display: flex;
  align-items: center;
}

.tf-gtranslate #google_translate_element2,
.tf-gtranslate .goog-te-gadget {
  display: none !important;
}

.tf-gtranslate--enhanced .gtranslate_wrapper {
  position: absolute;
  left: -100000px;

}

.page-shell {
  overflow: hidden;
}

.tf-gtranslate .lang-menu {
  right: 0;
  left: auto;
  min-width: 92px;
}

.btn--enroll {
  padding-inline: 22px;
}

.burger {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  align-items: center;
  justify-content: center;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  opacity: 0;
  pointer-events: none;
  background: rgba(8, 6, 4, 0.96);
  backdrop-filter: blur(12px);
  transition: opacity 0.28s ease;
}

.mobile-menu--open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu__panel {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
}

.mobile-menu__logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  border-radius: 14px;
  border: 1px solid var(--border-gold);
  margin-bottom: 12px;
}

.mobile-menu__link {
  font: 500 34px/1 var(--font-body);
  color: var(--text);
}

.mobile-menu__link:hover {
  color: var(--primary);
}

.mobile-menu__cta {
  margin-top: 12px;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding-top: 96px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: hero-pan 16s ease-in-out infinite alternate;
}

@keyframes hero-pan {
  from {
    transform: scale(1.05) translate(-1%, 0.5%);
  }

  to {
    transform: scale(1.08) translate(1.2%, -0.6%);
  }
}

.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__shade--v {
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.46) 0%, rgba(10, 8, 6, 0.95) 100%);
}

.hero__shade--b {
  inset: auto 0 0;
  height: 52%;
  background: linear-gradient(0deg, rgba(10, 8, 6, 1) 0%, rgba(10, 8, 6, 0.86) 45%, rgba(10, 8, 6, 0) 100%);
}

.hero__shade--h {
  background: linear-gradient(90deg, rgba(10, 8, 6, 0.3) 0%, transparent 50%, rgba(10, 8, 6, 0.3) 100%);
}

.hero__glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(96px);
  opacity: 0.2;
}

.hero__glow--left {
  width: 500px;
  height: 500px;
  top: 16%;
  left: 8%;
  background: radial-gradient(circle, rgba(244, 161, 37, 0.95), transparent 65%);
}

.hero__glow--right {
  width: 320px;
  height: 320px;
  bottom: 12%;
  right: 12%;
  background: radial-gradient(circle, rgba(244, 200, 113, 0.75), transparent 65%);
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(1152px, 90vw);
}

.hero__title {
  margin: 0 0 18px;
  color: var(--primary);
  font: 400 68px/0.84 var(--font-script);
}

.hero__title span {
  display: block;
}

.hero__badge {
  margin: 0 auto 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(19, 15, 12, 0.72);
  backdrop-filter: blur(8px);
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 0 rgba(244, 161, 37, 0.7);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244, 161, 37, 0.6);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(244, 161, 37, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(244, 161, 37, 0);
  }
}

.hero__lead {
  margin: 0 auto 40px;
  max-width: 576px;
  color: rgba(246, 241, 234, 0.82);
  font-size: 18px;
  line-height: 1.5;
}

.hero__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.hero__scroll-link {
  margin-top: 32px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
}

.hero__scroll-link .icon {
  color: var(--primary);
  animation: float 2.2s ease-in-out infinite;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(4px);
  }
}

.section {
  position: relative;
  padding: 112px 0;
}

.about.section,
.shop.section,
#courses.section,
#students.section,
#contacts.section {
  padding: 112px 0;
}

.services.section {
  padding: 64px 0;
}

@media (min-width: 640px) {
  .brand__name {
    display: inline;
  }

  .about .section-head__title {
    font-size: 48px;
  }

  .stats {
    gap: 48px;
  }

  .stats__value {
    font-size: 68px;
  }
}

@media (min-width: 768px) {
  .section {
    padding: 160px 0;
  }

  .about.section,
  .shop.section,
  #courses.section,
  #students.section,
  #contacts.section {
    padding: 160px 0;
  }

  .services.section {
    padding: 96px 0;
  }

  .hero__title {
    font-size: 108px;
  }

  .section-head__title {
    font-size: 81px;
  }

  .about .section-head__title {
    font-size: 81px;
  }

  .stats__value {
    font-size: 81px;
  }

  .stats {
    gap: 80px;
  }

  .about__intro {
    font-size: 20px;
  }

  .about-block__title {
    font-size: 54px;
    line-height: 1;
  }

  .consultation__title {
    font-size: 54px;
    line-height: 1;
  }

  .shop-banner__content h3 {
    font-size: 54px;
    line-height: 1;
  }
}

@media (min-width: 1024px) {
  .hero__title {
    font-size: 144px;
  }

  .section-head__title {
    font-size: 108px;
  }

  .about .section-head__title {
    font-size: 108px;
  }
}

.section--noise {
  position: relative;
  overflow: hidden;
  background: transparent;
}

.section--noise::before,
.noise-bg::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

.section--noise::after,
.noise-bg::after {
  content: none;
}

.section--noise>.container,
.noise-bg>.container {
  position: relative;
  z-index: 1;
}

.section-head {
  text-align: center;
  max-width: 920px;
  margin: 0 auto 64px;
}

.section-head__eyebrow {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--primary);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-size: 12px;
}

.section-head__title {
  margin: 0 0 14px;
  font: 500 54px/1 var(--font-body);
  background: linear-gradient(90deg, var(--text), var(--text), var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-head__text {
  margin: 0 auto;
  max-width: 760px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.45;
}

.about {
  overflow: hidden;
}

.about__orb {
  position: absolute;
  border-radius: 50%;
  opacity: 0.03;
  pointer-events: none;
}

.about__orb--top {
  width: 560px;
  height: 560px;
  right: -180px;
  top: -180px;
  filter: blur(130px);
  background: radial-gradient(circle, rgb(244, 161, 37), transparent 68%);
}

.about__orb--bottom {
  width: 460px;
  height: 460px;
  left: -190px;
  bottom: -250px;
  filter: blur(110px);
  background: radial-gradient(circle, rgb(244, 161, 37), transparent 68%);
}

.about .section-head {
  margin: 0 auto 96px;
  max-width: 864px;
}

.about .section-head__eyebrow {
  margin-bottom: 24px;
}

.about .section-head__title {
  margin-bottom: 40px;
  font-size: 30px;
  line-height: 1.1;
}

.stats {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 90px;
}

.stats__item {
  text-align: center;
}

.stats__value {
  color: var(--primary);
  font: 600 41px/1 var(--font-heading);
}

.stats__label {
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.about__intro p {
  margin: 0 0 16px;
}

.about__intro {
  font-size: 18px;
  line-height: 1.5;
}

.about__intro strong,
.about-block__note strong {
  color: var(--text);
}

.about__lead {
  color: var(--text);
}

.about-block {
  margin: 0 auto 90px;
  max-width: 864px;
}

.about-block__title {
  margin: 0 0 45px;
  text-align: center;
  font: 500 34px/1.2 var(--font-body);
}

.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.problem-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--surface-card);
  border: 1px solid var(--border);
  transition: transform 0.25s ease, border-color 0.25s ease;
}

.problem-card:hover {
  transform: translateY(-2px);
  border-color: var(--border-gold);
}

.problem-card__icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(240, 107, 107, 0.15);
  color: var(--danger);
  flex-shrink: 0;
}

.problem-card p {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.5;
}

.about-block__note {
  margin: 18px 0 0;
  text-align: center;
  font-size: 20px;
}

.about-block__note span {
  color: var(--primary);
}

.benefits-list {
  display: grid;
  gap: 10px;
}

.benefits-list__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(244, 161, 37, 0.08);
  border: 1px solid rgba(244, 161, 37, 0.16);
}

.icon--check {
  width: 20px;
  height: 20px;
  color: var(--primary);
  flex-shrink: 0;
}

.benefits-list__item p {
  margin: 0;
  font-size: 16px;
}

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

.review-card {
  border-radius: var(--radius-md);
  padding: 20px;
  background: var(--surface-card);
  border: 1px solid var(--border);
}

.review-card__stars {
  color: var(--primary);
  letter-spacing: 0.14em;
  margin-bottom: 10px;
}

.review-card p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.45;
}

.review-card__author {
  color: var(--text);
  font-size: 14px;
}

.consultation {
  max-width: 756px;
  margin: 0 auto;
  text-align: center;
  border-radius: 24px;
  padding: 32px;
  background: rgba(18, 15, 12, 0.72);
  border: 1px solid rgba(244, 161, 37, 0.2);
  box-shadow: var(--shadow-gold);
  position: relative;
  overflow: hidden;
}

.consultation__title {
  margin: 0 0 10px;
  font: 500 34px/1.2 var(--font-body);
}

.consultation__text {
  margin: 0 auto 32px;
  max-width: 576px;
  color: var(--text-muted);
  font-size: 18px;
  line-height: 1.4;
}

.consultation__btn {
  padding: 16px 40px;
  min-height: 52px;
  font-size: 16px;
  letter-spacing: 0.16em;
}

.consultation__meta {
  margin: 16px 0 0;
  color: rgba(184, 171, 151, 0.76);
  font-size: 14px;
}

.services .section-head {
  margin-bottom: 30px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 32px;
}

.service-list__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  transition: padding-left 0.3s ease;
}

.service-list__item:hover {
  padding-left: 14px;
}

.service-list__icon {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: rgba(244, 161, 37, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: background-color 0.3s ease;
}

.service-list__item:hover .service-list__icon {
  background: rgba(244, 161, 37, 0.2);
}

.service-list__content {
  min-width: 0;
}

.service-list__item h3 {
  margin: 0 0 4px;
  font: 600 18px/1.35 var(--font-heading);
  transition: color 0.3s ease;
}

.service-list__item:hover h3 {
  color: var(--primary);
}

.service-list__item p {
  margin: 0;
  color: var(--text-muted);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.shop-head-divider {
  width: 72px;
  height: 1px;
  margin: 24px auto 0;
  background: linear-gradient(90deg, transparent, rgba(244, 161, 37, 0.95), transparent);
}

.shop-features {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin-bottom: 48px;
  color: var(--text-muted);
  font-size: 16px;
}

.shop-tabs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 18px;
  margin-bottom: 40px;
  scrollbar-width: none;
}

.shop-tabs::-webkit-scrollbar {
  display: none;
}

.shop-tabs__btn {
  border: 1px solid var(--border);
  background: var(--surface-card);
  color: var(--text-muted);
  border-radius: 999px;
  padding: 9px 18px;
  font: 600 12px/1 var(--font-body);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.shop-tabs__btn span {
  font-size: 11px;
  color: inherit;
  opacity: 0.75;
}

.shop-tabs__btn:hover {
  border-color: var(--border-gold);
  color: var(--text);
}

.shop-tabs__btn--active {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #1d1408;
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.shop-banner {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 192px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  margin-bottom: 32px;
}

.shop-banner__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.14), rgba(10, 8, 6, 0.9));
}

.shop-banner--no-image {
  background: linear-gradient(135deg, rgba(20, 16, 12, 0.95), rgba(12, 10, 8, 0.95));
}

.shop-banner--no-image .shop-banner__overlay {
  display: none;
}

.shop-banner__content {
  position: absolute;
  z-index: 1;
  left: 24px;
  bottom: 24px;
}

.shop-banner__content p {
  margin: 0 0 4px;
  color: var(--primary);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: 11px;
}

.shop-banner__content h3 {
  margin: 0;
  font: 600 34px/1.2 var(--font-heading);
}

.shop-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.shop-product {
  display: flex;
  flex-direction: column;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-card);
  transition: transform 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.shop-product:hover {
  transform: translateY(-3px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.shop-product__image-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.shop-product__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.shop-product:hover .shop-product__image {
  transform: scale(1.08);
}

.shop-product__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 8, 6, 0.02), rgba(10, 8, 6, 0.65));
}

.shop-product__fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 0;
  background: rgba(8, 6, 4, 0.62);
  color: rgba(246, 241, 234, 0.7);
}

.shop-product__sold {
  position: absolute;
  left: 12px;
  bottom: 12px;
  border-radius: 999px;
  padding: 4px 10px;
  background: rgba(8, 6, 4, 0.7);
  color: rgba(246, 241, 234, 0.84);
  font-size: 10px;
}

.shop-product__body {
  padding: 20px;
  display: grid;
  gap: 8px;
  flex: 1;
}

.shop-product__rating {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.shop-product__stars {
  display: inline-flex;
  gap: 2px;
}

.shop-product__star {
  width: 12px;
  height: 12px;
  stroke: #6d6458;
  fill: #6d6458;
}

.shop-product__star--active {
  stroke: var(--primary);
  fill: var(--primary);
}

.shop-product__rating small {
  color: var(--text-muted);
  font-size: 10px;
}

.shop-product__name {
  margin: 0;
  font: 600 22px/1.4 var(--font-heading);
}

.shop-product__name a {
  color: inherit;
  text-decoration: none;
}

.shop-product__actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.shop-product__price {
  color: var(--primary);
  font-size: 22px;
  line-height: 1;
}

.shop-product__meta {
  color: var(--text-muted);
  font-size: 10px;
}

.shop-product__buy {
  width: 100%;
  justify-content: center;
}

.shop-product__actions .shop-product__buy {
  width: auto;
  flex: 1 1 160px;
}

.shop-product__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1d1408;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  font-weight: 700;
}

.course-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.course-card {
  border-radius: 16px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  overflow: hidden;
  display: block;
  transition: border-color 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
}

.course-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
  transform: translateY(-4px);
}

.course-card__topline {
  height: 4px;
}

.course-card__topline--one {
  background: linear-gradient(90deg, rgba(244, 161, 37, 0.22), rgba(244, 161, 37, 0.07));
}

.course-card__topline--two {
  background: linear-gradient(90deg, rgba(248, 216, 161, 0.2), rgba(248, 216, 161, 0.06));
}

.course-card__topline--three {
  background: linear-gradient(90deg, rgba(174, 114, 22, 0.3), rgba(174, 114, 22, 0.08));
}

.course-card__inner {
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.course-card__badge {
  align-self: flex-start;
  border-radius: 999px;
  padding: 4px 12px;
  background: rgba(244, 161, 37, 0.12);
  color: var(--primary);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 24px;
  font-weight: 500;
}

.course-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(244, 161, 37, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  margin-bottom: 24px;
  transition: transform 0.45s ease, background-color 0.45s ease;
}

.course-card:hover .course-card__icon {
  transform: rotate(6deg);
  background: rgba(244, 161, 37, 0.2);
}

.course-card h3 {
  margin: 0 0 16px;
  font: 600 41px/1.1 var(--font-heading);
}

.course-card p {
  margin: 0 0 32px;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  flex: 1;
}

.course-card__link {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.3s ease;
}

.course-card:hover .course-card__link {
  gap: 12px;
}

.product-page {
  overflow: hidden;
}

.shop-page__section,
.product-page__section,
.text-page__section {
  padding-top: 160px;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 14px;
  margin: 0 0 24px;
}

.product-breadcrumb a {
  color: inherit;
}

.product-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 28px;
  margin-bottom: 34px;
}

.product-gallery {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-card);
  padding: 16px;
}

.product-gallery__main-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 6, 4, 0.66);
}

.product-gallery__main {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-gallery__thumbs {
  margin-top: 12px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
}

.product-gallery__thumb {
  border: 1px solid var(--border);
  background: transparent;
  border-radius: 10px;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s ease;
}

.product-gallery__thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.product-gallery__thumb:hover,
.product-gallery__thumb--active {
  border-color: var(--border-gold);
}

.product-summary {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-card);
  padding: 26px;
}

.product-summary__category {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(244, 161, 37, 0.14);
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 11px;
}

.product-summary__title {
  margin: 12px 0 8px;
  font: 600 42px/1.06 var(--font-heading);
}

.product-summary__rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  color: var(--text-muted);
}

.product-summary__rating span {
  display: inline-flex;
  gap: 2px;
}

.product-summary__rating .shop-product__star {
  width: 14px;
  height: 14px;
}

.product-summary__rating small {
  font-size: 13px;
}

.product-summary__price {
  color: var(--primary);
  font-size: 40px;
  line-height: 1;
  margin-bottom: 14px;
}

.product-summary__excerpt {
  margin: 0 0 18px;
  color: var(--text-muted);
  font-size: 19px;
  line-height: 1.45;
}

.product-summary__meta {
  display: grid;
  gap: 8px;
  font-size: 16px;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.product-summary__meta strong {
  color: var(--text);
}

.product-summary__stock {
  color: #7cd490;
}

.product-purchase__label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-purchase__controls {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  background: rgba(8, 6, 4, 0.5);
}

.qty-control button {
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 24px;
  cursor: pointer;
}

.qty-control input {
  width: 62px;
  height: 42px;
  border: 0;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  text-align: center;
  background: transparent;
  color: var(--text);
  font-size: 16px;
}

.qty-control input:focus {
  outline: none;
}

.product-purchase__note {
  margin: 10px 0 0;
  color: var(--text-muted);
  font-size: 15px;
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 34px;
}

.product-tab {
  border-radius: 18px;
  border: 1px solid var(--border);
  background: var(--surface-card);
  padding: 18px;
}

.product-tab h3 {
  margin: 0 0 8px;
  font: 600 24px/1.2 var(--font-heading);
}

.product-tab p {
  margin: 0;
  color: var(--text-muted);
  font-size: 17px;
  line-height: 1.45;
}

.related-products__grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.text-page {
  overflow: hidden;
}

.text-page__layout {
  max-width: 920px;
  margin: 0 auto;
}

.text-page__header {
  margin-bottom: 28px;
  text-align: center;
}

.text-page__eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.text-page__title {
  margin: 0 0 14px;
  font: 600 54px/1.02 var(--font-heading);
  color: var(--text);
}

.text-page__meta {
  color: var(--text-muted);
  font-size: 14px;
}

.text-page__article {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: var(--surface-card);
  padding: 34px;
}

.text-page__article h2 {
  margin: 26px 0 10px;
  font: 600 34px/1.1 var(--font-heading);
}

.text-page__article h3 {
  margin: 22px 0 10px;
  font: 600 28px/1.15 var(--font-heading);
}

.text-page__article p {
  margin: 0 0 14px;
  color: var(--text-muted);
  font-size: 20px;
  line-height: 1.45;
}

.text-page__article strong {
  color: var(--text);
}

.text-page__article ul {
  margin: 0 0 16px;
  padding: 0 0 0 22px;
  color: var(--text-muted);
  font-size: 19px;
  line-height: 1.45;
}

.text-page__article li+li {
  margin-top: 8px;
}

.text-page__quote {
  margin: 20px 0;
  padding: 16px 18px;
  border-left: 2px solid var(--primary);
  background: rgba(244, 161, 37, 0.08);
  border-radius: 10px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.45;
}

.text-page__actions {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.student-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.student-card {
  border-radius: 16px;
  padding: 32px;
  background: var(--surface-card);
  border: 1px solid var(--border);
  transition: border-color 0.45s ease, box-shadow 0.45s ease, transform 0.45s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
}

.student-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.student-card--selected {
  border-color: rgba(244, 161, 37, 0.5);
  box-shadow: var(--shadow-gold);
}

.student-card__top {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.student-card__avatar {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(244, 161, 37, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.student-card__selected-mark {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--primary);
  color: #1d1408;
  font-size: 11px;
  display: none;
  align-items: center;
  justify-content: center;
}

.student-card--selected .student-card__selected-mark {
  display: flex;
}

.student-card h3 {
  margin: 0 0 3px;
  font: 600 34px/1.1 var(--font-heading);
}

.student-card__rating {
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--primary);
}

.student-card__rating span {
  margin-left: 6px;
  letter-spacing: normal;
}

.student-card__badge {
  align-self: flex-start;
  border-radius: 999px;
  padding: 4px 12px;
  background: rgba(244, 161, 37, 0.1);
  color: var(--primary);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 16px;
}

.student-card__specialty {
  margin: 0 0 6px;
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
}

.student-card__text {
  margin: 0;
  color: var(--text-muted);
  font-size: 16px;
  line-height: 1.6;
  flex: 1;
}

.student-card__action {
  margin-top: 24px;
  border: 0;
  background: transparent;
  color: var(--primary);
  font: 500 16px/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0;
  cursor: pointer;
}

.student-card__arrow {
  transition: transform 0.3s ease;
}

.student-card--selected .student-card__arrow {
  transform: rotate(90deg);
}

.student-form {
  max-width: 576px;
  margin: 0 auto;
  border-radius: 16px;
  padding: 32px;
  background: var(--surface-card);
  border: 1px solid var(--border);
}

.student-form__success {
  text-align: center;
  padding: 16px 0;
}

.student-form__success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(244, 161, 37, 0.1);
  color: var(--primary);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.student-form__success h3 {
  margin: 0 0 8px;
  font: 600 34px/1.1 var(--font-heading);
}

.student-form__success p {
  margin: 0;
  font-size: 16px;
  color: var(--text-muted);
}

.student-form__fields h3 {
  margin: 0 0 8px;
  text-align: center;
  font: 600 34px/1.1 var(--font-heading);
}

.student-form__subtitle {
  margin: 0 0 28px;
  text-align: center;
  color: var(--text-muted);
  font-size: 16px;
}

.student-form__label {
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.student-form__input,
.student-form__textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(18, 15, 12, 0.8);
  color: var(--text);
  padding: 13px 18px;
  margin-bottom: 14px;
  font: 500 16px/1.4 var(--font-body);
}

.student-form__textarea {
  resize: none;
}

.student-form__input:focus,
.student-form__textarea:focus {
  outline: none;
  border-color: rgba(244, 161, 37, 0.5);
}

.student-form__submit {
  width: 100%;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #1d1408;
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font: 600 16px/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
  cursor: pointer;
}

.contact-wrap {
  max-width: 864px;
}

.social-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-bottom: 40px;
}

.social-card {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface-card);
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: border-color 0.4s ease, box-shadow 0.4s ease;
}

.social-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-gold);
}

.social-card__emoji {
  font-size: 40px;
  transition: transform 0.3s ease;
}

.social-card:hover .social-card__emoji {
  transform: scale(1.15);
}

.social-card__body {
  flex: 1;
}

.social-card__body h3 {
  margin: 0 0 2px;
  font: 500 16px/1.3 var(--font-body);
}

.social-card__body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
}

.social-card__arrow {
  color: var(--text-muted);
  transition: color 0.3s ease, transform 0.3s ease;
}

.social-card:hover .social-card__arrow {
  color: var(--primary);
  transform: translate(2px, -2px);
}

.contact-note {
  border-radius: 16px;
  border: 1px solid var(--border);
  background: var(--surface-card);
  padding: 32px;
  color: var(--text-muted);
  text-align: center;
  font-size: 16px;
}

.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__marquee {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
  padding: 24px 0;
}

.site-footer__track {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: marquee 25s linear infinite;
}

.site-footer__track span {
  font-size: 36px;
  color: rgba(184, 171, 151, 0.28);
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.site-footer__bottom {
  min-height: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 32px 0;
}

.site-footer__brand {
  color: var(--primary);
  font: 400 23px/1.4 var(--font-script);
}

.site-footer p {
  margin: 0;
  color: var(--text-muted);
  font-size: 14px;
}

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 91;
  background: rgba(8, 6, 4, 0.62);
  backdrop-filter: blur(2px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.26s ease;
}

.cart-backdrop--show {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: min(504px, 100vw);
  height: 100vh;
  z-index: 92;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 20% 0, rgba(244, 161, 37, 0.2), transparent 45%),
    linear-gradient(180deg, rgba(19, 15, 12, 0.97), rgba(10, 8, 6, 0.98));
  border-left: 1px solid var(--border-gold);
  box-shadow: -10px 0 36px rgba(0, 0, 0, 0.5);
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

@media(max-width: 991px){
  .cart-drawer {
    height: 100svh !important;
  }
}

.cart-drawer--open {
  transform: translateX(0);
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 27px;
  border-bottom: 1px solid var(--border);
}

.cart-drawer__title-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}

.cart-drawer__title-wrap h3 {
  margin: 0;
  font: 600 27px/1.33 var(--font-heading);
}

.cart-drawer__badge {
  padding: 2px 10px;
  border-radius: 999px;
  background: rgba(244, 161, 37, 0.2);
  color: var(--primary);
  font-size: 13px;
}

.cart-drawer__close {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  border: 0;
  background: transparent;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.cart-drawer__close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 27px;
}

.cart-empty {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-muted);
  gap: 8px;
}

.cart-empty .icon {
  color: rgba(184, 171, 151, 0.3);
}

.cart-empty p {
  margin: 0;
  font: 600 23px/1.4 var(--font-heading);
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  gap: 16px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  background: rgba(20, 16, 12, 0.42);
  padding: 18px;
}

.cart-item+.cart-item {
  margin-top: 16px;
}

.cart-item__image {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.cart-item__details {
  flex: 1;
  min-width: 0;
}

.cart-item__name {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart-item__meta {
  margin: 0 0 10px;
  color: var(--text-muted);
  font-size: 13px;
}

.cart-item__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.cart-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.cart-item__qty-btn {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  border: 0;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.25s ease, color 0.25s ease;
}

.cart-item__qty-btn:hover {
  background: rgba(244, 161, 37, 0.2);
  color: var(--primary);
}

.cart-item__qty-value {
  min-width: 32px;
  text-align: center;
  font-size: 16px;
}

.cart-item__price {
  font-size: 16px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.cart-item__remove {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.cart-item__remove:hover {
  color: var(--danger);
  background: rgba(240, 107, 107, 0.1);
}

.cart-drawer__footer {
  border-top: 1px solid var(--border);
  padding: 27px;
  display: grid;
  gap: 16px;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-total span {
  color: var(--text-muted);
  font-size: 16px;
}

.cart-total strong {
  color: var(--primary);
  font-size: 27px;
}

.cart-drawer__checkout,
.cart-drawer__clear {
  width: 100%;
}

.cart-drawer__clear {
  min-height: 38px;
  font-size: 13px;
}

.cart-drawer__checkout {
  min-height: 52px;
  font-size: 16px;
}

.cart-fab {
  position: fixed;
  right: 27px;
  bottom: 27px;
  z-index: 90;
  width: 63px;
  height: 63px;
  border-radius: 50%;
  border: 0;
  color: #1d1408;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: var(--shadow-gold);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.cart-fab:hover {
  transform: translateY(-2px);
}

.cart-fab__count {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 27px;
  height: 27px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  background: #fff;
  color: #1d1408;
  font-size: 12px;
  font-weight: 700;
}

.promo-popup {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 100;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.promo-popup[hidden] {
  display: none;
}

.promo-popup--visible {
  opacity: 1;
  transform: translateY(0);
}

.promo-popup--hiding {
  opacity: 0;
  transform: translateY(16px);
}

.promo-popup__card {
  position: relative;
  width: 324px;
  border-radius: 12px;
  border: 1px solid rgba(244, 161, 37, 0.2);
  background: rgba(16, 12, 8, 0.95);
  backdrop-filter: blur(20px);
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
}

.promo-popup__close {
  position: absolute;
  top: 9px;
  right: 9px;
  z-index: 3;
  width: 27px;
  height: 27px;
  border: 0;
  border-radius: 999px;
  background: rgba(8, 6, 4, 0.62);
  color: var(--text-muted);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.promo-popup__close:hover {
  color: var(--text);
}

.promo-popup__media {
  position: relative;
  aspect-ratio: 16/10;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo-popup__media-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-popup__media-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(244, 161, 37, 0.2), transparent, rgba(244, 161, 37, 0.1));
}

.promo-popup__play-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.promo-popup__play {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(244, 161, 37, 0.3);
  background: rgba(244, 161, 37, 0.2);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.promo-popup__play:hover {
  transform: scale(1.1);
}

.promo-popup__play-wrap p {
  margin: 0;
  font-size: 11px;
  color: var(--text-muted);
}

.promo-popup__content {
  padding: 14px;
  text-align: center;
}

.promo-popup__tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  border: 1px solid rgba(244, 161, 37, 0.2);
  background: rgba(244, 161, 37, 0.1);
  color: var(--primary);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 2px 8px;
  margin-bottom: 8px;
}

.promo-popup__content h3 {
  margin: 0 0 8px;
  font: 600 16px/1.2 var(--font-heading);
}

.promo-popup__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #1d1408;
  font: 600 11px/1 var(--font-body);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 8px 16px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@media (min-width: 640px) {

  .problem-grid,
  .reviews,
  .social-grid,
  .shop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {

  .course-grid,
  .student-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .shop-banner {
    min-height: 256px;
  }

  .shop-banner__content {
    left: 32px;
    bottom: 32px;
  }
}

@media (min-width: 1024px) {
  .shop-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .shop-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 1023px) {
  .main-nav {
    display: none;
  }

  .btn--enroll {
    display: none;
  }

  .burger {
    display: inline-flex;
  }

  .related-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}



@media (max-width: 767px) {
  .hide-mobile {
    display: none;
  }

  .hero__badge {
    font-size: 9px;
    letter-spacing: 0.16em;
  }

  .hero__title {
    font-size: 68px;
  }

  .hero__lead {
    font-size: 16px;
  }

  .about .section-head__title {
    font-size: 30px;
  }

  .consultation {
    padding: 30px 22px;
  }

  .service-list {
    grid-template-columns: 1fr;
  }

  .product-layout,
  .product-tabs,
  .course-grid,
  .student-grid {
    grid-template-columns: 1fr;
  }

  .product-gallery__thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .shop-page__section,
  .product-page__section,
  .text-page__section {
    padding-top: 126px;
  }

  .product-summary {
    padding: 20px;
  }

  .product-summary__title {
    font-size: 32px;
  }

  .product-summary__price {
    font-size: 34px;
  }

  .product-purchase__controls {
    flex-direction: column;
    align-items: stretch;
  }

  .qty-control {
    width: 100%;
    justify-content: space-between;
  }

  .qty-control input {
    flex: 1;
  }

  .product-purchase__controls .btn--primary {
    width: 100%;
  }

  .text-page__title {
    font-size: 42px;
  }

  .text-page__article {
    padding: 22px;
  }

  .text-page__article h2 {
    font-size: 30px;
  }

  .text-page__article h3 {
    font-size: 25px;
  }

  .text-page__article p,
  .text-page__article ul,
  .text-page__quote {
    font-size: 18px;
  }

  .student-card {
    padding: 24px;
  }

  .student-form {
    padding: 24px;
  }

  .about__intro {
    font-size: 18px;
  }

  .problem-card p {
    font-size: 15px;
  }

  .benefits-list__item p {
    font-size: 17px;
  }

  .site-footer__bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 14px 0;
  }
}


.bb-dropzone * {
  color: black !important;
}

.bb-dropzone {
  border-color: black !important;
}

body {
  padding-top: 100px;
}