.product-hero {
    padding-bottom: 60px;
    background-color: var(--z-green-dark);
    position: relative;
    z-index: 10;
}

.product-glow {
    position: absolute;
    top: 5%;
    right: 0%;
    width: 50vw;
    height: 50vh;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.08) 0%, transparent 60%);
    filter: blur(150px);
    pointer-events: none;
    z-index: 1;
}

.gallery-main {
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 16px;
    background: rgba(253, 251, 237, 0.02);
    border: 1px solid rgba(253, 251, 237, 0.08);
    position: relative;
}

.gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.gallery-badges {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.gallery-badge {
    padding: 8px 16px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    font-family: 'Codec Pro', 'Manrope', sans-serif;
}

.badge-hit {
    background: var(--z-yellow);
    color: var(--z-dark);
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.3);
}

.badge-new {
    background: #00BFA5;
    color: var(--z-dark);
    box-shadow: 0 4px 15px rgba(0, 191, 165, 0.3);
}

.badge-stock {
    background: rgba(0, 191, 165, 0.15);
    color: #00BFA5;
    border: 1px solid rgba(0, 191, 165, 0.3);
    backdrop-filter: blur(4px);
}

.gallery-thumbs {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scrollbar-width: none;
}

.gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.thumb {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.6;
    flex-shrink: 0;
    background: rgba(253, 251, 237, 0.02);
}

.thumb:hover, .thumb.active {
    opacity: 1;
    border-color: var(--z-yellow);
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Codec Pro', 'Manrope', sans-serif;
    font-size: 13.6px;
    font-weight: 800;
    color: #00BFA5;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    background: rgba(0, 191, 165, 0.1);
    padding: 6px 14px;
    border-radius: 100px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #00BFA5;
    border-radius: 50%;
    box-shadow: 0 0 10px #00BFA5;
}

.product-h1 {
    font-family: 'Benzin', 'Manrope', sans-serif;
    font-size: clamp(20px, 2vw, 32px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.product-features li {
    position: relative;
    padding-left: 28px;
    font-family: 'Codec Pro', 'Manrope', sans-serif;
    font-size: 16.8px;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.5;
}

.product-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFE600' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.profit-box {
    background: var(--card-background);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 230, 0, 0.2);
    border-radius: 24px;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.profit-icon {
    width: 64px;
    height: 64px;
    background: rgba(255, 230, 0, 0.1);
    border: 1px solid rgba(255, 230, 0, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--z-yellow);
    flex-shrink: 0;
}

.profit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.profit-lbl {
    font-family: 'Codec Pro', 'Manrope', sans-serif;
    font-size: 13.6px;
    font-weight: 800;
    color: rgba(253, 251, 237, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profit-val {
    font-family: 'Benzin', 'Manrope', sans-serif;
    font-size: 25.6px;
    font-weight: 900;
    color: var(--z-yellow);
    text-shadow: 0 0 15px rgba(255, 230, 0, 0.2);
}

.price-box {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px dashed rgba(253, 251, 237, 0.1);
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.price-val {
    font-family: 'Benzin', 'Manrope', sans-serif;
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.price-val span {
    font-size: 32px;
    color: rgba(253, 251, 237, 0.5);
}

.credit-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 8px;
    font-family: 'Codec Pro', 'Manrope', sans-serif;
    font-size: 13.6px;
    font-weight: 800;
    text-transform: uppercase;
}

.price-tax {
    font-family: 'Codec Pro', 'Manrope', sans-serif;
    font-size: 14.4px;
    color: rgba(253, 251, 237, 0.6);
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-tax svg {
    color: #00BFA5;
}

.product-actions {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 24px;
}

.btn-buy {
    flex: 1.2;
    height: 64px;
    background: var(--z-yellow);
    color: var(--z-dark);
    font-family: 'Codec Pro', 'Manrope', sans-serif;
    font-size: 16.8px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 10px 24px rgba(255, 230, 0, 0.2);
    text-decoration: none;
}

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

.btn-ask {
    flex: 0.8;
    height: 64px;
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.2);
    border-radius: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    font-family: 'Codec Pro', 'Manrope', sans-serif;
    font-size: 15.2px;
    font-weight: 800;
    text-transform: uppercase;
    transition: all 0.3s ease;
    backdrop-filter: blur(8px);
}

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

.secure-checkout {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Codec Pro', 'Manrope', sans-serif;
    font-size: 13.6px;
    color: rgba(253, 251, 237, 0.5);
}

.product-about-section {
    padding: 100px 0;
    background-color: var(--z-green-dark);
    border-top: 1px solid rgba(253, 251, 237, 0.05);
}

.details-glow {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 40vw;
    height: 40vh;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.06) 0%, transparent 60%);
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}

.wysiwyg-content {
    font-family: 'Codec Pro', 'Manrope', sans-serif;
    color: rgba(253, 251, 237, 0.75);
    line-height: 1.7;
}

.wysiwyg-content h3, .wysiwyg-content h4 {
    margin-bottom: 16px;
}

.wysiwyg-content p {
    font-size: 16.8px;
    margin-bottom: 24px;
}

.wysiwyg-content a {
    color: var(--z-yellow);
    font-weight: bold;
}

.wysiwyg-content strong, .wysiwyg-content b {
    color: #ffffff;
    font-weight: 800;
}

.wysiwyg-content ul {
    list-style: none;
    padding: 0;
    margin: 32px 0;
}

.wysiwyg-content ul li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 16px;
    font-size: 16.8px;
    color: #ffffff;
}

.wysiwyg-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23FFE600' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.video-card {
    transition: transform 0.4s ease, border-color 0.4s ease;
}

