/* ===========================================
   BASE RESET & GLOBAL STYLES
   (migrated from Elementor / style.min.css)
   =========================================== */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

*, :after, :before {
    box-sizing: border-box;
}

html, body {
    overflow-x: clip;
    max-width: 100%;
}

body {
    margin: 0;
    font-family: "Rubik", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #FFFFFF;
    background-color: #0A0112;
    position: relative;
}
main,
#main-content,
.site-footer-vanilla,
.site-header {
    position: relative;
    z-index: 1;
}

h1, h2, h3, h4, h5, h6 {
    margin-top: .5rem;
    margin-bottom: 1rem;
    font-family: inherit;
    font-weight: 500;
    line-height: 1.2;
    color: inherit;
}
h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    margin-top: 0;
    margin-bottom: .9rem;
}

a {
    background-color: transparent;
    text-decoration: none;
    color: #8F00FF;
}
a:hover { color: #7a00d9; }

a:not([href]):not([tabindex]),
a:not([href]):not([tabindex]):focus,
a:not([href]):not([tabindex]):hover {
    color: inherit;
    text-decoration: none;
}

b, strong { font-weight: bolder; }

img {
    border-style: none;
    height: auto;
    max-width: 100%;
}

dd, dl, dt, li, ol, ul {
    margin-top: 0;
    margin-bottom: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

label {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
}

button, input, optgroup, select, textarea {
    font-family: inherit;
    font-size: 1rem;
    line-height: 1.5;
    margin: 0;
}

input[type=date], input[type=email], input[type=number],
input[type=password], input[type=search], input[type=tel],
input[type=text], input[type=url], select, textarea {
    width: 100%;
    border: 1px solid #471870;
    border-radius: 14px;
    padding: .5rem 1rem;
    background: #0A0112;
    color: #FFFFFF;
    transition: all .3s;
}

input:focus, select:focus, textarea:focus {
    border-color: #8F00FF;
    outline: 0 none;
}

[type=button], [type=submit], button {
    display: inline-block;
    width: auto;
    font-weight: 400;
    color: #FFFFFF;
    text-align: center;
    white-space: nowrap;
    user-select: none;
    background-color: transparent;
    border: none;
    padding: .5rem 1rem;
    font-size: 1rem;
    border-radius: 0;
    transition: all .3s;
    cursor: pointer;
}

textarea { overflow: auto; resize: vertical; }

/* Open menu lock scroll */
html.open_menu_class, body.open_menu_class {
    overflow: hidden;
}

/* ===========================================
   WAVES & DECORATIVE BACKGROUNDS
   =========================================== */
.wave_max_size {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 0;
    pointer-events: none;
}

.big_wave_bottom {
    display: block;
    width: 100%;
    height: auto;
    margin: 0;
    margin-top: -1300px;
    position: relative;
    z-index: -1;
    pointer-events: none;
}
/* ===========================================
   PRELOADER
   =========================================== */
.preloader_section_open {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999999;
    background: rgb(0, 0, 0);
}

.table {
    width: 200px;
}

/* ===========================================
   MODAL
   =========================================== */
.overlay_modal_block {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    background: rgba(0, 0, 0, 0.5);
    display: none;
}

.modal_form_block {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 999999;
    transform: translate(-50%, -50%);
    padding: 50px 20px 20px;
    background: rgb(0, 0, 0);
    border: 1px solid rgba(71, 24, 112, 1);
    border-radius: 14px;
    width: calc(100% - 20px);
    max-width: 500px;
    max-height: calc(100vh - 20px);
    box-shadow: 0px 4px 30px 0px rgba(71, 24, 112, 1);
    display: none;
}

.close_modal_block {
    position: absolute;
    right: 15px;
    top: 10px;
    width: 25px;
    height: 25px;
    cursor: pointer;
}

.close_modal_block:after, .close_modal_block:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: 2px;
    width: 100%;
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 1);
}
.close_modal_block:before {
    transform: rotate(-45deg);
}

.modal_form_block input:not([type="submit"]) {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #471870;
    border-radius: 14px;
    padding: 15px 24px;
    background: #0A0112;
    color: rgb(255, 255, 255);
    font-size: 16px;
}

.modal_form_block input[type="submit"] {
    width: 200px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #FFFFFF;
    background: #8F00FF;
    border-radius: 14px;
    border: none;
    font-size: 16px;
    font-weight: 400;
}

/* ===========================================
   PANORAMA FIXED BUTTON
   =========================================== */
.link_button_panoram_fixed {
    position: fixed;
    bottom: 180px;
    right: 30px;
    z-index: 99999;
    cursor: pointer;
    overflow: hidden;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    box-shadow: 0px 0px 40px #7F00E3;
    display: none;
}

.link_button_panoram_fixed svg {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
}

@media (max-width: 767px) {
    .link_button_panoram_fixed {
        transform: scale(0.8);
        right: 20px;
    }
}

/* ============================================
   VANILLA SITE HEADER (без Elementor)
   ============================================ */
