html {
    overscroll-behavior-y: none !important;
}

body {
    background-color: var(--bg-outer) !important;
    background-image: radial-gradient(circle at 50% 100%, #3a1008 0%, #000000 70%) !important;
    background-attachment: fixed !important;
    background-size: cover !important;
    background-position: center bottom !important;
    background-repeat: no-repeat !important;

    min-height: 100vh !important;
}

body {
    touch-action: pan-y !important;
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
}

#page,
.site,
.site-content,
.container-body,
.site-header,
.site-footer {
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
}

body {
    display: block !important;
}

.fix-btn,
.fixed-bottom,
.cta-button-fixed {
    width: 100% !important;
    max-width: 100% !important;
    left: 0 !important;
    right: 0 !important;
    margin: 0 !important;
}

.container-body,
#page,
.site,
.site-content {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    display: block !important;
}

body.single-post {
    margin: 0 !important;
    padding: 0 !important;
    background: #fff;
    overflow-x: hidden;
}

body.single-post h1,
body.single-post h2,
body.single-post h3,
body.single-post p,
body.single-post ul,
body.single-post li {
    margin: 0;
    padding: 0;
}

html {
    touch-action: manipulation;
}

html:not(.admin-bar) {
    margin-top: 0 !important;
}

body:not(.logged-in) #wpadminbar {
    display: none !important;
}

@media screen and (max-width: 600px) {
    #wpadminbar {
        position: fixed !important;
    }
}

:root {
    /* --bg-outer: #000000; */
    --bg-outer: #0e172a;
    /* --bg-image: radial-gradient(circle at 50% 100%, #3a1008 0%, #000000 70%); */
    --bg-image: radial-gradient(circle at 50% 100%, #0e172a 0%, #0e172a 70%);
    /* --bg-app: #09090b; */
    --bg-app: #0e172a;
    /* --card-bg: rgba(24, 24, 27, 0.8); */
    --card-bg: #0e172a;

    --card-border: rgba(255, 255, 255, 0.1);
    --theme-color: #FF5F1F;
    --theme-gradient: linear-gradient(180deg, #FF5F1F 0%, #D9381E 100%);
    --theme-glow: rgba(255, 95, 31, 0.5);
    --apple-red: #FF3B30;
    --status-green: #00E676;
    --highlight-blue: #00E5FF;
    --text-main: #FFFFFF;
    --text-sub: #A1A1AA;
    --radius: 26px;
}

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    -webkit-font-smoothing: antialiased;
}

* {
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
    outline: none;
    margin: 0;
    padding: 0;
}

.fixed-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-outer);
    background-image: var(--bg-image);
    z-index: -10;
}

body {
    color: var(--text-main);
    font-family: -apple-system, BlinkMacSystemFont, 'Inter', sans-serif;
}

.mobile-wrapper {
    width: 100%;
    max-width: 470px;
    margin: 0 auto;
    /* background: #00000096; */
    background: #0e172a;
    min-height: 100vh;
    position: relative;
    box-shadow: 0 0 80px rgba(255, 95, 31, 0.1);
    overflow-x: hidden;
    /* padding-bottom: 100px; */
    padding-bottom: 50px;
    z-index: 1;
}

.fomo-toast {
    position: fixed !important;
    top: 20px !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-150%) !important;


    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.01)) !important;
    backdrop-filter: blur(24px) saturate(120%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(120%) !important;

    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.6),
        inset 0 1px 1px rgba(255, 255, 255, 0.4),
        inset 0 -1px 1px rgba(0, 0, 0, 0.2) !important;

    border-radius: 50px !important;
    padding: 6px 14px 6px 6px !important;

    display: flex !important;
    align-items: center !important;
    gap: 12px !important;

    z-index: 10000 !important;
    width: auto !important;
    max-width: 94% !important;
    min-width: 280px !important;

    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease !important;
    opacity: 0 !important;
    pointer-events: none !important;
}


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

.fomo-toast.success-toast {
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.8), rgba(0, 200, 83, 0.4)) !important;
    box-shadow:
        0 20px 40px rgba(0, 200, 83, 0.3),
        inset 0 1px 1px rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.2) !important;
}


.fomo-icon {
    width: 40px !important;
    height: 40px !important;
    background: #fff !important;
    border: 2px solid var(--theme-color) !important;
    border-radius: 50% !important;

    /* Центровка */
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;

    font-size: 20px !important;
    color: #000 !important;
    flex-shrink: 0 !important;
    line-height: 0 !important;
}


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


.fomo-info {
    display: flex !important;
    flex-direction: column !important;
    font-family: 'Inter', sans-serif !important;
    flex: 1 !important;
    margin: 0 !important;
    justify-content: center !important;
    min-width: 0 !important;
}

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

.fomo-desc {
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    line-height: 1.2 !important;
    opacity: 0.9 !important;
}

.fomo-time {
    font-size: 10px !important;
    color: var(--theme-color) !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    text-shadow: 0 0 10px rgba(255, 95, 31, 0.4) !important;
}

.success-toast .fomo-time {
    color: #fff !important;
    opacity: 0.8 !important;
}

.success-toast .fomo-icon {
    border-color: #fff !important;
    color: #00C853 !important;
}

.hero-card {
    background: var(--card-bg);
    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, 0.8);
    overflow: hidden;
    margin-bottom: 24px;
    padding-bottom: 30px;
    border: 1px solid var(--card-border);
    border-top: none;
}

#order-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    margin-bottom: 24px;
    padding: 0;
    overflow: visible;
    position: relative;
    z-index: 5;
}

.order-swiper-wrapper {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
    overflow: hidden;
    position: relative;
}

.hero-card-middle {
    background: var(--card-bg);
    border-radius: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    margin-bottom: 24px;
    border: 1px solid var(--card-border);
}

