/* GLOBAL RESET & FORCED BORDER REMOVAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    border: none !important; /* Полное исключение бордеров из макета */
}

:root {
    --theatric-light-bg: #F2D4C9;
    --theatric-white-pure: #FFFFFF;
    --theatric-dark-solid: #0C0F24;
    --theatric-neon-accent: #B22B5B;
    --theatric-text-slate: #5D6D7E;
}

body.neo-theatric-root {
    background-color: var(--theatric-light-bg);
    color: var(--theatric-dark-solid);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ШАБЛОН ХЕДЕРА: centered-minimal (Светлый чистый плакатный блок) */
.theatric-poster-header {
    background-color: var(--theatric-white-pure);
    padding: 40px 16px;
}

.poster-header-track {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.poster-main-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(14px, 3.5vw, 16px);
    font-weight: 700;
    color: var(--theatric-dark-solid);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    line-height: 1.4;
}

/* ОСНОВНОЙ КОНТЕЙНЕР */
.poster-layout-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 40px 16px;
}

/* DESIGN SYSTEM: «Neo-Brutalisme Teatral» (Острые прямые углы, жесткие плоские тени вместо рамок) */
.monolithic-product-block {
    background-color: var(--theatric-white-pure);
    padding: 24px;
    margin-bottom: 48px;
    border-radius: 0px !important;
    box-shadow: 12px 12px 0px var(--theatric-dark-solid);
}

@media (min-width: 768px) {
    .monolithic-product-block {
        padding: 64px;
    }
}

/* MOBILE-FIRST RESPONSIVE GRID */
.asymmetric-poster-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 768px) {
    .asymmetric-poster-grid {
        grid-template-columns: 0.95fr 1.05fr;
        align-items: start;
    }
}

/* CSS GALLERY ENGINE (FLAT, SHARP, NO BORDERS) */
.css-brutalist-slider {
    position: relative;
    width: 100%;
}

.native-hidden-switch {
    display: none !important;
    visibility: hidden;
    opacity: 0;
    position: absolute;
}

.projection-viewport-canvas {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 125%; /* Плакатная вертикальная галерея 3:4 */
    overflow: hidden;
    background-color: #FAFAFA;
    box-shadow: 8px 8px 0px var(--theatric-light-bg);
}

.projection-frame {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.projection-frame img {
    max-height: 100%;
    object-fit: contain;
}

#pane-1:checked ~ .projection-viewport-canvas .position-1,
#pane-2:checked ~ .projection-viewport-canvas .position-2,
#pane-3:checked ~ .projection-viewport-canvas .position-3,
#pane-4:checked ~ .projection-viewport-canvas .position-4 {
    opacity: 1;
    z-index: 10;
}

.flat-trigger-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-top: 20px;
}

.strip-btn-node {
    cursor: pointer;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theatric-white-pure);
    border-radius: 0px !important;
    box-shadow: 4px 4px 0px var(--theatric-light-bg);
}

.strip-btn-node img {
    object-fit: contain;
}

#pane-1:checked ~ .flat-trigger-strip .trigger-1,
#pane-2:checked ~ .flat-trigger-strip .trigger-2,
#pane-3:checked ~ .flat-trigger-strip .trigger-3,
#pane-4:checked ~ .flat-trigger-strip .trigger-4 {
    background-color: var(--theatric-neon-accent);
    box-shadow: 4px 4px 0px var(--theatric-dark-solid);
}

/* ТИПОГРАФИКА ДЕТАЛЕЙ ТОВАРА */
.theatric-badge-tag {
    display: inline-block;
    background-color: var(--theatric-dark-solid);
    color: var(--theatric-white-pure);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    padding: 6px 16px;
    margin-bottom: 24px;
}

.poster-product-title-h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(22px, 4.5vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--theatric-dark-solid);
    letter-spacing: -0.02em;
    margin-bottom: 28px;
}

.manifesto-copy-flow {
    font-size: 14px;
    color: var(--theatric-dark-solid);
}

.manifesto-lead-phrase {
    font-size: 16px;
    font-weight: 700;
    color: var(--theatric-neon-accent);
    margin-bottom: 24px;
    line-height: 1.5;
}

