/* =========================================
   CORE & TYPOGRAPHY
   ========================================= */
@font-face {
    font-family: 'Benzin';
    src: url('../fonts/Benzin-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Codec Pro';
    src: url('../fonts/CodecPro-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Codec Pro';
    src: url('../fonts/CodecPro-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

:root {
    /*--z-green-dark: #122416;*/
    --z-green-dark: #1D3C25;
    --z-green-accent: #1D3C25;
    --card-background: rgba(20, 36, 23, 0.5);
    --z-yellow: #FFE600;
    --z-cream: #FDFBED;
    --z-dark: #1B1E1C;
    --z-white-05: rgba(253, 251, 237, 0.05);
    --z-white-10: rgba(253, 251, 237, 0.1);
    --z-white-15: rgba(253, 251, 237, 0.15);
    --z-white-20: rgba(253, 251, 237, 0.2);
    --z-white-50: rgba(253, 251, 237, 0.5);
    --z-transition: all 0.3s ease;
    scroll-behavior: smooth;
    scroll-padding-top: 125px;
}

#yii-debug-toolbar {
    color: black;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Codec Pro', sans-serif;
    background-color: var(--z-green-dark);
    color: var(--z-cream);
    overflow-x: hidden;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

body.hidden {
    overflow: hidden;
}

main {
    padding-top: 160px;
}

@media (max-width: 991px) {
    main {
        padding-top: 90px;
    }
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--z-green-dark);
}

::-webkit-scrollbar-thumb {
    background: rgba(253, 251, 237, 0.2);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--z-yellow);
}

.text-yellow {
    color: var(--z-yellow) !important;
}

.text-accent {
    color: var(--z-yellow);
}

.border-bottom-z {
    border-bottom: 1px solid rgba(253, 251, 237, 0.08);
}

.border-top-z {
    border-top: 1px dashed rgba(253, 251, 237, 0.1);
}

h1, h2, h3, h4, h5, h6, .site-logo, .title-main {
    font-family: 'Benzin', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

p {
    margin: 0;
}

.title-main, .hero-title {
    font-size: clamp(18px, 2vw, 36px);
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
    margin-bottom: 0;
    width: 100%;
}

@media (max-width: 991px) {
    .title-main, .hero-title, .hero-desc {
        text-align: center;
    }
}

@media (max-width: 340px) {
    .title-main, .hero-title {
        font-size: 16px;
    }
}

.hero-section {
    padding-bottom: 40px;
}


/* =========================================
   GLOBAL GRIDS & EFFECTS
   ========================================= */
.grid-system, .grid-overlay {
    position: fixed;
    inset: 0;
    background-image:
            linear-gradient(to right, rgba(253, 251, 237, 0.03) 1px, transparent 1px),
            linear-gradient(to bottom, rgba(253, 251, 237, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.grid-overlay {
    position: absolute;
    opacity: 0.5;
}

.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 1;
}

.floating-particle {
    position: absolute;
    background: linear-gradient(135deg, rgba(255, 230, 0, 0.1) 0%, rgba(255, 230, 0, 0) 100%);
    border: 1px solid rgba(255, 230, 0, 0.05);
    backdrop-filter: blur(8px);
    border-radius: 12px;
    pointer-events: none;
    z-index: 0;
}

.section-footer {
    display: flex;
    justify-content: center;
}

/* =========================================
   UI ELEMENTS
   ========================================= */
.btn-trigger-consult {
    cursor: pointer;
}

.btn-solid, .btn-outline, .btn-outline-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    cursor: pointer;
}

.btn-solid {
    height: 64px;
    padding: 0 40px;
    background: var(--z-yellow);
    color: var(--z-dark);
    border: none;
    box-shadow: 0 4px 12px rgba(255, 230, 0, 0.2);
    font-size: 15px;
}

.btn-solid:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 32px rgba(255, 230, 0, 0.3);
}

.btn-outline {
    height: 64px;
    padding: 0 40px;
    background: rgba(253, 251, 237, 0.08);
    color: #ffffff;
    border: 1px solid rgba(253, 251, 237, 0.2);
    font-size: 14px;
}

.btn-outline:hover {
    background: rgba(253, 251, 237, 0.15);
    border-color: rgba(253, 251, 237, 0.4);
    transform: translateY(-3px);
}

.btn-outline-small {
    height: 48px;
    padding: 0 24px;
    font-size: 14px;
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.2);
    color: #ffffff;
}

.btn-outline-small:hover {
    background: rgba(255, 230, 0, 0.1);
    border-color: var(--z-yellow);
    color: var(--z-yellow);
    transform: translateY(-2px);
}

.btn-solid svg, .btn-outline svg {
    transition: transform 0.3s ease;
}

.btn-solid:hover svg, .btn-outline:hover svg {
    transform: translateX(4px);
}

.btn-outline-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 64px;
    padding: 0 48px;
    background: rgba(253, 251, 237, 0.05);
    color: #ffffff;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid rgba(253, 251, 237, 0.15);
    border-radius: 100px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
    letter-spacing: 0.5px;
}

.btn-outline-large:hover {
    border-color: rgba(253, 251, 237, 0.3);
    color: #ffffff;
    background: rgba(253, 251, 237, 0.1);
    transform: translateY(-4px);
}

.glass-btn {
    background: rgba(253, 251, 237, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(253, 251, 237, 0.15);
}

.badge-outline {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 230, 0, 0.1);
    color: var(--z-yellow);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 24px;
    border-radius: 100px;
    border: 1px solid rgba(255, 230, 0, 0.3);
    backdrop-filter: blur(4px);
}

.glass-badge {
    background: rgba(255, 230, 0, 0.05);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.glass-card {
    background: var(--card-background);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(253, 251, 237, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 32px;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease, background 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(20, 36, 23, 0.85);
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 230, 0, 0.1);
}


.spotlight-card {
    position: relative;
    overflow: hidden;
    --x: 50%;
    --y: 50%;
}

.spotlight {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--x) var(--y), rgba(255, 230, 0, 0.08) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

.spotlight-card:hover .spotlight {
    opacity: 1;
}

.form-input {
    width: 100%;
    height: 64px;
    background: rgba(20, 36, 23, 0.5);
    border: 1px solid rgba(253, 251, 237, 0.15);
    border-radius: 16px;
    padding: 0 24px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--z-yellow);
    background: rgba(20, 36, 23, 0.8);
    box-shadow: 0 0 0 4px rgba(255, 230, 0, 0.1);
}

.form-input::placeholder {
    color: rgba(253, 251, 237, 0.3);
}

/* =========================================
   GLOBAL ANIMATIONS
   ========================================= */
@keyframes fadeUp {
    0% { opacity: 0; transform: translateY(30px); }
    100% { opacity: 1; transform: translateY(0); }
}

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.2; }
    100% { transform: scale(1.2); opacity: 0.4; }
}

