﻿:root {
    --navy: #10182b;
    --navy-2: #1b2742;
    --text: #14203a;
    --muted: #65718a;
    --line: #dfe5ef;
    --line-strong: #cbd5e3;
    --surface: #ffffff;
    --page: #f7f8fb;
    --soft: #f1f4f8;
    --fuchsia: #a719b3;
    --fuchsia-soft: #fff1ff;
    --gold: #ffb800;
    --green: #07844f;
    --green-soft: #ebfaf3;
    --pink: #9a174b;
    --pink-soft: #fff0f6;
    --orange: #9a5c00;
    --orange-soft: #fff6df;
    --blue: #3157c9;
    --blue-soft: #edf2ff;
    --shadow: 0 8px 24px rgba(15,25,46,.06);
    --max: 1160px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

.loading-spinner {
    width: 48px;
    height: 48px;
    border: 5px solid #f1f5f9; /* anello di base, grigio chiaro */
    border-top-color: var(--accent); /* il segmento colorato che gira */
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: auto;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

#stepLoading {
    inset: 0; /* copre tutto il viewport */
    display: flex;
    align-items: center; /* centro verticale */
    justify-content: center; /* centro orizzontale */    
    z-index: 2000;
    height:250px;
}

#resultCount {
    scroll-margin-top: 110px; /* header 94px + respiro */
}

#stepLoading {
    scroll-margin-top: 110px; /* header 94px + respiro */
}

.hidden {
    display:none;
}

.overflow-hidden {
    display: none;
}

.nav-dropdown-menu.open {
    display: block;
}

body {
    margin: 0;
    min-width: 0;
    color: var(--text);
    background: var(--page);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.55;
    overflow-x: hidden;
}

button, input, select {
    font: inherit;
}

button, a {
    -webkit-tap-highlight-color: transparent;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
}

.containerMain {
    width: min(var(--max), calc(100% - 40px)) !important;
    margin-inline: auto;
    min-width: 0;
    padding:10px;
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
    padding:0px 10px;
}

.header-inner {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    position: relative;
}

.brand-logo {
    display: flex;
    align-items: center;
    width: 190px;
    height: 62px;
    flex: 0 0 auto;
    overflow: hidden;
}

    .brand-logo img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: left center;
    }

.main-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 9px;
}

.nav-link {
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

    .nav-link.active {
        color: #fff;
        background: var(--navy);
        border-color: var(--navy);
    }

    .nav-link.cta {
        color: #fff;
        background: var(--fuchsia);
        border-color: var(--fuchsia);
    }

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--navy);
    cursor: pointer;
    font-size: 20px;
}

/* Shop profile */
main {
    padding: 30px 0 0;
}

.shop-profile {
    display: grid;
    grid-template-columns: auto minmax(0,1fr) auto;
    align-items: center;
    gap: 20px;
    padding: 26px;
    background: radial-gradient(circle at 96% 10%, rgba(167,25,179,.09), transparent 34%), #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    box-shadow: var(--shadow);
}

.shop-avatar {
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font: 800 21px Georgia, serif;
}

.profile-kicker {
    color: var(--muted);
    font-size: 12px;
    font-weight: 750;
}

h1 {
    margin: 2px 0 6px;
    color: #0b1530;
    font: 700 clamp(32px,4.1vw,47px)/1.05 Georgia, "Times New Roman", serif !important;
    letter-spacing: -.025em;
    overflow-wrap: anywhere;
}

h3 {
    font-weight:bold !important;
}

.profile-copy {
    margin: 0 0 11px;
    color: #344058;
    font-size: 14px;
    max-width: 700px;
}

.shop-tags {
    display: flex;
    gap: 7px;
    flex-wrap: wrap;
}

.shop-tag {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 5px 10px;
    background: #fff;
    font-size: 11.5px;
    font-weight: 850;
}

    .shop-tag.fuchsia {
        color: var(--fuchsia);
        background: var(--fuchsia-soft);
        border-color: #efd5f2;
    }

    .shop-tag.green {
        color: var(--green);
        background: var(--green-soft);
        border-color: #caeedc;
    }

