/* === Base === */

:root {
    --bg-black: #101010;
    --bg-offwhite: #f5f2ec;
    --bg-glass-white: rgba(255, 255, 255, 0.9);
    --text-main: #e4e2dd;
    --text-muted: #a49f95;
    --accent-gold: #c89b3c;
    --accent-gold-soft: rgba(200, 155, 60, 0.15);
    --border-soft: rgba(255, 255, 255, 0.12);
    --shadow-soft: 0 18px 45px rgba(0, 0, 0, 0.45);
    --radius-lg: 24px;
    --radius-md: 16px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background-color: var(--bg-black);
    color: var(--text-main);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
     padding-top: 70px; /* высота шапки (подгони при необходимости) */
}

/* === Layout === */

.section {
    padding: 80px 0;
}

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

/* === Header === */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000; /* шапка поверх всех изображений и секций */
    backdrop-filter: blur(12px);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.2));
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 12px;
}

.logo-mark {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 600;
}

.logo-text {
    font-weight: 500;
    color: var(--text-muted);
}

.nav {
    display: flex;
    gap: 20px;
    font-size: 13px;
    align-items: center;
}


/* === Language switcher === */

.lang-switch {
    border:none;
    background: rgba(0, 0, 0, 0.4);
    padding: 4px 12px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.lang-switch:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.7);
    transform: translateY(-1px);
}

.lang {
    opacity: 0.6;
}

.lang.lang-active {
    opacity: 1;
    color: var(--text-main);
}

.lang-divider {
    opacity: 0.4;
}

/* === Cart button === */

.cart-button {
    position: relative;
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.5);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
}

.cart-button:hover {
    background: rgba(0, 0, 0, 0.85);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.8);
    transform: translateY(-1px);
}

.cart-icon {
    font-size: 16px;
}

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    background: var(--accent-gold);
    color: #111;
    font-size: 10px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}


.nav a {
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.2s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0;
    height: 1px;
    background: var(--accent-gold);
    transition: width 0.2s ease;
}

.nav a:hover {
    color: var(--text-main);
}

.nav a:hover::after {
    width: 100%;
}

/* ICONS */

/* Блок соцсетей в мобильном меню */
.nav-social{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:22px;
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(200,155,60,.35); /* вместо ::before */
}

/* Принудительно задаём золото именно в меню */
.nav .nav-social-icon,
.nav .nav-social-icon i{
  color:#c89b3c !important;
}

.nav .nav-social-icon{
  font-size:22px;           /* крупнее */
  line-height:1;
  opacity:.95;
  transition:transform .2s ease, opacity .2s ease;
}

.nav .nav-social-icon:hover{
  transform:translateY(-2px);
  opacity:1;
}

/* END ICONS */

/* === Hero === */

.hero-section {
    position: relative;
    min-height: 100vh; /* полностью на весь экран */
    display: flex;
    align-items: center;
    background: #000; /* fallback */
    color: var(--text-main);
    overflow: hidden;

    /* Фоновое фото */
   background-image: url('../Images/hero-bg-desktop.webp');
     background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 160px;
    padding-bottom: 160px;
}

/* 📱 Mobile Background */
@media (max-width: 768px) {
    .hero-section {
        background-image: url('../Images/hero-bg-mobile.webp');
        padding-top: 120px;
        padding-bottom: 120px;
    }
}


/* Затемняющая маска (чтобы текст хорошо читался) */
.hero-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.75)
    );
    z-index: 1;
}

/* Контент — поверх фона */
.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
   text-align: center;
    margin-top: 10px;
    max-width: 520px;
}

.hero-text {
    max-width: 520px;
}

.hero-kicker {
    font-size: 12px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 16px;
}

.hero-section h1 {
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 52px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.hero-section h2 {
    font-family: "Montserrat", system-ui, sans-serif;
    font-weight: 500;
    font-size: 22px;
    margin: 0 0 20px;
    color: #f7f4ed;
}

.hero-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 360px;
    margin-bottom: 26px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}



/* === Buttons === */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 22px;
    border-radius: 999px;
    font-size: 13px;
    text-decoration: none;
    border: 1px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-gold), #e0b764);
    color: #111;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
}

.btn-primary:hover {
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--text-main);
    border-color: rgba(255, 255, 255, 0.18);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.04);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.5);
    transform: translateY(-2px);
}

.btn-large {
    padding: 13px 26px;
}

/* === Видео-блок === */

.video-section {
    background: #0b0b0b;
}