.hero-swiper {
    width: 100%;
    height: auto;
    background: #000;
    margin-top: 10px;
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
    transition: height 0.3s ease;
    position: relative;
}

.swiper-slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.glass-nav {
    width: 44px;
    height: 44px;
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 95, 31, 0.4);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    color: var(--theme-color);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 30;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.glass-nav:after {
    font-size: 18px !important;
    font-weight: 900;
}

.swiper-button-prev.glass-nav {
    left: 15px;
}

.swiper-button-next.glass-nav {
    right: 15px;
}

h1.d7-title,
.main-style-heading,
.hero-card-middle h1,
#order-card h2 {
    font-family: 'Inter', sans-serif !important;
    font-size: 25px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin: 0 0 20px 0 !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%);
    -webkit-background-clip: text;
}

.hero-text-area {
    padding: 25px 20px 10px 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text-area h1.d7-title {
    margin-bottom: 8px !important;
}

.ht-sub {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--theme-color);
    text-shadow: 0 0 15px var(--theme-glow);
    letter-spacing: 1px;
    text-transform: uppercase;
    text-align: center;
}

.hero-content-pad {
    padding: 0 20px;
    margin-top: 15px;
}

.content-pad {
    padding: 0 16px;
}

.section-separator {
    width: 100%;
    height: 1px;
    background: var(--card-border);
    margin-top: 10px;
    margin-bottom: 25px;
}

.desc-text {
    color: #ccc;
    line-height: 1.6;
    font-size: 15px;
}

.desc-text img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 10px 0;
}

.desc-text strong,
.desc-text b {
    color: #fff;
    font-weight: 900;
}

.price-layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.p-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

body,
html {
    font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
    --text-main: #FFFFFF;
}


.p-main {
    font-family: 'Inter', sans-serif !important;
    font-size: 64px !important;
    font-weight: 900 !important;
    line-height: 0.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;
}

.p-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    padding-top: 0;
}

.p-label-promo {
    font-size: 11px;
    font-weight: 900;
    color: var(--apple-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: -2px;
}

.p-old-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.p-old {
    font-size: 20px;
    color: var(--text-sub);
    text-decoration: line-through;
    font-weight: 500;
}

.p-badge {
    background: var(--theme-color);
    color: #000;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    transform: rotate(-2deg);
    box-shadow: 0 0 10px var(--theme-glow);
}

.demand-struct {
    background: linear-gradient(90deg, rgba(255, 95, 31, 0.15), rgba(255, 95, 31, 0.05));
    border: 0.7px solid var(--theme-color);
    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, 0.8));
}

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

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

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

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

.ds-title {
    color: var(--theme-color);
    font-weight: 900;
    font-size: 13px;
    text-transform: uppercase;
}

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

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

.ds-track {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.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, 0.4);
}

.big-button {
    position: relative;
    width: 100%;
    height: 74px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    background: var(--theme-gradient);
    box-shadow: 0 0 30px var(--theme-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.1s;
    padding: 0 5px;
    margin-top: 10px;
    text-decoration: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.btn-liquid-text {
    position: relative;
    width: 100%;
    height: 74px;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    background: var(--theme-gradient);
    box-shadow: 0 0 30px var(--theme-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.1s;
    padding: 0 5px;
    margin-top: 10px;
    text-decoration: none;
}

.btn-liquid-text:active {
    transform: scale(0.96);
}

.blt-text {
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 2;
}

.btn-liquid-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 150%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: skewX(-20deg);
    animation: liquidMove 3s infinite ease-in-out;
}

@keyframes liquidMove {
    0% {
        left: -100%;
    }

    20% {
        left: 200%;
    }

    100% {
        left: 200%;
    }
}

.savings-card,
.variant-card {
    /* background: rgba(30, 30, 35, 0.7); */
    background: #0e172a;

    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 24px;
}

.sc-header {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0.05));
    border-bottom: 1px solid rgba(255, 255, 255, 0.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, 0.08);
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

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

.sc-row.highlight {
    background: rgba(255, 95, 31, 0.08);
    border-color: var(--theme-color);
    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(--theme-color);
    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, 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(255, 95, 31, 0.3);
}

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

.benefit-card,
.step-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 22px;
    overflow: hidden;
    margin-bottom: 20px;
}

.ben-img-wrap,
.step-img-wrap {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.ben-img-wrap img,
.step-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ben-text-wrap,
.step-text-pad {
    padding: 22px;
}

.ben-title,
.step-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 17px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.ben-desc,
.step-desc {
    font-size: 14px;
    color: var(--text-sub);
    line-height: 1.5;
}

.ben-icon {
    color: var(--theme-color);
    font-size: 20px;
    margin-right: 5px;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin-bottom: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #000;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.timeline-wrap {
    position: relative;
    padding-left: 0;
    margin-bottom: 25px;
}

.timeline-line {
    position: absolute;
    left: 15px;
    top: 15px;
    bottom: 30px;
    width: 2px;
    background: linear-gradient(180deg, var(--theme-color), rgba(255, 255, 255, 0.1));
}

.step-row {
    position: relative;
    padding-left: 45px;
    margin-bottom: 30px;
}

.step-num {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: var(--theme-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 900;
    color: #000;
    border: 2px solid #fff;
    z-index: 2;
}

.spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-sub);
    font-size: 14px;
    font-weight: 500;
}

.spec-value {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    text-align: right;
}


.trust-dashboard {
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.9), rgba(15, 15, 15, 0.95));
    border: 1px solid var(--card-border);
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 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, 0.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, 0.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, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.td-bar-fill {
    height: 100%;
    background: var(--status-green);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
    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: var(--status-green);
    font-weight: 700;
}

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

.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, 0.08);
}

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

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

.g-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.g-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    letter-spacing: -0.5px;
}