.profile-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
    min-width: 255px;
}

    .profile-actions .wide {
        grid-column: 1/-1;
    }

.btn {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    padding: 8px 15px;
    background: #fff;
    color: var(--navy);
    font-weight: 900;
    cursor: pointer;
}

    .btn.primary {
        background: var(--navy);
        color: #fff;
        border-color: var(--navy);
    }

    .btn.whatsapp {
        color: #087b38;
        background: #f0fff5;
        border-color: #55d982;
    }

/* Reviews layout */
.reviews-section {
    margin-top: 24px;
}

.reviews-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 16px;
}

    .reviews-heading h2 {
        margin: 0;
        color: #0b1530;
        font: 700 clamp(29px,3.6vw,39px)/1.08 Georgia, "Times New Roman", serif !important;
        letter-spacing: -.02em;
    }

.transparency-link {
    border: 0;
    padding: 4px 0;
    background: transparent;
    color: var(--fuchsia);
    font-size: 12.5px;
    font-weight: 850;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 3px;
    white-space: nowrap;
}

.reviews-layout {
    display: grid;
    grid-template-columns: 300px minmax(0,1fr);
    gap: 22px;
    align-items: start;
    min-width: 0;
}

/* Score and filters */
.filter-column {
    position: sticky;
    top: 116px;
    min-width: 0;
}

.score-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.score-main {
    padding: 20px 20px 17px;
    border-bottom: 1px solid var(--line);
}

.score-number-line {
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
}

.score-number {
    font-size: 42px;
    line-height: 1;
    font-weight: 950;
    letter-spacing: -.05em;
    color: #0a1530;
}

.score-out-of {
    font-size: 14px;
    font-weight: 850;
}

.score-stars {
    position: relative; /* AGGIUNTO: ancora per l'overlay assoluto */
    display: inline-block;
    width: fit-content; /* AGGIUNTO: vedi nota sotto, è il punto critico */
    margin: 10px 0 7px;
    color: var(--soft); /* CAMBIATO da var(--gold): la base dev'essere grigia */
    font-size: 29px;
    line-height: 1;
    letter-spacing: 2px;
    white-space: nowrap;
}

    .score-stars .stars-full {
        position: absolute;
        top: 0;
        left: 0;
        color: var(--gold);
        overflow: hidden;
        white-space: nowrap;
    }
/*.score-stars {
    margin: 10px 0 7px;
    color: var(--gold);
    font-size: 29px;
    line-height: 1;
    letter-spacing: 2px;
    white-space: nowrap;
}*/

.score-meta {
    color: var(--muted);
    font-size: 12.5px;
}

.score-note {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #59667e;
    font-size: 11.5px;
}

.filter-disclosure {
    border: 0;
}

    .filter-disclosure > summary {
        display: none;
        list-style: none;
        cursor: pointer;
        user-select: none;
    }

        .filter-disclosure > summary::-webkit-details-marker {
            display: none;
        }

.filters-body {
    padding: 17px 20px 20px;
}

.filter-block + .filter-block {
    margin-top: 18px;
}

.filter-label {
    display: block;
    margin-bottom: 8px;
    color: #1a2945;
    font-size: 12.5px;
    font-weight: 900;
}

.search-box {
    position: relative;
}

    .search-box::before {
        content: "⌕";
        position: absolute;
        left: 13px;
        top: 50%;
        transform: translateY(-52%);
        color: #71809a;
        font-size: 19px;
        pointer-events: none;
    }

    .search-box input {
        width: 100%;
        min-height: 43px;
        border: 1px solid var(--line-strong);
        border-radius: 10px;
        background: #fff;
        padding: 0 12px 0 38px;
        color: var(--text);
        outline: none;
    }

        .search-box input:focus, .filter-select:focus {
            border-color: var(--fuchsia);
            box-shadow: 0 0 0 3px rgba(167,25,179,.10);
        }

