body {
    background: #000 !important
}

:root {
    --neon-accent: var(--tov-third_color,var(--tov-main-color,#00e676));
    --neon-accent-dark: #00c853;
    --neon-accent-dark: color-mix(in srgb,var(--neon-accent) 82%,#000)
}

.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000;
    background-image: radial-gradient(circle at 50% 100%,#00600a 0%,#000 40%);
    background-image: radial-gradient(circle at 50% 100%,color-mix(in srgb,var(--neon-accent) 40%,#000) 0%,#000 40%);
    z-index: -10
}

.fomo-toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-150%);
    background: linear-gradient(135deg,rgba(255,255,255,.1),rgba(255,255,255,.01));
    backdrop-filter: blur(24px) saturate(120%);
    -webkit-backdrop-filter: blur(24px) saturate(120%);
    border: 1px solid rgba(255,255,255,.2);
    border-color: rgba(0,230,118,.4);
    border-color: color-mix(in srgb,var(--neon-accent) 40%,transparent);
    box-shadow: 0 20px 40px rgba(0,0,0,.6),inset 0 1px 1px rgba(255,255,255,.4),inset 0 -1px 1px rgba(0,0,0,.2);
    border-radius: 50px;
    padding: 6px 14px 6px 6px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10000;
    width: auto;
    max-width: 94%;
    min-width: 280px;
    transition: transform .6s cubic-bezier(.34,1.56,.64,1),opacity .5s ease;
    opacity: 0;
    pointer-events: none
}

.fomo-toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto
}

.fomo-icon {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #00e676;
    border: 2px solid var(--neon-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #000;
    flex-shrink: 0;
    line-height: 0
}

.fomo-icon img,.fomo-icon span {
    display: block;
    line-height: 1;
    margin: 0;
    padding: 0
}

.fomo-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    margin: 0;
    justify-content: center;
    min-width: 0
}

.fomo-title {
    font-size: 13px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 2px;
    line-height: 1.1;
    letter-spacing: .3px;
    text-shadow: 0 1px 2px rgba(0,0,0,.5)
}

.fomo-desc {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    opacity: .9
}

.fomo-time {
    font-size: 10px;
    color: #00e676;
    color: var(--neon-accent);
    font-weight: 800;
    white-space: nowrap;
    flex-shrink: 0;
    text-shadow: 0 0 10px rgba(255,95,31,.4)
}

.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    width: 100%;
    max-width: 480px;
    padding: 8px 15px 20px;
    background: linear-gradient(180deg,rgba(10,10,15,.4) 0%,rgba(0,0,0,.95) 70%);
    backdrop-filter: blur(35px) saturate(180%);
    -webkit-backdrop-filter: blur(35px) saturate(180%);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.05);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 999;
    transform: translateY(120%);
    transition: transform .5s cubic-bezier(.2,.8,.2,1)
}

.sticky-bar.visible {
    transform: translateY(0)
}

.sb-info {
    display: flex;
    flex-direction: column;
    flex-shrink: 0
}

.sb-price {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 2px 10px rgba(0,0,0,.5)
}

.sb-status {
    font-size: 11px;
    color: #00e676;
    color: var(--neon-accent);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 3px;
    text-shadow: 0 1px 5px rgba(0,0,0,.8)
}

.sb-dot {
    width: 6px;
    height: 6px;
    background: #00e676;
    background: var(--neon-accent);
    border-radius: 50%;
    box-shadow: 0 0 5px rgba(0,230,118,.9);
    box-shadow: 0 0 5px color-mix(in srgb,var(--neon-accent) 90%,transparent)
}

.sb-btn {
    position: relative;
    background: linear-gradient(180deg,#00e676 0%,#00c853 100%);
    background: linear-gradient(180deg,var(--neon-accent) 0%,var(--neon-accent-dark) 100%);
    border: none;
    color: #fff;
    font-weight: 900;
    font-size: 18px;
    padding: 16px 10px;
    border-radius: 18px;
    text-transform: uppercase;
    box-shadow: 0 0 25px rgba(0,230,118,.5);
    box-shadow: 0 0 25px color-mix(in srgb,var(--neon-accent) 50%,transparent);
    letter-spacing: .5px;
    flex-grow: 1;
    text-align: center;
    cursor: pointer;
    overflow: hidden
}

.sb-btn:after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.4),transparent);
    transform: skewX(-20deg);
    animation: stickyLiquidMove 3s infinite ease-in-out;
    pointer-events: none
}