@keyframes levitation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

@keyframes rotate {
    100% { transform: rotate(360deg); }
}

.levitate { animation: levitation 8s ease-in-out infinite; }
.float-delay-1 { animation: levitation 9s ease-in-out infinite; animation-delay: -3s; }
.float-delay-2 { animation: levitation 7s ease-in-out infinite; animation-delay: -5s; }
.float-delay-3 { animation: levitation 8.5s ease-in-out infinite; animation-delay: -2s; }
.float-delay-4 { animation: levitation 7.5s ease-in-out infinite; animation-delay: -4s; }

.anim-1 { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; }
.anim-2 { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.1s forwards; opacity: 0; }
.anim-3 { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.2s forwards; opacity: 0; }
.anim-4 { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; opacity: 0; }
.anim-5 { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards; opacity: 0; }
.anim-6 { animation: fadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards; opacity: 0; }

@media (max-width: 991px) {
    .hud-ring,
    .glow-1,
    .glow-2,
    .anim-1,
    .anim-2,
    .anim-3,
    .anim-4,
    .anim-5,
    .anim-6,
    .particle-1,
    .particle-2,
    .float-delay-1,
    .float-delay-2,
    .float-delay-3,
    .float-delay-4,
    .levitate {
        animation: none !important;
        opacity: 1 !important;
    }
}

/* =========================================
   SEO СЕКЦІЯ ТЕКСТУ
   ========================================= */
.seo-section {
    padding: 80px 0;
    background-color: var(--z-green-dark);
    border-top: 1px solid rgba(253, 251, 237, 0.05);
    z-index: 10;
}

.seo-wrapper {
    max-height: 120px;
    overflow: hidden;
    position: relative;
    transition: max-height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.seo-wrapper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to bottom, rgba(18, 36, 22, 0), var(--z-green-dark));
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.seo-wrapper.expanded {
    max-height: 2000px;
}

.seo-wrapper.expanded::after {
    opacity: 0;
}