.filter-select {
    width: 100%;
    min-height: 42px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    padding: 0 34px 0 11px !important;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23334155' stroke-width='2'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    color: var(--text);
    font-size: 16px;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.rating-options {
    display: grid;
    gap: 8px;
}

.rating-option {
    display: grid;
    grid-template-columns: 20px auto minmax(40px,1fr) auto;
    align-items: center;
    gap: 8px;
    min-width: 0;
    cursor: pointer;
    font-size: 13px;
}

    .rating-option input {
        width: 17px;
        height: 17px;
        margin: 0;
        accent-color: var(--navy);
    }

.rating-name {
    font-weight: 850;
    white-space: nowrap;
}

.rating-bar {
    height: 8px;
    border-radius: 999px;
    background: #eef1f5;
    overflow: hidden;
    min-width: 0;
}

.rating-fill {
    height: 100%;
    border-radius: 999px;
    background: linear-gradient(90deg,#f5ad24,#ffca61);
}

.rating-count {
    color: #4e5d75;
    font-size: 11.5px;
    text-align: right;
}

.container-filter-reset {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-top: 17px;
}

.filter-reset {
    /*width: 100%;
    margin-top: 17px;*/
    border: 0;
    padding: 7px 0 0;
    background: transparent;
    color: var(--fuchsia);
    font-size: 12px;
    font-weight: 900;
    cursor: pointer;
    text-align: left;
}

/* Review list */
.reviews-column {
    min-width: 0;
}

.list-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 12px;
    min-width: 0;
}

.result-count {
    color: var(--muted);
    font-size: 13px;
    min-width: 0;
}

.sort-control {
    min-height: 40px;
    border: 1px solid var(--line-strong);
    border-radius: 10px;
    background-color: #fff;
    background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='8'><path d='M1 1l5 5 5-5' fill='none' stroke='%23334155' stroke-width='2'/></svg>");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding: 0 34px 0 11px !important;
    color: var(--text);
    font-weight: 800;
    max-width: 210px;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.review-list {
    display: grid;
    gap: 13px;
    min-width: 0;
}

.review-card {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: 0 3px 12px rgba(15,25,46,.035);
}

.review-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    min-width: 0;
}

.author {
    display: flex;
    align-items: center;
    gap: 11px;
    min-width: 0;
}

.author-avatar {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #edf2f8;
    color: #12223e;
    font-size: 13px;
    font-weight: 950;
}

.author-data {
    min-width: 0;
}

.author-name {
    color: #0d1932;
    font-size: 14px;
    font-weight: 950;
    overflow-wrap: anywhere;
}

.author-sub {
    color: var(--muted);
    font-size: 11.5px;
    overflow-wrap: anywhere;
}

.signals {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 5px;
    flex: 0 0 auto;
}

.signal {
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    border: 1px solid transparent;
    border-radius: 7px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
}

    .signal.verified {
        color: var(--green);
        background: var(--green-soft);
        border-color: #caeedc;
    }

    .signal.ai {
        color: var(--pink);
        background: var(--pink-soft);
        border-color: #ffd1df;
    }

    .signal.reward {
        color: var(--orange);
        background: var(--orange-soft);
        border-color: #f2d98f;
    }

    .signal.declared {
        color: var(--blue);
        background: var(--blue-soft);
        border-color: #ced8ff;
    }

.review-rating-row {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.review-stars {
    color: var(--soft);
    font-size: 24px;
    line-height: 1;
    letter-spacing: 1.5px;
    white-space: nowrap;
}

    .review-stars > .active {
        color: var(--gold);
    }

    .review-published {
        color: var(--muted);
        font-size: 11.5px;
    }

.review-title {
    margin: 13px 0 5px;
    color: #0b1530;
    font-size: 17px;
    line-height: 1.3;
    font-weight: 950;
    overflow-wrap: anywhere;
}

.review-text {
    margin: 0;
    color: #27344c;
    font-size: 14px;
    line-height: 1.65;
    overflow-wrap: anywhere;
    word-break: normal;
}

.experience-date {
    margin-top: 12px;
    color: #58657d;
    font-size: 11.5px;
}

    .experience-date strong {
        color: #27344c;
    }

.card-actions {
    margin-top: 15px;
    padding-top: 13px;
    border-top: 1px solid #edf0f5;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.detail-toggle, .helpful-btn {
    border: 0;
    padding: 3px 0;
    background: transparent;
    color: #51607a;
    font-size: 11.5px;
    font-weight: 850;
    cursor: pointer;
}

.detail-toggle {
    color: var(--fuchsia);
}

.review-details {
    display: none;
    margin-top: 13px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fafbfc;
    font-size: 12px;
    color: #4a5871;
}

    .review-details.open {
        display: grid;
        gap: 5px;
    }

.detail-row {
    display: grid;
    grid-template-columns: 135px minmax(0,1fr);
    gap: 8px;
}

    .detail-row strong {
        color: #182641;
    }

    .detail-row span {
        overflow-wrap: anywhere;
    }

.shop-reply {
    margin-top: 16px;
    padding: 15px;
    border-radius: 12px;
    background: #f3f5f8;
    border-left: 4px solid #aeb8c7;
}

.reply-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
}

.reply-brand {
    display: flex;
    align-items: center;
    gap: 9px;
    min-width: 0;
    font-size: 12.5px;
    font-weight: 950;
    color: #182641;
}

.reply-logo {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    flex: 0 0 auto;
    border-radius: 50%;
    background: var(--navy);
    color: #fff;
    font-size: 10px;
    font-weight: 950;
}

.reply-date {
    color: var(--muted);
    font-size: 10.5px;
    white-space: nowrap;
}

.reply-text {
    margin: 0;
    color: #3d4960;
    font-size: 13px;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.empty-state {
    display: none;
    padding: 38px 18px;
    border: 1px dashed var(--line-strong);
    border-radius: 16px;
    background: #fff;
    color: var(--muted);
    text-align: center;
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin: 20px 0 0;
    flex-wrap: wrap;
}

.page-btn {
    min-width: 38px;
    height: 38px;
    border: 1px solid var(--line-strong);
    border-radius: 9px;
    background: #fff;
    color: var(--navy);
    font-weight: 900;
    cursor: pointer;
    padding: 0 10px;
}

    .page-btn.active {
        background: var(--navy);
        color: #fff;
        border-color: var(--navy);
    }

    .page-btn:disabled {
        opacity: .38;
        cursor: not-allowed;
    }

.transparency-footnote {
    margin: 20px 0 0;
    padding: 12px 2px;
    color: #627088;
    font-size: 11.5px;
}

    .transparency-footnote button {
        border: 0;
        padding: 0;
        background: transparent;
        color: var(--fuchsia);
        text-decoration: underline;
        text-underline-offset: 3px;
        cursor: pointer;
        font-weight: 850;
    }

/* Store information */
.store-info {
    display: grid;
    grid-template-columns: 1.2fr .9fr .9fr;
    gap: 16px;
    margin-top: 28px;
}

.info-card {
    min-width: 0;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: #fff;
    box-shadow: var(--shadow);
}

    .info-card h3 {
        margin: 0 0 9px;
        color: #0d1932;
        font-size: 15px !important;
    }

    .info-card p {
        margin: 0;
        color: #4d5a72;
        font-size: 13px;
        overflow-wrap: anywhere;
    }

.brands {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-top: 12px;
}

.brand-pill {
    padding: 5px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 11px;
}

.info-links {
    display: grid;
    gap: 8px;
    margin-top: 11px;
}

.info-link {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid #edf0f4;
    font-size: 12.5px;
    font-weight: 800;
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: none;
    place-items: center;
    padding: 18px;
    background: rgba(10,16,30,.55);
    backdrop-filter: blur(5px);
}

    .modal.open {
        display: grid;
    }

.modal-card {
    width: min(720px,100%);
    max-height: 88vh;
    overflow: auto;
    position: relative;
    padding: 26px;
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 28px 80px rgba(10,16,30,.3);
}

.modal-close {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: #22304a;
    font-size: 24px;
    cursor: pointer;
}

.modal h2 {
    margin: 0 52px 17px 0;
    font-size: 21px !important;
}

.legend-grid {
    display: grid;
    gap: 13px;
}

.legend-item {
    display: grid;
    grid-template-columns: 34px minmax(0,1fr);
    gap: 10px;
    align-items: start;
}

    .legend-item h3 {
        margin: 0 0 2px;
        font-size: 14px !important;
    }

    .legend-item p {
        margin: 0;
        color: #4f5d75;
        font-size: 12.5px;
    }

.legend-signal {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border-radius: 8px;
}

.modal-note {
    margin-top: 17px;
    padding: 13px;
    border-radius: 12px;
    background: #f6f7fa;
    color: #48566e;
    font-size: 12px;
}

footer {
    margin-top: 38px;
    border-top: 1px solid var(--line);
    background: #fff;
}

.footer-inner {
    min-height: 78px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 18px 0;
    color: #66738b;
    font-size: 11px;
    text-align: center;
}

.paginazione {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 20px;
}

.page-btn {
    padding: 6px 10px;
    border: 1px solid #ccc;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    background: #f8f8f8;
    font-size: 14px;
    color: #333;
    text-align: center;
}

    .page-btn:hover {
        background: #e0e0e0;
    }

    .page-btn.current {
        background: #0073aa;
        color: white;
        font-weight: bold;
        font-size: 16px;
    }

    .page-btn.prev,
    .page-btn.next {
        font-weight: bold;
    }

/**************************** SET STYLE FOR @media **********************************************/
@media (max-width:980px) {
    .header-inner {
        min-height: 78px;
    }

    .brand-logo {
        width: 165px;
        height: 54px;
    }

    .menu-toggle {
        display: block;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        padding: 14px;
        border: 1px solid var(--line);
        border-radius: 16px;
        background: #fff;
        box-shadow: var(--shadow);
    }

        .main-nav.open {
            display: flex;
        }

    .shop-profile {
        grid-template-columns: auto minmax(0,1fr);
    }

    .profile-actions {
        grid-column: 1/-1;
        grid-template-columns: 1fr 1fr 1fr;
        min-width: 0;
    }

        .profile-actions .wide {
            grid-column: auto;
        }

    .reviews-layout {
        grid-template-columns: 260px minmax(0,1fr);
        gap: 16px;
    }

    .filter-column {
        top: 96px;
    }

    .store-info {
        grid-template-columns: 1fr 1fr;
    }

        .store-info .wide-tablet {
            grid-column: 1/-1;
        }
}

@media (max-width:760px) {
    .containerMain {
        width: min(var(--max), calc(100% - 22px)) !important;
    }

    main {
        padding-top: 15px;
    }

    .shop-profile {
        grid-template-columns: 58px minmax(0,1fr);
        gap: 13px;
        padding: 17px;
        border-radius: 17px;
    }

    .shop-avatar {
        width: 58px;
        height: 58px;
        font-size: 16px;
    }

    h1 {
        font-size: 30px !important;
    }

    .profile-copy {
        font-size: 12.5px;
        margin-bottom: 9px;
    }

    .shop-tag {
        font-size: 10.5px;
        padding: 4px 8px;
    }

    .profile-actions {
        grid-column: 1/-1;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

        .profile-actions .wide {
            grid-column: 1/-1;
        }

    .btn {
        min-height: 39px;
        font-size: 12.5px;
        padding: 7px 11px;
    }

    .reviews-section {
        margin-top: 20px;
    }

    .reviews-heading {
        align-items: center;
        margin-bottom: 12px;
    }

        .reviews-heading h2 {
            font-size: 29px !important;
        }

    .transparency-link {
        font-size: 0;
        text-decoration: none;
    }

        .transparency-link::before {
            content: "ⓘ";
            font-size: 20px;
        }

    .reviews-layout {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .filter-column {
        position: static;
    }

    .score-card {
        border-radius: 15px;
    }

    .score-main {
        display: grid;
        grid-template-columns: auto minmax(0,1fr);
        column-gap: 13px;
        align-items: center;
        padding: 15px;
    }

    .score-number-line {
        grid-column: 1;
        grid-row: 1;
        align-self: end;
    }

    .score-number {
        font-size: 36px;
    }

    .score-out-of {
        font-size: 12px;
    }

    .score-stars {
        grid-column: 2;
        grid-row: 1;
        margin: 0;
        font-size: 25px;
        letter-spacing: 1px;
    }

    .score-meta {
        grid-column: 2;
        grid-row: 2;
        font-size: 11.5px;
        margin-top: 4px;
    }

    .score-note {
        grid-column: 1/-1;
        margin-top: 9px;
        font-size: 10.5px;
    }

    .filter-disclosure > summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        padding: 12px 15px;
        border-top: 1px solid var(--line);
        color: #162440;
        font-size: 12.5px;
        font-weight: 900;
    }

        .filter-disclosure > summary::after {
            content: "＋";
            font-size: 18px;
            line-height: 1;
        }

    .filter-disclosure[open] > summary::after {
        content: "−";
    }

    .filters-body {
        padding: 3px 15px 15px;
    }

    .filter-block + .filter-block {
        margin-top: 14px;
    }

    .list-toolbar {
        margin: 1px 0 10px;
    }

    .result-count {
        font-size: 11.5px;
    }

    .sort-control {
        min-height: 38px;
        max-width: 160px;
        font-size: 11.5px;
    }

    .review-card {
        padding: 16px;
        border-radius: 14px;
    }

    .review-top {
        gap: 9px;
    }

    .author {
        gap: 9px;
    }

    .author-avatar {
        width: 38px;
        height: 38px;
    }

    .author-name {
        font-size: 13.5px;
    }

    .author-sub {
        font-size: 10.8px;
    }

    .signals {
        gap: 3px;
    }

    .signal {
        width: 26px;
        height: 26px;
        font-size: 13px;
    }

    .review-rating-row {
        margin-top: 12px;
    }

    .review-stars {
        font-size: 23px;
    }

    .review-title {
        margin-top: 11px;
        font-size: 16px;
    }

    .review-text {
        font-size: 13.5px;
        line-height: 1.6;
    }

    .detail-row {
        grid-template-columns: 1fr;
        gap: 1px;
    }

    .shop-reply {
        padding: 13px;
    }

    .reply-head {
        align-items: flex-start;
    }

    .store-info {
        grid-template-columns: 1fr;
        margin-top: 20px;
    }

        .store-info .wide-tablet {
            grid-column: auto;
        }

    .nav-dropdown {
        width: 100%;
    }

        .nav-dropdown > button {
            width: 100%;
            justify-content: center;
        }
}

@media (max-width:430px) {
    .containerMain {
        width: calc(100% - 16px) !important;
    }

    .header-inner {
        min-height: 70px;
    }

    .brand-logo {
        width: 145px;
        height: 48px;
    }

    .main-nav {
        top: 66px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
    }

    .nav-link {
        text-align: center;
    }

    .shop-profile {
        padding: 14px;
        grid-template-columns: 52px minmax(0,1fr);
    }

    .shop-avatar {
        width: 52px;
        height: 52px;
    }

    h1 {
        font-size: 27px;
    }

    .profile-kicker {
        font-size: 10.5px !important;
    }

    .profile-copy {
        display: none;
    }

    .shop-tags {
        margin-top: 6px;
    }

    .reviews-heading h2 {
        font-size: 26px !important;
    }

    .score-main {
        grid-template-columns: 76px minmax(0,1fr);
    }

    .score-number {
        font-size: 32px;
    }

    .score-stars {
        font-size: 22px;
    }

    .list-toolbar {
        align-items: flex-start;
    }

    .sort-control {
        max-width: 146px;
        padding: 0 8px;
    }

    .review-card {
        padding: 14px;
    }

    .review-top {
        align-items: flex-start;
    }

    .signals {
        max-width: 94px;
        flex-wrap: wrap;
    }

    .review-stars {
        font-size: 21px;
    }

    .modal {
        padding: 8px;
    }

    .modal-card {
        padding: 21px 16px;
        border-radius: 17px;
    }
}