@keyframes stickyLiquidMove {
    0% {
        left: -100%
    }

    20% {
        left: 200%
    }

    100% {
        left: 200%
    }
}

.big-button {
    position: relative;
    width: 100%;
    height: 74px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    background: linear-gradient(180deg,#00e676 0%,#00c853 100%);
    background: linear-gradient(180deg,var(--neon-accent) 0%,var(--neon-accent-dark) 100%);
    box-shadow: 0 0 30px rgba(0,230,118,.5);
    box-shadow: 0 0 30px color-mix(in srgb,var(--neon-accent) 50%,transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform .1s;
    padding: 0 5px;
    margin-top: 10px;
    text-decoration: none
}

.content-wrap {
    background: 0 0;
    position: relative;
    box-shadow: 0 0 80px rgba(0,230,118,.1);
    box-shadow: 0 0 80px color-mix(in srgb,var(--neon-accent) 10%,transparent);
    overflow-x: hidden;
    padding-bottom: 100px
}

.top-card-wrap {
    background: rgba(24,24,27,.8);
    border-bottom-left-radius: 36px;
    border-bottom-right-radius: 36px;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    box-shadow: 0 20px 60px rgba(0,0,0,.8);
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,.1);
    border-top: none;
    padding-bottom: 30px
}

.top-card-wrap:has(.item-card) {
    border-top-left-radius: 0;
    border-top-right-radius: 0
}

.header {
    padding: 25px 20px 10px;
    text-align: center;
    position: relative;
    z-index: 2;
    background: 0 0
}

.item-card .header.is-empty {
    padding-top: 0
}

.item-card .header:not(:has(h1,h2)) {
    padding-top: 0
}

.header .product-title,.header .product-title * {
    font-size: 25px
}

.benefits_list {
    display: none !important
}

.pricing-block,.pricing-block .old-price {
    border: none
}

.pricing-block {
    display: flex;
    flex-direction: row-reverse;
    gap: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,.1);
    margin: 20px
}

.pricing-block * {
    color: #fff
}