.g-status {
    font-size: 10px;
    color: #aaa;
    text-transform: uppercase;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 2px;
}

.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, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.td-bar-fill {
    height: 100%;
    background: var(--status-green);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
    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: var(--status-green);
    font-weight: 700;
}

.write-review-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--theme-color);
    color: var(--text-sub);
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.write-review-btn {
    border: 1px solid var(--theme-color) !important;
    background: rgba(255, 95, 31, 0.15) !important;

    color: #fff !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;

    width: 100% !important;
    padding: 16px !important;
    border-radius: 16px !important;
    margin-bottom: 20px !important;

    font-family: 'Inter', sans-serif !important;
    font-weight: 700 !important;
    font-size: 13px !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;

    cursor: pointer !important;
    transition: all 0.2s ease !important;

    box-shadow: 0 0 15px rgba(255, 95, 31, 0.1) !important;
}

.write-review-btn:hover {
    background: rgba(255, 95, 31, 0.3) !important;
    box-shadow: 0 0 20px rgba(255, 95, 31, 0.3) !important;
    transform: translateY(-2px);
}

.write-review-btn:active {
    background: var(--theme-color) !important;
    color: #000 !important;
    box-shadow: 0 0 30px var(--theme-glow) !important;
    transform: scale(0.97);
}

.emoji-coment {
    width: 20px !important;
    height: 20px !important;
    object-fit: contain !important;
    margin: 0 !important;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

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

#review-form-wrap.open {
    max-height: 600px;
    border: 1px solid var(--theme-color);
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 0 30px rgba(255, 95, 31, 0.15);
}

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

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

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

.star-s.selected {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px gold);
}

.rf-input {
    width: 100%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.rf-input:focus {
    border-color: var(--theme-color);
    outline: none;
}

.rf-submit {
    background: var(--theme-gradient);
    color: #fff;
    font-weight: 800;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(255, 95, 31, 0.3);
    cursor: pointer;
}

.reviews-feed {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    min-height: 200px;
}

.adv-review-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 16px;
    position: relative;
    transition: all 0.5s ease;
    animation: slideInTop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new-review-highlight-blue {
    animation: flashBlue 2s ease-out forwards;
}

@keyframes flashBlue {
    0% {
        border-color: #00E5FF;
        box-shadow: 0 0 25px rgba(0, 229, 255, 0.3);
    }

    100% {
        border-color: var(--card-border);
        box-shadow: none;
    }
}

.new-review-highlight-green {
    animation: flashGreen 2s ease-out forwards;
}

@keyframes flashGreen {
    0% {
        border-color: #00E676;
        box-shadow: 0 0 25px rgba(0, 230, 118, 0.3);
    }

    100% {
        border-color: var(--card-border);
        box-shadow: none;
    }
}

.ar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.ar-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

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

.ar-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 3px;
}

.ar-stars {
    display: flex;
    gap: 1px;
}

.new-badge {
    margin-left: auto;
    font-size: 9px;
    color: #000;
    background: var(--highlight-blue);
    padding: 3px 8px;
    border-radius: 6px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ar-verified {
    margin-left: auto;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--status-green);
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 230, 118, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.ar-content {
    padding-left: 0;
}

.ar-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #ccc;
    margin: 0 0 10px 0;
}

.ar-photo-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-top: 8px;
    padding-bottom: 4px;
}

.ar-photo-grid img {
    height: 90px;
    width: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: zoom-in;
    object-fit: cover;
}