.seo-text h2 {
    font-family: 'Benzin', sans-serif;
    font-size: clamp(19px, 1.5vw, 24px);
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.seo-text h3 {
    font-family: 'Benzin', sans-serif;
    font-size: 18px;
    color: var(--z-yellow);
    margin: 32px 0 16px 0;
    font-weight: 800;
    text-transform: uppercase;
}

.seo-text p {
    font-size: 17px;
    color: rgba(253, 251, 237, 0.7);
    line-height: 1.7;
    margin-bottom: 16px;
}

.btn-read-more {
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.15);
    color: var(--z-yellow);
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 12px 28px;
    border-radius: 100px;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

.btn-read-more:hover {
    background: rgba(255, 230, 0, 0.1);
    border-color: var(--z-yellow);
    transform: translateY(-2px);
}

.btn-read-more svg {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-read-more.active svg {
    transform: rotate(180deg);
}

@media (max-width: 768px) {
    .seo-section {
        padding: 60px 0;
    }
}

/* =========================================
   CORE: BREADCRUMBS
   ========================================= */
.breadcrumbs-list {
    list-style: none;
    font-family: 'Codec Pro', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumbs-list a {
    color: rgba(253, 251, 237, 0.5);
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.breadcrumbs-list a:hover {
    color: var(--z-yellow);
}

.breadcrumbs-list .separator {
    color: rgba(253, 251, 237, 0.2);
    font-weight: 400;
}

.breadcrumbs-list .current {
    color: rgba(253, 251, 237, 0.8);
    pointer-events: none;
}

.breadcrumb-home-icon {
    vertical-align: middle;
    margin-top: -2px;
}

/* Фикс для мобилок */
@media (max-width: 768px) {
    /* Контейнер навигации */
    .breadcrumbs-nav {
        margin-bottom: 12px !important;
        overflow: hidden; /* Защита от выхода за рамки экрана */
        width: 100%;
    }

    /* Сам список крошек */
    .breadcrumbs-list {
        display: flex !important;
        flex-wrap: nowrap !important; /* Запрещаем перенос элементов на новую строку */
        overflow-x: auto !important; /* Включаем горизонтальный скролл */
        overflow-y: hidden;
        white-space: nowrap !important; /* Гарантия того, что текст не оборвется */
        padding: 4px 0 !important;

        /* Плавный скролл на iOS устройствах */
        -webkit-overflow-scrolling: touch;

        /* Скрываем стандартный системный скроллбар в Firefox */
        scrollbar-width: none;
    }

    /* Скрываем стандартный вебкит-скроллбар (Chrome, Safari, Opera), чтобы было красиво */
    .breadcrumbs-list::-webkit-scrollbar {
        display: none;
    }

    /* Элементы крошек */
    .breadcrumbs-list .breadcrumb-item {
        display: inline-block !important;
        flex-shrink: 0; /* Запрещаем элементам сжиматься, сохраняем их полную ширину */
    }

    .breadcrumbs-list .separator {
        flex-shrink: 0;
        padding: 0 4px !important;
    }
}

@media (max-width: 768px) {
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
    }
}

/* =========================================
   GLOBAL: CONTACT FORM SECTION
   ========================================= */
.contact-section {
    border-top: 1px solid rgba(253, 251, 237, 0.1);
    background-color: var(--z-green-dark);
}

.contact-badge {
    border: 1px solid rgba(255, 230, 0, 0.3);
    color: var(--z-yellow);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 800;
    letter-spacing: 1px;
    background: rgba(255, 230, 0, 0.05);
}

.manager-avatar {
    width: 64px;
    height: 64px;
    border: 2px solid var(--z-yellow);
    object-fit: cover;
    object-position: top;
}

.manager-name {
    font-family: 'Benzin', sans-serif;
}

.manager-role {
    font-family: 'Codec Pro', sans-serif;
}

/* Стилі самої форми */
.form-title {
    font-family: 'Benzin', sans-serif;
}

.form-label-custom {
    font-family: 'Codec Pro', sans-serif;
    display: block;
    margin-bottom: 8px;
}

.form-input {
    background: rgba(253, 251, 237, 0.02);
    border: 1px solid rgba(253, 251, 237, 0.1);
    color: #ffffff;
    border-radius: 12px;
    padding: 16px 20px;
    font-family: 'Codec Pro', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    background: rgba(253, 251, 237, 0.05);
    border-color: var(--z-yellow);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 230, 0, 0.1);
    outline: none;
}

.form-input::placeholder {
    color: rgba(253, 251, 237, 0.3);
}

/* Колір тексту при автозаповненні в Chrome/Safari */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
    -webkit-box-shadow: 0 0 0 30px #1a291f inset !important;
    -webkit-text-fill-color: white !important;
    transition: background-color 5000s ease-in-out 0s;
}

.form-submit-btn {
    height: 60px;
    border: none;
    font-size: 16px;
}

.privacy-text {
    font-family: 'Codec Pro', sans-serif;
    font-size: 12px;
}

/* =========================================
   АДАПТИВ (Мобільний плоский дизайн)
   ========================================= */
@media (max-width: 768px) {
    .contact-form-card {
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }

    .form-title {
        text-align: center;
    }
}

/* =========================================
   СЕКЦІЯ ТАЙМЛАЙН (Етапи співпраці)
   ========================================= */
.timeline-section {
    padding: clamp(60px, 10vh, 120px) 0;
    background-color: var(--z-green-dark);
    overflow: hidden;
    border: none;
    position: relative;
    z-index: 10;
}

.timeline-glow {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50vw;
    height: 70vh;
    background: radial-gradient(ellipse, rgba(255, 230, 0, 0.04) 0%, transparent 60%);
    filter: blur(120px);
    pointer-events: none;
}

.timeline-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 50px;
    margin-top: clamp(20px, 4vw, 30px);
}