.pricing-block .new-price strong {
    font-size: 64px !important;
    font-weight: 900 !important;
    line-height: .9 !important;
    letter-spacing: -2px !important;
    color: #fff;
    background: linear-gradient(180deg,#fff 40%,#aaa 100%);
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    display: inline-block
}

.pricing-block .new-price strong:after {
    content: "₴"
}

.pricing-block .new-price {
    display: flex;
    justify-content: right;
    align-items: center
}

.pricing-block .new-price span,.pricing-block .new-price small {
    display: none !important
}

.pricing-block .vat-badge {
    display: none !important
}

.pricing-block .old-price {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start
}

.pricing-block .old-price span {
    font-size: 0px !important;
    margin-bottom: -10px
}

.pricing-block .old-price small {
    display: none !important
}

.pricing-block .old-price:after {
    content: "20% ПДВ включено працюємо офіційно!";
    position: absolute;
    right: 10px;
    top: 45px;
    background-color: #ff5f1f;
    max-width: 140px;
    color: #000;
    font-size: 11px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 6px;
    transform: rotate(-2deg);
    box-shadow: 0 0 10px rgba(255,95,31,.4)
}

.pricing-block .old-price span:after {
    content: "Акційна ціна";
    font-size: 11px;
    font-weight: 900;
    color: #ff3b30;
    text-transform: uppercase;
    letter-spacing: .5px
}

.pricing-block .old-price strong {
    font-size: 20px;
    color: #a1a1aa;
    text-decoration: line-through;
    font-weight: 500
}

.pricing-block .old-price strong:after {
    content: "₴"
}

.demand-struct {
    background: linear-gradient(90deg,rgba(255,95,31,.15),rgba(255,95,31,.05));
    border: .7px solid #ff5f1f;
    border-radius: 18px;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px
}

.ds-row {
    display: flex;
    align-items: center;
    gap: 12px
}

.ds-icon {
    width: 24px;
    font-size: 22px;
    text-shadow: 0 0 10px #ff3b30;
    text-align: center
}

.ds-icon {
    width: 24px;
    font-size: 22px;
    text-align: center;
    display: inline-block;
    filter: drop-shadow(0 0 8px rgba(255,59,48,.8))
}

.fire-anim {
    animation: firePulse 1.5s infinite ease-in-out
}

@keyframes firePulse {
    0% {
        transform: scale(1);
        opacity: .9;
        filter: drop-shadow(0 0 6px rgba(255,59,48,.6))
    }

    50% {
        transform: scale(1.15);
        opacity: 5;
        filter: drop-shadow(0 0 15px rgba(255,59,48,1))
    }

    100% {
        transform: scale(1);
        opacity: .9;
        filter: drop-shadow(0 0 6px rgba(255,59,48,.6))
    }
}

.ds-title {
    color: #ff5f1f;
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase
}

.ds-desc {
    font-size: 11px;
    color: #ccc
}

.ds-highlight {
    color: #000;
    font-weight: 800;
    background: #ff5f1f;
    padding: 0 4px;
    border-radius: 4px
}

.ds-track {
    width: 100%;
    height: 8px;
    background: rgba(255,255,255,.1);
    border-radius: 10px;
    overflow: hidden
}

.ds-fill {
    height: 100%;
    width: 12%;
    background: linear-gradient(90deg,#ff3b30,#ff9f0a);
    border-radius: 10px;
    transition: width 1s ease;
    box-shadow: 0 0 15px rgba(255,95,31,.4)
}

.number-discount {
    background: rgba(30,30,35,.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 24px;
    padding-top: 0
}

.number-discount .block-title {
    background: linear-gradient(90deg,rgba(255,255,255,.02),rgba(255,255,255,.05));
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 16px;
    text-align: center;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px
}

.number-discount .save-now-content {
    color: #fff;
    padding-top: 20px
}

.savings-card {
    background: rgba(30,30,35,.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 24px
}

.sc-header {
    background: linear-gradient(90deg,rgba(255,255,255,.02),rgba(255,255,255,.05));
    border-bottom: 1px solid rgba(255,255,255,.08);
    padding: 16px;
    text-align: center
}

.sc-title-text {
    font-family: "Montserrat",sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px
}

.sc-row {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 16px 10px;
    border: 1px solid transparent;
    border-bottom-color: rgba(255,255,255,.08);
    cursor: pointer;
    transition: all .2s;
    position: relative;
    overflow: hidden
}

.sc-row:last-child {
    border-bottom-color: transparent
}

.sc-row.highlight {
    background: rgba(0,230,118,.08);
    border-color: var(--neon-accent);
    z-index: 2
}

.ribbon-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: 85px;
    height: 85px;
    pointer-events: none
}

.ribbon {
    position: absolute;
    top: 10px;
    right: -43px;
    width: 120px;
    background: var(--neon-accent);
    color: #000;
    font-family: "Montserrat",sans-serif;
    font-size: 12px;
    font-weight: 900;
    text-align: center;
    line-height: 20px;
    transform: rotate(45deg);
    box-shadow: 0 2px 10px rgba(0,0,0,.4);
    text-transform: uppercase
}

.sc-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    z-index: 1
}

.sc-qty {
    font-family: "Inter",sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #ccc
}

.sc-price {
    font-family: "Montserrat",sans-serif;
    font-size: 19px;
    font-weight: 800;
    color: #fff
}

.sc-row.highlight .sc-price {
    text-shadow: 0 0 10px rgba(0,230,118,.3)
}

.sc-tag {
    background: #ff3b30;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    padding: 4px 0;
    border-radius: 5px;
    width: 52px;
    text-align: center
}

.product-description {
    background: rgba(24,24,27,.8);
    border-radius: 36px;
    box-shadow: 0 20px 60px rgba(0,0,0,.8);
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid rgba(255,255,255,.1);
    margin: 0
}

.product-description .title {
    padding: 25px 20px 10px;
    text-align: center;
    position: relative;
    z-index: 2;
    font-size: 25px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin: 0 0 20px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    word-spacing: 1.5px !important;
    color: #fff;
    background: linear-gradient(180deg,#fff 40%,#aaa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    border-bottom: 1px solid rgba(255,255,255,.1)
}

.product-description .presentation {
    background-color: rgba(255,255,255,0)
}

.product-description * {
    color: #fff
}

.reviews {
    background-color: #00000000
}

.reviews_rating {
    display: none !important
}

.trust-dashboard {
    background: linear-gradient(135deg,rgba(30,30,35,.9),rgba(15,15,15,.95));
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px
}

.td-top-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,.08)
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.g-logo-svg {
    width: 38px;
    height: 38px;
    min-width: 38px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,.1))
}

.g-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px
}

.g-name {
    font-family: "Inter",sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    line-height: 1;
    margin: 0
}