.video-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 230, 0, 0.3);
}

.video-wrapper {
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.video-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(29, 60, 37, 0.4);
    transition: background 0.3s ease;
}

.video-card:hover .video-cover {
    transform: scale(1.05);
}

.video-card:hover .video-overlay {
    background: rgba(29, 60, 37, 0.2);
}

.play-btn {
    position: relative;
    z-index: 2;
    width: 80px;
    height: 80px;
    background: var(--z-yellow);
    border: none;
    border-radius: 50%;
    color: var(--z-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 30px rgba(255, 230, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.play-btn svg {
    margin-left: 4px;
}

.video-wrapper:hover .play-btn {
    transform: scale(1.1);
    box-shadow: 0 0 40px rgba(255, 230, 0, 0.6);
}

.video-duration {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: #ffffff;
    padding: 6px 12px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 14.4px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

.feature-card {
    transition: transform 0.3s ease, border-color 0.3s ease;
    background: rgba(20, 36, 23, 0.5);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 230, 0, 0.3);
    background: rgba(20, 36, 23, 0.8);
}

.feature-title {
    font-family: 'Benzin', 'Manrope', sans-serif;
    letter-spacing: -0.01em;
}

.feature-desc {
    font-family: 'Codec Pro', 'Manrope', sans-serif;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .gallery-main {
        height: 400px;
    }

    .profit-box {
        padding: 24px;
        flex-direction: column;
        align-items: flex-start;
    }

    .product-actions {
        flex-direction: column;
    }

    .btn-buy, .btn-ask {
        width: 100%;
        flex: none;
    }
}

@media (max-width: 768px) {

    .gallery-main {
        height: 320px;
        border-radius: 20px;
    }

    .thumb {
        width: 80px;
        height: 60px;
        border-radius: 12px;
    }

    .price-val {
        font-size: 40px;
    }

    .price-val span {
        font-size: 24px;
    }

    .price-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .product-about-section {
        padding: 80px 0;
    }

    .video-wrapper {
        height: 280px;
    }

    .play-btn {
        width: 64px;
        height: 64px;
    }
}

.services-section {
    padding: 100px 0;
    background-color: var(--z-green-dark);
    border-top: 1px solid rgba(253, 251, 237, 0.05);
}

.services-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(ellipse at center, rgba(255, 230, 0, 0.05) 0%, transparent 70%);
    filter: blur(150px);
    pointer-events: none;
    z-index: 1;
}

.services-header-row {
    margin-bottom: 48px;
    text-align: center;
}

.services-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.services-grid {
    gap: 24px 0;
}

.service-card {
    padding: 40px 32px;
    border-radius: 24px;
    background: var(--card-background);
    border: 1px solid rgba(253, 251, 237, 0.08);
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 230, 0, 0.1);
}

.service-card.highlight {
    background: rgba(30, 48, 35, 0.8);
    border-color: rgba(255, 230, 0, 0.4);
    box-shadow: 0 0 30px rgba(255, 230, 0, 0.05);
}

.service-card.highlight:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 230, 0, 0.15);
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--z-yellow);
    color: var(--z-dark);
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    z-index: 2;
    font-family: 'Codec Pro', sans-serif;
    box-shadow: 0 4px 15px rgba(255, 230, 0, 0.3);
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(253, 251, 237, 0.03);
    border: 1px solid rgba(253, 251, 237, 0.1);
    border-radius: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--z-yellow);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: var(--z-yellow);
    color: var(--z-dark);
}