.ar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ar-date {
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

.ar-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reaction-btn {
    background: transparent;
    border: none;
    color: #777;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: 0.2s;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.reaction-btn:hover {
    color: #fff;
}

.reaction-btn.active-like {
    color: var(--theme-color);
}

.reaction-btn.active-dislike {
    color: var(--apple-red);
}

.emoji-icon {
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.emoji-like,
.emoji-dislike {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    opacity: 0.7;
    transition: 0.2s;
}

.emoji-coment {
    width: 20px;
    height: 20px;
    margin-right: 6px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.emoji-star {
    width: 12px;
    height: 12px;
    margin-right: 1px;
}

.emoji-check {
    width: 12px;
    height: 12px;
}

.emoji-light {
    width: 10px;
    height: 10px;
}

.reaction-btn:hover .emoji-like,
.reaction-btn.active-like .emoji-like {
    opacity: 1;
    transform: scale(1.2);
}


.ar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ar-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.ar-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.ar-stars {
    display: flex;
    gap: 1px;
    margin-top: 2px;
}

/* Stars horizontal */

.new-badge {
    margin-left: auto;
    font-size: 9px;
    color: #000;
    background: var(--highlight-blue);
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 4px;
}

.ar-verified {
    margin-left: auto;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--status-green);
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0, 230, 118, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.ar-content {
    padding-left: 0;
}

.ar-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #ccc;
    margin: 0 0 10px 0;
}

.ar-photo-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-top: 8px;
    padding-bottom: 4px;
}

.ar-photo-grid img {
    height: 90px;
    width: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: zoom-in;
    object-fit: cover;
}

.ar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ar-date {
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

.ar-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.reaction-btn {
    background: transparent;
    border: none;
    color: #777;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: 0.2s;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.reaction-btn:hover {
    color: #fff;
}

.reaction-btn.active-like {
    color: var(--theme-color);
}

.reaction-btn.active-dislike {
    color: var(--apple-red);
}

/* IMAGES */
.emoji-icon {
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.emoji-like {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    opacity: 0.7;
}

.emoji-dislike {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    opacity: 0.7;
    margin-top: 2px;
}

.emoji-coment {
    width: 22px;
    height: 22px;
    margin-right: 8px;
    filter: drop-shadow(0 0 5px rgba(0, 0, 0, 0.5));
}

.emoji-star {
    width: 12px;
    height: 12px;
}

.emoji-check {
    width: 12px;
    height: 12px;
}

.emoji-light {
    width: 10px;
    height: 10px;
}

.write-review-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--theme-color);
    color: var(--text-sub);
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

.write-review-btn:active {
    background: rgba(255, 95, 31, 0.1);
    color: #fff;
}

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

#review-form-wrap.open {
    max-height: 600px;
    border: 1px solid var(--theme-color);
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 0 30px rgba(255, 95, 31, 0.15);
}

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

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

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

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

.rf-input {
    width: 100%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
    font-family: 'Inter', sans-serif;
}

.rf-input:focus {
    border-color: var(--theme-color);
    outline: none;
}

.rf-submit {
    background: var(--theme-gradient);
    color: #fff;
    font-weight: 800;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
    box-shadow: 0 5px 20px rgba(255, 95, 31, 0.3);
}

@keyframes flashBlue {
    0% {
        border-color: #00E5FF;
        box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
    }

    100% {
        border-color: var(--card-border);
        box-shadow: none;
    }
}

.new-review-highlight-blue {
    animation: flashBlue 3s ease-out forwards;
}

@keyframes flashGreen {
    0% {
        border-color: #00E676;
        box-shadow: 0 0 25px rgba(0, 230, 118, 0.4);
    }

    100% {
        border-color: var(--card-border);
        box-shadow: none;
    }
}

.new-review-highlight-green {
    animation: flashGreen 3s ease-out forwards;
}

.ar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.ar-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

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

.ar-name {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.ar-stars {
    color: #FFD700;
    font-size: 12px;
}

.ar-verified {
    margin-left: auto;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--status-green);
    background: rgba(0, 230, 118, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.new-badge {
    margin-left: auto;
    font-size: 9px;
    color: #000;
    background: #00E5FF;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);
}

.ar-content {
    padding-left: 0;
}

.ar-text {
    font-size: 13px;
    line-height: 1.5;
    color: #ccc;
    margin: 0 0 10px 0;
}

.ar-photo-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-top: 8px;
}

.ar-photo-grid img {
    height: 90px;
    width: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ar-date {
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

.ar-actions {
    display: flex;
    gap: 12px;
}

.reaction-btn {
    background: transparent;
    border: none;
    color: #777;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.reaction-btn.active-like {
    color: var(--theme-color);
}

.reaction-btn.active-dislike {
    color: var(--apple-red);
}

.write-review-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--theme-color);
    color: var(--text-sub);
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 15px;
}

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

#review-form-wrap.open {
    max-height: 600px;
    border: 1px solid var(--theme-color);
    padding: 20px;
    margin-bottom: 25px;
}

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

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

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

.star-s.selected {
    color: #FFD700;
    transform: scale(1.1);
}

.rf-input {
    width: 100%;
    background: #000;
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 12px;
    border-radius: 12px;
    color: #fff;
    font-size: 14px;
    margin-bottom: 10px;
}

.rf-submit {
    background: var(--theme-gradient);
    color: #fff;
    font-weight: 800;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    font-size: 14px;
}

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

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

.lb-img {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 12px;
}

.lb-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
}

/* CUSTOM DROPDOWN SELECT */
.custom-select-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 20px;
    user-select: none;
}

.custom-select-trigger {
    width: 100%;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s;
}

.custom-select-trigger:active,
.custom-select-wrapper.open .custom-select-trigger {
    background: rgba(255, 95, 31, 0.1);
    border-color: var(--theme-color);
    box-shadow: 0 0 15px rgba(255, 95, 31, 0.2);
}

.custom-select-arrow {
    font-size: 12px;
    color: var(--theme-color);
    transition: transform 0.3s;
}

.custom-select-wrapper.open .custom-select-arrow {
    transform: rotate(180deg);
}

.custom-options {
    position: absolute;
    top: 74px;
    left: 0;
    width: 100%;
    background: #111;
    border: 1px solid var(--theme-color);
    border-radius: 18px;
    overflow: hidden;
    z-index: 100;
    display: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.8);
    max-height: 300px;
    overflow-y: auto;
}

.custom-select-wrapper.open .custom-options {
    display: block;
    animation: fadeIn 0.2s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.custom-option {
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ccc;
    cursor: pointer;
    transition: 0.2s;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
}

.custom-option:last-child {
    border-bottom: none;
}

.custom-option:hover,
.custom-option.selected {
    background: rgba(255, 95, 31, 0.15);
    color: #fff;
}

.custom-option span.opt-price {
    font-weight: 700;
    color: var(--theme-color);
}

.qty-cards-scroll {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 10px 5px 20px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-bottom: 10px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

.qty-cards-scroll::-webkit-scrollbar {
    display: none;
}

.qty-cards-scroll.centered {
    justify-content: center;
}

.qty-card-item {
    flex: 0 0 88px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.2s;
    cursor: pointer;
    overflow: visible;
}

.qty-card-item.active {
    background: rgba(255, 95, 31, 0.08);
    border: 1px solid #FF5F1F;
    box-shadow: inset 0 0 12px rgba(255, 95, 31, 0.15);
    transform: scale(1.05);
    z-index: 2;
}

.qci-count {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 4px;
}

.qci-price {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #ccc;
}

.qci-badge {
    position: absolute;
    top: -8px;
    right: -5px;
    background: var(--apple-red);
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 6px;
    border-radius: 6px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
    transform: rotate(5deg);
    z-index: 10;
}

.sb-btn {
    position: relative;
    background: var(--theme-gradient);
    border: none;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 22px;
    padding: 16px 10px;
    border-radius: 18px;
    text-transform: uppercase;
    box-shadow: 0 0 25px var(--theme-glow);
    letter-spacing: 0.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, 0.4), transparent);
    transform: skewX(-20deg);
    animation: liquidMove 3s infinite ease-in-out;
    pointer-events: none;
}

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

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

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

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

