#rec1047779471 > div > div > div > div > a{
    color: #222 !important; 
}



 #rec1047779466 .t396__artboard.rendered.t396__artboard-fixed-no-bg {
    top:  25px;
     transition: top 0.3s ease;
}


.t-store__tabs__button-title.t-name.t-name_xs {
    font-family: arial;
}
   
   @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600&display=swap');

    :root {
        --primary-color: rgba(255, 165, 0, 1); ;
        --text-color: #333;
        --light-gray: #f8f8f8;
        --border-color: #e5e5e5;
        --border-radius: 4px;
    }

    .reviews-container {
        max-width: 1000px;
        margin: 0 auto;
        font-family: 'Geologica';



    }
    .reviews-container_m{
        margin-left: 20px;
        margin-right: 20px;
  
    }
    .reviews-header {
        text-align: center;
        margin-bottom: 30px;


    }

    .reviews-title {
        font-size: 24px;
        font-weight: 500;
        color: black;
        text-transform: uppercase;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .overall-rating {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 15px;
    }

    .stars {
        display: flex;
        margin-right: 10px;
    }

    .star {
        /*font-size: 20px;*/
        margin-right: 2px;
    }

    .filled {
        color: var(--primary-color);
    }

    .empty {
        color: #e0e0e0;
    }

    .review-count {
        color: #888;
        font-size: 16px;
    }

    .write-review-btn {
        display: inline-block;
        padding: 8px 20px;
        border: 1px solid #ccc;
        border-radius: var(--border-radius);
        background-color: transparent;
        color: var(--text-color);
        font-size: 14px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    .write-review-btn:hover {
        border-color: var(--primary-color);
        color: var(--primary-color);
    }

    .filter-section {
        margin: 30px 0;
    }

    .search-bar {
        display: flex;
        margin-bottom: 15px;
    }

    .search-input {
        flex: 1;
        padding: 10px 15px;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        font-size: 14px;
    }

    .search-input:focus {
        outline: none;
        border-color: var(--primary-color);
    }

    .sort-select {
        width: 150px;
        padding: 10px;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        margin-left: 10px;
        font-size: 14px;
        cursor: pointer;
    }

    .filter-options {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .filter-select {
        flex: 1;
        min-width: 150px;
        padding: 10px;
        border: 1px solid var(--border-color);
        border-radius: var(--border-radius);
        font-size: 14px;
        cursor: pointer;
    }

    .review-item {
        background-color: white;
        border-radius: var(--border-radius);
        padding: 20px;
        margin-bottom: 20px;
        border-bottom: 1px solid var(--border-color);
    }

    .review-rating {
        margin-bottom: 5px;
    }

    .review-title {
        font-size: 18px;
        font-weight: 500;
        color: #666;
        margin-bottom: 10px;
    }

    .review-text {
        font-size: 14px;
        margin-bottom: 15px;
        color: #4b4b4b;
    }

    .review-meta {
        font-size: 14px;
        color: #888;
        margin-bottom: 10px;
    }

    .review-shade {
        font-size: 14px;
        color: #888;
        margin-bottom: 15px;
    }

    .review-actions {
        display: flex;
        gap: 15px;
    }

    .review-action {
        display: flex;
        align-items: center;
        color: #888;
        font-size: 14px;
        cursor: pointer;
    }

    .review-action i {
        margin-right: 5px;
    }

    @media (max-width: 768px) {
        .filter-options {
            flex-direction: column;
        }

        .filter-select {
            width: 100%;
        }

        .search-bar {
            flex-direction: column;
        }

        .sort-select {
            width: 100%;
            margin-left: 0;
            margin-top: 10px;
        }
    }

    /* ----- */
    /* Рейтинг звёздами */
    .stars, .rating-select label {
        font-size: 18px;
        letter-spacing: 2px;
        color: #f1f1f1;
        text-shadow: 0px 0px 0px rgba(0, 0, 0, 0.2);
    }

    .stars .filled,
    .rating-select input:checked ~ label,
    .product-rating .filled {
        color: rgba(255, 165, 0, 1);
    }

    .product-rating {
        margin: 10px 0;
        display: flex;
        justify-content: center;
    }

    /* Кнопка */
    .comments-button, .submit-button {
        background-color: #92dbe6;
        color: white;
        padding: 8px 15px;
        border-radius: 4px;
        border: none;
        cursor: pointer;
        font-size: 14px;
        margin-top: 10px;
        height: 30px;
        font-weight: 600;
    }

    .comments-button:hover, .submit-button:hover, .btn-primary:hover, .btn-secondary:hover {
        background-color: #7bc9d6;
    }


    .reviews-modal {
        display: none;
        position: fixed;
        z-index: 9999999999;
        left: 0; top: 0;
        width: 100%; height: 100%;
        background: rgba(0,0,0,0.6);
        overflow: hidden;
        font-family: 'Geologica';
    }

    .reviews-content {
        background: #fefefe;
        max-width: 600px;
        margin: 3% auto;

        position: relative;
        font-size: 15px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.3);

        display: flex;
        flex-direction: column;
        height: 90vh;
        overflow: hidden;

        padding: 20px;
        box-sizing: border-box;

    }

    .reviews-modal .close {

        position: absolute;
        right: 5px;
        top: -7px;
        cursor: pointer;
        font-size: 34px;
        color: #111;
        padding: 24px 24px 20px 24px;
    }

    /* Комментарии */
    .comment {
        border-bottom: 1px solid #eee;
        padding: 15px 0;
    }

    .comment-header {
        display: flex;
        justify-content: space-between;
        margin-bottom: 10px;
    }

    .comment-author {
        font-weight: bold;
        font-size: 20px;
    }

    .comment-date {
        color: #888;
    }

    .comment-text {
        line-height: 1.5;
        text-align: left;
    }
    .tleft{
        text-align: left;
    }
    .reviews-content {
        animation: popupFadeIn 0.3s ease;
    }

    @keyframes popupFadeIn {
        from { opacity: 0; transform: scale(0.95); }
        to { opacity: 1; transform: scale(1); }
    }
    .modal-product {
        display: flex;
        gap: 20px;
        align-items: flex-start;
        flex-wrap: wrap;
    }

    .product-thumb {
        width: 200px;
        border-radius: 8px;
        object-fit: cover;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }

    .product-reviews {
        flex: 1;
        min-width: 250px;
        text-align: justify;
    }

    .rating-summary-block {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
        margin-bottom: 5px;
        padding-bottom: 20px;
        border-bottom: 1px solid #eee;
        align-items: center;
    }

    .summary-left {
        min-width: 100px;
        text-align: left;
    }

    .rating-score {
        font-size: 36px;
        font-weight: bold;
        line-height: 1;
        color: black;
    }

    .rating-score .rating-star {
        font-size: 24px;
        vertical-align: middle;
        color: rgba(255, 165, 0, 1);
    }

    .rating-subtext {
        font-size: 13px;
        color: #888;
        margin-top: 4px;
    }

    .summary-bars {
        flex-grow: 1;
        min-width: 200px;
    }

    .bar-row {
        display: flex;
        align-items: center;
        font-size: 10px;
        color: rgba(255, 165, 0, 1);

    }

    .bar-row span {
        width: 28px;
    }

    .bar {
        flex-grow: 1;
        height: 6px;
        background-color: #e0e0e0;
        border-radius: 4px;
        margin-left: 8px;
        overflow: hidden;
    }

    .bar-fill {
        height: 100%;
        background-color: #92dbe6;;
        border-radius: 4px;
    }

    .summary-right {
        min-width: 150px;
        text-align: right;
    }

    .bottom-cta {
        /*position: fixed;*/
        bottom: 0;
        left: 0; right: 0;
        display: flex;
        justify-content: space-between;
        padding: 10px;
        background: white;
        border-top: 1px solid #eee;
        z-index: 9999;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.05);
        gap: 10px;
        height: 70px;

    }

    .btn-primary {
        flex: 1;
        background-color: #92dbe6;
        color: white;
        font-weight: bold;
        border: none;
        padding: 12px 0;
        border-radius: 16px;
        font-size: 16px;
        cursor: pointer;
    }

    .btn-secondary {
        flex: 1;
        background-color: #f2f1ee;
        color: #111;
        font-weight: bold;
        border: none;
        padding: 12px 0;
        border-radius: 16px;
        font-size: 16px;
        cursor: pointer;
    }


    .comments {
        flex: 1;
        overflow-y: auto;
        margin-bottom: 20px;
    }

    .bottom-cta {
        display: flex;
        gap: 10px;
        justify-content: space-between;
        padding-top: 10px;
        border-top: 1px solid #eee;
    }

    .btn-primary, .btn-secondary {
        flex: 1;
        font-size: 16px;
        padding: 12px 0;
        border-radius: 8px;
        font-weight: bold;
        border: none;
        cursor: pointer;
        margin: 0;
        color: white;
    }

    .review-form {
        font-family: Arial, sans-serif;
        padding: 20px;
        background: white;
        border-radius: 12px;
        max-width: 600px;
        margin: 0 auto;
    }

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

    .product-thumb {
        width: 64px;
        height: 64px;
        object-fit: cover;
        border-radius: 8px;
    }

    .product-info {
        font-size: 14px;
        color: #444;
    }

    .rating-block {
        margin-bottom: 15px;
    }

    .rating-stars {
        direction: rtl;
        display: flex;
        justify-content: flex-start;
    }

    .rating-stars input {
        display: none;
    }

    .rating-stars label {
        font-size: 30px;
        color: #ddd;
        cursor: pointer;
        padding: 0 4px;
        transition: 0.3s;
    }

    .rating-stars input:checked ~ label,
    .rating-stars label:hover,
    .rating-stars label:hover ~ label {
        color: #fcbf49;
    }

    .form-group {
        margin-bottom: 20px;
    }

    .form-group input,
    .form-group textarea {
        width: 100%;
        padding: 10px;
        margin-top: 8px;
        margin-bottom: 10px;
        border: 1px solid #ccc;
        border-radius: 6px;
        font-size: 16px;
    }

    .upload-block {
        margin-bottom: 10px;
    }

    .upload-btn {
        display: inline-block;
        background: #f2f1ee;
        padding: 12px;
        border-radius: 10px;
        font-size: 15px;
        cursor: pointer;
        text-align: center;
        width: 100%;
    }

    .anon-switch {
        font-size: 14px;
        color: #555;
        margin-bottom: 20px;
    }

    .rating-select {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
    }

    .rating-select input {
        display: none;
    }

    .rating-select label {
        cursor: pointer;
        font-size: 30px;
        color: white;
        text-shadow: 1px 1px 1px rgba(0,0,0,0.2);
        padding: 0 2px;
    }

    .rating-select input:checked ~ label {
        color: rgba(255, 165, 0, 1);
    }

    .reviews-content,
    #reviewForm *{

        box-sizing: border-box; /* важно */
    }

    .upload-btn {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 8px; /* расстояние между иконкой и текстом */
        background: #f5f3f0;
        padding: 14px 12px;
        border-radius: 4px;
        font-size: 16px;
        font-weight: 500;
        cursor: pointer;
        color: #222;
        transition: background 0.3s ease;
        width: 100%;
        text-align: center;
        box-sizing: border-box;
    }

    .upload-btn:hover {
        background: #eceae7;
    }

    .upload-btn svg {
        display: block;
        width: 20px;
        height: 20px;
    }
    .star-reting-title{
        min-width: 70px;
        text-align: right;
    }
    .rating-summary-title{
        margin-bottom: 10px;
        font-weight: bold;
        font-size: 24px;

        text-align: left;

    }
    .btn-disabled {
        cursor: not-allowed;
        opacity: 0.6;
        pointer-events: none;
    }

    .review-rules {
        background: #f7fafa;
        border-left: 4px solid #cfe8ea;
        padding: 10px;
        font-size: 12px;
        line-height: 1.4;
        margin-top: 10px;
        border-radius: 8px;
        max-height: 250px;
        overflow-y: auto;
    }

    .review-rules strong {
        font-size: 12px;
        display: block;
        margin-bottom: 10px;
    }

    .review-rules ul {
        padding-left: 18px;
        margin: 5px 0 5px;
    }

    .rules-good li {
        color: #3eaa7a;
    }

    .rules-bad li {
        color: #c94a3f;
    }

    .toggle-switch {
        display: flex;
        align-items: center;
        gap: 20px;
        font-size: 16px;
        font-weight: 500;
        margin-bottom: 20px;
    }

    .toggle-option {
        padding: 10px 20px;
        border: 1px solid #ccc;
        background-color: white;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s ease;
        user-select: none;
    }

    .toggle-option.active {
        background-color: #92dbe6;
        color: white;
        border-color: #92dbe6;
    }

    .toggle-option {
        padding: 10px 20px;
        border: 1px solid #ccc;
        background-color: white;
        border-radius: 6px;
        cursor: pointer;
        transition: all 0.2s ease;
        user-select: none;
        color: #333;
        box-shadow: none;
    }

    .toggle-option.active {
        background-color: #92dbe6;
        color: white;
        border-color: #92dbe6;
        box-shadow: 0 0 0 3px rgba(146, 219, 230, 0.3);
    }
    .review-count {
        color: #010101;
        font-size: 16px;
        margin-top: 6px;
    }
    .rating-main{
        margin-top: 19px;
    }
    .rating-main .stars {
        margin-right: 0;
    }
    .rating-main .stars .star {
        font-size: 14px;
    }
    .rating-main .stars .review-count {
        font-size: 11px;
    }
    
    
      .vpn-warning-panel {
            position: fixed;
            font-family: 'Geologica';
            top: 0;
            left: 0;
            right: 0;
            background: linear-gradient(135deg, #475569 0%, #64748b 100%);
            color: white;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            z-index: 1000000;
            animation: slideDown 0.3s ease-out;
        }

        @keyframes slideDown {
            from {
                transform: translateY(-100%);
            }
            to {
                transform: translateY(0);
            }
        }

        .warning-icon {
            width: 24px;
            height: 24px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: bold;
            flex-shrink: 0;
        }

        .warning-content {
            display: flex;
            align-items: center;
            gap: 15px;
            flex: 1;
            max-width: 1200px;
        }

        .warning-text {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
        }

        .warning-text strong {
            font-weight: 600;
        }

        .close-button {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 32px;
            height: 32px;
           
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            transition: all 0.2s ease;
            flex-shrink: 0;
        }

        .close-button:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.05);
        }

        .close-button:active {
            transform: scale(0.95);
        }

        /* Responsive design */
        @media (max-width: 768px) {
            .vpn-warning-panel {
                padding: 10px 15px;
                gap: 10px;
            }

            .warning-text {
                font-size: 13px;
            }

            .warning-icon {
                width: 20px;
                height: 20px;
                font-size: 12px;
            }

            .close-button {
                width: 28px;
                height: 28px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .vpn-warning-panel {
                padding: 8px 12px;
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            .warning-content {
                flex-direction: column;
                gap: 8px;
            }

            .close-button {
                position: absolute;
                top: 8px;
                right: 12px;
            }
        }
        
   .track-reset * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .track-main-wrapper {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background-color: #f5f5f5;
            color: #333;
            line-height: 1.6;
        }

        .track-container-main {
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
        }

        .track-header-section {
            background: white;
            padding: 20px;
            border-radius: 8px;
            margin-bottom: 20px;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .track-header-section h1 {
            color: #2c3e50;
            margin-bottom: 10px;
        }

        .track-breadcrumb-nav {
            color: #666;
            font-size: 14px;
        }

        .track-breadcrumb-nav a {
            color: #3498db;
            text-decoration: none;
        }

        .track-orders-wrapper {
            background: white;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
        }

        .track-order-single {
            border-bottom: 1px solid #eee;
            transition: all 0.3s ease;
        }

        .track-order-single:last-child {
            border-bottom: none;
        }

        .track-order-clickable {
            position: relative;
                z-index: 99996;
            padding: 20px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: white;
            transition: background-color 0.3s ease;
        }

        .track-order-clickable:hover {
            background-color: #f8f9fa;
        }

        .track-order-data {
            flex: 1;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 20px;
            align-items: center;
        }

        .track-order-id {
            font-weight: 600;
            color: #2c3e50;
        }

        .track-order-timestamp {
            color: #666;
            font-size: 14px;
        }

        .track-order-badge {
            padding: 6px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 500;
            text-align: center;
        }

        .track-status-processing {
            background-color: #fff3cd;
            color: #856404;
        }

        .track-status-shipped {
            background-color: #d4edda;
            color: #155724;
        }

        .track-status-delivered {
            background-color: #d1ecf1;
            color: #0c5460;
        }

        .track-expand-arrow {
            transition: transform 0.3s ease;
            font-size: 18px;
            color: #666;
        }

        .track-order-single.track-expanded .track-expand-arrow {
            transform: rotate(180deg);
        }

        .track-order-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.3s ease;
            background-color: #f8f9fa;
        }

        .track-order-single.track-expanded .track-order-content {
            max-height: 5000px;
        }

        .track-timeline-wrapper {
            padding: 30px;
        }

        .track-timeline-list {
            position: relative;
            padding-left: 30px;
        }

        .track-timeline-list::before {
            content: '';
            position: absolute;
            left: 15px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: #e9ecef;
        }

        .track-timeline-step {
            position: relative;
            margin-bottom: 30px;
            padding-left: 30px;
        }

        .track-timeline-step::before {
            content: '';
            position: absolute;
            left: -8px;
            top: 5px;
            width: 16px;
            height: 16px;
            border-radius: 50%;
            background: #e9ecef;
            border: 3px solid white;
            box-shadow: 0 0 0 2px #e9ecef;
        }

        .track-timeline-step.track-step-completed::before {
            background: #28a745;
            box-shadow: 0 0 0 2px #28a745;
        }

        .track-timeline-step.track-step-current::before {
            background: #007bff;
            box-shadow: 0 0 0 2px #007bff;
            animation: track-pulse-animation 2s infinite;
        }

        @keyframes track-pulse-animation {
            0% {
                box-shadow: 0 0 0 2px #007bff, 0 0 0 4px rgba(0,123,255,0.3);
            }
            50% {
                box-shadow: 0 0 0 2px #007bff, 0 0 0 8px rgba(0,123,255,0.1);
            }
            100% {
                box-shadow: 0 0 0 2px #007bff, 0 0 0 4px rgba(0,123,255,0.3);
            }
        }

        .track-timeline-card {
            background: white;
            padding: 15px;
            border-radius: 6px;
            box-shadow: 0 1px 3px rgba(0,0,0,0.1);
        }

        .track-timeline-heading {
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 5px;
        }

        .track-timeline-text {
            color: #666;
            font-size: 14px;
            margin-bottom: 5px;
        }

        .track-timeline-datetime {
            color: #999;
            font-size: 12px;
        }

        .track-product-display {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .track-product-icon {
            min-width: 60px;
            width: 60px;
            height: 40px;
            border-radius: 4px;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 12px;
            color: #666;
        }

        @media (max-width: 768px) {
            .track-order-data {
                grid-template-columns: 1fr;
                gap: 10px;
            }

            .track-container-main {
                padding: 10px;
            }

            .track-timeline-list {
                padding-left: 20px;
            }

            .track-timeline-step {
                padding-left: 20px;
            }
        }

  .track-info-panel {
            background: #f8f9fa;
            border: 1px solid #e9ecef;
            border-radius: 8px;
            padding: 20px;
            margin: 20px 0;
            font-size: 14px;
            line-height: 1.6;
        }

        .track-info-panel h3 {
            color: #2c3e50;
            margin-bottom: 15px;
            font-size: 16px;
        }

        .track-info-panel p {
            margin-bottom: 12px;
            color: #555;
        }

        .track-info-panel .track-highlight {
            background: #fff3cd;
            border-left: 4px solid #ffc107;
            padding: 10px 15px;
            margin: 15px 0;
            border-radius: 4px;
        }

        .track-info-panel .track-thanks {
            background: #e7f3ff;
            border-left: 4px solid #007bff;
            padding: 10px 15px;
            margin: 15px 0;
            border-radius: 4px;
            text-align: center;
            font-weight: 500;
        }
        
  .track-return-notice {
            background: #ffebee;
            border: 2px solid #f44336;
            border-radius: 8px;
            padding: 15px;
            margin: 15px 0;
            font-weight: 600;
            color: #c62828;
            text-align: center;
            position: relative;
        }

        .track-return-notice::before {
            content: "⚠️";
            font-size: 20px;
            margin-right: 8px;
        }

        .track-return-notice.track-blink {
            /*animation: track-attention-blink 2s ease-in-out infinite;*/
        }

        @keyframes track-attention-blink {
            0%, 100% {
                background: #ffebee;
                transform: scale(1);
            }
            50% {
                background: #ffcdd2;
                transform: scale(1.02);
            }
        }
        
.star.half {
  position: relative;
  display: inline-block;
  color: #ccc; /* Цвет незаполненной части */
  width: 1em;
  overflow: hidden;
}

.star.half::before {
  content: "★";
  color: var(--primary-color); /* Цвет заполненной части */
  position: absolute;
  width: 50%;
  overflow: hidden;
  left: 0;
  top: 0;
}