.site-header {
    position: relative;
    z-index: 99;
    background-color: #0A0112;
    margin-bottom: -110px;
}
.site-header-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-height: 106px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.site-logo {
    display: block;
    flex-shrink: 0;
}
.site-logo .logoImg {
    display: block;
}
.site-logo .logoImg .table {
    width: 160px;
}
.site-logo img {
    width: 100%;
    max-width: 160px;
    height: auto;
    display: block;
}
.site-nav-wrap {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}
.site-nav {
    display: none;
}
.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}
.site-nav a {
    color: #FFFFFF;
    text-decoration: none;
    font-size: 16px;
    font-weight: normal;
    text-transform: uppercase;
    line-height: 1.3;
    transition: color 0.2s;
}
.site-nav a:hover {
    color: #8F00FF;
}
.site-burger {
    display: none;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    padding: 10px;
    cursor: pointer;
    color: #FFFFFF;
    background: rgba(143, 0, 255, 0.2);
    border: 2px solid #8F00FF;
    border-radius: 12px;
    transition: background 0.2s, border-color 0.2s;
}
.site-burger:hover {
    background: rgba(143, 0, 255, 0.35);
    border-color: #8F00FF;
}
.site-burger-close {
    display: none;
    font-size: 28px;
    line-height: 1;
    opacity: 0;
    transition: opacity 0.15s ease;
}
.site-nav-dropdown {
    display: none;
}
.site-header-contact {
    display: none;
}
@media (min-width: 1025px) {
    .site-nav-wrap {
        display: grid;
        grid-template-columns: 1fr auto 1fr;
        width: 100%;
        max-width: 900px;
        margin: 0 auto;
    }
    .site-nav {
        display: block;
        grid-column: 2;
        justify-self: center;
    }
    .site-burger {
        display: none !important;
    }
    .site-header-contact {
        display: block;
        grid-column: 3;
        justify-self: end;
        padding-left: 84px;
        text-align: right;
        white-space: nowrap;
    }
    .site-header-contact a {
        color: #8F00FF !important;
        font-size: 20px !important;
        font-weight: 500 !important;
        text-decoration: none !important;
        display: block;
    }
    .site-header-contact a:hover {
        color: #FFFFFF !important;
    }
    .site-header-contact div {
        color: rgba(255, 255, 255, 0.5) !important;
        font-size: 16px !important;
    }
}
@media (max-width: 1024px) {
    .site-nav {
        display: none;
    }
    .site-nav-wrap {
        justify-content: flex-end;
        margin-left: auto;
    }
    .site-burger {
        display: flex !important;
    }
    .site-burger-icon {
        display: block;
        width: 32px;
        height: 32px;
        background-image: url('../images/icons/burger-menu_icon.svg');
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
    }
    body.open_menu_class .site-burger-icon {
        display: none !important;
    }
    body.open_menu_class .site-burger-close {
        display: block !important;
        opacity: 1;
        transition: opacity 0.15s ease 0.35s;
    }
    .site-nav-dropdown {
        display: flex !important;
        flex-direction: column !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 320px !important;
        height: 100vh !important;
        overflow-y: auto !important;
        transform: translateX(-340px) !important;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        z-index: 99995 !important;
        background: #08010E !important;
        padding: 0 !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    .site-nav-dropdown::before {
        content: '';
        display: block;
        flex-shrink: 0;
        width: 100%;
        height: 80px;
        background-image: url('../images/logos/podcast_logo_on_black.png');
        background-repeat: no-repeat;
        background-position: 24px center;
        background-size: auto 40px;
    }
    body.open_menu_class .site-nav-dropdown {
        transform: translateX(0) !important;
    }
    body.open_menu_class .site-burger {
        position: fixed !important;
        top: 22px !important;
        left: 276px !important;
        z-index: 99999 !important;
        opacity: 0;
        animation: site-burger-appear 0.2s ease 0.35s forwards;
    }
    @keyframes site-burger-appear {
        to { opacity: 1; }
    }
    .site-nav-dropdown ul {
        list-style: none;
        margin: 0;
        padding: 12px 0 0;
        flex: 1;
    }
    .site-nav-dropdown ul li {
        margin: 0;
        padding: 0;
    }
    .site-nav-dropdown a {
        color: #FFFFFF !important;
        font-size: 18px !important;
        font-weight: 500 !important;
        padding: 18px 28px !important;
        display: block !important;
        text-decoration: none !important;
        transition: color 0.2s !important;
    }
    .site-nav-dropdown a:hover {
        color: #8F00FF !important;
    }
    .site-nav-contact {
        flex-shrink: 0;
        margin-top: auto;
        padding: 0 24px 20px;
        text-align: center;
    }
    .site-nav-contact a {
        color: #8F00FF !important;
        font-size: 18px !important;
        font-weight: 600 !important;
        padding: 10px 0 4px !important;
    }
    .site-nav-contact a:hover {
        color: #FFFFFF !important;
    }
    .site-nav-contact div {
        color: rgba(255, 255, 255, 0.5) !important;
        font-size: 13px !important;
    }
}
@media (max-width: 767px) {
    .site-header {
        margin-bottom: -230px;
    }
    .site-header-inner {
        flex-wrap: wrap;
    }
}

/* Glightbox overrides */
.glightbox-clean .gslide-media {
    touch-action: pan-y;
    -webkit-user-select: none;
    user-select: none;
}
.glightbox-clean .gslide-image {
    pointer-events: auto;
}
.glightbox-mobile .gslide-media {
    touch-action: pan-y;
}

/* === Gallery Section (vanilla) === */
.gallery-section {
    padding: 0 20px;
}
.gallery-inner {
    max-width: 1400px;
    margin: 0 auto;
}
.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay {
    opacity: 1;
}

/* === Gallery Collapsible === */
.gallery-collapsible {
    position: relative;
    max-height: 520px;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.gallery-collapsible.expanded {
    max-height: 8000px;
}
.gallery-fade-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom, transparent 0%, #0A0112 100%);
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.4s ease;
}
.gallery-collapsible.expanded .gallery-fade-overlay {
    opacity: 0;
}

/* Gallery Toggle Button */
.gallery-toggle-wrap {
    display: flex;
    justify-content: center;
    padding: 24px 0 12px;
}
.gallery-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}
.gallery-toggle-btn:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}
.gallery-toggle-arrow {
    transition: transform 0.4s ease;
}
.gallery-toggle-btn.expanded .gallery-toggle-arrow {
    transform: rotate(180deg);
}

/* === Video Carousel === */
.video-carousel {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}
.carousel-track-wrapper {
    overflow: hidden;
    border-radius: 12px;
}
.carousel-track {
    display: flex;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 16px;
}
.carousel-slide {
    flex: 0 0 calc(33.333% - 11px);
    width: calc(33.333% - 11px);
    max-width: calc(33.333% - 11px);
}
.video-thumb {
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #111;
}
.video-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
}
.video-thumb:hover img {
    transform: scale(1.05);
    filter: brightness(0.7);
}
.video-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.6));
}
.video-thumb:hover .video-play-btn {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.12);
}
.video-thumb.playing {
    aspect-ratio: 16 / 9;
}
.video-thumb.playing img,
.video-thumb.playing .video-play-btn {
    display: none;
}
.video-thumb iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}

/* Carousel Buttons */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-60%);
    z-index: 3;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}
.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #fff;
    transform: translateY(-60%) scale(1.08);
}
.carousel-btn:disabled {
    opacity: 0.25;
    cursor: default;
}
.carousel-btn:disabled:hover {
    transform: translateY(-60%);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}