/* --- Лінія та крапки (ДЕСКТОП) --- */
.timeline-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 3px;
    background: rgba(253, 251, 237, 0.08);
    border-radius: 4px;
    z-index: 1;
}

.track-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: var(--z-yellow);
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(255, 230, 0, 0.5);
    transition: height 0.2s linear;
}

.timeline-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
    z-index: 2;
    opacity: 0.3;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.timeline-item.active {
    opacity: 1;
    transform: translateY(0);
}

.timeline-item.left {
    justify-content: flex-start;
}

.timeline-node {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--z-green-dark);
    border: 3px solid rgba(253, 251, 237, 0.2);
    transition: all 0.3s ease;
    z-index: 3;
}

.timeline-item.active .timeline-node {
    border-color: var(--z-yellow);
    background: var(--z-yellow);
    box-shadow: 0 0 15px rgba(255, 230, 0, 0.6);
    transform: translate(-50%, -50%) scale(1.2);
}

/* --- Картки --- */
.timeline-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 2vw, 24px);
    width: 45%;
    background: rgba(20, 36, 23, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(253, 251, 237, 0.08);
    border-radius: 20px;
    padding: clamp(20px, 3vw, 28px);
    transition: all 0.3s ease;
}

.timeline-item.left .timeline-card {
    flex-direction: row-reverse;
    text-align: right;
}

.timeline-item.right .timeline-card {
    flex-direction: row;
    text-align: left;
}

.timeline-item.active .timeline-card {
    border-color: rgba(255, 230, 0, 0.25);
    background: var(--card-background);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.timeline-item.active .timeline-card:hover {
    transform: translateY(-4px) scale(1.01);
    border-color: var(--z-yellow);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3), inset 0 0 0 1px rgba(255, 230, 0, 0.1);
}

.timeline-num {
    font-family: 'Benzin', sans-serif;
    font-size: clamp(32px, 4vw, 45px);
    font-weight: 900;
    color: rgba(255, 230, 0, 0.1);
    line-height: 1;
    flex-shrink: 0;
    transition: color 0.3s ease, text-shadow 0.3s ease, transform 0.3s ease;
}

.timeline-item.active .timeline-num {
    color: rgba(255, 230, 0, 0.3);
}

.timeline-item.active .timeline-card:hover .timeline-num {
    color: var(--z-yellow);
    text-shadow: 0 0 20px rgba(255, 230, 0, 0.3);
    transform: scale(1.05);
}

.card-title {
    font-family: 'Benzin', sans-serif;
    font-size: clamp(14px, 1.5vw, 17px);
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    line-height: 1.4;
    margin: 0;
    letter-spacing: -0.01em;
}

.card-desc {
    font-family: 'Codec Pro', sans-serif;
    font-size: clamp(13px, 1.2vw, 14px);
    color: rgba(253, 251, 237, 0.7);
    line-height: 1.5;
    margin-top: 8px;
    margin-bottom: 0;
}

.timeline-end-node {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%) scale(0.8);
    width: 50px;
    height: 50px;
    background: var(--card-background);
    border: 2px solid rgba(253, 251, 237, 0.15);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
    opacity: 0.4;
    transition: all 0.4s ease;
}

.timeline-end-node svg { stroke: rgba(253, 251, 237, 0.4); transition: stroke 0.3s ease; }
.timeline-end-node.active { opacity: 1; transform: translate(-50%, 50%) scale(1); background: var(--z-yellow); border-color: var(--z-yellow); box-shadow: 0 0 25px rgba(255, 230, 0, 0.4); }
.timeline-end-node.active svg { stroke: var(--z-dark); }