.service-content {
    flex-grow: 1;
}

.service-title {
    font-family: 'Benzin', sans-serif;
    font-size: 18px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.service-desc {
    font-family: 'Codec Pro', sans-serif;
    font-size: 16px;
    color: rgba(253, 251, 237, 0.6);
    line-height: 1.6;
    margin: 0;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px dashed rgba(253, 251, 237, 0.1);
}

.service-price {
    font-family: 'Benzin', sans-serif;
    font-size: 22px;
    font-weight: 900;
    color: #ffffff;
}

.service-price span {
    font-family: 'Codec Pro', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(253, 251, 237, 0.5);
    text-transform: lowercase;
}

.btn-solid-small {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 24px;
    background: var(--z-yellow);
    color: var(--z-dark);
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 100px;
    transition: all 0.3s ease;
    border: none;
    font-family: 'Codec Pro', sans-serif;
}

.btn-solid-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 230, 0, 0.25);
}

.roadmap-section {
    padding: 100px 0;
    background-color: var(--z-green-dark);
    border-top: 1px solid rgba(253, 251, 237, 0.05);
}

.roadmap-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vh;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.05) 0%, transparent 70%);
    filter: blur(150px);
    pointer-events: none;
    z-index: 1;
}

.roadmap-header-row {
    margin-bottom: 48px;
    text-align: center;
}

.roadmap-header {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.catalog-desc {
    font-family: 'Codec Pro', sans-serif;
    font-size: 16px;
    color: rgba(253, 251, 237, 0.7);
    margin-top: 16px;
}

.timeline-compact-wrapper {
    position: relative;
    padding: 20px 0;
}

.timeline-track-compact {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    background: rgba(253, 251, 237, 0.1);
    z-index: 1;
}

.track-progress-compact {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 230, 0, 0) 0%, rgba(255, 230, 0, 1) 5%, rgba(255, 230, 0, 1) 95%, rgba(255, 230, 0, 0) 100%);
    opacity: 0.15;
}

.timeline-item-compact {
    display: flex;
    justify-content: flex-end;
    width: 50%;
    position: relative;
    margin-bottom: 24px;
    padding-right: 40px;
    z-index: 2;
}

.timeline-item-compact.right {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 40px;
    left: 50%;
}

.timeline-node-compact {
    position: absolute;
    top: 10px;
    left: calc(100% - 20px);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--z-green-dark);
    border: 2px solid rgba(253, 251, 237, 0.2);
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Benzin', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #ffffff;
    transition: all 0.3s ease;
}

.timeline-item-compact.right .timeline-node-compact {
    left: -20px;
}