.carousel-btn-prev { left: 0; }
.carousel-btn-next { right: 0; }

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
}
.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}
.carousel-dot.active {
    background: #a855f7;
    transform: scale(1.2);
}
.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* === Gift Certificates Section === */
.gift-section {
    padding: 80px 0 60px;
    position: relative;
    overflow: visible;
}
.gift-section .gift-wave-bg {
    position: absolute;
    top: -140px;
    left: 0;
    width: 100%;
    height: auto;
    pointer-events: none;
    z-index: 0;
}
.gift-section-title {
    position: relative;
    z-index: 1;
    text-align: center;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 50px;
}
.gift-cards-row {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    gap: 24px;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}
.gift-card {
    flex: 1 1 220px;
    max-width: 260px;
    min-width: 200px;
    background: rgba(20, 10, 40, 0.7);
    border: 1px solid rgba(128, 0, 255, 0.35);
    border-radius: 20px;
    padding: 30px 20px 28px;
    text-align: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gift-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(128, 0, 255, 0.25);
}
.gift-card-img {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-top: -65px;
    margin-bottom: 10px;
    filter: drop-shadow(0 4px 16px rgba(128, 0, 255, 0.4));
}
.gift-card-name {
    display: none;
    font-family: 'Rubik', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.gift-card-name .crown-icon {
    width: 24px;
    height: 24px;
    object-fit: contain;
}
.gift-card-price {
    font-family: 'Rubik', sans-serif;
    font-size: 36px;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 4px;
    color: #471870;
}
.gift-card-price .currency {
    font-size: 14px;
    font-weight: 500;
    -webkit-text-fill-color: rgba(255,255,255,0.5);
    margin-left: 4px;
    color: #909090;
}
.gift-card-subtitle {
    font-family: 'Rubik', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 6px 0px 16px 0px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.gift-card-subtitle-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    flex-shrink: 0;
}
.gift-info-trigger {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    position: relative;
    vertical-align: middle;
    margin-left: 4px;
}
.gift-info-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
    transition: filter 0.25s ease;
}
.gift-info-trigger:hover .gift-info-icon {
    filter: brightness(0) saturate(100%) invert(44%) sepia(100%) saturate(10000%) hue-rotate(270deg);
}
.gift-tooltip {
    position: fixed;
    background: #0F081E;
    border: 1px solid rgba(128, 0, 255, 0.6);
    border-radius: 14px;
    padding: 18px 20px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
    z-index: 99999;
    pointer-events: none;
}
.gift-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 6px solid transparent;
    border-top-color: rgba(128, 0, 255, 0.6);
}
.gift-info-trigger:hover .gift-tooltip,
.gift-tooltip.is-visible {
    opacity: 1;
    visibility: visible;
}
.gift-tooltip-title {
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gift-tooltip-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.gift-tooltip-list li {
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    color: rgba(255,255,255,0.75);
    padding: 3px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}
.gift-tooltip-list li .check-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    object-fit: contain;
}
.gift-buy-btn {
    font-family: 'Rubik', sans-serif;
    display: inline-block;
    padding: 15px 32px;
    color: #FFF;
    border: 2px solid #8F00FF;
    background-color: transparent;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    width: 80% !important;
}
.gift-buy-btn:hover {
    background: #8F00FF;
    color: #FFFFFF;
}

/* === Gift Modal === */
.gift-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.gift-modal-overlay.active {
    display: flex;
}
.gift-modal {
    background: linear-gradient(160deg, rgba(25, 12, 50, 0.98), rgba(15, 8, 30, 0.98));
    border: 1px solid rgba(128, 0, 255, 0.35);
    border-radius: 24px;
    padding: 32px 30px 28px;
    max-width: 380px;
    width: 100%;
    position: relative;
    animation: giftModalIn 0.3s ease;
}
@keyframes giftModalIn {
    from { opacity: 0; transform: scale(0.92) translateY(20px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}
.gift-modal-header {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    position: relative;
}
.gift-modal-title {
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-align: center;
    flex: 1;
}
.gift-modal-close {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    -webkit-appearance: none;
    appearance: none;
}
.gift-modal-close:hover,
.gift-modal-close:focus,
.gift-modal-close:active {
    background: transparent !important;
    outline: none !important;
    box-shadow: none !important;
}
.gift-modal-close img {
    width: 20px;
    height: 20px;
    transition: transform 0.25s ease;
}
.gift-modal-close:hover img {
    transform: scale(1.25);
}

.gift-modal-product-container {
 background-color: #0A0112;
 border-radius: 16px;
 padding: 12px 16px;
 border: 1px solid #471870;
 margin-bottom: 16px;
}
.gift-modal-product {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.gift-modal-product-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(128, 0, 255, 0.3));
}
.gift-modal-product-info {
    display: flex;
    flex-direction: column;
}
.gift-modal-product-name {
    display: none;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
}
.gift-modal-product-price {
    font-family: 'Rubik', sans-serif;
    font-size: 28px;
    font-weight: 700;
    background: linear-gradient(135deg, #a855f7, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}
.gift-modal-product-price .currency {
    font-size: 13px;
    -webkit-text-fill-color: rgba(255,255,255,0.5);
}
.gift-modal-badge {
    display: inline-block;
    background: #471870;
    color: #fff;
    font-family: 'Rubik', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0;
    border-radius: 8px;
    text-align: center;
    width: 100%;
}
.gift-modal-badge--clickable {
    cursor: pointer;
}
.gift-modal-form {
    display: block;
    margin: 0;
}
.gift-modal-input {
    width: 312px;
    max-width: 100%;
    height: 49px;
    background: #0A0112;
    border: 1px solid #471870 !important;
    border-radius: 14px !important;
    padding: 15px 24px !important;
    font-family: 'Rubik', sans-serif !important;
    font-size: 14px !important;
    color: #fff !important;
    outline: none !important;
    transition: border-color 0.2s !important;
    margin-bottom: 12px !important;
    box-sizing: border-box !important;
}
.gift-modal-input::placeholder {
    color: rgba(255,255,255,0.3);
}
.gift-modal-input:focus {
    border-color: rgba(168, 85, 247, 0.6);
}
.gift-modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 8px;
}
.gift-modal-btn-order {
    flex: 1;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: transparent;
    border: 2px solid #8F00FF;
    border-radius: 14px;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gift-modal-btn-order:hover {
    border-color: #a855f7;
    background: rgba(168, 85, 247, 0.1);
}
.gift-modal-btn-order--primary {
    background: #8F00FF;
    border: none;
}
.gift-modal-btn-order--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
    background: #8F00FF;
}
.gift-modal-btn-pay {
    flex: 1;
    font-family: 'Rubik', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    background: #8F00FF;
    border: none;
    border-radius: 14px;
    padding: 12px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}
.gift-modal-btn-pay:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(168, 85, 247, 0.4);
}

/* Hero section (vanilla) */
.hero-section {
    position: relative;
    overflow: hidden;
    min-height: 542px;
    background: #0A0112;
}
.hero-video {
    display: block !important;
    position: absolute !important;
    top: 105px !important;
    left: 0 !important;
    width: 100% !important;
    height: calc(100% - 105px) !important;
    min-height: 300px !important;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.5;
}
.hero-video video {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    position: absolute !important;
    top: 0;
    left: 0;
}

.open_button_modal {
    background-color: transparent;
}
.hero-content {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.hero-content::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 1, 18, 0.55) 0%, rgba(10, 1, 18, 0.75) 100%);
    z-index: 0;
    pointer-events: none;
}
.hero-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 200px 10px 20px;
    position: relative;
    z-index: 1;
}
.hero-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    flex: 0 1 100px;
    min-width: 0;
}
.hero-icon-item img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    flex-shrink: 0;
    object-fit: contain;
}
.hero-icon-item span {
    color: #FFFFFF;
    font-family: 'Rubik', sans-serif;
    font-size: 12px;
    line-height: 1.3;
}
.hero-btn-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    justify-content: center;
    text-align: center;
    padding: 0 20px 40px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-btn {
    display: inline-block;
    padding: 15px 32px;
    color: #8F00FF !important;
    border: 2px solid #8F00FF;
    background-color: transparent;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border-radius: 14px;
    transition: background 0.2s, color 0.2s;
}
.hero-btn:hover {
    background: #8F00FF;
    color: #FFFFFF !important;
}