/* =========================================
   АДАПТИВ (Мобільний Свайп)
   ========================================= */
@media (max-width: 991.98px) {
    /* Ховаємо центральну лінію та вузли */
    .timeline-track, .timeline-node, .timeline-end-node {
        display: none !important;
    }

    /* Перетворюємо контейнер на горизонтальний скрол */
    .timeline-wrapper {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory; /* Магнітимо картки по центру */
        gap: 16px;
        padding-bottom: 24px;
        margin-top: 16px;
        scrollbar-width: none; /* Firefox */
        /* Робимо так, щоб скрол виходив за межі контейнера */
        padding-left: 5vw;
        padding-right: 5vw;
        margin-left: -5vw;
        margin-right: -5vw;
    }

    .timeline-wrapper::-webkit-scrollbar {
        display: none; /* Chrome/Safari */
    }

    .timeline-item {
        flex: 0 0 85%; /* Ширина картки: 85% екрану, щоб було видно наступну */
        scroll-snap-align: center;
        opacity: 1 !important;
        transform: none !important;
        justify-content: stretch;
    }

    /* Перевизначаємо напрямок карток (щоб всі були однаковими) */
    .timeline-item.left .timeline-card,
    .timeline-item.right .timeline-card {
        width: 100%;
        height: 100%;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        padding: 24px;
        gap: 12px;
    }

    /* Акцент на номері кроку зверху ліворуч */
    .timeline-num {
        color: var(--z-yellow) !important;
        font-size: 32px;
        opacity: 1;
        text-shadow: none !important;
    }

    .card-title { font-size: 16px; }
}

@media (max-width: 576px) {
    /* На дуже малих екранах робимо картку трохи ширшою */
    .timeline-item { flex: 0 0 90%; }
}

/* =========================================
   GLOBAL: FAQ ACCORDION
   ========================================= */
.faq-section {
    background-color: var(--z-green-dark);
}

.faq-accordion .accordion-item {
    background: rgba(20, 36, 23, 0.4);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(253, 251, 237, 0.08);
    border-radius: 20px !important; /* Bootstrap override */
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(255, 230, 0, 0.2);
}

.faq-accordion .accordion-button {
    background: transparent;
    color: #ffffff;
    box-shadow: none;
    padding: 24px;
    font-family: 'Benzin', sans-serif;
    outline: none;
    font-size: clamp(16px, 2vw, 20px) !important;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
}

/* Активний стан питання */
.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--z-yellow);
    background: rgba(255, 230, 0, 0.05);
    box-shadow: none;
}

/* Фарбуємо стандартну стрілочку Bootstrap у білий колір */
.faq-accordion .accordion-button::after {
    filter: invert(1) grayscale(100%) brightness(200%);
    transition: all 0.3s ease;
}

/* Фарбуємо стрілочку у жовтий при відкритті */
.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(80%) sepia(50%) saturate(1000%) hue-rotate(360deg) brightness(110%);
}

.faq-accordion .accordion-body {
    padding: 12px 24px 24px 24px;
    font-family: 'Codec Pro', sans-serif;
    color: rgba(253, 251, 237, 0.6);
    font-size: clamp(14px, 1.5vw, 17px);
    line-height: 1.6;
}

/* =========================================
   АДАПТИВ (Мобільний плоский дизайн)
   ========================================= */
@media (max-width: 768px) {
    .faq-accordion .accordion-item {
        background: transparent !important;
        border: none !important;
        border-bottom: 1px solid rgba(253, 251, 237, 0.1) !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        backdrop-filter: none !important;
        margin-bottom: 0 !important;
    }

    .faq-accordion .accordion-item:last-child {
        border-bottom: none !important;
    }

    .faq-accordion .accordion-button {
        padding: 16px 0;
    }

    /* Активний стан питання на мобільному (без фону) */
    .faq-accordion .accordion-button:not(.collapsed) {
        background: transparent;
    }

    .faq-accordion .accordion-body {
        padding: 0 0 16px 0;
    }
}

/* ===================================
   ОСНОВНИЙ КОНТЕЙНЕР
   =================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(29, 60, 37, 0.2);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(253, 251, 237, 0.05);
    transition: all 0.4s ease;
}

.main-header.is-sticky {
    background: rgba(29, 60, 37, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* ===================================
   TOP BAR (Лого, Соцмережі, Телефон)
   =================================== */