.g-status {
    font-size: 10px;
    color: #aaa;
    text-transform: uppercase;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    line-height: 1;
    white-space: nowrap;
    margin: 0
}

.g-status img.emoji-check {
    width: 12px;
    height: 12px;
    margin: 0;
    display: block
}

.td-rating-box {
    text-align: right
}

.td-score {
    font-family: "Montserrat",sans-serif;
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    line-height: 1
}

.td-max {
    font-size: 12px;
    color: #666;
    font-weight: 500;
    display: block;
    margin-top: 2px
}

.td-bottom-row {
    display: flex;
    flex-direction: column;
    gap: 6px
}

.td-bar-bg {
    width: 100%;
    height: 6px;
    background: rgba(255,255,255,.1);
    border-radius: 10px;
    overflow: hidden
}

.td-bar-fill {
    height: 100%;
    background: #00e676;
    background: var(--neon-accent);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0,230,118,.4);
    box-shadow: 0 0 10px color-mix(in srgb,var(--neon-accent) 40%,transparent);
    width: 89%
}

.td-stats {
    font-family: "Inter",sans-serif;
    font-size: 11px;
    color: #888;
    display: flex;
    justify-content: space-between;
    font-weight: 500
}

.td-green {
    color: #00e676;
    color: var(--neon-accent);
    font-weight: 700
}

.trust-dashboard {
    background: linear-gradient(135deg,rgba(30,30,35,.9),rgba(15,15,15,.95));
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,.5);
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin: 0 20px
}

.td-top-row {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255,255,255,.08)
}

.reviews .title {
    margin-bottom: 0
}

.reviews .title strong {
    font-size: 25px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin: 0 0 20px !important;
    text-align: center !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    word-spacing: 1.5px !important;
    color: #fff;
    background: linear-gradient(180deg,#fff 40%,#aaa 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent
}

.reviews .rev_item * {
    color: #ccc
}

.reviews .rev_item {
    background: rgba(24,24,27,.8);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    padding: 16px;
    position: relative;
    transition: all .5s ease;
    animation: slideInTop .7s cubic-bezier(.175,.885,.32,1.275);
    box-shadow: none
}

.reviews .swiper-slide:nth-child(4n+1) .rev_item {
    background: rgba(24,24,27,.82);
    border-color: rgba(255,255,255,.1)
}

.reviews .swiper-slide:nth-child(4n+2) .rev_item {
    background: rgba(28,24,27,.82);
    border-color: rgba(255,255,255,.12)
}

.reviews .swiper-slide:nth-child(4n+3) .rev_item {
    background: rgba(24,28,27,.82);
    border-color: rgba(255,255,255,.12)
}

.reviews .swiper-slide:nth-child(4n+4) .rev_item {
    background: rgba(27,24,28,.82);
    border-color: rgba(255,255,255,.12)
}

.reviews .rev-text {
    padding: 0
}

.reviews .rev_item_image {
    display: block;
    width: 100%;
    height: auto;
    margin-top: 12px;
    border-radius: 14px
}

.reviews .rev_avatar {
    display: none !important
}

.reviews .rev_item {
    position: relative
}

.reviews .rev_item:after {
    content: "✅ Підтверджено";
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .3px;
    color: #00e676;
    color: var(--neon-accent);
    background: rgba(0,230,118,.1);
    background: color-mix(in srgb,var(--neon-accent) 10%,transparent);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0,230,118,.2);
    border-color: color-mix(in srgb,var(--neon-accent) 20%,transparent);
    display: inline-flex;
    align-items: center;
    line-height: 1;
    position: absolute;
    top: 16px;
    right: 16px
}

.reviews .rev_item.is-new:after {
    content: "новий";
    color: #2f80ed;
    background: rgba(47,128,237,.12);
    border-color: rgba(47,128,237,.24)
}

.reviews .rev-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 12px;
    border-top: 1px solid rgba(255,255,255,.05)
}

.reviews .rev-like-count,.reviews .rev-dislike-count {
    color: #777;
    cursor: pointer;
    font-size: 12px
}

.reviews .rev-meta-left {
    flex: 1;
    font-size: 10px;
    color: #666;
    font-weight: 500
}

.reviews .rev-meta-right {
    display: flex;
    align-items: center;
    gap: 12px
}