/* About section (vanilla) */
.about-section {
    position: relative;
    padding: 60px 0 40px;
}
.about-section .wave_max_size {
    position: absolute;
    top: 100px;
    left: 0;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    height: auto;
    opacity: 0.24;
}
.about-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.about-title {
    text-align: center;
    color: #FFFFFF;
    font-family: 'Rubik', sans-serif;
    font-size: 42px;
    line-height: 1.2;
    margin: 0 0 16px;
}
.about-subtitle {
    text-align: center;
    color: #FFFFFF;
    font-size: 18px;
    margin: 0 0 40px;
}
.about-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}
.about-card {
    background: #0A0112;
    border: 1px solid #471870;
    border-radius: 14px;
    padding: 24px;
    text-align: center;
}
.about-card img {
    width: 100%;
    max-width: 264px;
    height: auto;
    display: block;
    margin: 0 auto 16px;
}
.about-card h3 {
    color: #FFFFFF;
    font-size: 20px;
    margin: 0 0 12px;
}
.about-card p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 12px;
}
.about-price {
    display: block;
    color: #8F00FF;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 16px;
}
.about-card-btn {
    display: inline-block;
    padding: 15px 32px;
    background: #8F00FF;
    color: #FFFFFF !important;
    border: none;
    text-decoration: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.2s;
}
.about-card-btn:hover {
    background: #7a00d9;
}
.about-card-btn--disabled {
    background: #555;
    color: #FFFFFF !important;
    border: none;
    cursor: default;
    pointer-events: none;
    opacity: 0.6;
}
.about-checklist {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.about-checklist ul {
    list-style: none;
    margin: 0;
    padding: 0;
}
.about-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #FFFFFF;
    font-size: 16px;
    margin-bottom: 12px;
}
.about-checklist li img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

/* Howto section (vanilla) */
.howto-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.howto-title {
    text-align: center;
    color: #FFFFFF;
    font-size: 32px;
    margin: 0 0 40px;
    text-transform: uppercase;
}
.howto-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.howto-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
}
.howto-step img {
    width: 80px;
    height: 80px;
    min-width: 80px;
    flex-shrink: 0;
    object-fit: contain;
}
.howto-step h3 {
    color: #FFFFFF;
    font-size: 20px;
    margin: 0 0 8px;
}
.howto-step p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    line-height: 1.4;
    margin: 0;
}

/* Footer vanilla */
.site-footer-vanilla {
    padding: 32px 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    text-align: center;
}
.footer-logo {
    flex-shrink: 0;
}
.footer-text p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin: 0 0 4px;
}
.footer-copy {
    color: rgba(255,255,255,0.5) !important;
    font-size: 13px !important;
}
@media (max-width: 600px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .site-footer-vanilla {
        padding: 24px 16px;
    }
}

/* Contacts section (vanilla) */
.contacts-section {
    padding: 60px 20px;
    position: relative;
}
.contacts-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.contacts-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
    padding: 0px 40px;
}
.contacts-col-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.contact-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}
.contact-item > div {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact-main {
    color: #8F00FF;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}
.contact-main:hover {
    color: #FFFFFF;
}
.contact-sub {
    color: #FFFFFF;
    font-size: 14px;
}
.contact-address {
    color: #8F00FF !important;
}
.contact-socials {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    margin-top: 8px;
}
.contact-socials a {
    display: flex;
    width: 48px;
    height: 48px;
    overflow: hidden;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    box-shadow: 0px 0px 20px #8F00FF;
}
.contact-socials a:last-child {
    margin-right: 0;
}
.contact-socials a svg {
    min-width: 248px;
    min-height: 248px;
    position: relative;
    top: 5px;
}
.contacts-col-map iframe {
    width: 100%;
    height: 420px;
    border: 0;
    border-radius: 12px;
}
@media (max-width: 900px) {
    .contacts-row {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .contacts-col-info {
        align-items: center;
    }
    .contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 8px;
    }
    .contact-item > div {
        align-items: center;
    }
    .contact-socials {
        border-top: 1px solid #8F00FF;
        border-bottom: 1px solid #8F00FF;
        padding-top: 24px;
        padding-bottom: 24px;
        margin-top: 24px;
        justify-content: center;
    }
    .contact-socials a {
        margin-right: 8px;
    }
}

/* Zayavka section (vanilla) */
.zayavka-section {
    padding: 60px 20px 80px;
    background: rgb(10, 1, 18) !important;
    background-color: rgb(10, 1, 18) !important;
    position: relative;
    z-index: 1;
}
.zayavka-inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}
.zayavka-title {
    color: #fff;
    font-size: 32px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px;
    text-align: center;
}
.zayavka-sub {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 28px;
    color: #8F00FF !important;
}
.zayavka-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 16px;
}
.zayavka-form input {
    width: 100%;
    padding: 15px 24px;
    background: #0A0112 !important;
    background-color: #0A0112 !important;
    border: 1px solid #471870;
    border-radius: 14px;
    color: #FFFFFF;
    font-size: 16px;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}
.zayavka-form input::placeholder {
    color: rgba(255,255,255,0.4);
}
.zayavka-form input:focus {
    border-color: #8F00FF;
}
.zayavka-btn {
    padding: 15px 32px;
    background: #8F00FF;
    color: #FFFFFF;
    border: none;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s;
}
.zayavka-btn:hover {
    background: #7a00d9;
}
.zayavka-privacy {
    color: rgba(255,255,255,0.5);
    font-size: 13px;
    line-height: 1.4;
}
.zayavka-privacy a {
    color: #8F00FF;
    text-decoration: underline;
}