.header-row-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.site-logo {
    height: 50px;
}

.site-logo svg {
    width: 100%;
    height: 100%;
}

/* Соцмережі */
.header-socials {
    display: flex;
    align-items: center;
    gap: 24px;
}

.social-link {
    color: rgba(253, 251, 237, 0.6);
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--z-yellow);
}

/* Екшени (Телефон + Кнопка + Бургер) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 24px;
}

.header-phone {
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    letter-spacing: 0.5px;
}

.header-phone:hover {
    color: var(--z-yellow);
}

/* --- Стили интеграции кнопки корзины в шапку сайта --- */
.header-cart-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: transparent;
    border: 1px solid rgba(253, 251, 237, 0.2);
}

.mobile-cart-toggle {
    background: transparent;
    border: 1px solid rgba(253, 251, 237, 0.2);
    padding: 12px 28px;
    border-radius: 100px;
    color: #ffffff;
}

/* Управление отображением бейджа количества */
.main-header .cart-badge {
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-sidebar .cart-badge {
    display: inline-block;
}

/* Скрытие бейджа, если в корзине 0 товаров */
.cart-badge-hidden {
    display: none !important;
}

.header-btn {
    padding: 12px 28px;
    background: transparent;
    border: 1px solid rgba(253, 251, 237, 0.2);
    color: #ffffff;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
    cursor: pointer;
}

.header-btn:hover {
    background: var(--z-yellow);
    border-color: var(--z-yellow);
    color: var(--z-dark);
    transform: translateY(-2px);
}

/* Бургер */
.burger-trigger {
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
    margin-left: 10px;
}

.burger-trigger span,
.burger-trigger span::before,
.burger-trigger span::after {
    width: 100%;
    height: 2px;
    background: #ffffff;
    position: absolute;
    left: 0;
    transition: 0.3s ease;
    border-radius: 2px;
}

.burger-trigger span::before { content: ''; top: -8px; }
.burger-trigger span::after { content: ''; bottom: -8px; }

/* ===================================
   NAV BAR (Меню + Мови)
   =================================== */
.header-nav {
    border-top: 1px solid rgba(253, 251, 237, 0.05);
    padding: 12px 0;
}

.nav-flex-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu a {
    color: rgba(253, 251, 237, 0.8);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #ffffff;
    background: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--z-yellow);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px var(--z-yellow);
}

.nav-menu a:hover::after {
    width: 100%;
}

.dropdown-toggle-label {
    color: rgba(253, 251, 237, 0.8);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: default;
    display: flex;
    align-items: baseline;
    gap: 4px;
    transition: color 0.3s;
}

.dropdown-hover:hover .dropdown-toggle-label {
    color: #ffffff;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    padding: 0;
    z-index: 1000;
    background: none;
    border: none;
}

.dropdown-menu-inner {
    background: rgba(20, 36, 23, 0.95);
    border: 1px solid rgba(253, 251, 237, 0.1);
    padding: 10px;
    width: fit-content;
    width: -moz-fit-content;
    border-radius: 16px;
}

.dropdown-hover:hover > .dropdown-menu {
    display: block;
}

.dropdown-item {
    padding: 4px 0;
}

/* Перемикач мов */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 800;
}