.sb-status {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--status-green);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.8);
}

.sb-dot {
    width: 6px;
    height: 6px;
    background: var(--status-green);
    border-radius: 50%;
    box-shadow: 0 0 5px var(--status-green);
}

.inp-wrap {
    position: relative;
    margin-bottom: 14px;
}

.heavy-input {
    width: 100%;
    height: 64px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 0 20px 0 55px;
    color: #fff;
    font-size: 17px;
    font-weight: 500;
    font-family: -apple-system, sans-serif;
    transition: 0.3s;
}

.heavy-input:focus {
    /*background: #000;*/
    border-color: var(--theme-color);
    box-shadow: 0 0 15px var(--theme-glow);
}

.inp-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    opacity: 0.4;
    color: #fff;
    pointer-events: none;
}

.heavy-input:focus+.inp-icon {
    opacity: 1;
    color: var(--theme-color);
}

.proxy-form button {
    margin-top: 20px !important;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
    margin-bottom: 14px;
    position: relative;
}

.wpcf7 select {
    width: 100% !important;
    height: 64px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 18px !important;
    padding: 0 20px !important;
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    font-family: -apple-system, sans-serif !important;
    transition: 0.3s !important;
    box-shadow: none !important;
    outline: none !important;
    margin: 0 !important;
}

.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"] {
    width: 100% !important;
    height: 64px !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 18px !important;
    padding: 0 20px !important;
    color: #fff !important;
    font-size: 17px !important;
    font-weight: 500 !important;
    font-family: -apple-system, sans-serif !important;
    transition: 0.3s !important;
    box-shadow: none !important;
    outline: none !important;
    margin: 0 !important;
}

.wpcf7 input:focus {
    /*background: unset !important;*/
    border-color: var(--theme-color) !important;
    box-shadow: 0 0 15px var(--theme-glow) !important;
}

.wpcf7 input[type="submit"] {
    width: 100% !important;
    height: 74px !important;
    border: none !important;
    border-radius: 100px !important;
    cursor: pointer !important;
    background: var(--theme-gradient) !important;
    box-shadow: 0 0 30px var(--theme-glow) !important;
    color: #fff !important;
    font-family: 'Montserrat', sans-serif !important;
    font-size: 20px !important;
    font-weight: 900 !important;
    text-transform: uppercase !important;
    margin-top: 10px !important;
    display: block !important;
}

.catalog-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 36px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
    overflow: hidden;
    margin-bottom: 24px;
    padding-bottom: 20px;
    position: relative;
}

.catalog-info {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(0, 0, 0, 0) 100%);
}

.cat-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 1.2;
    background: linear-gradient(180deg, #fff 40%, #ccc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cat-sticker-inline {
    background: var(--theme-color);
    color: #000;
    font-size: 12px;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 6px;
    transform: rotate(-2deg);
    box-shadow: 0 0 10px var(--theme-glow);
}

.cp-label-promo {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 900;
    color: var(--apple-red);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: -2px;
}

.cat-desc-btn {
    width: 100%;
    background: linear-gradient(180deg, #2a2a2e 0%, #1a1a1d 100%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    color: #ccc;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    margin-bottom: 15px;
    padding: 14px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cat-desc-btn:hover {
    background: linear-gradient(180deg, #333 0%, #222 100%);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cat-desc-arrow {
    transition: transform 0.3s;
    font-size: 12px;
    opacity: 0.7;
}

.cat-desc-btn.active .cat-desc-arrow {
    transform: rotate(180deg);
}

.cat-desc-btn.active {
    border-color: var(--theme-color);
    color: var(--theme-color);
    background: rgba(255, 95, 31, 0.1);
}

.cat-desc-content {
    display: none;
    font-size: 13px;
    color: #bbb;
    margin-bottom: 20px;
    line-height: 1.5;
    padding: 15px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: left;
    width: 100%;
}

.cat-desc-content.open {
    display: block;
    animation: fadeIn 0.3s ease;
}

.cat-price-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    width: 100%;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cp-left {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.cp-main {
    font-family: 'Montserrat', sans-serif;
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    background: linear-gradient(180deg, #fff 40%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cp-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.cp-old-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

.cp-old {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #777;
    text-decoration: line-through;
    font-weight: 600;
}

.cp-badge {
    background: var(--theme-color);
    color: #000;
    font-size: 11px;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 5px;
    transform: rotate(-3deg);
    box-shadow: 0 0 10px var(--theme-glow);
}

.cat-btn {
    width: 100%;
    height: 64px;
    border: none;
    border-radius: 100px;
    background: var(--theme-gradient);
    box-shadow: 0 0 20px var(--theme-glow);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 900;
    font-size: 18px;
    text-transform: uppercase;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s;
    position: relative;
    overflow: hidden;
}

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

.cat-btn:active {
    transform: scale(0.96);
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 10001;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: #111;
    border: 1px solid var(--card-border);
    border-radius: 24px;
    width: 90%;
    max-width: 400px;
    padding: 25px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

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

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    line-height: 1;
    opacity: 0.7;
}

.modal-product-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.modal-prod-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.modal-prod-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 8px;
}

.modal-price-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}

.modal-prod-price {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 900;
    color: #fff;
    background: linear-gradient(180deg, #fff 40%, #aaa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.modal-old-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #777;
}

#m-old-price {
    text-decoration: line-through;
}

.modal-badge {
    font-size: 10px;
    background: var(--apple-red);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    font-weight: 800;
    display: inline-block;
    text-decoration: none !important;
}

.modal-qty-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
    padding: 10px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.mq-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: 0.2s;
}

.mq-btn:active {
    background: var(--theme-color);
    color: #000;
}

.mq-val {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.emoji-icon {
    display: inline-block;
    width: 1.3em;
    height: 1.3em;
    vertical-align: middle;
    object-fit: contain;
    margin: 0 2px;
    margin-bottom: 2px;
}

.emoji-fire {
    width: 20px;
    height: 20px;
}

.emoji-star {
    width: 14px;
    height: 14px;
}

.emoji-user {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.emoji-phone {
    width: 18px;
    height: 18px;
    opacity: 0.7;
}

.emoji-check {
    width: 16px;
    height: 16px;
}

.emoji-cart {
    width: 24px;
    height: 24px;
}

.emoji-light {
    width: 12px;
    height: 12px;
}

.fire-anim {
    animation: firePulse 1.5s infinite;
}

@keyframes firePulse {
    0% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.15);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 0.9;
    }
}

.emoji-icon {
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
    margin-top: -2px;
}

.emoji-like {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    opacity: 0.6;
    transition: 0.2s;
}

.emoji-dislike {
    width: 16px;
    height: 16px;
    margin-right: 4px;
    opacity: 0.6;
    transition: 0.2s;
    margin-top: 2px;
}

.emoji-coment {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.3));
}

.emoji-check {
    width: 12px;
    height: 12px;
}

.emoji-star {
    width: 13px;
    height: 13px;
    margin: 0 1px;
}

.reaction-btn:hover .emoji-like,
.reaction-btn.active-like .emoji-like {
    opacity: 1;
    transform: scale(1.2);
}

.reaction-btn:hover .emoji-dislike,
.reaction-btn.active-dislike .emoji-dislike {
    opacity: 1;
    transform: scale(1.2);
}

/* --- ICONS (PNG) --- */
.emoji-icon {
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.emoji-like {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    opacity: 0.7;
    transition: 0.2s;
}

.emoji-dislike {
    width: 14px;
    height: 14px;
    margin-right: 4px;
    opacity: 0.7;
    margin-top: 2px;
    transition: 0.2s;
}

.emoji-coment {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;

    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.5));
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    will-change: transform, filter;
    display: inline-block;
    vertical-align: middle;
    object-fit: contain;
}