/* Equipment section (vanilla) */
.equip-section {
    padding: 60px 20px;
    position: relative;
}
.equip-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.equip-title {
    text-align: center;
    color: #FFFFFF;
    font-size: 32px;
    margin: 0 0 40px;
    font-weight: 600;
    text-transform: uppercase;
}
.equip-subtitle {
    color: #8F00FF;
    font-size: 20px;
    font-weight: 300;
    margin: 0 0 24px;
    text-align: center;
    /* border-left: 3px solid #8F00FF; */
}
.equip-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.equip-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #0A0112;
    border: 1px solid #471870;
    border-radius: 14px;
    padding: 20px 20px;
}
.equip-icon-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 16px;
}
.equip-icon-item span {
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 300;
    margin: 0;
}
.equip-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.equip-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #0A0112;
    border: 1px solid #471870;
    border-radius: 12px;
    padding: 20px 16px;
    font-family: 'Rubik', sans-serif;
}
.equip-card img {
    width: 100%;
    max-width: 180px;
    height: 160px;
    object-fit: contain;
    margin-bottom: 12px;
}
.equip-card h4 {
    color: #FFFFFF;
    font-size: 17px;
    margin: 0 0 6px;
}
.equip-card p {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    margin: 0;
}
@media (max-width: 1024px) {
    .equip-icons {
        grid-template-columns: repeat(2, 1fr);
    }
    .equip-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .equip-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    .equip-cards .equip-card:nth-child(3n) {
        grid-column: 1 / -1;
    }
}
@media (max-width: 600px) {
    .equip-icons {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Vozmozhnosti section (vanilla) */
.vozmozhnosti-section {
    padding: 60px 20px;
    position: relative;
}
.vozmozhnosti-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.vozmozhnosti-title {
    text-align: center;
    color: #FFFFFF;
    font-size: 32px;
    margin: 0 0 40px;
    text-transform: uppercase;
}
.vozmozhnosti-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.vozmozhnosti-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #0A0112;
    border: 1px solid #471870;
    border-radius: 14px;
    padding: 32px 20px;
}
.vozmozhnosti-item img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    margin-bottom: 16px;
}
.vozmozhnosti-item h3 {
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 500;
    margin: 0;
}
@media (max-width: 1024px) {
    .vozmozhnosti-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .howto-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-cards {
        grid-template-columns: 1fr;
    }
    .hero-icons {
        gap: 16px;
    }
    .hero-icon-item {
        width: 100px;
    }
}
@media (max-width: 768px) {
    .about-checklist {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .hero-section {
        overflow: visible;
        min-height: auto;
    }
    .hero-content {
        position: relative;
        inset: auto;
        align-items: flex-start;
        justify-content: flex-start;
        min-height: auto;
    }
    .hero-icons {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        margin: 0;
        max-width: none;
        width: 100%;
        padding: 140px 20px 24px 12px;
        box-sizing: border-box;
    }
    .hero-icon-item {
        flex-direction: row;
        align-items: center;
        text-align: left;
        gap: 16px;
        width: 100%;
    }
    .hero-icon-item img {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }
    .hero-icon-item span {
        font-size: 14px;
        flex: 1;
    }
    .hero-btn-wrap {
        text-align: center;
        padding: 0 16px 24px;
    }
}
@media (max-width: 767px) {
    .vozmozhnosti-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .howto-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .howto-section {
        padding: 40px 16px;
    }
    .howto-title {
        font-size: 24px;
    }
    .howto-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .about-title {
        font-size: 28px;
    }
    .about-subtitle {
        font-size: 16px;
    }
}
@media (max-width: 480px) {
    .hero-icons {
        gap: 0;
        padding: 120px 16px 20px 12px;
    }
    .hero-icon-item img {
        width: 46px;
        height: 46px;
        min-width: 46px;
    }
    .hero-icon-item span {
        font-size: 13px;
    }
    .about-title {
        font-size: 22px;
    }
    .about-subtitle {
        font-size: 14px;
    }
}
/* Внутренняя секция с иконками — без видео */
.max_height_mob_style {
    position: relative;
    background: transparent;
}


/* === Responsive === */
@media (max-width: 767px) {
    /* На мобилке хедер 75px */
    .hero-video {
        top: 75px !important;
        height: calc(100% - 75px) !important;
    }
    .about-inner {
        padding: 0 16px;
    }
    .about-section {
        padding: 40px 0 30px;
    }
    .about-card {
        padding: 20px 16px;
    }
    .about-price {
        font-size: 26px;
    }
    .gallery-section {
        padding: 0 16px;
    }
    /* Fix: только картинка */
    .gallery-collapsible {
        max-height: 420px;
    }
    .gallery-toggle-btn {
        padding: 10px 24px;
        font-size: 14px;
    }
    .video-carousel {
        padding: 0 40px;
    }
    .carousel-slide {
        flex: 0 0 100%;
        width: 100%;
        max-width: 100%;
    }
    .carousel-btn {
        width: 34px;
        height: 34px;
    }
    .carousel-btn-prev { left: 2px; }
    .carousel-btn-next { right: 2px; }
    .video-play-btn svg {
        width: 48px;
        height: 34px;
    }
    .gift-section {
        padding: 50px 0 40px;
    }
    .gift-section-title {
        font-size: 22px;
        letter-spacing: 1px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    .gift-cards-row {
        flex-direction: column;
        align-items: center;
        gap: 50px;
        padding: 0 30px;
    }
    .gift-card {
        max-width: 300px;
        width: 100%;
    }
    .gift-modal {
        padding: 24px 20px 22px;
    }
    /* Скрыть волны на фоне */
    .wave_max_size,
    .gift-wave-bg,
    .big_wave_bottom {
        display: none !important;
    }
    /* Модалка формы: поправить вёрстку на мобилке */
    .modal_form_block {
        width: calc(100% - 32px) !important;
        max-width: none;
        left: 50% !important;
        right: auto;
        margin-left: 0;
        padding: 44px 16px 20px;
        max-height: calc(100vh - 24px);
        overflow-y: auto;
        box-sizing: border-box;
        -webkit-overflow-scrolling: touch;
    }
    .modal_form_block .wrap_send_forms {
        width: 100%;
        box-sizing: border-box;
    }
    .modal_form_block input:not([type="submit"]) {
        box-sizing: border-box;
        width: 100%;
    }
    .modal_form_block input[type="submit"] {
        width: 100%;
        max-width: 100%;
    }
    .close_modal_block {
        right: 12px;
        top: 12px;
        width: 32px;
        height: 32px;
    }
}
@media (max-width: 945px) {
    .studiya-hero {
        padding-top: 200px;
    }
    .studiya-grid-3 {
        flex-wrap: wrap;
        overflow-x: visible;
        justify-content: center;
    }
    .studiya-grid-3 > * {
        flex: 1 1 220px;
        min-width: 200px;
        max-width: 100%;
    }
    .studiya-page .new_block_crown.studiya-block-dark {
        border: none;
        background: transparent;
        padding: 0;
        margin: 0;
        gap: 16px;
    }
    .studiya-page .new_block_crown .left_bl_cr,
    .studiya-page .new_block_crown .right_bl_cr {
        width: 100%;
        border-right: none;
        background: #0A0112;
        border: 1px solid rgba(143, 0, 255, 0.4);
        border-radius: 16px;
        padding: 24px;
        box-shadow: 0 0 24px rgba(143, 0, 255, 0.15);
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .gallery-collapsible {
        max-height: 600px;
    }
    .carousel-slide {
        flex: 0 0 calc(50% - 8px);
        width: calc(50% - 8px);
        max-width: calc(50% - 8px);
    }
    .gift-cards-row {
        gap: 20px;
    }
    .gift-card {
        flex: 1 1 180px;
        max-width: 240px;
        min-width: 180px;
        padding: 25px 15px 24px;
    }
    .gift-card-price {
        font-size: 30px;
    }
    .gift-section-title {
        font-size: 26px;
    }
    /* Studiya page tablet */
    .studiya-container {
        padding: 0 24px;
    }
    .studiya-grid-3 {
        flex-wrap: wrap;
        overflow-x: visible;
        justify-content: center;
        gap: 20px;
    }
    .studiya-grid-3 > * {
        flex: 1 1 220px;
        min-width: 200px;
        max-width: 320px;
    }
    .studiya-page .studiya-section h3 {
        font-size: 28px;
    }
}

/* ============================================
   МОБИЛЬНОЕ МЕНЮ: левая панель
   ============================================ */

/* Overlay за панелью: только правая часть экрана, не перекрывает панель */
.mobile-menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 320px;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 99990;
}
body.open_menu_class .mobile-menu-overlay {
    display: block;
}

/* ============================================
   EQUIPMENT PAGE STYLES (oborudovanie.html)
   ============================================ */

.page-equipment {
    background: #000;
}

/* Equipment Hero Section */
.equipment-hero {
    background: linear-gradient(135deg, #1a0033 0%, #000 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.equipment-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.equipment-hero .title_mini_colors {
    font-size: 24px;
    color: #8F00FF;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 15px 40px;
    font-size: 18px;
    min-width: 200px;
}

/* Equipment Section */
.equipment-section {
    position: relative;
    padding: 80px 20px;
    background: #000;
    overflow: hidden;
}

.equipment-section .wave_max_size {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1920px;
    height: auto;
    pointer-events: none;
    opacity: 0.3;
    z-index: 0;
}

.equipment-section h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
}

.equipment-section .section-description {
    font-size: 18px;
    color: #ccc;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* Equipment Grid */
.equipment-grid {
    display: grid;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.audio-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.video-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.equipment-item {
    background: rgba(143, 0, 255, 0.05);
    border: 1px solid rgba(143, 0, 255, 0.2);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.equipment-item:hover {
    transform: translateY(-5px);
    border-color: rgba(143, 0, 255, 0.5);
    box-shadow: 0 10px 30px rgba(143, 0, 255, 0.2);
}

.equipment-image {
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
}

.equipment-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.equipment-item h3 {
    font-size: 22px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 10px;
    text-align: center;
}

.equipment-spec {
    font-size: 16px;
    color: #8F00FF;
    margin-bottom: 15px;
    font-weight: 500;
}

.equipment-item p {
    font-size: 15px;
    color: #ccc;
    line-height: 1.6;
}

/* Video Equipment Sub-section */
.video-equipment-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(143, 0, 255, 0.2);
}

/* Gallery Section */
.gallery-section {
    padding: 0;
    /* background: #000; */
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3/2;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1a0033 0%, #000 100%);
}

.form-content {
    max-width: 800px;
    margin: 0 auto;
}

.form-text {
    text-align: center;
    margin-bottom: 40px;
}

.form-text h3 {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
}

.form-text p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.form-note {
    font-size: 18px;
    color: #8F00FF;
    font-weight: 600;
}

.form-fields {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-fields input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(143, 0, 255, 0.3);
    border-radius: 8px;
    color: #fff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-fields input:focus {
    outline: none;
    border-color: #8F00FF;
    background: rgba(255, 255, 255, 0.08);
}

.form-fields input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-privacy {
    text-align: center;
    font-size: 14px;
    color: #999;
    margin-top: 15px;
}

.form-privacy a {
    color: #8F00FF;
    text-decoration: underline;
}

/* Responsive Styles for Equipment Page */
@media (max-width: 768px) {
    .equipment-hero h1 {
        font-size: 32px;
    }
    
    .equipment-hero .title_mini_colors {
        font-size: 18px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .equipment-section {
        padding: 60px 15px;
    }
    
    .equipment-section h3 {
        font-size: 28px;
    }
    
    .equipment-section .section-description {
        font-size: 16px;
    }
    
    .equipment-grid {
        gap: 30px;
    }
    
    .audio-grid,
    .video-grid {
        grid-template-columns: 1fr;
    }
    
    .equipment-image {
        height: 200px;
    }
    
    .video-equipment-section {
        margin-top: 60px;
        padding-top: 40px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-form-section {
        padding: 60px 15px;
    }
    
    .form-text h3 {
        font-size: 28px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .equipment-hero h1 {
        font-size: 40px;
    }
    
    .audio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .video-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ===========================================
   STUDIYA PAGE (чистий HTML, без Elementor)
   =========================================== */
.studiya-page .site-header {
    margin-bottom: -110px;
    background-color: #0A0112;
}
@media (max-width: 768px) {
    .studiya-page .site-header {
        margin-bottom: -230px;
    }
    .studiya-hero {
        padding-top: 280px;
    }
    .studiya-grid-3 {
        flex-wrap: wrap !important;
        overflow-x: visible !important;
        justify-content: center;
    }
    .studiya-grid-3 > * {
        flex: 1 1 220px !important;
        min-width: 200px !important;
        max-width: 100%;
    }
}

/* studiya-* layout classes */
.studiya-section {
    position: relative;
    /* padding: 60px 0; */
}
.studiya-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.studiya-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.studiya-grid-2 {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
}
.studiya-hero .studiya-grid-2 {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 24px;
}
.studiya-hero .studiya-grid-2 > * {
    flex: 0 0 auto;
}
.studiya-grid-2 > * {
    flex: 1 1 calc(50% - 10px);
}
.studiya-grid-3 {
    display: flex;
    flex-wrap: nowrap;
    gap: 24px;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
}
.studiya-grid-3 > * {
    flex: 1 1 0;
    min-width: 180px;
}
.studiya-card {
    background: #0A0112;
    border: 1px solid #471870;
    border-radius: 14px;
    padding: 18px;
    text-align: center;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.studiya-card:hover {
    border-color: rgba(143, 0, 255, 0.5);
    box-shadow: 0 4px 20px rgba(143, 0, 255, 0.15);
}
.studiya-card img {
    width: 100%;
    max-width: 120px;
    height: auto;
    object-fit: contain;
    margin: 0 auto 16px;
    display: block;
}
.studiya-grid.studiya-grid-3 .studiya-card img {
    width: 80px;
    height: 80px;
    max-width: 80px;
    object-fit: contain;
}
.studiya-card h4 {
    color: #fff;
    font-size: 20px;
    margin: 0 0 12px;
}
.studiya-card p {
    margin: 0 0 8px;
    font-size: 15px;
    line-height: 1.4;
}
.studiya-card .price {
    display: block;
    color: #8F00FF;
    font-size: 28px;
    font-weight: 600;
    margin: 12px 0 16px;
}
.studiya-card .price span {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
}
.studiya-card .studiya-btn {
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
    word-wrap: break-word;
    overflow-wrap: break-word;
    padding: 12px 16px;
    font-size: 14px;
}
.studiya-card .price.tr_line_down_white {
    text-decoration: line-through;
    color: rgba(143, 0, 255, 0.5) !important;
    font-size: 20px;
    margin: 8px 0 4px;
}
.studiya-btn {
    display: inline-block;
    padding: 15px 32px;
    background: #8F00FF;
    color: #fff !important;
    border: none;
    border-radius: 14px;
    text-decoration: none !important;
    font-weight: 500;
    font-size: 16px;
    transition: background 0.2s, transform 0.2s;
}
.studiya-btn:hover {
    background: #7a00d9;
    transform: translateY(-1px);
}
.studiya-hero .studiya-btn {
    background: transparent;
    border: 2px solid #8F00FF;
    color: #8F00FF !important;
}
.studiya-hero .studiya-btn:hover {
    background: #8F00FF;
    color: #fff !important;
}
.studiya-checklist {
    margin: 24px 0;
}
.studiya-checklist ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* gap: 12px 24px; */
}
.studiya-checklist li {
    display: flex;
    align-items: center;
    gap: 12px;
    /* margin-bottom: 12px; */
    color: #fff;
    font-size: 16px;
}
.studiya-checklist img {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}
.studiya-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}
.studiya-contact-item img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    flex-shrink: 0;
}
.studiya-contact-item a {
    color: #8F00FF;
    font-size: 18px;
    font-weight: 500;
    text-decoration: none;
}
.studiya-contact-item a:hover {
    color: #fff;
}
.studiya-contact-item p {
    margin: 0;
    color: #FFFFFF;
    font-size: 14px;
}
.studiya-form input,
.studiya-form button {
    width: 100%;
    margin-bottom: 14px;
    padding: 15px 24px;
    border-radius: 14px;
    border: 1px solid #471870;
    background: #0A0112;
    color: #fff;
    font-size: 16px;
    box-sizing: border-box;
}
.studiya-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}
.studiya-form input:focus {
    border-color: #8F00FF;
    outline: none;
}
.studiya-form button[type="submit"] {
    background: #8F00FF;
    cursor: pointer;
    border: none;
    font-weight: 500;
    transition: background 0.2s;
}
.studiya-form button[type="submit"]:hover {
    background: #7a00d9;
}
.studiya-page .send_megaform_new {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 600px;
    margin: 0 auto 16px;
}
.studiya-page .send_megaform_new input,
.studiya-page .send_megaform_new button {
    flex: none;
    width: 100%;
}
.studiya-page .studiya-section h3 {
    color: #fff;
    font-size: 32px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 16px;
    text-align: center;
}
.studiya-page .studiya-section > .studiya-container > h3 + p,
.studiya-page .studiya-section > .studiya-container > p:first-of-type {
    text-align: center;
    margin-bottom: 24px;
    font-size: 52px;
}

/* Підзаголовки фіолетовим, по центру */
.studiya-subtitle-purple {
    color: #8F00FF !important;
    font-weight: 400;
    font-size: 20px !important;
}
.studiya-subtitle-center {
    text-align: center !important;
    margin-bottom: 24px;
    /* margin-top: 24px; */
}
.studiya-subtitle-purple.studiya-subtitle-center {
    font-size: 22px;
    margin-bottom: 20px;
    margin-top: 24px;
}

.studiya-record-note {
    text-align: center;
    margin-top: 24px;
}

/* 20px фіолетовий підзаголовок (Аудіо, Аудіо та відео) */
.studiya-sub-purple-20 {
    font-size: 20px !important;
    color: #8F00FF !important;
    text-align: center;
    margin-bottom: 24px;
}

/* 30px bold uppercase (Відповімо одразу!) */
.studiya-response-cta {
    font-size: 30px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    text-align: center;
    margin-bottom: 24px;
    color: #8F00FF !important;
}

.studiya-note-center {
    text-align: center;
    margin-bottom: 24px;
}

.studiya-block-dark {
    background:#0A0112;
    border: 1px solid rgba(143, 0, 255, 0.4);
    border-radius: 16px;
    padding: 20px;
    margin: 24px 0;
    box-shadow: 0 0 24px rgba(143, 0, 255, 0.15);
}

.studiya-page .studiya-section .price {
    color: #8F00FF;
    /* font-size: 16px; */
    line-height: 1.5;
    span {
        color: #fff;
    }
}
.studiya-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, #0A0112 0%, #1a0a2e 50%, #0A0112 100%);
    padding: 160px 0 100px;
}
@media (max-width: 768px) {
    .studiya-hero {
        padding-top: 280px !important;
    }
}
.studiya-hero .studiya-btn {
    min-width: 220px;
    text-align: center;
}
.studiya-hidden-phone {
    display: block;
}
.studiya-page .line_social_block_icons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 16px;
}
.studiya-page .line_social_block_icons a {
    color: #8F00FF;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(143, 0, 255, 0.4);
    border-radius: 8px;
    transition: all 0.2s;
}
.studiya-page .line_social_block_icons a:hover {
    color: #fff;
    border-color: #8F00FF;
    background: rgba(143, 0, 255, 0.2);
}
.studiya-page .new_block_crown,
.studiya-page .mini_block_lines {
    margin: 32px 0;
    p {
        text-align: center;
    }
}
.studiya-page .new_block_crown {
    display: flex;
    border-radius: 14px;
    padding: 12px 25px;
    width: 100%;
    border: 1px solid #471870;
     box-shadow: 0px 4px 8px 0px #47187052;
}
.studiya-page .left_bl_cr,
.studiya-page .right_bl_cr {
    display: flex;
    align-items: center;
}
.studiya-page .left_bl_cr .list_bl_cr,
.studiya-page .right_bl_cr .list_bl_cr {
    text-align: left;
}
.right_bl_cr {
    width: 50%;
}
.left_bl_cr {
    border-right: 1px solid #471870;
    width: 50%;
    text-align: left;
}
.studiya-page .image_bl_cr {
    flex-shrink: 0;
}
.studiya-page .new_block_crown .image_bl_cr img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}
.studiya-page .image_bl_cr img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}
.studiya-page .list_bl_cr {
    text-align: left;
}
.studiya-page .list_bl_cr p {
    margin: 0 0 10px;
    color: rgba(255, 255, 255, 0.95);
    font-size: 15px;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
    text-align: left;
}
.studiya-page .list_bl_cr p::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #8F00FF;
}
.studiya-page .list_bl_cr p:last-child {
    margin-bottom: 0;
}
.studiya-page .mini_block_lines {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
    width: 100%;
}
.studiya-page .one_mini_block_line {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    flex: 1 1 160px;
    min-width: 140px;
    min-height: 170px;
    padding: 20px 16px;
    background: #0A0112;
    border: 1px solid #471870;
    border-radius: 12px;
    box-shadow: 0px 4px 8px 0px #47187052;
}
.studiya-page .one_mini_block_line img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 12px;
    /* filter: drop-shadow(0 0 8px rgba(143, 0, 255, 0.4)); */
}
.studiya-page .one_mini_block_line p {
    margin: 0;
    font-size: 14px;
    line-height: 1.3;
    color: rgba(255, 255, 255, 0.95);
}
/* Wave in sections */
.studiya-section .wave_max_size {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: auto;
    opacity: 0.24;
    z-index: 0;
    pointer-events: none;
}
/* Contacts grid */
.studiya-section#kontakty .studiya-grid-2 {
    margin-top: 100px;
}
.studiya-section#kontakty .studiya-grid-2 > *:first-child {
    flex: 1 1 400px;
}
.studiya-section#kontakty .studiya-grid-2 > *:last-child {
    flex: 1 1 400px;
}
@media (max-width: 880px) {
    .studiya-section#kontakty .studiya-grid-2 {
        flex-direction: column;
        align-items: center;
    }
    .studiya-section#kontakty .studiya-grid-2 > *:last-child {
        width: 90%;
        max-width: 90vw;
    }
}
@media (max-width: 640px) {
    .studiya-section {
        padding: 40px 0;
    }
    .studiya-container {
        padding: 0 16px;
    }
    .studiya-grid-3 {
        flex-wrap: wrap;
        overflow-x: visible;
        justify-content: center;
        margin: 0;
        padding: 0;
    }
    .studiya-grid-3 > * {
        flex: 1 1 260px;
        min-width: 220px;
        max-width: 100%;
    }
    .studiya-grid-2 {
        flex-wrap: wrap;
    }
    .studiya-grid-2 > * {
        flex: 1 1 100%;
    }
    .studiya-hero .studiya-grid-2 {
        flex-wrap: wrap;
        justify-content: center;
    }
    .studiya-hero .studiya-grid-2 > * {
        flex: 1 1 auto;
        min-width: 200px;
    }
    .studiya-hidden-phone {
        display: none !important;
    }
    .studiya-page .new_block_crown {
        flex-direction: column;
        align-items: center;
    }
    .studiya-checklist ul {
        grid-template-columns: 1fr;
    }
    .studiya-page .studiya-section h3 {
        font-size: 24px;
    }
    .studiya-page .studiya-section > .studiya-container > h3 + p:not(.studiya-subtitle-purple),
    .studiya-page .studiya-section > .studiya-container > p:first-of-type:not(.studiya-subtitle-purple) {
        font-size: 28px;
    }
    .studiya-sub-purple-20 {
        font-size: 16px !important;
        margin-bottom: 20px;
    }
    .studiya-subtitle-purple {
        font-size: 16px !important;
    }
    .studiya-response-cta {
        font-size: 22px !important;
        margin-bottom: 20px;
    }
    .studiya-note-center {
        font-size: 14px;
        margin-bottom: 20px;
        padding: 0 8px;
    }
    .studiya-block-dark {
        padding: 20px 16px;
        margin: 16px 0;
    }
    .studiya-hero {
        padding: 280px 0 60px;
    }
    .studiya-hero .hero-btn-wrap {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .studiya-hero .studiya-btn {
        min-width: 100%;
        max-width: 280px;
    }
    .studiya-page .send_megaform_new {
        padding: 0 8px;
    }
    .studiya-page .mini_block_lines {
        gap: 16px;
    }
    .studiya-page .one_mini_block_line {
        flex: 1 1 120px;
        min-width: 100px;
    }
    .studiya-page .one_mini_block_line img {
        width: 60px;
        height: 60px;
    }
    .studiya-page .one_mini_block_line p {
        font-size: 12px;
    }
    .studiya-section#kontakty .studiya-grid-2 {
        flex-direction: column;
        gap: 24px;
    }
    .studiya-section#kontakty .studiya-grid-2 > * {
        flex: 1 1 100%;
    }
    .studiya-section#kontakty .studiya-grid-2 > *:first-child {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .studiya-section#kontakty .studiya-contact-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .studiya-section#kontakty .studiya-contact-item a,
    .studiya-section#kontakty .studiya-contact-item p {
        text-align: center;
    }
    .studiya-section#kontakty .contact-socials {
        border-top: 1px solid #8F00FF;
        border-bottom: 1px solid #8F00FF;
        padding-top: 24px;
        padding-bottom: 24px;
        margin-top: 24px;
        justify-content: center;
    }
    .studiya-page iframe {
        height: 350px;
    }
    .studiya-page .new_elems_footer > .studiya-container > p:last-child {
        font-size: 12px;
        padding: 0 8px;
    }
}