.video-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.video-frame {
    flex: 1 1 320px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.06);
    background: radial-gradient(circle at top, rgba(255, 255, 255, 0.08), #050505);
}

.video-frame video {
    width: 100%;
    display: block;
}

.video-text {
    flex: 1 1 260px;
}

.video-text h3 {
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 26px;
    margin-bottom: 16px;
}

.video-text p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-muted);
}

/* === Meaning === */

.meaning-section {
    background: var(--bg-offwhite);
    color: #171717;
}

.meaning-inner {
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.meaning-line {
    font-size: 20px;
    margin: 10px 0;
    font-family: "Montserrat", system-ui, sans-serif;
}

.meaning-line.emphasized {
    margin-top: 20px;
    font-weight: 700;
}

/* === Rules === */

.rules-section {
    background: linear-gradient(to bottom, #121212, #050505);
}

.section-header {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 28px;
    margin-bottom: 8px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 14px;
}

.rules-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 20px;
}

.rule-card {
    padding: 20px 18px;
    border-radius: var(--radius-md);
    background: radial-gradient(circle at top left, rgba(255, 255, 255, 0.05), rgba(0, 0, 0, 0.95));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.65);
    min-height: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rule-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.rule-card h3 {
    font-size: 15px;
    margin: 0;
    font-family: "Montserrat", system-ui, sans-serif;
}

.rule-card p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

/* === Types === */

.types-section {
    background: #13110f;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.type-card {
    padding: 22px 20px;
    border-radius: var(--radius-md);
    background: radial-gradient(circle at top left, rgba(200, 155, 60, 0.1), #111);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 30px rgba(0, 0, 0, 0.65);
}

.type-time {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 10px;
}

.type-card h3 {
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 17px;
    margin: 0 0 10px;
}
#value .type-card h3 {
    background: linear-gradient(135deg, #c89b3c, #e5c97a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 400; /* ← вот это убирает жирность */
}

.type-card p {
    margin: 0;
    font-size: 13px;
    color: var(--text-muted);
}

/* === Gallery === */

.gallery-section {
    background: #0f0f0f;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.gallery-item {
    margin: 0;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: #181818;
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.7);
}

.gallery-item img {
    display: block;
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.gallery-item figcaption {
    padding: 10px 12px 12px;
    font-size: 12px;
    color: var(--text-muted);
}

/* === Pricing === */

.pricing-section {
    background: var(--bg-glass-white);
    color: #131313;
}

.pricing-inner {
    max-width: 640px;
}

.pricing-content h2 {
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 28px;
    margin-top: 0;
    margin-bottom: 12px;
}

.pricing-intro {
    margin: 0 0 18px;
    font-size: 14px;
    color: #4a463b;
}

.what-you-get {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    font-size: 14px;
    color: #343129;
}

.what-you-get li {
    margin-bottom: 4px;
}

.pricing-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-main {
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 26px;
    font-weight: 700;
}

.price-note {
    font-size: 12px;
    color: #6b6554;
}

/* === Manifest === */

.manifest-section {
    background: #050505;
    color: var(--text-main);
    text-align: center;
}

.manifest-inner {
    max-width: 700px;
}

.manifest-line {
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 20px;
    margin: 10px 0;
}

.manifest-line.emphasized {
    margin-top: 18px;
    font-size: 22px;
}

/* === Footer === */

/* ============ FOOTER ============ */

/* ============ FOOTER ============ */

.site-footer {
    padding: 60px 0;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: #ccc;
    font-size: 14px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

/* BRAND */

.footer-logo {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
}

.footer-tagline {
    display: block;
    margin-top: 6px;
    font-size: 13px;
    color: #bbb;
}

/* HEADINGS */

.footer-column h4 {
    font-size: 14px;
    margin-bottom: 12px;
    font-weight: 500;
    background-image: linear-gradient(135deg, #c89b3c, #e5c97a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* LIST */

.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li {
    margin-bottom: 6px;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
}

.footer-link:hover {
    color: #e5c97a;
}

/* CONTACTS */

.footer-small {
    display: block;
    margin-bottom: 12px;
    font-size: 12px;
    color: #aaa;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #c89b3c;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.85;
    transition: 0.2s ease;
}

.social-icon:hover {
    opacity: 1;
}

.social-icon-img {
    width: 20px;
    height: 20px;
}

/* MOBILE */

@media (max-width: 640px) {
    .footer-inner {
        flex-direction: column;
        text-align: center;
    }

    .social-icon {
        justify-content: center;
    }
}

.footer-social-icon i {
    font-size: 20px;
    color: #e5c97a; /* золото */
    transition: 0.2s ease;
}

.footer-social-icon {
    color: #e5c97a;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    opacity: 0.85;
}

.footer-social-icon:hover {
    opacity: 1;
    transform: translateX(3px);
}

/* Контейнер соцсетей — в одну строку */
.social-footer-links {
    display: flex;
    gap: 16px; /* расстояние между иконками */
    align-items: center;
}

/* Стиль каждой иконки */
.footer-social-icon i {
    font-size: 26px;
    color: #e5c97a; /* твой фирменный золотой */
    transition: 0.25s ease;
}

/* Ховер-эффект */
.footer-social-icon:hover i {
    color: #f5d890;
    transform: scale(1.12);
}
/* КОНЕЦ ФУТЕРА  */


/* === Animations (минимальные) === */

.fade-in {
    opacity: 0;
    transform: translateY(18px);
    animation: fadeInUp 0.8s ease-out forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* === Burger (mobile nav toggle) === */

.nav-toggle {
    display: none; /* на десктопе скрыт */
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.6);
    padding: 0;
    margin: 0;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex-direction: column;
    transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.nav-toggle-line {
    width: 16px;
    height: 2px;
    border-radius: 999px;
    background: #f5f2ec;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Состояние "открыто" */
.nav-toggle.nav-toggle-open {
    background: rgba(0, 0, 0, 0.9);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.7);
    transform: translateY(1px);
}

.nav-toggle.nav-toggle-open .nav-toggle-line:first-child {
    transform: translateY(2px) rotate(45deg);
}

.nav-toggle.nav-toggle-open .nav-toggle-line:last-child {
    transform: translateY(-2px) rotate(-45deg);
}

/* На мобильных убираем жёсткую сетку в 4–5 колонок */

@media (max-width: 1024px) {
    .hero-inner {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-text {
        max-width: none;
    }

    .hero-buttons {
        justify-content: center;
    }

    .rules-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .types-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .pricing-cta {
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .rules-grid,
    .types-grid,
    .gallery-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .site-header {
        position: fixed;
    }

    /* показываем бургер на мобильных */
    .nav-toggle {
        display: inline-flex;
    }

    /* мобильное меню по умолчанию скрыто */
    .nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        padding: 12px 20px 18px;
        flex-direction: column;
        gap: 10px;
        background: rgba(5, 5, 5, 0.96);
        backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* когда добавляем класс .nav-open — показываем меню */
    .nav.nav-open {
        display: flex;
    }

    .nav a {
        padding: 4px 0;
    }

    .section {
        padding: 60px 0;
    }

    .hero-section {
        padding-top: 60px;
        background-position: center top;
    }

    .hero-section::before {
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.7),
            rgba(0,0,0,0.85)
        );
    }

    .header-inner {
        height: 64px;
        max-width: 100%;
        text-align: center;
    }

    /* === КРАСИВЫЙ HERO НА ТЕЛЕФОНЕ === */

    .hero-inner {
        flex-direction: column;        /* отменяем column-reverse с 1024px */
        align-items: center;
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-logo-wrapper {
        order: -1;                    /* логотип СВЕРХУ */
        width: 100%;
        display: flex;
        justify-content: center;
        margin-bottom: 20px;
    }

    .hero-logo-img {
        max-width: 280px;             /* комфортный размер на телефоне */
    }
}

/* === ЛОГОТИП В HERO === */

.hero-logo-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    z-index: 2; /* поверх затемнения */
}

.hero-logo-img {
    width: 100%;
    max-width: 520px; /* регулируем размер логотипа на десктопе */
    height: auto;
    display: block;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.6));
}

/* На средних экранах уменьшаем */
@media (max-width: 1024px) {
    .hero-logo-img {
        max-width: 420px;
    }
}

/* На планшетах */
@media (max-width: 768px) {
    .hero-logo-img {
        max-width: 340px;
    }
}

/* На телефонах */
@media (max-width: 480px) {
    .hero-logo-img {
        max-width: 280px;
    }
}

/* Для маленьких телефонов */
@media (max-width: 360px) {
    .hero-logo-img {
        max-width: 240px;
    }
}


@media (max-width: 768px) {
    /* Логотип всегда сверху по центру */
    .hero-logo-wrapper {
        order: -1;             /* Переносим наверх */
        margin-bottom: 20px;   /* Делаем отступ */
        width: 100%;           /* Растягиваем на всю ширину */
        display: flex;
        justify-content: center; /* Чётко по центру */
    }

    .hero-logo-img {
        max-width: 300px;  /* хороший размер для телефона */
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        margin-top: 0;
    }

    .hero-text {
        text-align: center;
    }
}



/* ===== CART ===== */

/* ===== CART LAYOUT (обновлено под миниатюру и количество) ===== */

.cart-section {
    padding-top: 120px;
}

.cart-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

/* Пустая корзина */

.cart-empty {
    flex: 1 1 100%;
    max-width: 640px;
    margin: 0 auto;
    text-align: left;
}

.cart-empty .cart-title {
    font-size: 32px;
    margin-bottom: 10px;
}

.cart-empty .cart-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.cart-empty .cart-text {
    font-size: 15px;
    color: var(--text-main);
    margin-bottom: 20px;
}

.cart-empty-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

/* Корзина с товаром */

.cart-product-card {
    flex: 1 1 55%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-title {
    font-size: 32px;
    margin: 0 0 8px;
}

.cart-subtitle {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.cart-item-row {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cart-product-thumb img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
}

.cart-product-main {
    flex: 1;
}

.cart-product-name {
    font-size: 18px;
    margin: 0 0 10px;
}

.cart-product-list {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    color: var(--text-muted);
    font-size: 14px;
}

.cart-product-list li {
    margin-bottom: 4px;
}

/* Количество */

.cart-qty-block {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 14px;
    margin-top: 6px;
}

.cart-qty-label {
    font-size: 14px;
}

.cart-qty-control {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    background: rgba(10, 10, 10, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.qty-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    text-decoration: none;
    font-size: 18px;
    line-height: 1;
    border: none;
    outline: none;
    cursor: pointer;
    background: transparent;
    color: var(--text-main);
}

.qty-btn:hover {
    background: rgba(255, 255, 255, 0.06);
}

.qty-value {
    min-width: 32px;
    text-align: center;
    font-size: 14px;
    padding: 0 6px;
}

.cart-remove-link {
    background: none;
    border: none;
    padding: 0;
    font-size: 13px;
    color: var(--text-muted);
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* Summary справа (если у тебя уже есть — можно оставить, либо слегка обновить) */

.cart-summary-card {
    flex: 0 0 320px;
    border-radius: 24px;
    padding: 24px 24px 20px;
    background: radial-gradient(circle at top left, rgba(255, 215, 128, 0.18), transparent 55%),
                rgba(10, 10, 10, 0.96);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.85);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cart-summary-title {
    font-size: 18px;
    margin: 0 0 12px;
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 15px;
    margin-bottom: 6px;
}

.cart-summary-total {
    font-weight: 500;
    margin-top: 4px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 10px;
}

.cart-checkout-btn {
    margin-top: 8px;
    width: 100%;
    text-align: center;
}

.cart-secure {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

/* Адаптив */

@media (max-width: 900px) {
    .cart-layout {
        flex-direction: column;
    }

    .cart-summary-card {
        width: 100%;
    }

    .cart-item-row {
        align-items: flex-start;
    }
}

/* ===== CHECKOUT (ORDER) ===== */

.checkout-section {
    padding-top: 120px;
}

.checkout-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: flex-start;
}

.checkout-form-card {
    flex: 1 1 55%;
    background: rgba(10, 10, 10, 0.9);
    border-radius: 24px;
    padding: 28px 24px 26px;
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.85);
}

.checkout-title {
    font-size: 28px;
    margin: 0 0 10px;
}

.checkout-subtitle {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.checkout-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.checkout-block {
    border-radius: 18px;
    padding: 16px 16px 14px;
    background: radial-gradient(circle at top left, rgba(255, 215, 128, 0.08), transparent 55%),
                rgba(8, 8, 8, 0.95);
}

.checkout-block-title {
    font-size: 16px;
    margin: 0 0 10px;
}

.checkout-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
}

.checkout-form label {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 13px;
}

.checkout-form input[type="text"],
.checkout-form input[type="email"],
.checkout-form input[type="tel"],
.checkout-form textarea {
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(5, 5, 5, 0.9);
    padding: 9px 14px;
    color: var(--text-main);
    font-size: 14px;
    outline: none;
}

.checkout-form textarea {
    border-radius: 16px;
    resize: vertical;
}

.checkout-form input:focus,
.checkout-form textarea:focus {
    border-color: var(--accent-gold);
}

/* Channels */

.checkout-help-text {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.confirm-channels {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}

.confirm-option input {
    display: none;
}

.confirm-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s ease;
}

.confirm-option input:checked + .confirm-badge {
    border-color: var(--accent-gold);
    background: rgba(255, 215, 128, 0.1);
}

/* Delivery */

.delivery-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 12px;
}

.delivery-option input {
    display: none;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 13px;
    cursor: pointer;
    transition: 0.2s ease;
}

.delivery-option input:checked + .delivery-badge {
    border-color: var(--accent-gold);
    background: rgba(255, 215, 128, 0.1);
}

.hidden {
    display: none;
}

/* Summary справа */

.checkout-summary-card {
    flex: 0 0 320px;
    border-radius: 24px;
    padding: 24px 24px 20px;
    background: radial-gradient(circle at top right, rgba(255, 215, 128, 0.2), transparent 55%),
                rgba(10, 10, 10, 0.96);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.85);
}

.checkout-summary-title {
    font-size: 18px;
    margin: 0 0 8px;
}

.checkout-summary-text {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.checkout-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
    font-size: 14px;
    color: var(--text-muted);
}

.checkout-includes li {
    margin-bottom: 6px;
}

.checkout-price-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 4px;
}

.checkout-price-total {
    font-weight: 500;
    margin-top: 6px;
    padding-top: 6px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.checkout-note {
    margin-top: 10px;
    font-size: 12px;
    color: var(--text-muted);
}

.checkout-submit {
    margin-top: 4px;
}

/* Responsive */

@media (max-width: 900px) {
    .checkout-layout {
        flex-direction: column;
    }
    .checkout-summary-card {
        width: 100%;
    }
    .checkout-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}


/* INSTRUCTIONS */

/* ===== INSTRUCTIONS PAGE ===== */

.instructions-section {
    padding-top: 120px;
    background: radial-gradient(circle at top, rgba(255, 215, 128, 0.08), transparent 60%),
                #050505;
}

.instructions-intro {
    max-width: 720px;
}

.instructions-line {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-main);
    margin-bottom: 8px;
}

.instructions-line.emphasized {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
}

.instructions-line.center {
    text-align: center;
}

.instructions-intro-inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.instructions-line {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-main, #f5f5f5);
    margin-bottom: 8px;
}

.instructions-line.emphasized {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 14px;
}

.instructions-gold {
    background-image: linear-gradient(135deg, #c89b3c, #e5c97a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Большой таймер под шапкой */

.instructions-timer-big {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    margin-bottom: 22px;

    padding: 10px 24px;
    border-radius: 999px;
    border: 1px solid rgba(200, 155, 60, 0.7);
    background: radial-gradient(circle at top, rgba(200, 155, 60, 0.15), rgba(5, 5, 5, 0.95));

    font-size: 28px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    background-image: linear-gradient(135deg, #f4d27a, #c89b3c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.instructions-timer-big.timer-finished {
    border-color: #b73232;
}

/* STAGES */

/* ===== STAGES PREMIUM ===== */

.stage-section {
    background: #050505;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.stage-inner {
    padding-top: 24px;
}

.stage-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    margin-bottom: 18px;
}

.stage-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    padding: 5px 14px;
    border-radius: 999px;
    border: 1px solid rgba(200, 155, 60, 0.55);
    background: rgba(8, 8, 8, 0.9);
}

.stage-heading {
    font-size: 18px;
    font-weight: 500;
    background-image: linear-gradient(135deg, #f5f5f5, #e5c97a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stage-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stage-video video {
    width: 100%;
    max-width: 820px;
    border-radius: 22px;
    background: #000;
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.95);
    margin: 0 auto 8px;
}

/* BONUS GRID REUSE */

.instructions-types-grid {
    margin-top: 18px;
}

/* HEADER TIMER */

/* ============================
   INSTRUCTIONS — HEADER TIMER
   ============================ */

.header-timer {
    margin-left: 20px;
    padding: 6px 14px;
    border-radius: 999px;
    border: 1px solid rgba(200, 155, 60, 0.55);
    background: rgba(8, 8, 8, 0.8);

    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.12em;

    /* Золотой градиент текста */
    background-image: linear-gradient(135deg, #c89b3c, #e5c97a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 90px;
    text-align: center;
}

.header-timer.timer-finished {
    border-color: #b73232;
    background-image: linear-gradient(135deg, #ff8a8a, #ff4d4d);
    -webkit-text-fill-color: transparent;
}

/* Адаптив */

@media (max-width: 768px) {
    .instructions-section {
        padding-top: 100px;
    }

    .stage-heading {
        font-size: 16px;
    }

    .stage-video video {
        max-width: 100%;
    }

    .header-timer {
        font-size: 12px;
        padding: 4px 8px;
        margin-left: 10px;
    }
}

@media (max-width: 768px) {
    .header-timer {
        font-size: 16px;
        padding: 5px 12px;
        min-width: 80px;
        margin-left: 14px;
    }
}

@media (max-width: 480px) {
    .header-timer {
        font-size: 15px;
        padding: 4px 10px;
        min-width: 72px;
        margin-left: 10px;
    }
}

/* instructions - to the main page  */


/* ===== FULL-WIDTH LIGHT STRIP ===== */

.entry-note--light{
  margin: 0;
  padding: 0;
}

/* Фон на всю ширину экрана */
.entry-note-bg{
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);

  background: rgba(255,255,255,.92);
  border-bottom: 1px solid rgba(0,0,0,.10);
}

/* Контент — по сетке сайта */
.entry-note-inner{
  padding: 14px 0;
}

/* Текст */
.entry-note-text{
  margin: 0;
  text-align: center;
  color: rgba(0,0,0,.78);
  font-size: 15px;
  line-height: 1.5;
}

.entry-note-text strong{
  color: rgba(0,0,0,.95);
}

.entry-note-link{
  color: #9f7a22;
  text-decoration: none;
  border-bottom: 1px solid rgba(159,122,34,.35);
}

.entry-note-link:hover{
  color: #c89b3c;
  border-bottom-color: rgba(200,155,60,.6);
}

.entry-note-sep{
  margin: 0 6px;
  color: rgba(159,122,34,.6);
}

.entry-note-muted{
  color: rgba(0,0,0,.55);
}

/* Mobile */
@media (max-width: 520px){
  .entry-note-text{
    text-align: left;
    padding: 0 16px;
    font-size: 14px;
  }
}


/*END INSTRUCTIONS  */

/* ===== ABOUT PAGE ===== */

.about-hero {
    background: #000;
    padding: 80px 0 50px;
    text-align: center;
}

.about-title {
    font-size: 42px;
    color: #fff;
    margin-bottom: 10px;
    font-weight: 600;
}

.about-subtitle {
    font-size: 18px;
    color: #c8c8c8;
}

.about-section {
    padding: 60px 0;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-heading {
    font-size: 24px;
    font-weight: 600;
    margin: 40px 0 15px;
    background: linear-gradient(135deg, #c89b3c, #e5c97a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-text {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.about-divider {
    border: none;
    border-top: 1px solid rgba(200, 155, 60, 0.3);
    margin: 40px 0;
}

.about-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 20px;
}

.about-list li {
    font-size: 18px;
    margin: 10px 0;
}

.about-contact {
    background: #111;
    padding: 60px 0;
}

.about-contact-inner {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.about-socials {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 25px;
}

.about-socials .social-icon {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #e5c97a;
    font-size: 18px;
    text-decoration: none;
}

.about-socials .social-icon img {
    width: 22px;
    height: 22px;
}

/*END ABOUT PAGE   */

/* THANK YOU PAGE   */
.thankyou-section {
    padding: 80px 0 120px;
    background: #050505;
}

.thankyou-inner {
    max-width: 720px;
    margin: 0 auto;
}

.thankyou-card {
    background: radial-gradient(circle at top left, #151515, #050505);
    border-radius: 24px;
    padding: 40px 28px 48px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.8);
    text-align: center;
}

.thankyou-icon {
    width: 64px;
    height: 64px;
    border-radius: 999px;
    border: 2px solid #e5c97a;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #e5c97a;
}

.thankyou-title {
    font-family: "Montserrat", system-ui, sans-serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: #ffffff;
}

.thankyou-order-number {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 16px;
    margin-bottom: 20px;
    color: #cfcfcf;
}

.thankyou-order-number span {
    color: #e5c97a;
    font-weight: 500;
}

.thankyou-text {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: #d0d0d0;
    margin-bottom: 14px;
}

.thankyou-text.small {
    font-size: 14px;
    color: #a0a0a0;
    margin-bottom: 26px;
}

.thankyou-btn {
    margin-top: 8px;
}

/* адаптив */
@media (max-width: 640px) {
    .thankyou-card {
        padding: 28px 20px 36px;
    }
    .thankyou-title {
        font-size: 22px;
    }
}

/*END THANK YOU PAGE   */