.timeline-card-compact {
    padding: 24px;
    border-radius: 20px;
    background: var(--card-background);
    width: 100%;
    max-width: 380px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.highlight-step {
    background: var(--z-yellow);
    border-color: var(--z-yellow);
}

.timeline-item-compact:hover .timeline-card-compact {
    transform: translateY(-3px);
    border-color: rgba(255, 230, 0, 0.3);
}

.timeline-item-compact:hover .timeline-node-compact {
    border-color: var(--z-yellow);
    color: var(--z-yellow);
    box-shadow: 0 0 10px rgba(255, 230, 0, 0.2);
}

.card-title-compact {
    font-family: 'Benzin', sans-serif;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 8px;
    line-height: 1.4;
    text-transform: uppercase;
}

.card-desc-compact {
    font-family: 'Codec Pro', sans-serif;
    font-size: 14px;
    color: rgba(253, 251, 237, 0.6);
    margin: 0;
    line-height: 1.5;
}

.step-days-badge {
    display: inline-block;
    padding: 5px 10px;
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.1);
    border-radius: 100px;
    font-family: 'Codec Pro', sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: var(--z-yellow);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.highlight-step .step-days-badge {
    background: rgba(27, 30, 28, 0.8);
    border-color: rgba(27, 30, 28, 0.9);
}

.badge-success {
    color: #00BFA5;
}

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

.timeline-end-node-compact {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--z-yellow);
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--z-dark);
    box-shadow: 0 0 20px rgba(255, 230, 0, 0.4);
    z-index: 3;
}

.shop-cross-section {
    padding: 100px 0;
    background-color: var(--z-green-dark);
    border-top: 1px dashed rgba(253, 251, 237, 0.1);
    overflow: hidden;
    position: relative;
}

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

.shop-glow-1 {
    top: 20%;
    right: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(255, 230, 0, 0.08) 0%, transparent 60%);
}

.shop-header-row {
    margin-bottom: 48px;
    align-items: flex-end;
}

.shop-desc {
    font-family: 'Codec Pro', sans-serif;
    font-size: 16px;
    color: rgba(253, 251, 237, 0.7);
    margin-top: 16px;
    margin-bottom: 0;
}

.header-right {
    display: flex;
    justify-content: flex-end;
}

.btn-outline-small {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    border: 1px solid rgba(253, 251, 237, 0.2);
    border-radius: 100px;
    color: #ffffff;
    font-family: 'Codec Pro', sans-serif;
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-small:hover {
    background: var(--z-yellow);
    border-color: var(--z-yellow);
    color: var(--z-dark);
}

.shop-carousel-wrap {
    position: relative;
    width: 100%;
}

.shop-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 30px;
    padding-top: 10px;
}

.shop-carousel::-webkit-scrollbar {
    display: none;
}

.product-card {
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
    margin: 0 12px;
}

.product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 230, 0, 0.3);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 230, 0, 0.1);
}

.product-card:hover {
    transform: none;
}