.emoji-star {
    width: 12px;
    height: 12px;
    margin-right: 1px;
}

.emoji-check {
    width: 12px;
    height: 12px;
    margin-right: 3px;
}

.emoji-light {
    width: 12px;
    height: 12px;
    margin-right: 3px;
}

.reaction-btn:hover .emoji-like,
.reaction-btn.active-like .emoji-like {
    opacity: 1;
    transform: scale(1.2);
}

.reaction-btn:hover .emoji-dislike,
.reaction-btn.active-dislike .emoji-dislike {
    opacity: 1;
    transform: scale(1.2);
}

.trust-dashboard {
    background: linear-gradient(135deg, rgba(30, 30, 35, 0.9), rgba(15, 15, 15, 0.95));
    border: 1px solid var(--card-border);
    border-radius: 22px;
    padding: 20px;
    margin-bottom: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.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, 0.08);
}

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

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

.g-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.g-name {
    font-family: 'Inter', sans-serif;
    font-weight: 800;
    font-size: 15px;
    color: #fff;
    letter-spacing: -0.5px;
}

.g-status {
    font-size: 10px;
    color: #aaa;
    text-transform: uppercase;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
}

.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, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.td-bar-fill {
    height: 100%;
    background: var(--status-green);
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 230, 118, 0.4);
    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: var(--status-green);
    font-weight: 700;
}

.reviews-feed {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
    min-height: 200px;
}

.adv-review-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 18px;
    padding: 16px;
    position: relative;
    transition: all 0.5s ease;
    animation: slideInTop 0.7s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideInTop {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.new-review-highlight {
    animation: flashNew 2s ease-out forwards;
}

@keyframes flashNew {
    0% {
        border-color: var(--highlight-blue);
        box-shadow: 0 0 25px rgba(0, 229, 255, 0.3);
    }

    100% {
        border-color: var(--card-border);
        box-shadow: none;
    }
}

.ar-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.ar-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    color: #fff;
    font-weight: 800;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}

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

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

.ar-stars {
    display: flex;
    align-items: center;
}

/* Зірки в рядок */
.new-badge {
    margin-left: auto;
    font-size: 9px;
    color: #000;
    background: var(--highlight-blue);
    padding: 3px 6px;
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);

    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.ar-verified {
    margin-left: auto;
    font-size: 9px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    color: var(--status-green);

    background: rgba(0, 230, 118, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 230, 118, 0.2);
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.new-badge {
    padding: 3px 3px;

    margin-left: auto;
    font-size: 9px;
    color: #000;
    background: var(--highlight-blue);
    border-radius: 4px;
    font-weight: 800;
    text-transform: uppercase;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.5);

    display: inline-flex;
    align-items: center;
    line-height: 1;
    gap: 3px;
}

.new-badge img {
    display: block;
    width: 12px;
    height: 12px;
    margin-right: 0;
    transform: translateY(1px);
}

.ar-verified img {
    display: block;
    width: 12px;
    height: 12px;
    margin-right: 0;
    transform: translateY(1px);
}

.ar-content {
    padding-left: 0;
}

.ar-text {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.5;
    color: #ccc;
    margin: 0 0 10px 0;
}

.ar-photo-grid {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    margin-top: 8px;
    padding-bottom: 4px;
}

.ar-photo-grid img {
    height: 90px;
    width: auto;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.2s;
    cursor: zoom-in;
    object-fit: cover;
}

.ar-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.ar-date {
    font-size: 10px;
    color: #666;
    font-weight: 500;
}

.ar-actions {
    display: flex;
    gap: 12px;
}