.lang-link {
    color: rgba(253, 251, 237, 0.4);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-link:hover, .lang-link.active {
    color: var(--z-yellow);
}

.lang-sep {
    color: rgba(253, 251, 237, 0.2);
}

/* ===================================
   MOBILE SIDEBAR
   =================================== */
.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: var(--z-green-dark);
    z-index: 2000;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 30px;
    /* ВАЖЛИВО: для скролу */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.mobile-sidebar.is-active {
    right: 0;
}

.sidebar-inner {
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.sidebar-close {
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 2.5rem;
    cursor: pointer;
    align-self: flex-end;
    line-height: 1;
    transition: color 0.3s ease;
}

.sidebar-close:hover {
    color: var(--z-yellow);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
    margin-bottom: 24px;
    flex-grow: 1;
}

.mobile-nav a {
    color: #ffffff;
    text-decoration: none;
    font-family: 'Codec Pro', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 8px 0;
    display: block;
}

.mobile-nav a:hover {
    color: var(--z-yellow);
}

.mobile-group-title {
    color: var(--z-yellow);
    font-family: 'Benzin', sans-serif;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-top: 12px;
    margin-bottom: 10px;
    letter-spacing: 1px;
    opacity: 0.9;
}

.mobile-sub-link {
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding-left: 15px !important;
    border-left: 2px solid rgba(255, 230, 0, 0.2);
}

.mobile-sub-link:hover {
    color: var(--z-yellow) !important;
    border-left-color: var(--z-yellow);
}

.sidebar-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.sidebar-phone {
    color: var(--z-yellow);
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: 1px;
}

/* Затемнення фону */
.sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(29, 60, 37, 0.8);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.sidebar-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.burger-trigger {
    display: none;
    background: transparent;
    border: none;
    width: 30px;
    height: 30px;
    position: relative;
    cursor: pointer;
}

@media (max-width: 991.98px) {
    .burger-trigger {
        display: block;
    }

    .header-row-top {
        padding: 10px 0;
    }

    .site-logo {
        width: 150px;
        height: 30px;
    }
}

.sidebar-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sidebar-socials {
    display: flex;
    gap: 15px;
    margin-top: 10px;
}

.sidebar-socials a {
    color: rgba(253, 251, 237, 0.5);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
}

.footer {
    background-color: var(--z-green-dark);
    padding: 100px 0 40px 0;
    border-top: 1px solid rgba(253, 251, 237, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 10;
}

.footer-logo {
    height: 32px;
    margin-bottom: 24px;
}

.footer-logo svg {
    width: 100%;
    height: 100%;
}

.footer .grid-overlay {
    opacity: 0.3;
}

.border-bottom-line {
    border-bottom: 1px solid rgba(253, 251, 237, 0.08);
}

.footer-desc {
    color: rgba(253, 251, 237, 0.6);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 320px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(253, 251, 237, 0.15);
    background: rgba(253, 251, 237, 0.03);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--z-cream);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--z-yellow);
    border-color: var(--z-yellow);
    color: var(--z-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(255, 230, 0, 0.2);
}

.footer-title {
    font-family: 'Benzin', sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.footer-links a {
    color: rgba(253, 251, 237, 0.6);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-links a:hover {
    color: var(--z-yellow);
    transform: translateX(6px);
}

.contact-item {
    color: rgba(253, 251, 237, 0.8);
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 700;
    transition: color 0.3s;
    line-height: 1.5;
    display: block;
}

a.contact-item:hover {
    color: var(--z-yellow);
}

.footer-bottom {
    color: rgba(253, 251, 237, 0.4);
    font-size: 0.9rem;
    padding-top: 10px;
}

.footer-bottom-link {
    color: rgba(253, 251, 237, 0.5);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-bottom-link:hover {
    color: var(--z-yellow);
}

@media (max-width: 991px) {
    .footer-brand { margin-bottom: 24px; }
    .footer-links { margin-bottom: 16px; }
    .footer-contacts { margin-top: 16px; }
}

@media (max-width: 768px) {
    .footer { padding: 80px 0 30px 0; }
    .footer-title { margin-bottom: 20px; }
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1050;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-window {
    width: 100%;
    max-width: 450px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    padding: 40px;
    background: rgba(20, 36, 23, 0.85);
    border: 1px solid rgba(253, 251, 237, 0.08);
    border-radius: 24px;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.4);
}

.modal-overlay.active .modal-window {
    transform: translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: rgba(253, 251, 237, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-close:hover {
    color: var(--z-yellow);
}

.modal-title {
    font-family: 'Benzin', sans-serif;
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 12px;
    text-align: center;
}

.modal-desc {
    font-family: 'Codec Pro', sans-serif;
    font-size: 15px;
    color: rgba(253, 251, 237, 0.7);
    margin-bottom: 32px;
    text-align: center;
    line-height: 1.5;
}

.form-label {
    display: block;
    font-family: 'Codec Pro', sans-serif;
    font-size: 13px;
    font-weight: 800;
    color: rgba(253, 251, 237, 0.6);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-input {
    width: 100%;
    background: rgba(20, 36, 23, 0.6);
    border: 1px solid rgba(253, 251, 237, 0.1);
    border-radius: 12px;
    padding: 16px;
    color: #ffffff;
    font-family: 'Codec Pro', sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color 0.3s;
}

.form-input::placeholder {
    color: rgba(253, 251, 237, 0.3);
}

.form-input:focus {
    border-color: var(--z-yellow);
}

@media (max-width: 767px) {
    .modal-window {
        padding: 32px 24px;
        margin: 16px;
    }

    .modal-title {
        font-size: 20px;
    }
}

/* =========================================
   UI ELEMENTS: E-COMMERCE MINICART PANEL
   ========================================= */

/* Затемнение заднего плана при открытии корзины */
.minicart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2001;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.minicart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Сама выезжающая боковая панель */
.minicart-panel {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 460px;
    height: 100vh;
    background: var(--z-green-dark, #1D3C25);
    border-left: 1px solid rgba(253, 251, 237, 0.08);
    z-index: 2002;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.minicart-panel.active {
    right: 0;
}

/* Шапка панели */
.minicart-header {
    padding: 32px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(253, 251, 237, 0.08);
}

.minicart-title {
    font-family: 'Benzin', sans-serif;
    font-size: 20px;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
}

.minicart-close {
    background: transparent;
    border: none;
    color: rgba(253, 251, 237, 0.6);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s ease, transform 0.3s ease;
}

.minicart-close:hover {
    color: var(--z-yellow, #FFE600);
    transform: rotate(90deg);
}

.minicart-close svg {
    width: 24px;
    height: 24px;
}

/* Общая обертка контента (когда есть товары) */
.minicart-content-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    overflow: hidden;
}

.minicart-content-hidden {
    display: none !important;
}

/* Скролл-зона со списком товаров */
.minicart-body {
    flex-grow: 1;
    overflow-y: auto;
    padding: 24px;
}

.minicart-body::-webkit-scrollbar {
    width: 6px;
}

.minicart-body::-webkit-scrollbar-track {
    background: transparent;
}

.minicart-body::-webkit-scrollbar-thumb {
    background: rgba(253, 251, 237, 0.1);
    border-radius: 3px;
}

.minicart-qty-input {
    width: 36px;
    height: 28px;
    background: transparent;
    border: none;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    padding: 0;
    -moz-appearance: textfield;
}

.minicart-qty-input::-webkit-outer-spin-button,
.minicart-qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Карточка товара в корзине */
.minicart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--card-background, rgba(20, 36, 23, 0.5));
    border: 1px solid rgba(253, 251, 237, 0.06);
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
    position: relative;
}

.minicart-item:last-child {
    margin-bottom: 0;
}

.minicart-item-img-wrap {
    width: 70px;
    height: 70px;
    background: rgba(253, 251, 237, 0.02);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}

.minicart-item-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.minicart-item-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-right: 20px;
}

.minicart-item-title {
    font-size: 14px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.4;
}

.minicart-item-meta {
    font-size: 12px;
    color: rgba(253, 251, 237, 0.5);
}

.minicart-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 8px;
}

.minicart-qty-control {
    display: flex;
    align-items: center;
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.1);
    overflow: hidden;
    border-radius: 100px;
}

.qty-btn {
    background: transparent;
    border: none;
    color: #ffffff;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: background 0.2s;
}

.qty-btn:hover {
    background: rgba(253, 251, 237, 0.1);
}

.qty-val {
    font-size: 13px;
    font-weight: 700;
    min-width: 24px;
    text-align: center;
}

.minicart-item-price {
    font-size: 15px;
    font-weight: 800;
    color: var(--z-yellow, #FFE600);
}

/* Кнопка удаления товара (крестик) */
.minicart-item-remove {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: rgba(253, 251, 237, 0.3);
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    padding: 0;
    transition: color 0.2s;
}

.minicart-item-remove:hover {
    color: #ff4d4d;
}

/* Нижний блок (Подвал корзины) */
.minicart-footer {
    padding: 24px;
    background: rgba(11, 21, 14, 0.5);
    border-top: 1px solid rgba(253, 251, 237, 0.08);
}

.delivery-row, .minicart-total-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: rgba(253, 251, 237, 0.6);
    margin-bottom: 12px;
}

.minicart-total-row {
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 24px;
    padding-top: 12px;
    border-top: 1px dashed rgba(253, 251, 237, 0.1);
}

#minicartTotal {
    color: var(--z-yellow, #FFE600);
    font-family: 'Benzin', sans-serif;
    font-size: 20px;
}

.minicart-submit-btn {
    font-size: 14px;
}

/* --- СОСТОЯНИЕ: ПУСТАЯ КОРЗИНА --- */
.minicart-empty-state {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 24px;
    text-align: center;
}

.minicart-empty-state-hidden {
    display: none !important;
}

.minicart-empty-icon {
    color: rgba(253, 251, 237, 0.15);
    margin-bottom: 20px;
}

.minicart-empty-text {
    font-size: 16px;
    color: rgba(253, 251, 237, 0.5);
    margin-bottom: 32px;
    font-weight: 600;
}

/* Адаптивность панели под мобильные */
@media (max-width: 575.98px) {
    .minicart-panel {
        max-width: 100%;
        border-left: none;
    }
}