.product-visual {
    position: relative;
    width: 100%;
    height: 260px;
    background: rgba(253, 251, 237, 0.02);
    border-bottom: 1px solid rgba(253, 251, 237, 0.05);
    overflow: hidden;
    padding: 12px;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.product-card:hover .product-img {
    transform: scale(1.08);
}

.product-tag {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 230, 0, 0.95);
    color: var(--z-dark);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    border-radius: 100px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.product-body {
    padding: 32px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-meta {
    font-family: 'Codec Pro', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: rgba(253, 251, 237, 0.6);
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-card .product-title {
    font-size: 14px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 24px;
    line-height: 1.4;
    font-family: 'Benzin', sans-serif;
    letter-spacing: -0.01em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px dashed rgba(253, 251, 237, 0.1);
    padding-top: 24px;
}

.product-price {
    font-family: 'Benzin', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--z-yellow);
    text-shadow: 0 0 15px rgba(255, 230, 0, 0.2);
}

.product-add {
    width: 48px;
    height: 48px;
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.15);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-card:hover .product-add {
    background: var(--z-yellow);
    border-color: var(--z-yellow);
    color: var(--z-dark);
    box-shadow: 0 8px 16px rgba(255, 230, 0, 0.2);
}

/* =========================================================================
   БЛОК ЦІНИ ТА ЗНИЖОК (Price & Discount Styles)
   ========================================================================= */
.price-block {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 48px;
}

/* Общие стили для актуальной цены (как со скидкой, так и без) */
.price-block .current-price {
    font-family: 'Benzin', sans-serif;
    font-size: 24px;
    font-weight: 900;
    color: var(--z-yellow);
    letter-spacing: -0.02em;
    line-height: 1;
}

/* Стили для старой зачеркнутой цены, когда активирована скидка */
.price-block.has-discount {
    min-height: 48px;  /* Высота остается неизменной, сетка не едет */
}

.price-block .old-price {
    font-family: 'Benzin', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: rgba(253, 251, 237, 0.4); /* Приглушенный белый */
    text-decoration: line-through;
    text-decoration-color: rgba(255, 230, 0, 0.6); /* Аккуратная желтая линия зачеркивания */
    line-height: 1;
    margin-bottom: 2px;
}

.slick-track {
    display: flex;
}

.card-more {
    background: rgba(253, 251, 237, 0.02);
    border: 1px dashed rgba(253, 251, 237, 0.15);
    box-shadow: none;
    height: auto;
}

.card-more:hover {
    border-color: var(--z-yellow);
    background: rgba(255, 230, 0, 0.03);
    box-shadow: none;
}

.more-link {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: rgba(253, 251, 237, 0.8);
    padding: 30px;
    transition: color 0.3s;
}

.more-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(253, 251, 237, 0.05);
    border: 1px solid rgba(253, 251, 237, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 24px;
    color: var(--z-yellow);
    transition: all 0.4s;
}

.card-more:hover .more-icon {
    background: var(--z-yellow);
    color: var(--z-dark);
    transform: translateX(8px) scale(1.05);
}

.more-link span {
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.5;
    font-family: 'Codec Pro', sans-serif;
}

.card-more:hover .more-link {
    color: #ffffff;
}

.carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
    margin-top: 16px;
}

.ctrl-btn {
    width: 56px;
    height: 56px;
    background: var(--card-background);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(253, 251, 237, 0.1);
    border-radius: 50%;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

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

.service-price small {
    font-family: "Codec Pro", sans-serif;
    font-size: 12px;
    font-weight: 800;
    color: rgba(253, 251, 237, 0.6);
    text-transform: uppercase;
}

@media (max-width: 991px) {
    .timeline-track-compact {
        left: 20px;
        transform: none;
    }

    .timeline-end-node-compact {
        left: 20px;
    }

    .timeline-item-compact {
        width: 100%;
        justify-content: flex-start;
        padding-left: 60px;
        padding-right: 0;
        left: 0 !important;
    }

    .timeline-node-compact {
        left: 0 !important;
        top: 0;
    }

    .timeline-card-compact {
        max-width: 100%;
    }

    .shop-header-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .header-right {
        width: 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .services-section,
    .roadmap-section,
    .shop-cross-section {
        padding: 80px 0;
    }

    .service-card {
        padding: 32px 24px;
    }

    .service-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .btn-solid-small, .btn-outline-small {
        width: 100%;
        justify-content: center;
    }

    .carousel-controls {
        justify-content: center;
        margin-top: 24px;
    }
}

.reviews-section {
    padding: 100px 0;
    background-color: var(--z-green-dark);
}

.reviews-header-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-bottom: 48px;
    gap: 24px;
}

@media (min-width: 768px) {
    .reviews-header-wrapper {
        flex-direction: row;
        align-items: flex-end;
    }
}

.rating-total {
    font-family: 'Benzin', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.reviews-summary {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.rating-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stars {
    display: flex;
    gap: 4px;
    color: var(--z-yellow);
}

.reviews-count {
    font-family: 'Codec Pro', sans-serif;
    font-size: 14px;
    color: rgba(253, 251, 237, 0.5);
}

.reviews-grid {
    gap: 24px 0;
}

.review-pro-card {
    border-radius: 24px;
    overflow: hidden;
    background: rgba(20, 36, 23, 0.4);
    border: 1px solid rgba(253, 251, 237, 0.08);
    transition: transform 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.review-pro-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 230, 0, 0.3);
}

.review-photo {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.review-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.review-pro-card:hover .review-photo img {
    transform: scale(1.05);
}

.review-location {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: rgba(20, 36, 23, 0.8);
    backdrop-filter: blur(8px);
    padding: 6px 12px;
    border-radius: 100px;
    font-family: 'Codec Pro', sans-serif;
    font-size: 13px;
    color: #ffffff;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid rgba(253, 251, 237, 0.1);
}

.review-location svg {
    color: var(--z-yellow);
}

.review-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.review-body .stars {
    margin-bottom: 16px;
}

.review-title {
    font-family: 'Benzin', sans-serif;
    font-size: 18px;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.4;
}

.review-text {
    font-family: 'Codec Pro', sans-serif;
    font-size: 15px;
    color: rgba(253, 251, 237, 0.7);
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

.review-author {
    margin-top: 24px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    background: rgba(255, 230, 0, 0.1);
    border: 1px solid rgba(255, 230, 0, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: 'Benzin', sans-serif;
    color: var(--z-yellow);
    font-size: 19px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-family: 'Codec Pro', sans-serif;
    font-size: 15px;
    font-weight: 800;
    color: #ffffff;
}

.author-status {
    font-family: 'Codec Pro', sans-serif;
    font-size: 13px;
    color: #00BFA5;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    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: 500px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
    padding: 24px;
}

@media (min-width: 768px) {
    .modal-window {
        padding: 40px;
    }
}

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

.modal-close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    color: rgba(253, 251, 237, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
}

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

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

.modal-desc {
    font-family: 'Codec Pro', sans-serif;
    font-size: 16px;
    color: rgba(253, 251, 237, 0.7);
    margin-bottom: 24px;
}

.review-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.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;
    outline: none;
    transition: border-color 0.3s;
}

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

.form-rating {
    display: flex;
    gap: 8px;
    margin: 8px 0;
}

.star-select {
    cursor: pointer;
    transition: transform 0.2s;
}

.star-select:hover {
    transform: scale(1.1);
}

.form-submit {
    margin-top: 8px;
}

@media (max-width: 991.98px) {
    .product-h1 {
        font-size: 26px;
    }
    .profit-box {
        padding: 20px;
        gap: 16px;
    }
    .wysiwyg-content p,
    .wysiwyg-content ul li {
        font-size: 15.5px;
    }
}

@media (max-width: 768px) {

    .shop-carousel-wrap {
        display: flex;
        flex-direction: column;
    }

    .shop-carousel {
        order: 2;
    }

    .carousel-controls {
        order: 1;
        justify-content: end;
        gap: 8px;
    }

    .product-hero {
        padding-bottom: 40px;
    }
    .product-status {
        display: inline-flex;
        margin: 0 auto 16px auto;
        font-size: 12px;
        padding: 4px 12px;
    }
    .product-h1 {
        font-size: 20px;
        margin-bottom: 16px;
    }
    .product-features {
        gap: 8px;
        margin-bottom: 24px;
    }
    .product-features li {
        font-size: 14px;
        padding-left: 24px;
    }
    .product-features li::before {
        width: 14px;
        height: 14px;
        top: 3px;
    }
    .profit-box {
        padding: 16px;
        gap: 12px;
        margin-bottom: 24px;
        border-radius: 16px;
        text-align: center;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .profit-icon {
        width: 52px;
        height: 52px;
    }
    .profit-icon svg {
        width: 24px;
        height: 24px;
    }
    .profit-lbl {
        font-size: 11px;
    }
    .profit-val {
        font-size: 20px;
    }
    .price-box {
        margin-bottom: 24px;
        padding-bottom: 24px;
        text-align: center;
    }
    .price-wrapper {
        justify-content: start;
        align-items: center;
        gap: 12px;
        flex-direction: row;
        flex-wrap: wrap;
    }
    .price-val {
        font-size: 36px;
    }
    .price-val span {
        font-size: 22px;
    }
    .credit-badge {
        padding: 4px 10px;
        font-size: 11px;
    }
    .price-tax {
        font-size: 13px;
    }
    .product-actions {
        gap: 10px;
        margin-bottom: 16px;
    }
    .btn-buy,
    .btn-ask {
        height: 52px;
        font-size: 14px;
        border-radius: 100px;
    }
    .btn-buy {
        box-shadow: 0 6px 16px rgba(255, 230, 0, 0.2);
    }
    .secure-checkout {
        justify-content: center;
        font-size: 12px;
    }
    .product-about-section {
        padding: 60px 0;
    }
    .wysiwyg-content p,
    .wysiwyg-content ul li {
        font-size: 14.5px;
        line-height: 1.6;
    }
    .wysiwyg-content p {
        margin-bottom: 16px;
    }
    .wysiwyg-content ul {
        margin: 20px 0;
    }
    .wysiwyg-content ul li {
        padding-left: 28px;
        margin-bottom: 12px;
    }
    .wysiwyg-content ul li::before {
        width: 16px;
        height: 16px;
        top: 3px;
    }
    .feature-card {
        padding: 20px !important;
        border-radius: 16px !important;
    }
    .feature-title {
        font-size: 16px !important;
    }
    .feature-desc {
        font-size: 13.5px !important;
    }
    .services-section {
        padding: 60px 0;
    }
    .service-card {
        padding: 24px 16px !important;
        border-radius: 16px !important;
    }
    .service-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        margin-bottom: 16px;
    }
    .service-icon svg {
        width: 20px;
        height: 20px;
    }
    .service-title {
        font-size: 15px !important;
        margin-bottom: 10px;
    }
    .service-desc {
        font-size: 13.5px !important;
    }
    .service-footer {
        margin-top: 20px;
        padding-top: 16px;
        gap: 12px;
    }
    .service-price {
        font-size: 18px !important;
    }
    .service-price span {
        font-size: 12px !important;
    }
    .roadmap-section {
        padding: 60px 0;
    }
    .timeline-card-compact {
        padding: 16px !important;
        border-radius: 16px !important;
    }
    .step-days-badge {
        padding: 4px 8px;
        font-size: 10px;
        margin-bottom: 8px;
    }
    .card-title-compact {
        font-size: 14px !important;
        margin-bottom: 6px;
    }
    .card-desc-compact {
        font-size: 12.5px !important;
    }
    .reviews-section {
        padding: 60px 0;
    }
    .rating-total {
        font-size: 36px;
    }
    .reviews-summary {
        margin-top: 16px;
        gap: 12px;
    }
    .review-pro-card {
        border-radius: 16px !important;
    }
    .review-photo {
        height: 180px !important;
    }
    .review-location {
        bottom: 12px;
        left: 12px;
        padding: 4px 10px;
        font-size: 11px;
    }
    .review-body {
        padding: 16px !important;
    }
    .review-body .stars {
        margin-bottom: 10px;
    }
    .review-title {
        font-size: 15px !important;
        margin-bottom: 8px;
    }
    .review-text {
        font-size: 13.5px !important;
    }
    .review-author {
        margin-top: 16px !important;
        padding-top: 16px !important;
        gap: 12px !important;
    }
    .author-avatar {
        width: 36px !important;
        height: 36px !important;
        font-size: 15px !important;
    }
    .author-name {
        font-size: 13px !important;
    }
    .author-status {
        font-size: 11px !important;
    }
    .modal-window {
        padding: 20px !important;
        border-radius: 16px !important;
    }
    .modal-close {
        top: 20px;
        right: 20px;
    }
    .modal-title {
        font-size: 20px !important;
    }
    .modal-desc {
        font-size: 14px !important;
        margin-bottom: 16px;
    }
    .form-input {
        padding: 12px !important;
        font-size: 14px !important;
        border-radius: 10px !important;
    }
}

@media (max-width: 480px) {
    .gallery-main {
        height: 240px !important;
    }
    .gallery-thumbs {
        gap: 10px;
        margin-bottom: 24px;
    }
    .thumb {
        width: 64px;
        height: 48px;
        border-radius: 8px;
    }
}