.reaction-btn {
    background: transparent;
    border: none;
    color: #777;
    cursor: pointer;
    font-size: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: 0.2s;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.reaction-btn:hover {
    color: #fff;
}

.reaction-btn.active-like {
    color: var(--theme-color);
}

.reaction-btn.active-dislike {
    color: var(--apple-red);
}

.write-review-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px dashed var(--theme-color);
    color: var(--text-sub);
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.write-review-btn:active {
    background: rgba(255, 95, 31, 0.1);
    color: #fff;
}

@keyframes flashBlue {
    0% {
        border-color: #00E5FF;
        box-shadow: 0 0 25px rgba(0, 229, 255, 0.4);
        background: rgba(0, 229, 255, 0.05);
    }

    100% {
        border-color: var(--card-border);
        box-shadow: none;
        background: var(--card-bg);
    }
}

.new-review-highlight-blue {
    animation: flashBlue 4s ease-out forwards;
}

@keyframes flashGreen {
    0% {
        border-color: #00E676;
        box-shadow: 0 0 25px rgba(0, 230, 118, 0.4);
    }

    100% {
        border-color: var(--card-border);
        box-shadow: none;
    }
}

.new-review-highlight-green {
    animation: flashGreen 4s ease-out forwards;
}

.new-badge {
    margin-left: auto;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    background: rgba(0, 229, 255, 0.15);
    color: #00E5FF;
    border: 1px solid rgba(0, 229, 255, 0.3);

    padding: 3px 10px;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(0, 229, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    display: flex;
    align-items: center;
    gap: 5px;
}

.hero-card,
.hero-card-middle {
    margin-bottom: 50px !important;
}

.timeline-wrap {
    margin-bottom: 50px !important;
}

.step-card:last-of-type {
    margin-bottom: 20px !important;
}

.benefit-card {
    margin-bottom: 20px !important;
}

.benefit-card:last-of-type {
    margin-bottom: 50px !important;
}

.hero-card-middle h1,
.hero-card-middle h2,
.hero-card-middle .d7-title,
.hero-card-middle .main-style-heading {
    margin-bottom: 0px !important;
    padding-bottom: 0 !important;
}

.hero-card-middle p:first-of-type,
.hero-card-middle .desc-text {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.hero-card-middle .spec-row:first-child {
    padding-top: 0 !important;
    border-top: none !important;
}

.d7-legal-footer {
    text-align: center;
    margin-top: 35px;
    padding-bottom: 0px;
    position: relative;
    z-index: 2;
}

.d7-footer-info {
    font-family: 'Inter', sans-serif;
    font-size: 12px !important;
    line-height: 1.4 !important;
    color: rgba(255, 255, 255, 0.4);

    max-width: 400px;
    margin: 0 auto 15px auto !important;
    padding: 0 10px;
}

.d7-footer-info p {
    margin: 0 0 4px 0 !important;
}

.d7-footer-info p:last-child {
    margin-bottom: 0 !important;
}

ul.d7-legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

ul.d7-legal-list li a {
    color: #fff;
    font-size: 12px;
    opacity: 0.6;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: all 0.3s ease;
}

ul.d7-legal-list li a:hover {
    opacity: 1;
    border-color: #fff;
}

.d7-content-wrapper b,
.d7-content-wrapper strong {
    font-weight: 900 !important;
    color: #fff !important;
}

.d7-content-wrapper ul {
    list-style: none !important;
    margin: 15px 0 !important;
    padding: 0 !important;
}

.d7-content-wrapper ul li {
    position: relative !important;
    padding-left: 30px !important;
    margin-bottom: 10px !important;
    color: rgba(255, 255, 255, 0.9) !important;
    display: block !important;
}

.d7-content-wrapper ul li::before {
    content: '🟠';
    position: absolute !important;
    left: 0 !important;
    top: 0px !important;

    font-size: 18px !important;
    font-weight: bold !important;
    color: #FF3B30 !important;

    text-shadow: 0 0 8px rgba(255, 59, 48, 0.8) !important;
}

.d7-content-wrapper img.emoji {
    display: inline !important;
    border: none !important;
    box-shadow: none !important;
    height: 1.3em !important;
    width: 1.3em !important;
    margin: 0 0.2em !important;
    vertical-align: middle !important;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.4));
}

.d7-content-wrapper p {
    margin-bottom: 15px !important;
}

img.apple-emoji {
    height: 1.3em !important;
    width: auto !important;
    display: inline-block !important;
    vertical-align: -0.25em !important;
    margin: 0 0.15em !important;
    border: none !important;
    box-shadow: none !important;
    filter: drop-shadow(0 0 3px rgba(255, 255, 255, 0.3));
}

.cons-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 999998;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
}

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


.cons-trigger {
    position: fixed;
    bottom: 90px;
    right: 20px;
    z-index: 9990;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(120px);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.cons-trigger.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cons-tr-avatar-wrap {
    position: relative;
    width: 62px;
    height: 62px;
    flex-shrink: 0;
}

.cons-img-box {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #fff;
    position: relative;
    z-index: 2;
    overflow: hidden !important;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    background: #1a1a1a;
    transition: transform 0.3s;
}

.cons-trigger:hover .cons-img-box {
    transform: scale(1.05);
}

.cons-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cons-online-badge {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 14px;
    height: 14px;
    background: #00E676;
    border: 2px solid #fff;
    border-radius: 50%;
    z-index: 5;
    box-shadow: 0 0 8px #00E676;
}

.cons-notify-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 22px;
    height: 22px;
    background: #FF3B30;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #1a1a1a;
    z-index: 6;
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.cons-pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid #00E5FF;
    z-index: 1;
    animation: consRing 2s infinite;
    pointer-events: none;
}