.manifesto-paragraph {
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.6;
}

/* КНОПКА СТА STYLE: solid С ЖЕСТКИМ ПЛОСКИМ СДВИГОМ ТЕНИ */
.theatric-action-portal {
    text-align: center;
    margin: 52px 0;
}

.neon-brutalist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: var(--theatric-neon-accent);
    color: var(--theatric-white-pure);
    font-family: 'Space Grotesk', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    text-decoration: none;
    padding: 18px 60px;
    min-height: 52px;
    width: 100%;
    max-width: 360px;
    border-radius: 0px !important;
    box-shadow: 8px 8px 0px var(--theatric-dark-solid);
    transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.neon-brutalist-btn:hover {
    transform: translate(2px, 2px);
    box-shadow: 6px 6px 0px var(--theatric-dark-solid);
}

/* ОТЗЫВЫ: АСИММЕТРИЧНЫЙ ПЛАКАТНЫЙ feed (Без рамок, плоские карточки) */
.theatric-proof-feed {
    background-color: var(--theatric-white-pure);
    padding: 24px;
    border-radius: 0px !important;
    box-shadow: 12px 12px 0px var(--theatric-dark-solid);
}

@media (min-width: 768px) {
    .theatric-proof-feed {
        padding: 56px;
    }
}

.feed-title-block {
    border-bottom: 2px solid var(--theatric-dark-solid);
    padding-bottom: 16px;
    margin-bottom: 40px;
}

.feed-main-heading-h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--theatric-dark-solid);
    text-align: center;
}

.feed-testimonials-stack {
    display: flex;
    flex-direction: column;
}

.theatric-review-node {
    border-bottom: 1px solid #E2E8F0;
    padding: 36px 0;
}

.theatric-review-node:first-child {
    padding-top: 0;
}

.theatric-review-node:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.review-asymmetric-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 768px) {
    .review-asymmetric-wrapper {
        flex-direction: row;
        gap: 48px;
    }
    .user-identity-column {
        width: 25%;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .review-text-column {
        flex: 1;
    }
}

.avatar-square-frame {
    width: 44px;
    height: 44px;
    background-color: #FAFAFA;
    box-shadow: 4px 4px 0px var(--theatric-light-bg);
    border-radius: 0px !important;
    overflow: hidden;
    margin-bottom: 12px;
}

.avatar-square-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.profile-username {
    font-family: 'Space Grotesk', sans-serif;
    display: block;
    font-weight: 700;
    font-size: 14px;
    color: var(--theatric-dark-solid);
}

.verified-purchase-pill {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #10B981;
    margin-top: 4px;
}

.rating-headline-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 8px;
}

.stars-cluster {
    color: var(--theatric-neon-accent);
    font-size: 13px;
    letter-spacing: 1px;
}

.headline-message-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--theatric-dark-solid);
}

.timeline-indicator-stamp {
    font-size: 12px;
    color: var(--theatric-text-slate);
    margin-bottom: 14px;
}

.actual-review-body {
    font-size: 14px;
    color: #2D3748;
    line-height: 1.6;
}

.shadow-flat-media {
    box-shadow: 4px 4px 0px var(--theatric-light-bg);
    border-radius: 0px !important;
}

/* АБСОЛЮТНО КОНТРАСТНЫЙ СТИЛЬНЫЙ ФУТЕР (Чистый белый фон, темный текст) */
.theatric-brutalist-footer {
    background-color: var(--theatric-white-pure);
    padding: 64px 16px;
    margin-top: 64px;
    border-top: 4px solid var(--theatric-dark-solid);
}

.footer-layout-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.footer-product-disclaimer-heading {
    font-size: 12px;
    font-weight: 400;
    color: var(--theatric-text-slate);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.footer-legal-links-track {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
    border-top: 1px solid #E2E8F0;
    padding-top: 32px;
}

.footer-nav-anchor-link {
    color: var(--theatric-dark-solid);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.footer-nav-anchor-link:hover {
    color: var(--theatric-neon-accent);
}