/* ===== БАЗА ===== */

@font-face {
    font-family: 'ArcoCyrillic';
    src: url('./fonts/arcocyrillic.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body{
    height: 100%;
}

body{
    background: #000;
    overflow-x: hidden;
    overflow-y: auto;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #f2ff10;
}

/* ===== HERO-СЕКЦИЯ Dazzle shop ===== */

.hero{
    position: relative;
    min-height: 100vh;
    padding: 72px 6vw 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    isolation: isolate; /* чтобы фон не мешал контенту */
}

/* фон как в оригинале */
.hero::before{
    content: "";
    position: absolute;
    inset: 0;
    background-image:
            radial-gradient(circle at 40% 50%, #610b4b 0%, #a30d8a00 40%),
            radial-gradient(circle at 65% 60%, #420a50 0%, #580e7500 45%),
            radial-gradient(circle at 40% 60%, #076066 0%, #17777700 45%);
    background-blend-mode: screen;
    opacity: 1;
    z-index: -1;
}

.hero-inner{
    width: 100%;
    max-width: 1160px;
    display: flex;
    align-items: stretch;
    gap: 4rem;
}

/* Левая колонка: текст */

.hero-left{
    width: 50%;
    font-family: 'ArcoCyrillic', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: #f2ff10;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-title{
    font-size: clamp(30px, 3.8vw, 48px);
    line-height: 1.15;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-text{
    font-size: 18px;
    line-height: 1.6;
    max-width: 32rem;
    opacity: 0.96;
}

/* Правая колонка: картинка + кнопка */

.hero-right{
    width: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    font-family: 'ArcoCyrillic', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* Карточка с картинкой — БЕЗ рамок, подсветки и текста */

.hero-card{
    width: 100%;
    max-width: 420px;
}

.hero-card-image{
    width: 100%;
}

.hero-card-image img{
    display: block;
    width: 100%;
    height: auto;
    border-radius: 20px; /* можешь убрать, если нужен совсем "голый" прямоугольник */
    /* без теней, без градиентов, без анимаций */
}

/* CTA: стрелки + зелёная кнопка с белым шрифтом */

.hero-cta{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

.hero-cta-arrows{
    display: flex;
    gap: 8px;
}

.hero-cta-arrows span{
    font-size: 22px;
    color: #f2ff10;
    animation: arrow-bounce 1.1s infinite;
    opacity: 0.8;
}

.hero-cta-arrows span:nth-child(2){
    animation-delay: 0.08s;
}
.hero-cta-arrows span:nth-child(3){
    animation-delay: 0.16s;
}

@keyframes arrow-bounce{
    0%{
        transform: translateY(0);
        opacity: 0.5;
    }
    50%{
        transform: translateY(6px);
        opacity: 1;
    }
    100%{
        transform: translateY(0);
        opacity: 0.5;
    }
}

/* зелёная кнопка с белым шрифтом */

.hero-cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 22px 56px;
    border-radius: 999px;
    border: none;
    background: #22c55e; /* зелёный */
    color: #ffffff;      /* белый шрифт */
    font-family: 'ArcoCyrillic', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    text-decoration: none;
    box-shadow: 0 0 30px rgba(34, 197, 94, 0.8);
    cursor: pointer;
    transition:
            transform 0.15s ease-out,
            box-shadow 0.15s ease-out,
            background 0.15s ease-out;
    white-space: nowrap;
}

.hero-cta-btn:hover{
    transform: translateY(-1px) scale(1.03);
    background: #4ade80;
    box-shadow: 0 0 40px rgba(74, 222, 128, 0.95);
}

.hero-cta-btn:active{
    transform: translateY(0) scale(0.97);
    box-shadow: 0 0 20px rgba(34, 197, 94, 0.65);
}

/* ===== АДАПТИВ HERO ===== */

@media (max-width: 900px){
    .hero{
        min-height: auto;
        padding: 40px 16px 52px;
    }

    .hero-inner{
        flex-direction: column;
        gap: 28px;
    }

    .hero-left,
    .hero-right{
        width: 100%;
    }

    .hero-title{
        font-size: 26px;
    }

    .hero-text{
        font-size: 16px;
        max-width: 100%;
    }

    .hero-right{
        align-items: center;
    }

    .hero-card{
        max-width: 100%;
    }

    .hero-cta-btn{
        width: 100%;
        max-width: 360px;
        font-size: 16px;
        padding: 18px 24px;
    }
}
.hero-title-accent{
    color: #22c55e;        /* зелёный акцент — можно поменять на любой */
    font-weight: 700;      /* чуть жирнее для выделения */
}

@media (max-width: 480px){
    .hero{
        padding: 32px 12px 44px;
    }

    .hero-title{
        font-size: 22px;
        margin-bottom: 14px;
    }

    .hero-text{
        font-size: 15px;
    }

    .hero-cta-btn{
        font-size: 14px;
        padding: 16px 20px;
    }
}

/* ===== СЕКЦИЯ КРУПНЫХ "ОКОН" FEATURES ===== */

.features{
    background: #000000;
    padding: 64px 6vw 80px;
}

.features-inner{
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}

/* заголовок секции */
.features-title{
    font-family: 'ArcoCyrillic', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    text-align: center;
    margin-bottom: 36px;
    color: #f2ff10;
}

/* сетка окон */
.features-grid{
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

/* карточка-окно */
.feature-card{
    border-radius: 18px;
    border: 1px solid rgba(140, 219, 14, 0.5);
    padding: 28px 22px 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(0, 0, 0, 0.78);
    backdrop-filter: blur(10px);
    min-height: 210px;
}

/* большая PNG-иконка сверху */
.feature-icon{
    display: block;
    width: 130px;
    height: auto;
    margin-bottom: 12px;
}

/* линия "————————————" */
.feature-separator{
    width: 100%;
    height: 1px;
    background: linear-gradient(
            to right,
            rgba(140, 219, 14, 0.0),
            rgba(140, 219, 14, 0.9),
            rgba(140, 219, 14, 0.0)
    );
    margin: 6px 0 12px;
}

/* текст в окне */
.feature-text{
    font-family: 'ArcoCyrillic', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    line-height: 1.5;
    color: #f2ff10;
    text-align: center;
}

/* адаптив features */

@media (max-width: 1200px){
    .features-grid{
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 700px){
    .features{
        padding: 40px 16px 48px;
    }

    .features-grid{
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .feature-card{
        min-height: 0;
        padding: 22px 16px 18px;
    }

    .feature-icon{
        width: 100px;
    }

    .feature-text{
        font-size: 16px;
    }
}
/* ===== СЕКЦИЯ "НАШИ ТОВАРЫ" ===== */

.products{
    background: #000000;
    padding: 64px 6vw 80px;
}

.products-inner{
    width: 100%;
    max-width: 1160px;
    margin: 0 auto;
}

.products-title{
    font-family: 'ArcoCyrillic', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    text-align: center;
    color: #f2ff10;
    margin-bottom: 32px;
}

/* Обёртка карусели */

.products-carousel{
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* Лента с товарами — автопрокрутка */

.products-track{
    display: flex;
    align-items: stretch;
    gap: 24px;
    animation: products-scroll 25s linear infinite;
}

/* Пауза при наведении мыши */

.products-carousel:hover .products-track{
    animation-play-state: paused;
}

/* Карточка товара */

.product-card{
    flex: 0 0 230px; /* чуть крупнее карточка */
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* Картинка — фиксированная высота, чтобы всё было на одном уровне */

.product-image{
    width: 100%;
    height: 230px;          /* одинаковая высота для всех */
    border-radius: 18px;    /* можешь убрать, если нужны прямые углы */
    overflow: hidden;
}

.product-image img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;      /* картинка заполняет блок, без искажений */
}

/* Название товара — крупнее */

.product-name{
    font-family: 'ArcoCyrillic', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;        /* было 16px */
    font-weight: 600;
    color: #f2ff10;
    text-align: center;
    margin-top: 6px;
}

/* Анимация непрерывной прокрутки */

@keyframes products-scroll{
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-50%);
    }
}

/* ===== АДАПТИВ ДЛЯ СЕКЦИИ ТОВАРОВ ===== */

@media (max-width: 900px){
    .products{
        padding: 48px 16px 56px;
    }

    .product-card{
        flex: 0 0 200px;
    }

    .product-image{
        height: 210px;
    }
}

@media (max-width: 600px){
    .products{
        padding: 40px 12px 48px;
    }

    .products-track{
        gap: 16px;
        animation-duration: 30s; /* помедленнее на телефоне */
    }

    .product-card{
        flex: 0 0 180px;
    }

    .product-image{
        height: 190px;
    }

    .product-name{
        font-size: 16px;    /* чуть меньше на совсем маленьких */
    }
}
/* ===== СЕКЦИЯ "СОТРУДНИЧЕСТВО" ===== */

.partners{
    background: rgba(245, 230, 210, 0.08); /* бежевый полупрозрачный тон поверх чёрного */
    padding: 72px 6vw 80px;
}

.partners-inner{
    width: 100%;
    max-width: 880px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
    align-items: center;
}

/* Окно с текстом */

.partners-window{
    width: 100%;
    border-radius: 26px;
    padding: 28px 24px 30px;
    background: rgba(245, 230, 210, 0.35); /* более плотный беж внутри */
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.16);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 18px;
}

/* Линии "————————————" сверху и снизу */

.partners-separator{
    width: 100%;
    height: 1px;
    background: linear-gradient(
            to right,
            rgba(0, 0, 0, 0),
            rgba(0, 0, 0, 0.72),
            rgba(0, 0, 0, 0)
    );
}

/* Текст в окне */

.partners-text{
    font-family: 'ArcoCyrillic', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 20px;
    line-height: 1.6;
    text-align: center;
    color: #f2ff10; /* стиль меняется — текст чёрный */
    max-width: 32rem;
}

/* Блок со стрелками и кнопкой */

.partners-cta{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-top: 4px;
}

/* Чёрные стрелки вниз */

.partners-arrows{
    display: flex;
    gap: 8px;
}

.partners-arrows span{
    font-size: 22px;
    color: #facc15; /* чёрные стрелки */
    opacity: 0.85;
    animation: partners-arrow-bounce 1.1s infinite;
}

.partners-arrows span:nth-child(2){
    animation-delay: 0.08s;
}
.partners-arrows span:nth-child(3){
    animation-delay: 0.16s;
}

@keyframes partners-arrow-bounce{
    0%{
        transform: translateY(0);
        opacity: 0.5;
    }
    50%{
        transform: translateY(6px);
        opacity: 1;
    }
    100%{
        transform: translateY(0);
        opacity: 0.5;
    }
}

/* Жёлтая кнопка с чёрным шрифтом */

.partners-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 52px;
    border-radius: 999px;
    border: none;
    background: #facc15; /* ярко-жёлтая */
    color: #000000;       /* чёрный текст */
    font-family: 'ArcoCyrillic', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.11em;
    text-decoration: none;
    box-shadow: 0 0 26px rgba(250, 204, 21, 0.7);
    cursor: pointer;
    transition:
            transform 0.15s ease-out,
            box-shadow 0.15s ease-out,
            background 0.15s ease-out;
    white-space: nowrap;
}

.partners-btn:hover{
    transform: translateY(-1px) scale(1.03);
    background: #fde047;
    box-shadow: 0 0 34px rgba(250, 204, 21, 0.9);
}

.partners-btn:active{
    transform: translateY(0) scale(0.97);
    box-shadow: 0 0 18px rgba(250, 204, 21, 0.6);
}

/* Большая картинка по центру */

.partners-image-wrapper{
    width: 100%;
    display: flex;
    justify-content: center;
}

.partners-image-wrapper img{
    display: block;
    max-width: 640px;
    width: 100%;
    height: auto;
    border-radius: 24px;
}

/* ===== АДАПТИВ ===== */

@media (max-width: 900px){
    .partners{
        padding: 56px 16px 64px;
    }

    .partners-text{
        font-size: 18px;
    }

    .partners-window{
        padding: 24px 18px 26px;
    }
}
.partners-title{
    font-family: 'ArcoCyrillic', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: clamp(26px, 3vw, 36px);
    text-align: center;
    color: #f2ff10;         /* чёрный, как текст в окне */
    margin-bottom: 12px;
}

@media (max-width: 600px){
    .partners{
        padding: 44px 12px 56px;
    }

    .partners-text{
        font-size: 16px;
    }

    .partners-btn{
        width: 100%;
        max-width: 360px;
        font-size: 16px;
        padding: 16px 24px;
    }

    .partners-image-wrapper img{
        border-radius: 18px;
    }
}