.reviews .rev-meta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: 0 0;
    border: 0;
    padding: 0;
    cursor: pointer;
    opacity: .78;
    filter: brightness(.92);
    transform: scale(1);
    transform-origin: center;
    transition: transform .14s ease,opacity .14s ease,filter .14s ease
}

.reviews .rev-meta-btn:hover,.reviews .rev-meta-btn.is-active {
    opacity: 1;
    filter: brightness(1);
    transform: scale(1.1)
}

.reviews .rev-meta-btn.is-active .rev-like-count {
    color: #00e676;
    color: var(--neon-accent)
}

.reviews .rev-meta-btn.is-active .rev-dislike-count {
    color: #ff3b30
}

.reviews .rev-name {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start
}

.reviews .rev-name:after {
    content: "⭐⭐⭐⭐⭐";
    font-size: 12px;
    display: block;
    line-height: 1;
    bottom: 5px;
    left: 46px;
    position: absolute
}

.reviews .rev_item.is-new .rev-name:after {
    content: "";
    display: none
}

.reviews .rev-name .rev-stars {
    font-size: 12px;
    display: block;
    line-height: 1;
    bottom: 5px;
    left: 46px;
    position: absolute
}

.reviews .swiper-button-next,.reviews .swiper-button-prev {
    color: #fff
}

.reviews .swiper-button-next:after,.reviews .swiper-button-prev:after {
    width: 35px;
    height: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 20px;
    position: absolute;
    top: 50%;
    z-index: 10;
    transform: translateY(-50%);
    cursor: pointer;
    transition: background .3s ease,color .3s ease;
    background: radial-gradient(var(--tov-main-color,rgba(0,0,0,1)) 0%,var(--tov-secondary_color,rgba(131,82,57,1)) 100%)
}

.reviews .rev-author {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 2px
}

.reviews .rev-author {
    display: flex;
    gap: 10px
}

.reviews .rev-initial-badge {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    line-height: 1;
    color: #fff;
    user-select: none;
    background: rgba(255,255,255,.22)
}

.reviews .rev-initial-badge--green {
    background: rgba(0,230,118,.55);
    background: color-mix(in srgb,var(--neon-accent) 55%,transparent)
}

.reviews .rev-initial-badge--orange {
    background: rgba(255,95,31,.6)
}

.reviews .rev-initial-badge--red {
    background: rgba(255,59,48,.6)
}

.reviews .rev-initial-badge--darkgreen {
    background: rgba(0,96,10,.65)
}

.reviews .rev-text p {
    font-size: 13px;
    line-height: 1.5;
    color: #ccc;
    margin: 0 0 10px;
    text-align: left
}

.reviews .write-review-btn {
    border: 1px solid #00e676;
    border-color: var(--neon-accent);
    background: rgba(0,230,118,.15);
    background: color-mix(in srgb,var(--neon-accent) 15%,transparent);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: auto;
    padding: 16px;
    border-radius: 16px;
    margin: 10px 20px 20px;
    font-family: "Inter",sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all .2s ease
}

.reviews .write-review-btn:hover {
    background: rgba(0,230,118,.3);
    background: color-mix(in srgb,var(--neon-accent) 30%,transparent);
    transform: translateY(-2px)
}

.reviews .write-review-btn:active {
    background: #00e676;
    background: var(--neon-accent);
    color: #000;
    transform: scale(.97)
}

.reviews .emoji-coment {
    font-size: 24px;
    object-fit: contain;
    margin: 0;
    filter: drop-shadow(0 0 5px rgba(0,0,0,.5))
}

.reviews #review-form-wrap {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
    background: #111;
    border-radius: 20px;
    margin-bottom: 10px
}

.reviews #review-form-wrap.open {
    max-height: 600px;
    border: 1px solid #00e676;
    border-color: var(--neon-accent);
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 0 30px rgba(0,230,118,.15);
    box-shadow: 0 0 30px color-mix(in srgb,var(--neon-accent) 15%,transparent)
}

.reviews .rf-title {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center
}

.reviews .star-select {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px
}

.reviews .star-s {
    font-size: 24px;
    color: #444;
    cursor: pointer;
    transition: .2s
}

.reviews .star-s.selected {
    color: gold;
    transform: scale(1.1);
    text-shadow: 0 0 10px rgba(255,215,0,.3)
}

.reviews .rf-input {
    width: 100%;
    background: #000;
    border: 1px solid rgba(0,230,118,.15);
    border-color: color-mix(in srgb,var(--neon-accent) 15%,transparent);
    padding: 12px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: "Inter",sans-serif
}

