/* ============================================
   style.css — стили CitiLegal
   Фон: #0a0a0a, акцент: #d4a017, шрифт: Arial
   ============================================ */

/* ===== RESET / BASE ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.site-header,
.site-footer {
    width: 100%;
}

.main-content {
    flex: 1;
    width: 100%;
}

/* ===== HEADER ===== */
.site-header {
    background: #101010;
    border-bottom: 1px solid #2a2a2a;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.6);
}

.header-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.header-logo {
    flex-shrink: 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 12px;
    border-radius: 6px;
    transition: background 0.25s;
}

.logo-link:hover {
    background: rgba(212, 160, 23, 0.12);
}

.logo-icon {
    font-size: 28px;
    line-height: 1;
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    color: #d4a017;
    letter-spacing: 0.5px;
    line-height: 1;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link {
    padding: 8px 16px;
    font-size: 15px;
    color: #b0b0b0;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}

.nav-link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
}

.nav-link.active {
    color: #d4a017;
    background: rgba(212, 160, 23, 0.08);
    font-weight: 600;
}

.header-contact {
    flex-shrink: 0;
    text-align: right;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    color: #d4a017;
    font-size: 15px;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.25s;
}

.phone-link:hover {
    background: rgba(212, 160, 23, 0.12);
}

.phone-icon {
    font-size: 20px;
}

.phone-text {
    line-height: 1;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    padding: 6px;
    background: transparent;
    border: none;
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: #d4a017;
    border-radius: 2px;
    transition: 0.2s;
}

/* ===== HERO ===== */
.hero {
    background: linear-gradient(160deg, #0a0a0a 0%, #141008 60%, #0a0a0a 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 160, 23, 0.08) 0%, transparent 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.hero-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 16px;
    color: #aaa;
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-phone {
    margin-top: 20px;
    font-size: 14px;
    color: #888;
}

.hero-phone-label {
    margin-right: 10px;
}

.hero-phone-number {
    color: #d4a017;
    font-weight: 700;
    font-size: 18px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    text-align: center;
    transition: background 0.25s, transform 0.15s, box-shadow 0.25s;
    letter-spacing: 0.3px;
    font-family: inherit;
}

.btn:active {
    transform: scale(0.97);
}

.btn-primary {
    background: #d4a017;
    color: #0a0a0a;
}

.btn-primary:hover {
    background: #e4b32a;
    box-shadow: 0 4px 20px rgba(212, 160, 23, 0.35);
}

.btn-accent {
    background: transparent;
    color: #d4a017;
    border: 1px solid #d4a017;
}

.btn-accent:hover {
    background: rgba(212, 160, 23, 0.1);
}

.btn-hero {
    font-size: 16px;
    padding: 14px 32px;
}

.btn-sub {
    margin-top: 10px;
}

.btn-map {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 40px;
}

.section-header h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 10px;
}

.section-header p {
    color: #999;
    font-size: 15px;
}

/* ===== SERVICES OVERVIEW (ГЛАВНАЯ) ===== */
.services-overview {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 20px;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.price-card {
    background: #111;
    border: 1px solid #222;
    border-radius: 12px;
    padding: 24px;
    transition: border-color 0.25s, box-shadow 0.25s;
}

.price-card:hover {
    border-color: #333;
    box-shadow: 0 4px 16px rgba(212, 160, 23, 0.06);
}

.price-card-icon {
    font-size: 34px;
    margin-bottom: 12px;
}

.price-card h3 {
    font-size: 18px;
    color: #d4a017;
    margin-bottom: 8px;
}

.price-note {
    font-size: 13px;
    color: #888;
    margin-bottom: 16px;
    line-height: 1.5;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.price-item-name {
    display: block;
    font-size: 14px;
    color: #ccc;
}

.price-item-val {
    display: inline-block;
    margin-top: 4px;
    font-size: 14px;
    color: #d4a017;
    font-weight: 700;
}

/* ===== SUBSCRIPTION ===== */
.subscription {
    max-width: 1000px;
    margin: 0 auto;
    padding: 10px 20px 60px;
}

.sub-card {
    background: linear-gradient(160deg, #111, #0d0d0d);
    border: 1px solid #d4a017;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 0 30px rgba(212, 160, 23, 0.05);
}

.sub-icon {
    font-size: 40px;
    margin-bottom: 12px;
}

.sub-card h2 {
    font-size: 24px;
    color: #fff;
    margin-bottom: 10px;
}

.sub-card > p {
    color: #aaa;
    font-size: 15px;
    margin-bottom: 20px;
}

.sub-features {
    text-align: left;
    max-width: 450px;
    margin: 0 auto 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sub-features li {
    font-size: 14px;
    color: #ccc;
}

.sub-price {
    margin: 16px auto;
    font-size: 14px;
}

.sub-price-label {
    color: #888;
    margin-right: 6px;
}

.sub-price-val {
    color: #d4a017;
    font-size: 28px;
    font-weight: 700;
}

/* ===== CONTACTS + FORM (ГЛАВНАЯ) ===== */
.contact-block {
    max-width: 1100px;
    margin: 0 auto;
    padding: 10px 20px 50px;
}

.contact-wrap {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

@media (max-width: 700px) {
    .contact-wrap {
        flex-direction: column;
    }
}

.contact-info {
    flex: 1;
    min-width: 200px;
}

.contact-info-full {
    max-width: 320px;
}

.contact-info h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 16px;
}

.contact-link {
    display: block;
    padding: 8px 0;
    font-size: 15px;
    color: #ccc;
    border-bottom: 1px solid #222;
    transition: color 0.2s;
}

.contact-link.big-link {
    padding: 12px 0;
    font-size: 16px;
    color: #fff;
    border-bottom: 1px solid #333;
}

.contact-link.big-link .link-icon {
    margin-right: 8px;
    color: #d4a017;
}

.contact-addr,
.contact-hours {
    font-size: 13px;
    color: #888;
    padding: 6px 0 14px;
    line-height: 1.5;
}

.contact-info-full .contact-link.big-link {
    color: #d4a017;
    font-weight: 600;
}

.contact-form-wrap {
    flex: 1;
    max-width: 480px;
}

.form-title h2 {
    font-size: 22px;
    color: #fff;
    margin-bottom: 6px;
}

.form-title p {
    color: #888;
    font-size: 14px;
    margin-bottom: 20px;
}

.contact-form {
    background: #111;
    border: 1px solid #222;
    padding: 24px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

@media (max-width: 500px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}

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

.form-group label {
    display: block;
    font-size: 13px;
    color: #aaa;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 14px;
    font-family: inherit;
    background: #0d0d0d;
    border: 1px solid #2a2a2a;
    color: #e0e0e0;
    border-radius: 6px;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4a017;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #666;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23d4a017' d='M6 8L2 4h8z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 30px;
}

.form-submit {
    width: 100%;
    margin-top: 6px;
    padding: 14px;
    font-size: 16px;
    border-radius: 8px;
}

.form-status {
    margin-top: 14px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    min-height: 20px;
    transition: background 0.2s;
}

.form-status.error {
    background: rgba(255, 60, 60, 0.15);
    color: #ff6b6b;
    border: 1px solid rgba(255, 60, 60, 0.3);
}

.form-status.success {
    background: rgba(60, 200, 80, 0.15);
    color: #6bff8c;
    border: 1px solid rgba(60, 200, 80, 0.3);
}

.form-error-msg {
    background: rgba(255, 60, 60, 0.15);
    color: #ff6b6b;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 10px;
    border: 1px solid rgba(255, 60, 60, 0.2);
}

.form-success-msg {
    background: rgba(60, 200, 80, 0.15);
    color: #6bff8c;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 10px;
    border: 1px solid rgba(60, 200, 80, 0.2);
}

/* ===== PAGE HEADER ===== */
.page-header {
    background: #0d0d0d;
    padding: 50px 20px;
    text-align: center;
    border-bottom: 1px solid #222;
}

.page-header-content h1 {
    font-size: 32px;
    color: #d4a017;
    margin-bottom: 10px;
}

.page-header-content p {
    color: #999;
    font-size: 15px;
    max-width: 550px;
    margin: 0 auto;
}

/* ===== SERVICES PAGE ===== */
.service-block {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    border-bottom: 1px solid #1a1a1a;
}

.service-block:last-of-type {
    border-bottom: none;
}

.service-block h2 {
    font-size: 24px;
    color: #d4a017;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #222;
}

.service-desc p {
    color: #aaa;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.service-list li {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 16px;
    padding: 12px 16px;
    background: #0f0f0f;
    border: 1px solid #1a1a1a;
    border-radius: 8px;
}

.svc-name {
    font-size: 14px;
    color: #ddd;
    flex: 1;
    line-height: 1.5;
}

.svc-price {
    font-size: 15px;
    color: #d4a017;
    font-weight: 700;
    white-space: nowrap;
    flex-shrink: 0;
}

.section-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 20px 40px;
    text-align: center;
}

.section-note p {
    color: #777;
    font-size: 13px;
    line-height: 1.5;
}

.contact-prompt {
    max-width: 900px;
    margin: 0 auto;
    padding: 30px 20px 50px;
    text-align: center;
    background: #0d0d0d;
    border-top: 1px solid #222;
}

.contact-prompt p {
    color: #ccc;
    font-size: 16px;
    margin-bottom: 18px;
    font-weight: 500;
}

/* ===== ABOUT PAGE ===== */
.about-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px 50px;
}

.about-card {
    background: #0f0f0f;
    border: 1px solid #222;
    border-radius: 10px;
    padding: 24px;
    margin-bottom: 20px;
}

.about-card h2 {
    font-size: 20px;
    color: #d4a017;
    margin-bottom: 12px;
}

.about-card > p {
    color: #ccc;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

.about-card > p:last-child {
    margin-bottom: 0;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.about-values li {
    color: #ccc;
    font-size: 14px;
    line-height: 1.5;
}

.about-values li strong {
    color: #d4a017;
}

.about-cases {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 14px;
}

.case-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 12px;
    background: #0a0a0a;
    border-radius: 8px;
    border: 1px solid #1a1a1a;
}

.case-icon {
    font-size: 24px;
    flex-shrink: 0;
    line-height: 1;
    margin-top: 2px;
}

.case-item h4 {
    font-size: 14px;
    color: #fff;
    margin-bottom: 4px;
}

.case-item p {
    font-size: 13px;
    color: #999;
    line-height: 1.5;
}

.about-reasons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 14px;
}

.reason-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 12px;
    background: #0a0a0a;
    border-radius: 8px;
    border: 1px solid #1a1a1a;
}

.reason-num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    background: #d4a017;
    color: #0a0a0a;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    line-height: 28px;
    border-radius: 50%;
}

.reason-text {
    font-size: 13px;
    color: #ccc;
    line-height: 1.5;
}

/* ===== CONTACTS PAGE ===== */
.contact-info-full {
    max-width: 320px;
}

.contact-detail {
    margin-top: 18px;
    padding-top: 14px;
    border-top: 1px solid #1a1a1a;
}

.contact-detail h4 {
    color: #d4a017;
    font-size: 14px;
    margin-bottom: 6px;
}

.contact-detail p {
    color: #999;
    font-size: 14px;
    line-height: 1.5;
}

.contact-map {
    margin-top: 20px;
    padding-top: 14px;
    border-top: 1px solid #1a1a1a;
}

.contact-socials .social-link {
    padding: 5px 12px;
    font-size: 12px;
}

/* ===== FOOTER ===== */
.site-footer {
    background: #080808;
    border-top: 1px solid #1a1a1a;
    margin-top: auto;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 20px;
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 30px;
}

@media (max-width: 700px) {
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.footer-col h4 {
    color: #d4a017;
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 700;
}

.footer-col p {
    color: #999;
    font-size: 14px;
    line-height: 1.6;
}

.footer-col p:last-child {
    margin-bottom: 0;
}

.footer-address,
.footer-hours {
    font-style: normal;
    color: #888;
    font-size: 13px;
    margin: 4px 0;
}

.footer-phone,
.footer-email {
    display: block;
    color: #ccc;
    font-size: 14px;
    padding: 4px 0;
    border-bottom: 1px solid #1a1a1a;
    transition: color 0.2s;
}

.footer-phone:hover,
.footer-email:hover {
    color: #d4a017;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links .social-link {
    display: inline-block;
    padding: 6px 14px;
    background: #1a1a1a;
    color: #ccc;
    font-size: 13px;
    border-radius: 5px;
    transition: background 0.2s, color 0.2s;
}

.social-links .social-link:hover {
    background: rgba(212, 160, 23, 0.15);
    color: #d4a017;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 16px 20px;
    border-top: 1px solid #1a1a1a;
    text-align: center;
}

.footer-bottom p {
    color: #555;
    font-size: 13px;
}

/* ===== MOBILE ===== */
@media (max-width: 700px) {
    .header-inner {
        padding: 0 14px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background: #111;
        border-bottom: 1px solid #222;
        padding: 10px;
    }

    .main-nav.mobile-open {
        display: block;
    }

    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
    }

    .nav-link {
        display: block;
        text-align: center;
        padding: 12px 10px;
        font-size: 16px;
        border-radius: 0;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .logo-text {
        font-size: 18px;
    }

    .hero {
        padding: 60px 16px;
    }

    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 15px;
    }

    .hero-phone-number {
        font-size: 16px;
    }

    .price-card {
        padding: 18px;
    }

    .sub-card {
        padding: 22px 16px;
    }

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

    .footer-inner {
        padding: 30px 16px;
    }
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
    background: #333;
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: #d4a017;
}

/* ===== SELECTION ===== */
::selection {
    background: rgba(212, 160, 23, 0.3);
    color: #fff;
}

/* ============================================
   ОТЗЫВЫ КЛИЕНТОВ (мессенджер-стиль)
   ============================================ */
.reviews-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 20px;
}

.reviews-section h2 {
    color: #d4a017;
    text-align: center;
    font-size: 32px;
    margin-bottom: 12px;
    font-weight: 700;
}

.reviews-subtitle {
    color: #b0b0b0;
    text-align: center;
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.reviews-scroll-wrapper {
    position: relative;
}

.reviews-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background-color: #1a1a1a;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.5);
}

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

.review-avatar {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.review-name {
    color: #d4a017;
    font-weight: 600;
    font-size: 15px;
    line-height: 1.3;
}

.review-date {
    color: #888888;
    font-size: 13px;
    margin-top: 2px;
    line-height: 1.3;
}

.review-text {
    color: #e0e0e0;
    font-size: 15px;
    line-height: 1.6;
    background: rgba(255, 255, 255, 0.03);
    padding: 12px 16px;
    border-radius: 12px;
    border-top-left-radius: 4px;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.reviews-container-hint {
    text-align: center;
    color: #666;
    font-size: 13px;
    margin-top: 12px;
    display: none;
}

/* Планшет: 2 колонки */
@media (max-width: 900px) {
    .reviews-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .reviews-section {
        padding: 48px 20px;
    }

    .reviews-section h2 {
        font-size: 28px;
    }
}

/* Мобильный: горизонтальный скролл */
@media (max-width: 600px) {
    .reviews-container {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 12px;
        cursor: grab;
    }

    .review-card {
        min-width: 280px;
        max-width: 300px;
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    .reviews-section {
        padding: 36px 16px;
    }

    .reviews-section h2 {
        font-size: 24px;
    }

    .reviews-subtitle {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .reviews-container-hint {
        display: block;
    }
}

/* Кастомный скроллбар для контейнера отзывов на мобильных */
.reviews-container::-webkit-scrollbar {
    height: 6px;
}

.reviews-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.reviews-container::-webkit-scrollbar-thumb {
    background: #444;
    border-radius: 3px;
}

.reviews-container::-webkit-scrollbar-thumb:hover {
    background: #d4a017;
}

/* ============================================
   ОТЗЫВЫ КЛИЕНТОВ — мобильная версия: 1 колонка
   (дополнительные правила; сетка вместо скролла)
   ============================================ */
@media (max-width: 600px) {
    .reviews-container {
        display: grid;
        grid-template-columns: 1fr;
        overflow-x: visible;
        scroll-snap-type: none;
        -webkit-overflow-scrolling: auto;
        gap: 16px;
        padding-bottom: 0;
        cursor: default;
    }

    .review-card {
        min-width: 0;
        max-width: none;
        flex-shrink: 1;
        scroll-snap-align: none;
    }

    .reviews-container-hint {
        display: none;
    }
}