/* iPhone SE и узкие экраны: new_block_crown + studiya-subtitle-purple */
@media (max-width: 375px) {
    .studiya-subtitle-purple,
    .studiya-subtitle-purple.studiya-subtitle-center {
        font-size: 16px !important;
    }
    .studiya-page .new_block_crown .left_bl_cr,
    .studiya-page .new_block_crown .right_bl_cr {
        width: 100%;
        padding: 16px 12px;
        flex-direction: row;
        align-items: flex-start;
        gap: 10px;
    }
    .studiya-page .new_block_crown .image_bl_cr {
        flex-shrink: 0;
    }
    .studiya-page .new_block_crown .image_bl_cr img {
        width: 50px;
        height: 50px;
    }
    .studiya-page .new_block_crown .list_bl_cr {
        flex: 1;
        min-width: 0;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .studiya-page .new_block_crown .list_bl_cr p {
        font-size: 13px;
        overflow-wrap: break-word;
        word-wrap: break-word;
    }
    .studiya-page .mini_block_lines {
        flex-direction: column;
    }
    .studiya-page .mini_block_lines .one_mini_block_line {
        flex: 1 1 100%;
        min-width: 100%;
    }
}

/* new_elems_footer */
.studiya-page .new_elems_footer {
    padding: 60px 0 80px;
}
.studiya-page .new_elems_footer h3 {
    margin-bottom: 8px;
}
.studiya-page .new_elems_footer > .studiya-container > p:last-child {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 16px;
}
.studiya-page .new_elems_footer > .studiya-container > p:last-child a {
    color: #8F00FF;
    text-decoration: underline;
}

/* Map iframe */
.studiya-page iframe {
    width: 100%;
    max-width: 100%;
    height: 500px;
    border: 0;
    border-radius: 12px;
}