.reviews .rf-input:focus {
    border-color: #00e676;
    border-color: var(--neon-accent);
    outline: none
}

.reviews .rf-submit {
    background: linear-gradient(180deg,#00e676 0%,#00c853 100%);
    background: linear-gradient(180deg,var(--neon-accent) 0%,var(--neon-accent-dark) 100%);
    color: #fff;
    font-weight: 800;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(0,230,118,.15);
    box-shadow: 0 5px 20px color-mix(in srgb,var(--neon-accent) 15%,transparent);
    cursor: pointer
}

.top-card-wrap {
    border-radius: 36px;
    border: 1px solid rgba(255,255,255,.1)
}

.oreder-form .wpcf7-form-control-wrap input,.oreder-form .input.select-discount,.oreder-form .input.select-model {
    width: 100%;
    height: 64px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: 18px;
    padding: 0 20px 0 55px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    font-family: -apple-system,sans-serif;
    transition: .3s;
    -webkit-tap-highlight-color: transparent
}

.oreder-form .w.PCF7-form-control-wrap {
    width: 100%
}

.oreder-form .wpcf7-form-control-wrap input:focus,.oreder-form .input.select-model select:focus {
    background: #000;
    border-color: #00e676;
    border-color: var(--neon-accent);
    box-shadow: 0 0 15px rgba(0,230,118,.5);
    box-shadow: 0 0 15px color-mix(in srgb,var(--neon-accent) 50%,transparent);
    outline: none
}

.oreder-form .wpcf7-form-control-wrap {
    position: relative
}

.oreder-form .wpcf7-form-control-wrap[data-name=username]:before {
    content: "👤";
    position: absolute;
    left: 20px;
    top: 15px;
    font-size: 24px;
    filter: brightness(.92);
    opacity: .4
}

.oreder-form .wpcf7-form-control-wrap.phone:before {
    content: "📞";
    position: absolute;
    left: 20px;
    top: 15px;
    font-size: 24px;
    filter: brightness(.92);
    opacity: .4
}

.oreder-form .wpcf7-form-control-wrap[data-name=username]:focus-within:before,.oreder-form .wpcf7-form-control-wrap.phone:focus-within:before {
    filter: brightness(1);
    opacity: 1
}

.discount-select-hidden {
    display: none !important
}

.discount-swipe {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    padding: 20px 2px
}

.discount-swipe::-webkit-scrollbar {
    display: none
}

.discount-card {
    flex: 0 0 auto;
    min-width: 100px;
    position: relative;
    scroll-snap-align: start;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,.1);
    background: rgba(255,255,255,.05);
    color: #fff;
    text-align: center;
    border-radius: 18px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .2s;
    cursor: pointer;
    overflow: visible
}

.discount-card.is-active {
    border-color: var(--neon-accent);
    box-shadow: 0 0 15px rgba(0,230,118,.25);
    box-shadow: 0 0 15px color-mix(in srgb,var(--neon-accent) 25%,transparent);
    background: rgba(0,230,118,.08);
    background: color-mix(in srgb,var(--neon-accent) 8%,transparent);
    border: 1px solid #00e676;
    border-color: var(--neon-accent);
    box-shadow: inset 0 0 12px rgba(0,230,118,.15);
    box-shadow: inset 0 0 12px color-mix(in srgb,var(--neon-accent) 15%,transparent);
    transform: scale(1.05);
    z-index: 2
}

.discount-card-badge {
    position: absolute;
    top: -8px;
    right: -5px;
    background: #ff3b30;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0,0,0,.3);
    transform: rotate(5deg)
}

.discount-card-title {
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px
}

.discount-card-price {
    font-size: 13px;
    font-weight: 600;
    color: #ccc
}

.footer {
    background-color: transparent
}

.footer .footer-link {
    color: rgba(255,255,255,.4)
}

.swiper-horizontal>.swiper-pagination-bullets,.swiper-pagination-bullets.swiper-pagination-horizontal,.swiper-pagination-custom,.swiper-pagination-fraction {
    bottom: 0
}

.top-features * {
    color: #fff
}

.steps-block * {
    color: #fff
}

.models-section {
    background-color: #00000000 !important
}

.models-section * {
    color: #fff !important
}

.model-group {
    background-color: rgba(24,24,27,.8) !important
}

.model-variant {
    background: #292929 !important
}

.variant-price {
    color: #e74c3c !important
}