@keyframes consRing {
    0% {
        transform: scale(0.9);
        opacity: 0.8;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

/* Сообщение */
.cons-tr-message {
    background: rgba(30, 30, 35, 0.95);
    backdrop-filter: blur(15px);
    padding: 12px 18px;
    border-radius: 20px 20px 0 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
    opacity: 0;
    transform: translateX(20px);
    transition: 0.4s 0.2s;
    max-width: 220px;
}

.cons-trigger.is-visible .cons-tr-message {
    opacity: 1;
    transform: translateX(0);
}

.consultant-glass {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 375px;
    height: 650px;
    max-height: 85vh;

    background: #18181D;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    display: flex;
    flex-direction: column;
    z-index: 999999;
    box-shadow: 0 50px 150px rgba(0, 0, 0, 0.9);
    font-family: 'Inter', sans-serif;
    overflow: hidden;

    opacity: 0;
    visibility: hidden;
    transform: translateY(60px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.consultant-glass.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}


@media (max-width: 480px) {
    .consultant-glass {
        left: 50% !important;
        top: 50% !important;
        right: auto !important;
        bottom: auto !important;
        width: 92% !important;
        max-width: 360px !important;
        height: 80vh !important;
        transform: translate(-50%, -50%) scale(0.9) !important;
    }

    .consultant-glass.is-open {
        transform: translate(-50%, -50%) scale(1) !important;
    }
}

.cons-window-header {
    background: #23232A;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    flex-direction: column;
}

.cwh-profile {
    padding: 16px 20px 10px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
}

.cwh-avatar-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}

.cwh-avatar-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cwh-name-row {
    display: flex;
    align-items: center;
    gap: 6px;
}

#win-manager-name {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
}

.verify-shield {
    width: 16px;
    height: 16px;
    color: #00E5FF;
}

.cwh-meta-row {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
}

.status-green {
    color: #00E676;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 3px;
}

.sep {
    width: 1px;
    height: 10px;
    background: rgba(255, 255, 255, 0.2);
}

.role-gray {
    color: rgba(255, 255, 255, 0.5);
}

.cwh-close-wrap {
    margin-left: auto;
}

.cons-minimize {
    background: none;
    border: none;
    font-size: 28px;
    line-height: 0.5;
    color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    padding: 5px;
}

.cons-minimize:hover {
    color: #fff;
}

.cwh-google-simple {
    margin: 0 20px 15px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    padding: 8px 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.g-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.g-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.g-text-wrap {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.g-main {
    font-size: 11px;
    font-weight: 700;
    color: #fff;
}

.g-sub {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
}

.g-right {
    text-align: right;
    line-height: 1.2;
}

.g-val {
    color: #00E676;
    font-weight: 800;
    font-size: 15px;
}

.g-count {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
}

@media (max-width: 360px) {
    .cwh-google-simple {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }

    .g-right {
        align-self: flex-start;
        display: flex;
        gap: 5px;
        align-items: baseline;
    }
}

.cons-chat-feed {
    padding: 15px;
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #18181D;
}

.chat-date {
    text-align: center;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.2);
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.chat-system-lock {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 auto 10px auto;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
}

.chat-system-lock svg {
    width: 10px;
    height: 10px;
    opacity: 0.6;
}

.msg-row {
    display: flex;
    flex-direction: column;
    max-width: 85%;
    animation: msgPop 0.3s ease-out;
}

.msg-row.manager {
    align-self: flex-start;
}

.msg-row.user {
    align-self: flex-end;
    align-items: flex-end;
}

@keyframes msgPop {
    from {
        opacity: 0;
        transform: translateY(5px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.msg-bubble {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.45;
    position: relative;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.msg-row.manager .msg-bubble {
    background: #2D2D35;
    color: rgba(255, 255, 255, 0.95);
    border-bottom-left-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.msg-row.user .msg-bubble {
    background: #0088cc;
    color: #fff;
    font-weight: 500;
    border-bottom-right-radius: 4px;
}

.msg-meta {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 3px;
    margin-top: 3px;
    opacity: 0.6;
}

.msg-time {
    font-size: 10px;
    color: #fff;
}

.msg-check {
    width: 13px;
    height: 13px;
    fill: #fff;
}

.typing-indicator-bubble {
    background: #2D2D35;
    padding: 12px 16px;
    border-radius: 20px 20px 20px 4px;
    width: fit-content;
    display: flex;
    gap: 4px;
}

.tib-dot {
    width: 5px;
    height: 5px;
    background: #fff;
    border-radius: 50%;
    opacity: 0.5;
    animation: typingBounce 1.4s infinite both;
}

.tib-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.tib-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.4;
    }

    50% {
        transform: translateY(-5px);
        opacity: 1;
    }
}

.cons-bottom-panel {
    background: #23232A;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 12px 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cons-faq-label {
    padding: 0 15px;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    margin-bottom: 2px;
    font-weight: 700;
}

.cons-chips-area {
    padding: 0 15px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.cons-chips-area::-webkit-scrollbar {
    display: none;
}

.cons-chip {
    flex-shrink: 0;
    padding: 8px 12px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    font-size: 11px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap;
}

.cons-chip:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #00E5FF;
    color: #fff;
}

.cons-options-area {
    padding: 0 15px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cons-opt-btn {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.15);
    animation: btnFadeUp 0.3s ease-out backwards;
}

@keyframes btnFadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cons-opt-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cons-opt-btn.primary {
    background: #0A84FF;
    color: #fff;
    border: none;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(10, 132, 255, 0.3);
}

.cons-opt-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(10, 132, 255, 0.5);
}

@media (max-width: 480px) {
    .consultant-glass {
        width: auto;
        left: 15px;
        right: 15px;
        bottom: 85px;
    }

    .cons-trigger {
        bottom: 85px;
        right: 20px;
    }
}

iframe {
    border: 0;
    width: 100%;
}

ul.d7-legal-list li {
    width: 100%;
}