:root {
    --profile-ink: #02060c;
    --profile-deep: #06101d;
    --profile-panel: #0b1726;
    --profile-panel-soft: #101f31;
    --profile-blue: #009bff;
    --profile-blue-deep: #0067ff;
    --profile-sky: #83cfff;
    --profile-yellow: #ffcf18;
    --profile-white: #fff;
    --profile-text: rgba(255, 255, 255, .92);
    --profile-muted: rgba(255, 255, 255, .58);
    --profile-faint: rgba(255, 255, 255, .34);
}

.profile-ai-summary {
    position: relative;
    min-width: 0;
    margin: 0;
    padding: 18px 22px;
    overflow: hidden;
    grid-area: ai-summary;
    border: 0;
    border-radius: 26px;
    background: #102039;
    box-shadow: none;
}

.profile-ai-summary::before {
    position: absolute;
    top: 0;
    left: 26px;
    width: 68px;
    height: 6px;
    border-radius: 0 0 8px 8px;
    background: var(--profile-sky);
    content: "";
}

.profile-ai-summary__head,
.profile-ai-summary__head > div,
.profile-ai-summary__badge,
.profile-ai-summary__source,
.profile-ai-summary__topics,
.profile-ai-summary__highlights a {
    display: flex;
    align-items: center;
}

.profile-ai-summary__head {
    justify-content: space-between;
    gap: 14px;
}

.profile-ai-summary__head > div {
    gap: 9px;
}

.profile-ai-summary__head h3 {
    margin: 0;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: clamp(.92rem, 1.25vw, 1.08rem);
    font-weight: 600;
}

.profile-ai-summary__badge {
    width: fit-content;
    min-height: 32px;
    align-self: flex-start;
    gap: 6px;
    padding: 0 12px;
    color: var(--profile-sky);
    border: 1px solid rgba(131, 207, 255, .14);
    border-radius: 999px;
    background: rgba(0, 155, 255, .07);
    font-family: "Sora", sans-serif;
    font-size: .68rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: .06em;
    white-space: nowrap;
    text-transform: uppercase;
}

.profile-ai-summary__badge > i {
    font-size: .92rem;
}

.profile-ai-summary__text {
    max-width: 1200px;
    margin: 5px 0 7px;
    color: rgba(255, 255, 255, .84);
    font-size: .84rem;
    line-height: 1.55;
}

.profile-ai-summary__source {
    gap: 6px;
    color: rgba(255, 255, 255, .34);
    font-size: .62rem;
}

.profile-ai-summary__topics {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 11px;
}

.profile-ai-topic {
    display: inline-flex;
    width: auto;
    min-height: 38px;
    align-items: center;
    gap: 5px;
    padding: 7px 12px;
    color: rgba(255, 255, 255, .76);
    border: 0;
    border-radius: 999px;
    background: #14263e;
    font-size: .7rem;
    line-height: 1.2;
}

.profile-ai-topic.is-positive i { color: #68d5ae; }
.profile-ai-topic.is-negative i { color: #ff8797; }
.profile-ai-topic.is-neutral i { color: #8ca2ba; }

.profile-ai-summary__highlights {
    margin-top: 13px;
    padding-top: 0;
    border-top: 0;
}

.profile-ai-summary__highlights summary {
    display: flex;
    width: fit-content;
    align-items: center;
    gap: 7px;
    margin: 0;
    color: rgba(255, 255, 255, .9);
    cursor: pointer;
    font-family: "Sora", sans-serif;
    font-size: .7rem;
    font-weight: 600;
    list-style: none;
}

.profile-ai-summary__highlights summary::-webkit-details-marker {
    display: none;
}

.profile-ai-summary__highlights summary > i {
    color: var(--profile-sky);
    font-size: .72rem;
    transition: transform .2s ease;
}

.profile-ai-summary__highlights[open] summary > i {
    transform: rotate(180deg);
}

.profile-ai-summary__highlight-list {
    margin-top: 6px;
}

.profile-ai-summary__highlights:not([open]) > .profile-ai-summary__highlight-list {
    display: none;
}

.profile-ai-summary__highlights a {
    width: fit-content;
    max-width: 100%;
    gap: 7px;
    padding: 3px 0;
    color: rgba(255, 255, 255, .72);
    font-size: .73rem;
    line-height: 1.4;
    text-decoration: none;
}

.profile-ai-summary__highlights a:hover { color: var(--profile-sky); }
.profile-ai-summary__highlights a i { flex: 0 0 auto; color: var(--profile-blue); }

@media (max-width: 640px) {
    .profile-ai-summary__head { align-items: flex-start; flex-direction: column; }
    .profile-ai-summary__badge { margin-left: 29px; }
    .profile-ai-summary__highlights a { align-items: flex-start; }
}

html {
    color-scheme: dark;
    overflow-x: hidden;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--profile-text);
    background: var(--profile-ink);
    font-family: "DM Sans", sans-serif;
}

.public-zone-nav {
    height: 76px;
    background: rgba(2, 6, 12, .9);
    backdrop-filter: blur(18px);
}

.public-zone-nav img.logo {
    width: 190px;
    height: auto;
}

.main-body {
    min-height: calc(100vh - 76px);
}

.public-profile-page {
    width: min(100% - clamp(32px, 6vw, 112px), 1540px);
    margin: 0 auto;
}

.profile-hero {
    position: relative;
    padding: clamp(48px, 6vw, 94px) 0 clamp(84px, 10vw, 150px);
    isolation: isolate;
}

.profile-hero::before {
    position: absolute;
    top: -130px;
    left: -28vw;
    z-index: -2;
    width: 68vw;
    height: 720px;
    border-radius: 0 0 55% 0;
    background: transparent;
    content: "";
    pointer-events: none;
}

.profile-hero::after {
    position: absolute;
    top: 80px;
    right: -23vw;
    z-index: -2;
    width: 54vw;
    height: 54vw;
    border-radius: 50%;
    background: transparent;
    content: "";
    pointer-events: none;
}

.profile-identity {
    position: relative;
    display: grid;
    min-height: 480px;
    grid-template-columns: minmax(320px, .86fr) minmax(0, 1.14fr);
    align-items: center;
    gap: clamp(58px, 9vw, 150px);
}

.profile-identity::before {
    position: absolute;
    top: 8%;
    left: -5%;
    z-index: -1;
    width: clamp(260px, 29vw, 470px);
    aspect-ratio: 1;
    border-radius: 50%;
    background: transparent;
    content: "";
}

.profile-logo-surface {
    position: relative;
    display: grid;
    width: 100%;
    min-height: clamp(300px, 27vw, 410px);
    padding: clamp(42px, 5vw, 76px);
    overflow: hidden;
    place-items: center;
    border: 0;
    border-radius: 42px 42px 160px 42px;
    background: #fff;
    box-shadow: none;
}

.profile-logo-surface::after {
    position: absolute;
    right: -56px;
    bottom: -66px;
    width: 170px;
    height: 170px;
    border-radius: 50%;
    background: rgba(0, 155, 255, .08);
    content: "";
}

.profile-logo-surface img {
    position: relative;
    z-index: 1;
    display: block;
    width: auto;
    max-width: 100%;
    max-height: 150px;
    object-fit: contain;
}

.profile-identity__copy {
    min-width: 0;
}

.profile-eyebrow,
.profile-panel-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Sora", sans-serif;
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.profile-eyebrow {
    color: var(--profile-sky);
}

.profile-eyebrow i {
    color: var(--profile-blue);
    font-size: .58rem;
}

.profile-identity h1 {
    max-width: 880px;
    margin: 27px 0 0;
    overflow-wrap: anywhere;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: clamp(4.2rem, 8.3vw, 8.8rem);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .89;
}

.profile-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
    margin-top: 30px;
}

.profile-categories span {
    position: relative;
    color: rgba(255, 255, 255, .58);
    font-family: "Sora", sans-serif;
    font-size: .7rem;
    font-weight: 500;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.profile-categories span:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -14px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--profile-blue);
    content: "";
    transform: translateY(-50%);
}

.profile-identity__snapshot {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 44px;
}

.profile-identity__snapshot span {
    color: var(--profile-muted);
    font-size: .82rem;
}

.profile-identity__snapshot span:first-child {
    display: inline-flex;
    min-height: 38px;
    align-items: center;
    gap: 8px;
    padding: 0 15px;
    border-radius: 12px;
    color: #fff;
    background: var(--profile-blue-deep);
    font-family: "Sora", sans-serif;
    font-weight: 600;
}

.profile-identity__snapshot i {
    color: var(--profile-yellow);
}

.profile-summary-grid {
    display: grid;
    grid-template-areas:
        "rating about"
        "rating contact";
    grid-template-columns: minmax(340px, .84fr) minmax(0, 1.16fr);
    gap: 16px;
    margin-top: clamp(64px, 8vw, 118px);
}

.profile-summary-grid--no-about {
    grid-template-areas: "rating contact";
}

.profile-rating,
.profile-about,
.profile-contact,
.profile-shops {
    min-width: 0;
    border: 0 !important;
    box-shadow: none !important;
}

.profile-rating {
    position: relative;
    display: flex;
    min-height: 540px;
    grid-area: rating;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(34px, 4vw, 58px);
    overflow: hidden;
    border-radius: 40px;
    color: #fff;
    background: var(--profile-blue-deep);
}

.profile-rating::after {
    position: absolute;
    top: -104px;
    right: -64px;
    color: rgba(255, 255, 255, .08);
    content: "★";
    font-size: 300px;
    line-height: 1;
    transform: rotate(13deg);
}

.profile-panel-label {
    position: relative;
    z-index: 1;
    color: rgba(255, 255, 255, .76);
}

.profile-panel-label i {
    color: var(--profile-yellow);
    font-size: 1rem;
}

.profile-rating__headline {
    position: relative;
    z-index: 1;
    margin-top: 45px;
}

.profile-rating__headline > strong {
    display: block;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: clamp(6rem, 9vw, 9.8rem);
    font-weight: 500;
    letter-spacing: -.1em;
    line-height: .78;
}

.profile-rating__headline > div {
    margin-top: 30px;
}

.profile-rating__headline .star-rating-xl {
    width: 150px;
    height: 30px;
}

.profile-rating__headline .star-rating-xl::before,
.profile-rating__headline .star-rating-xl span,
.profile-rating__headline .star-rating-xl span::before {
    width: 150px;
    height: 30px;
    background-size: 30px;
}

.profile-rating__headline > div > span {
    display: block;
    margin-top: 12px;
    color: rgba(255, 255, 255, .75);
    font-size: .82rem;
}

.profile-rating__distribution {
    position: relative;
    z-index: 1;
    margin-top: 48px;
}

.profile-rating__distribution .d-flex.w-100.flex-column {
    margin-top: 0 !important;
}

.profile-rating__distribution .rating-count-row {
    gap: 10px;
    margin-top: 10px !important;
}

.profile-rating__distribution .rating-count-row:first-child {
    margin-top: 0 !important;
}

.profile-rating__distribution .rating-number {
    width: 13px;
    color: rgba(255, 255, 255, .78);
    font-family: "Sora", sans-serif;
    font-size: .65rem;
    font-weight: 500;
}

.profile-rating__distribution .rating-count-row img {
    width: 13px;
    height: 13px;
    filter: brightness(0) invert(1);
}

.profile-rating__distribution .rating-bar {
    width: 100%;
    height: 6px;
    border-radius: 999px;
    background: rgba(1, 26, 58, .3);
}

.profile-rating__distribution .rating-progress {
    height: 6px;
    border-radius: 999px;
    background: var(--profile-yellow);
}

.profile-about,
.profile-contact {
    padding: clamp(32px, 4vw, 52px);
    border-radius: 40px;
}

.profile-about {
    grid-area: about;
    background: var(--profile-panel);
}

.profile-contact {
    position: relative;
    display: grid;
    grid-area: contact;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    align-content: start;
    gap: 24px 42px;
    background: var(--profile-panel-soft);
}

.profile-summary-grid--no-about .profile-contact::after {
    position: absolute;
    right: -105px;
    bottom: -115px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(0, 155, 255, .08);
    content: "";
    pointer-events: none;
}

.profile-contact > * {
    position: relative;
    z-index: 1;
}

.profile-summary-grid--no-about .profile-contact {
    min-height: 540px;
    align-content: center;
}

.profile-section-heading {
    display: flex;
    align-items: center;
    gap: 11px;
}

.profile-about .profile-section-heading,
.profile-contact .profile-section-heading {
    grid-column: 1 / -1;
}

.profile-section-heading > i {
    color: var(--profile-sky);
    font-size: 1.15rem;
}

.profile-section-heading h2 {
    margin: 0;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: .72rem;
    font-weight: 600;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.profile-section-heading > span {
    margin-left: auto;
    color: var(--profile-faint);
    font-family: "Sora", sans-serif;
    font-size: .68rem;
}

.profile-about p {
    max-width: 820px;
    margin: 28px 0 0;
    color: rgba(255, 255, 255, .68);
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.7;
}

.profile-contact__company {
    min-width: 0;
}

.profile-contact__company > strong {
    display: block;
    margin-bottom: 14px;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.profile-contact__row {
    display: flex;
    gap: 10px;
    color: var(--profile-muted);
    font-size: .82rem;
    line-height: 1.65;
}

.profile-contact__row > i {
    margin-top: 3px;
    color: var(--profile-sky);
    font-size: 1.05rem;
}

.profile-contact__row > span,
.profile-contact__row > span > span {
    display: block;
}

.profile-contact__meta {
    margin-top: 6px;
    padding-left: 26px;
    color: var(--profile-faint);
    font-size: .67rem;
}

.profile-contact__links {
    display: grid;
    align-content: start;
    gap: 10px;
}

.profile-contact__links a {
    display: flex;
    min-width: 0;
    min-height: 42px;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    border: 0;
    border-radius: 13px;
    color: rgba(255, 255, 255, .74);
    background: rgba(0, 155, 255, .08);
    box-shadow: none;
    font-size: .78rem;
    text-decoration: none;
    transition: color .2s ease, background .2s ease;
}

.profile-contact__links a:hover {
    color: #fff;
    background: rgba(0, 155, 255, .16);
}

.profile-contact__links a > i:first-child {
    width: 17px;
    flex: 0 0 17px;
    color: var(--profile-sky);
    font-size: 1.05rem;
}

.profile-contact__links a > i:last-child:not(:first-child) {
    margin-left: auto;
    font-size: .76rem;
}

.profile-contact__links a span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-socials {
    display: flex;
    grid-column: 2;
    gap: 8px;
}

.profile-socials a {
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 0;
    border-radius: 12px;
    color: #fff;
    background: var(--profile-blue-deep);
    box-shadow: none;
    text-decoration: none;
}

.profile-shops {
    margin-top: 16px;
    padding: clamp(28px, 4vw, 46px);
    border-radius: 40px;
    background: var(--profile-deep);
}

.profile-shops__list {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 9px;
    margin-top: 28px;
}

.profile-shops__list a {
    display: flex;
    min-width: 0;
    min-height: 52px;
    align-items: center;
    gap: 10px;
    padding: 0 15px;
    border: 0;
    border-radius: 16px;
    color: rgba(255, 255, 255, .72);
    background: rgba(255, 255, 255, .045);
    box-shadow: none;
    font-size: .76rem;
    text-decoration: none;
    transition: color .2s ease, background .2s ease, transform .2s ease;
}

.profile-shops__list a:hover {
    color: #fff;
    background: rgba(0, 155, 255, .16);
    transform: translateY(-2px);
}

.profile-shops__list img {
    width: 20px;
    height: 20px;
    flex: 0 0 20px;
}

.profile-shops__list span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-shops__list i {
    margin-left: auto;
    color: var(--profile-sky);
    opacity: .6;
}

.reviews-section {
    position: relative;
    width: 100%;
    padding: clamp(78px, 8vw, 126px) 0 clamp(90px, 10vw, 150px);
    overflow: hidden;
    background: transparent;
}

.reviews-section::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: var(--profile-blue);
    content: "";
}

.reviews-section::after {
    position: absolute;
    top: -190px;
    right: -130px;
    width: 560px;
    height: 560px;
    border-radius: 50%;
    background: transparent;
    content: "";
    pointer-events: none;
}

.reviews-section__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    padding: 0 clamp(18px, 4.2vw, 80px);
}

.reviews-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
}

.reviews-heading h2 {
    margin: 18px 0 0;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: clamp(3.7rem, 7vw, 7.5rem);
    font-weight: 500;
    letter-spacing: -.075em;
    line-height: .9;
}

.reviews-heading > strong {
    display: grid;
    min-width: 116px;
    min-height: 116px;
    padding: 18px;
    place-items: center;
    border-radius: 50%;
    color: #fff;
    background: var(--profile-blue-deep);
    font-family: "Sora", sans-serif;
    font-size: .72rem;
    font-weight: 600;
    text-align: center;
}

.reviews-filter {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    align-items: center;
    gap: 24px;
    margin-top: clamp(40px, 5vw, 68px);
    padding: 20px 22px;
    border: 0;
    border-radius: 28px;
    background: var(--profile-blue-deep);
    box-shadow: none;
}

.reviews-filter__title {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: .7rem;
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.reviews-filter__title i {
    font-size: 1.1rem;
}

.reviews-filter__controls,
.reviews-filter__ratings,
.shop-g-detail__domain-filter-wrapper {
    display: flex;
    align-items: center;
}

.reviews-filter__controls {
    min-width: 0;
    gap: 20px;
}

.reviews-filter__ratings {
    flex: 0 0 auto;
    gap: 6px;
}

.shop-detail__rating-filter-input,
.shop-g-detail__domain-filter-input {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.shop-detail__rating-filter-label,
.shop-g-detail__domain-filter-label {
    display: inline-flex;
    height: 38px;
    margin: 0;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    border: 0 !important;
    border-radius: 12px;
    color: rgba(255, 255, 255, .78);
    background: rgba(0, 24, 66, .24);
    box-shadow: none !important;
    font-family: "Sora", sans-serif;
    font-size: .66rem;
    font-weight: 600;
    cursor: pointer;
    transition: color .2s ease, background .2s ease;
}

.shop-detail__rating-filter-label:hover,
.shop-g-detail__domain-filter-label:hover {
    color: #fff;
    background: rgba(0, 24, 66, .38);
}

.shop-detail__rating-filter-label i {
    color: var(--profile-yellow);
}

.btn-rating-filter:checked + .shop-detail__rating-filter-label,
.btn-verified-filter:checked + .shop-detail__rating-filter-label,
.shop-g-detail__domain-filter-input:checked + .shop-g-detail__domain-filter-label {
    color: #05101f;
    background: #fff;
}

.btn-rating-filter:checked + .shop-detail__rating-filter-label i,
.btn-verified-filter:checked + .shop-detail__rating-filter-label i {
    color: var(--profile-blue-deep);
}

.shop-g-detail__domain-filter-wrapper {
    min-width: 0;
    flex: 1 1 auto;
    gap: 6px;
    overflow-x: auto;
    scrollbar-width: none;
}

.shop-g-detail__domain-filter-wrapper::-webkit-scrollbar {
    display: none;
}

.shop-g-detail__domain-filter-label img {
    width: 17px;
    height: 17px;
}

.shop-g-detail__domain-filter-label span {
    text-transform: uppercase;
}

#reviews {
    width: 100%;
    margin: clamp(36px, 4.5vw, 62px) 0 0;
}

#reviews::after {
    display: block;
    clear: both;
    content: "";
}

.p-review-card,
.grid-sizer {
    width: 19.15%;
}

.gutter-sizer {
    width: 1.0625%;
}

.p-review-card {
    position: relative;
    float: left;
    margin-bottom: 1.0625%;
    padding: 28px;
    overflow: hidden;
    border: 0 !important;
    border-radius: 25px;
    color: rgba(255, 255, 255, .74);
    background: #101a29;
    box-shadow: none !important;
}

.p-review-card:nth-of-type(3n) {
    background: #0c2034;
}

.p-review-card:nth-of-type(4n) {
    background: #12182a;
}

.p-review-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 58px;
    height: 7px;
    border-radius: 0 0 8px 0;
    background: var(--profile-blue);
    content: "";
}

.p-review-card:nth-of-type(3n)::before {
    background: var(--profile-yellow);
}

.p-review-card__header,
.p-review-card__author,
.p-review-card__meta,
.p-review-card__footer,
.review-answer__heading {
    display: flex;
    align-items: center;
}

.p-review-card__header {
    justify-content: space-between;
    gap: 14px;
}

.p-review-card__author {
    min-width: 0;
    gap: 11px;
}

.p-review-card__avatar {
    display: grid;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    place-items: center;
    border-radius: 13px;
    color: #fff;
    background: var(--profile-blue-deep);
}

.p-review-card:nth-of-type(3n) .p-review-card__avatar {
    color: #121820;
    background: var(--profile-yellow);
}

.p-review-card__author > div {
    min-width: 0;
}

.p-review-card__author h3 {
    margin: 0;
    overflow: hidden;
    color: #fff;
    font-family: "Sora", sans-serif;
    font-size: .8rem;
    font-weight: 600;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.p-review-card__author time {
    display: block;
    margin-top: 4px;
    color: var(--profile-faint);
    font-size: .66rem;
}

.p-review-card__header .star-rating-sm {
    width: 75px;
    height: 15px;
    flex: 0 0 auto;
}

.p-review-card__header .star-rating-sm::before,
.p-review-card__header .star-rating-sm span,
.p-review-card__header .star-rating-sm span::before {
    width: 75px;
    height: 15px;
    background-size: 15px;
}

.p-review-card__meta {
    flex-wrap: wrap;
    gap: 7px 11px;
    margin-top: 20px;
    color: var(--profile-faint);
    font-size: .62rem;
}

.p-review-card__meta > span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.p-review-card__meta img {
    width: 17px;
    height: 17px;
}

.p-review-card__verified {
    color: var(--profile-sky);
}

.p-review-card__verified i {
    font-size: .86rem;
}

.p-review-card__source {
    margin-left: auto;
}

.p-review-card__body {
    margin-top: 24px;
    color: rgba(255, 255, 255, .8);
    font-size: .84rem;
    line-height: 1.72;
}

.review-answer {
    margin-top: 22px;
    padding: 18px;
    border: 0 !important;
    border-radius: 17px;
    background: rgba(0, 155, 255, .08);
    box-shadow: none !important;
}

.review-answer__heading {
    gap: 7px;
    margin-bottom: 10px;
    color: var(--profile-sky);
    font-size: .64rem;
}

.review-answer__heading strong {
    font-weight: 600;
}

.answer-body {
    color: rgba(255, 255, 255, .62);
    font-size: .76rem;
    line-height: 1.65;
}

.p-review-card__footer {
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
    color: var(--profile-faint);
    font-size: .6rem;
}

.p-review-card__footer > span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.translate-review__dropdown .btn-translate {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border: 0;
    color: var(--profile-sky) !important;
    background: transparent !important;
    box-shadow: none !important;
    font: inherit;
}

.translate-review__dropdown .btn-translate::after {
    display: none;
}

.translate-review__dropdown .flag {
    width: 15px;
    height: 15px;
}

.translate-review__dropdown .dropdown-menu {
    border: 0;
    border-radius: 16px;
    background: var(--profile-panel-soft);
    box-shadow: none;
}

.translate-review__dropdown-item {
    color: rgba(255, 255, 255, .68);
}

.translate-review__dropdown-item:hover {
    color: #fff;
    background: rgba(0, 155, 255, .1);
}

.reviews-more {
    display: flex;
    justify-content: center;
    padding-top: 36px;
}

.reviews-more .btn-more {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    gap: 13px;
    padding: 0 21px;
    border: 0;
    border-radius: 17px;
    color: #fff;
    background: var(--profile-blue-deep);
    box-shadow: none;
    font-family: "Sora", sans-serif;
    font-size: .72rem;
    font-weight: 600;
}

.reviews-more .btn-more i {
    color: var(--profile-yellow);
    font-size: 1rem;
}

.modal-content {
    border: 0;
    border-radius: 28px;
    color: rgba(255, 255, 255, .84);
    background: var(--profile-panel);
    box-shadow: none;
}

.modal-content .c-input,
.modal-content .form-control {
    border: 0;
    color: #fff;
    background: var(--profile-panel-soft);
    box-shadow: none !important;
}

.p-footer {
    color: rgba(255, 255, 255, .46);
    background: var(--profile-ink);
    font-family: "DM Sans", sans-serif;
}

.p-footer_line {
    display: none;
}

.p-footer__link {
    color: rgba(255, 255, 255, .65);
}

@media (max-width: 1580px) {
    .p-review-card,
    .grid-sizer {
        width: 24.1%;
    }

    .gutter-sizer {
        width: 1.2%;
    }

    .p-review-card {
        margin-bottom: 1.2%;
    }
}

@media (max-width: 1260px) {
    .profile-identity {
        grid-template-columns: minmax(300px, .78fr) minmax(0, 1.22fr);
        gap: 64px;
    }

    .profile-summary-grid {
        grid-template-columns: minmax(320px, .9fr) minmax(0, 1.1fr);
    }

    .profile-contact {
        grid-template-columns: 1fr;
    }

    .profile-contact .profile-section-heading,
    .profile-socials {
        grid-column: 1;
    }

    .profile-shops__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .reviews-filter {
        grid-template-columns: 1fr;
    }

    .p-review-card,
    .grid-sizer {
        width: 32%;
    }

    .gutter-sizer {
        width: 2%;
    }

    .p-review-card {
        margin-bottom: 2%;
    }
}

@media (max-width: 940px) {
    .profile-identity {
        grid-template-columns: 1fr;
        gap: 56px;
    }

    .profile-logo-surface {
        width: min(100%, 520px);
    }

    .profile-identity__copy {
        max-width: 760px;
    }

    .profile-summary-grid,
    .profile-summary-grid--no-about {
        grid-template-areas:
            "rating"
            "about"
            "contact";
        grid-template-columns: 1fr;
    }

    .profile-summary-grid--no-about {
        grid-template-areas:
            "rating"
            "contact";
    }

    .profile-rating,
    .profile-summary-grid--no-about .profile-contact {
        min-height: auto;
    }

    .profile-shops__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .reviews-filter__controls {
        align-items: flex-start;
        flex-direction: column;
    }

    .shop-g-detail__domain-filter-wrapper {
        width: 100%;
    }

    .p-review-card,
    .grid-sizer {
        width: 49%;
    }

    .gutter-sizer {
        width: 2%;
    }
}

@media (max-width: 660px) {
    .public-zone-nav {
        height: 66px;
    }

    .public-zone-nav img.logo {
        width: 164px;
    }

    .main-body {
        min-height: calc(100vh - 66px);
    }

    .public-profile-page {
        width: calc(100% - 28px);
    }

    .profile-hero {
        padding-top: 34px;
        padding-bottom: 82px;
    }

    .profile-identity {
        min-height: 0;
        gap: 46px;
    }

    .profile-logo-surface {
        min-height: 250px;
        padding: 38px;
        border-radius: 30px 30px 100px 30px;
    }

    .profile-logo-surface img {
        max-height: 105px;
    }

    .profile-identity h1 {
        margin-top: 20px;
        font-size: clamp(3rem, 15vw, 5rem);
    }

    .profile-categories {
        margin-top: 22px;
    }

    .profile-identity__snapshot {
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .profile-summary-grid {
        margin-top: 72px;
    }

    .profile-rating,
    .profile-about,
    .profile-contact,
    .profile-shops {
        padding: 28px;
        border-radius: 28px;
    }

    .profile-rating__headline > strong {
        font-size: 6.2rem;
    }

    .profile-rating__headline {
        margin-top: 50px;
    }

    .profile-contact {
        grid-template-columns: 1fr;
    }

    .profile-shops__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-section__inner {
        padding-inline: 14px;
    }

    .reviews-heading {
        align-items: flex-start;
        flex-direction: column;
    }

    .reviews-heading > strong {
        min-width: 90px;
        min-height: 90px;
    }

    .reviews-filter {
        padding: 18px;
        border-radius: 22px;
    }

    .reviews-filter__ratings {
        flex-wrap: wrap;
    }

    .p-review-card,
    .grid-sizer {
        width: 100%;
    }

    .gutter-sizer {
        width: 0;
    }

    .p-review-card {
        margin-bottom: 12px;
        padding: 24px;
        border-radius: 22px;
    }
}

/* Public profile star palette */
.public-profile-page .star-rating span::before,
.reviews-section .star-rating span::before,
.profile-rating__distribution .rating-count-row img {
    filter: brightness(0) saturate(100%) invert(76%) sepia(40%) saturate(812%) hue-rotate(170deg) brightness(103%) contrast(102%) !important;
}

.profile-rating__distribution .rating-progress {
    background: var(--profile-sky);
}

/* Bento card layout */
.profile-card-grid {
    display: grid;
    grid-template-areas:
        "logo identity identity"
        "rating about contact"
        "shops shops shops";
    grid-template-columns: minmax(340px, 1.08fr) repeat(2, minmax(250px, .96fr));
    gap: 10px;
}

.profile-card-grid.profile-card-grid--no-logo {
    grid-template-areas:
        "identity"
        "details"
        "shops";
    grid-template-columns: minmax(0, 1fr);
}

.profile-card-grid--no-about {
    grid-template-areas:
        "logo identity identity"
        "rating rating contact"
        "shops shops shops";
}

.profile-card-grid .profile-logo-surface {
    width: 100%;
    min-height: 84px;
    grid-area: logo;
    padding: 14px 22px;
}

.profile-card-grid .profile-identity__copy {
    min-height: 84px;
    grid-area: identity;
}

.profile-card-grid .profile-identity__copy .profile-eyebrow {
    display: none;
}

.profile-card-grid .profile-rating {
    min-height: 0;
    grid-area: rating;
    padding: 16px;
}

.profile-card-grid:not(.profile-card-grid--no-about) .profile-rating {
    display: block;
}

.profile-card-grid--no-about .profile-rating {
    display: grid;
    grid-template-columns: minmax(180px, .62fr) minmax(260px, 1.38fr);
    align-items: center;
    gap: 34px;
}

.profile-card-grid--no-about .profile-rating__distribution {
    margin-top: 0;
}

.profile-card-grid .profile-rating__headline > strong {
    font-size: 3.25rem;
}

.profile-card-grid .profile-rating__headline .star-rating-xl,
.profile-card-grid .profile-rating__headline .star-rating-xl::before,
.profile-card-grid .profile-rating__headline .star-rating-xl span,
.profile-card-grid .profile-rating__headline .star-rating-xl span::before {
    width: 120px;
    height: 24px;
    background-size: 24px;
}

.profile-card-grid .profile-rating__distribution {
    margin-top: 4px;
}

.profile-card-grid--no-about .profile-rating__distribution {
    margin-top: 0;
}

.profile-card-grid .profile-rating__distribution .rating-count-row {
    margin-top: 3px !important;
}

.profile-card-grid .profile-about p {
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.profile-card-grid .profile-about {
    min-height: 160px;
    grid-area: about;
    padding: 16px;
}

.profile-card-grid .profile-contact {
    min-height: 160px;
    grid-area: contact;
    padding: 16px;
}

.profile-card-grid .profile-contact__company {
    margin-top: 10px;
}

.profile-card-grid .profile-contact__links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 8px;
}

.profile-card-grid .profile-socials {
    margin-top: 8px;
}

.profile-card-grid .profile-shops {
    grid-area: shops;
    margin-top: 0;
}

.public-profile-page .star-rating span::before,
.reviews-section .star-rating span::before {
    filter: brightness(0) saturate(100%) invert(76%) sepia(40%) saturate(812%) hue-rotate(170deg) brightness(103%) contrast(102%);
}

.profile-rating__distribution .rating-count-row img {
    filter: brightness(0) saturate(100%) invert(76%) sepia(40%) saturate(812%) hue-rotate(170deg) brightness(103%) contrast(102%);
}

.profile-rating__distribution .rating-progress {
    background: var(--profile-sky);
}

.shop-detail__rating-filter-label i {
    color: var(--profile-sky);
}

@media (max-width: 1050px) {
    .profile-card-grid,
    .profile-card-grid--no-about {
        grid-template-areas:
            "logo identity"
            "rating rating"
            "about contact"
            "shops shops";
        grid-template-columns: minmax(230px, .7fr) minmax(0, 1.3fr);
    }

    .profile-card-grid--no-about {
        grid-template-areas:
            "logo identity"
            "rating contact"
            "shops shops";
        grid-template-columns: minmax(0, 1.18fr) minmax(280px, .82fr);
    }

    .profile-card-grid--no-about .profile-rating {
        display: block;
    }

    .profile-card-grid--no-about .profile-rating__distribution {
        margin-top: 24px;
    }
}

@media (max-width: 760px) {
    .profile-card-grid,
    .profile-card-grid--no-about {
        grid-template-areas:
            "logo"
            "identity"
            "rating"
            "about"
            "contact"
            "shops";
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .profile-card-grid--no-about {
        grid-template-areas:
            "logo"
            "identity"
            "rating"
            "contact"
            "shops";
    }

    .profile-card-grid .profile-rating,
    .profile-card-grid--no-about .profile-rating {
        display: block;
        padding: 24px;
    }

    .profile-card-grid--no-about .profile-rating__distribution {
        margin-top: 24px;
    }

    .profile-card-grid .profile-about,
    .profile-card-grid .profile-contact {
        min-height: 0;
        padding: 24px;
    }

    .profile-card-grid .profile-contact__links {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .profile-shops__list {
        grid-template-columns: 1fr;
    }

    .p-review-card__header {
        flex-wrap: wrap;
    }
}

@media (prefers-reduced-motion: reduce) {
    .public-profile-page *,
    .public-profile-page *::before,
    .public-profile-page *::after,
    .reviews-section *,
    .reviews-section *::before,
    .reviews-section *::after {
        scroll-behavior: auto !important;
        transition-duration: .01ms !important;
    }
}

/* Compact public profile */
.public-profile-page {
    width: min(100% - clamp(32px, 6vw, 112px), 1320px);
}

.profile-hero {
    margin: clamp(28px, 4vw, 54px) 0 clamp(42px, 5vw, 72px);
    padding: clamp(34px, 4vw, 52px);
    overflow: hidden;
    border: 0;
    border-radius: 42px;
    background: #071324;
    box-shadow: none;
}

.profile-hero::before {
    top: -210px;
    left: -210px;
    width: 620px;
    height: 620px;
    border-radius: 50%;
    background: transparent;
}

.profile-hero::after,
.profile-identity::before,
.profile-logo-surface::after,
.profile-rating::after,
.profile-summary-grid--no-about .profile-contact::after {
    display: none;
}

.profile-identity {
    min-height: 0;
    grid-template-columns: 230px minmax(0, 1fr);
    gap: 34px;
}

.profile-logo-surface {
    width: 230px;
    min-height: 96px;
    padding: 20px 26px;
    border-radius: 28px;
}

.profile-logo-surface img {
    max-height: 58px;
}

.profile-identity .profile-eyebrow,
.profile-identity__snapshot,
.profile-panel-label {
    display: none;
}

.profile-identity h1 {
    max-width: 720px;
    margin: 0;
    font-size: clamp(1.7rem, 2.5vw, 2.35rem);
    font-weight: 600;
    letter-spacing: -.045em;
    line-height: 1;
}

.profile-categories {
    margin-top: 12px;
}

.profile-summary-grid {
    grid-template-areas: "rating about contact";
    grid-template-columns: minmax(360px, 1.25fr) minmax(250px, .9fr) minmax(250px, .85fr);
    align-items: start;
    gap: clamp(24px, 3vw, 44px);
    margin-top: 34px;
}

.profile-summary-grid--no-about {
    grid-template-areas: "rating contact";
    grid-template-columns: minmax(420px, 1.25fr) minmax(300px, .85fr);
}

.profile-rating {
    display: block;
    min-height: 0;
    padding: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.profile-rating__headline {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 0;
}

.profile-rating__headline > strong {
    font-size: clamp(2.9rem, 4.2vw, 4rem);
    font-weight: 600;
    letter-spacing: -.07em;
    line-height: 1;
}

.profile-rating__headline > div {
    order: -1;
    margin-top: 0;
}

.profile-rating__headline > div > span {
    margin-top: 7px;
}

.profile-rating__distribution {
    margin-top: 24px;
}

.profile-rating__distribution .rating-count-row img {
    filter: none;
}

.profile-rating__distribution .rating-bar {
    background: rgba(255, 255, 255, .08);
}

.profile-about,
.profile-contact {
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.profile-contact {
    display: block;
}

.profile-summary-grid--no-about .profile-contact {
    min-height: 0;
}

.profile-section-heading h2 {
    font-size: .78rem;
}

.profile-about p {
    margin-top: 18px;
    font-size: .87rem;
    line-height: 1.58;
}

.profile-contact__company {
    margin-top: 18px;
}

.profile-contact__links {
    gap: 7px;
    margin-top: 16px;
}

.profile-contact__links a {
    min-height: 30px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.profile-contact__links a:hover {
    background: transparent;
}

.profile-socials {
    gap: 8px;
    margin-top: 16px;
}

.profile-socials a {
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
}

.profile-shops {
    margin-top: 30px;
    padding: 0;
    border-radius: 0;
    background: transparent;
}

.profile-shops__list {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    margin-top: 18px;
}

.profile-shops__list a {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: .7rem;
}

.profile-shops__list img {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
}

.reviews-section {
    padding-top: 12px;
}

.reviews-section::before {
    height: 4px;
}

.reviews-heading {
    align-items: center;
}

.reviews-heading h2 {
    margin-top: 12px;
    font-size: clamp(2.25rem, 4vw, 3.8rem);
    letter-spacing: -.06em;
}

.reviews-heading > strong {
    min-width: auto;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: #102039;
}

.reviews-filter {
    margin-top: 14px;
    padding: 14px 18px;
    border-radius: 22px;
    background: #0c1828;
}

.reviews-filter__title {
    color: var(--profile-sky);
}

.shop-detail__rating-filter-label,
.shop-g-detail__domain-filter-label {
    background: rgba(255, 255, 255, .055);
}

.shop-detail__rating-filter-label:hover,
.shop-g-detail__domain-filter-label:hover {
    background: rgba(255, 255, 255, .1);
}

.btn-rating-filter:checked + .shop-detail__rating-filter-label,
.btn-verified-filter:checked + .shop-detail__rating-filter-label,
.shop-g-detail__domain-filter-input:checked + .shop-g-detail__domain-filter-label {
    color: #fff;
    background: var(--profile-blue-deep);
}

.btn-rating-filter:checked + .shop-detail__rating-filter-label i,
.btn-verified-filter:checked + .shop-detail__rating-filter-label i {
    color: var(--profile-yellow);
}

#reviews {
    margin-top: clamp(28px, 3.5vw, 46px);
}

@media (max-width: 1260px) {
    .profile-identity {
        grid-template-columns: 210px minmax(0, 1fr);
        gap: 28px;
    }

    .profile-logo-surface {
        width: 210px;
    }

    .profile-summary-grid {
        grid-template-areas:
            "rating about"
            "rating contact";
        grid-template-columns: minmax(340px, 1.05fr) minmax(0, .95fr);
        gap: 26px 34px;
    }

    .profile-summary-grid--no-about {
        grid-template-areas: "rating contact";
    }

    .profile-shops__list {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 940px) {
    .profile-identity {
        grid-template-columns: 190px minmax(0, 1fr);
        gap: 24px;
    }

    .profile-logo-surface {
        width: 190px;
        min-height: 88px;
    }

    .profile-summary-grid,
    .profile-summary-grid--no-about {
        grid-template-areas:
            "rating"
            "about"
            "contact";
        grid-template-columns: 1fr;
    }

    .profile-summary-grid--no-about {
        grid-template-areas:
            "rating"
            "contact";
    }

    .profile-shops__list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 660px) {
    .profile-hero {
        margin-top: 18px;
        margin-bottom: 38px;
        padding: 22px;
        border-radius: 28px;
    }

    .profile-identity {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .profile-logo-surface {
        width: 100%;
        min-height: 102px;
        padding: 20px 26px;
        border-radius: 22px;
    }

    .profile-logo-surface img {
        max-height: 62px;
    }

    .profile-identity h1 {
        margin: 0;
        font-size: 2.15rem;
    }

    .profile-summary-grid {
        gap: 24px;
        margin-top: 32px;
    }

    .profile-rating,
    .profile-about,
    .profile-contact,
    .profile-shops {
        padding: 0;
        border-radius: 0;
    }

    .profile-rating__headline {
        align-items: center;
        flex-direction: row;
        gap: 16px;
    }

    .profile-rating__headline > strong {
        font-size: 3.5rem;
    }

    .profile-rating__headline > div {
        order: -1;
    }

    .profile-shops {
        margin-top: 24px;
    }

    .profile-shops__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .reviews-heading {
        align-items: flex-start;
        flex-direction: row;
    }

    .reviews-heading > strong {
        min-width: auto;
        min-height: 38px;
        padding-inline: 12px;
    }

    .reviews-filter {
        padding: 16px;
        border-radius: 20px;
    }
}

@media (max-width: 420px) {
    .profile-shops__list {
        grid-template-columns: 1fr;
    }
}

/* Individual solid cards */
.profile-hero {
    margin: 0 0 12px;
    padding: 0;
    overflow: visible;
    border-radius: 0;
    background: transparent;
}

.profile-hero::before,
.profile-hero::after {
    display: none;
}

.profile-identity {
    grid-template-columns: 230px minmax(0, 1fr);
    align-items: stretch;
    gap: 14px;
}

.profile-logo-surface {
    min-height: 84px;
    border-radius: 26px;
}

.profile-identity__copy {
    display: flex;
    min-width: 0;
    min-height: 84px;
    flex-direction: column;
    justify-content: center;
    padding: 14px 20px;
    border: 0;
    border-radius: 26px;
    background: #102039;
    box-shadow: none;
}

.profile-summary-grid,
.profile-summary-grid--no-about {
    align-items: stretch;
    gap: 14px;
    margin-top: 14px;
}

.profile-summary-grid {
    grid-template-areas: "rating about contact";
    grid-template-columns: minmax(350px, 1.18fr) minmax(240px, .92fr) minmax(240px, .9fr);
}

.profile-summary-grid--no-about {
    grid-template-areas: "rating contact";
    grid-template-columns: minmax(390px, 1.22fr) minmax(300px, .78fr);
}

.profile-rating,
.profile-about,
.profile-contact {
    min-height: 160px;
    padding: 16px;
    overflow: hidden;
    border: 0;
    border-radius: 26px;
    box-shadow: none;
}

.profile-rating {
    background: #102039;
}

.profile-about {
    background: #102039;
}

.profile-contact {
    background: #102039;
}

.profile-summary-grid--no-about .profile-contact {
    min-height: 160px;
}

.profile-rating__headline {
    flex-wrap: wrap;
}

.profile-contact__company {
    margin-top: 10px;
}

.profile-shops {
    margin-top: 10px;
    padding: 14px 18px;
    border: 0;
    border-radius: 26px;
    background: #102039;
    box-shadow: none;
}

.profile-shops__list a {
    background: #14263e;
}

.profile-shops__list a:hover {
    background: #18314e;
}

.reviews-section::before {
    display: none;
}

.reviews-section::after {
    display: none;
}

.profile-card-grid > .profile-logo-surface,
.profile-card-grid > .profile-identity__copy,
.profile-card-grid > .profile-rating,
.profile-card-grid > .profile-about,
.profile-card-grid > .profile-contact,
.profile-card-grid > .profile-shops {
    position: relative;
}

.profile-card-grid > .profile-logo-surface::before,
.profile-card-grid > .profile-identity__copy::before,
.profile-card-grid > .profile-rating::before,
.profile-card-grid > .profile-about::before,
.profile-card-grid > .profile-contact::before,
.profile-card-grid > .profile-shops::before {
    position: absolute;
    top: 0;
    left: 26px;
    width: 68px;
    height: 6px;
    border-radius: 0 0 8px 8px;
    background: var(--profile-sky);
    content: "";
}

.profile-card-grid > .profile-logo-surface::before,
.profile-card-grid > .profile-about::before {
    background: var(--profile-sky);
}

.profile-card-grid > .profile-rating::before,
.profile-card-grid > .profile-shops::before {
    background: var(--profile-sky);
}

.profile-card-grid > .profile-contact::before {
    background: var(--profile-sky);
}

.profile-card-grid .profile-categories span {
    color: var(--profile-sky);
}

.profile-card-grid .profile-categories {
    margin-top: 6px;
}

.profile-card-grid .profile-contact__links a,
.profile-card-grid .profile-shops__list a {
    color: rgba(255, 255, 255, .76);
}

.profile-card-grid .profile-socials a,
.profile-card-grid .profile-shops__list a {
    background: #14263e;
}

.profile-card-grid .profile-shops__list {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    gap: 8px;
    margin-top: 8px;
    overflow-x: auto;
    scrollbar-width: none;
}

.profile-card-grid .profile-shops__list::-webkit-scrollbar {
    display: none;
}

.profile-card-grid .profile-shops__list a {
    width: 176px;
    min-width: 176px;
    min-height: 32px;
}

.profile-card-grid .profile-shops__list a:nth-child(3n) {
    background: #14263e;
}

.profile-card-grid .profile-shops__list a:nth-child(4n) {
    background: #14263e;
}

.profile-card-grid .profile-shops__list a:nth-child(5n) i {
    color: var(--profile-sky);
}

.profile-card-grid {
    grid-template-areas:
        "logo identity"
        "details details"
        "shops shops"
        "ai-summary ai-summary";
    grid-template-columns: minmax(300px, .68fr) minmax(0, 1.82fr);
    gap: 12px;
}

.profile-card-grid.profile-card-grid--no-about {
    grid-template-areas:
        "logo identity"
        "details details"
        "shops shops"
        "ai-summary ai-summary";
}

.profile-card-grid.profile-card-grid--no-logo {
    grid-template-areas:
        "identity"
        "details"
        "shops"
        "ai-summary";
    grid-template-columns: minmax(0, 1fr);
}

.profile-card-grid > .profile-logo-surface,
.profile-card-grid > .profile-identity__copy {
    min-height: 124px;
}

.profile-card-grid > .profile-logo-surface {
    padding: 26px 32px;
}

.profile-card-grid > .profile-identity__copy {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 28px;
    padding: 26px 32px;
}

.profile-card-grid > .profile-identity__copy--with-about {
    grid-template-columns: minmax(220px, .72fr) minmax(300px, 1.28fr);
}

.profile-identity__main,
.profile-identity__about {
    min-width: 0;
}

.profile-identity__about p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, .7);
    font-size: .88rem;
    line-height: 1.5;
}

.profile-card-grid .profile-identity__snapshot {
    margin-top: 10px;
}

.profile-details-layout {
    display: grid;
    min-width: 0;
    grid-area: details;
    grid-template-columns: minmax(380px, .78fr) minmax(0, 1.22fr);
    align-items: stretch;
    gap: 12px;
}

.profile-details-layout--no-about {
    grid-template-columns: minmax(380px, .78fr) minmax(0, 1.22fr);
}

.profile-details-layout > .profile-rating,
.profile-details-layout > .profile-about,
.profile-details-layout > .profile-contact {
    min-height: 0;
    grid-area: auto;
    align-self: stretch;
    padding: 20px 28px 14px;
}

.profile-card-grid .profile-details-layout > .profile-rating {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 8px;
}

.profile-details-layout > .profile-contact {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 38px;
}

.profile-contact__secondary {
    display: flex;
    width: 100%;
    min-width: 0;
    flex-direction: column;
    align-items: stretch;
    align-self: start;
    gap: 12px;
}

.profile-contact__secondary .profile-contact__links,
.profile-contact__secondary .profile-socials {
    margin-top: 0;
}

.profile-contact__secondary .profile-contact__links {
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 7px;
}

.profile-contact__secondary .profile-contact__links a {
    width: 100%;
}

.profile-contact__secondary .profile-socials {
    grid-column: auto;
}

.profile-details-layout .profile-rating__headline {
    gap: 26px;
}

.profile-details-layout .profile-rating__headline > strong {
    font-size: clamp(3.7rem, 5vw, 4.8rem);
}

.profile-details-layout .profile-rating__headline .star-rating-xl,
.profile-details-layout .profile-rating__headline .star-rating-xl::before,
.profile-details-layout .profile-rating__headline .star-rating-xl span,
.profile-details-layout .profile-rating__headline .star-rating-xl span::before {
    width: 175px;
    height: 35px;
    background-size: 35px;
}

.profile-details-layout .profile-rating__headline > div > span {
    font-size: .88rem;
}

.profile-details-layout .profile-rating__distribution .rating-number {
    font-size: .72rem;
}

.profile-details-layout .profile-rating__distribution .rating-count-row img {
    width: 15px;
    height: 15px;
}

.profile-details-layout .profile-rating__distribution .rating-bar,
.profile-details-layout .profile-rating__distribution .rating-progress {
    height: 7px;
}

.profile-details-layout > .profile-rating::before,
.profile-details-layout > .profile-about::before,
.profile-details-layout > .profile-contact::before {
    position: absolute;
    top: 0;
    left: 26px;
    width: 68px;
    height: 6px;
    border-radius: 0 0 8px 8px;
    background: var(--profile-sky);
    content: "";
}

.profile-card-grid .profile-shops__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(154px, 1fr));
    overflow: visible;
}

.profile-card-grid > .profile-shops {
    padding: 18px 22px;
}

.profile-card-grid .profile-shops__list a {
    width: auto;
    min-width: 0;
    min-height: 38px;
    padding-block: 7px;
}

.profile-card-grid .profile-shops__list span {
    overflow: visible;
    text-overflow: clip;
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 1.2;
}

.public-profile-page .star-rating span::before,
.reviews-section .star-rating span::before,
.profile-rating__distribution .rating-count-row img {
    filter: none !important;
}

.profile-rating__distribution .rating-progress {
    background: var(--profile-yellow);
}

.shop-detail__rating-filter-label i {
    color: var(--profile-yellow);
}

.reviews-heading {
    position: relative;
    min-height: 50px;
    align-items: flex-end;
    justify-content: flex-start;
    text-align: left;
}

.reviews-heading .profile-eyebrow {
    display: inline-flex;
    margin-bottom: 7px;
    color: var(--profile-sky);
    font-size: .62rem;
}

.reviews-heading h2 {
    margin: 0;
    font-size: clamp(1.65rem, 2.5vw, 2.15rem);
    letter-spacing: -.045em;
    line-height: 1;
}

.reviews-heading > strong {
    position: absolute;
    right: 0;
    min-height: 32px;
    padding-inline: 13px;
}

.reviews-section {
    padding-top: 6px;
}

.reviews-filter {
    margin-top: 10px;
}

@media (max-width: 1040px) {
    .profile-card-grid {
        grid-template-columns: minmax(220px, .62fr) minmax(0, 1.38fr);
    }

    .profile-details-layout {
        grid-template-columns: minmax(330px, .9fr) minmax(0, 1.1fr);
    }

    .profile-details-layout--no-about {
        grid-template-columns: minmax(330px, .9fr) minmax(0, 1.1fr);
    }

    .profile-details-layout > .profile-contact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-details-layout > .profile-contact .profile-socials {
        grid-column: 2;
    }

    .profile-card-grid > .profile-identity__copy--with-about {
        grid-template-columns: minmax(190px, .72fr) minmax(230px, 1.28fr);
    }

    .profile-summary-grid {
        grid-template-areas:
            "rating about"
            "contact contact";
        grid-template-columns: minmax(330px, 1.08fr) minmax(260px, .92fr);
    }

    .profile-summary-grid--no-about {
        grid-template-areas: "rating contact";
        grid-template-columns: minmax(340px, 1.08fr) minmax(280px, .92fr);
    }
}

@media (max-width: 760px) {
    .profile-card-grid {
        grid-template-areas:
            "logo"
            "identity"
            "details"
            "shops"
            "ai-summary";
        grid-template-columns: 1fr;
    }

    .profile-details-layout,
    .profile-details-layout--no-about {
        grid-template-columns: 1fr;
    }

    .profile-details-layout:not(.profile-details-layout--no-about) > .profile-contact {
        grid-column: auto;
    }

    .profile-details-layout > .profile-contact {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-card-grid > .profile-identity__copy--with-about {
        grid-template-columns: 1fr;
    }

    .profile-card-grid .profile-shops__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .profile-identity {
        grid-template-columns: 1fr;
    }

    .profile-logo-surface {
        width: 100%;
    }

    .profile-summary-grid,
    .profile-summary-grid--no-about {
        grid-template-areas:
            "rating"
            "about"
            "contact";
        grid-template-columns: 1fr;
    }

    .profile-summary-grid--no-about {
        grid-template-areas:
            "rating"
            "contact";
    }
}

@media (max-width: 480px) {
    .profile-details-layout > .profile-contact {
        grid-template-columns: 1fr;
    }

    .profile-details-layout > .profile-contact .profile-socials {
        grid-column: 1;
    }

    .profile-card-grid .profile-shops__list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 660px) {
    .profile-hero {
        margin-top: 0;
        margin-bottom: 38px;
        padding: 0;
    }

    .profile-identity,
    .profile-summary-grid,
    .profile-summary-grid--no-about {
        gap: 10px;
    }

    .profile-summary-grid,
    .profile-summary-grid--no-about,
    .profile-shops {
        margin-top: 10px;
    }

    .profile-logo-surface,
    .profile-identity__copy,
    .profile-rating,
    .profile-about,
    .profile-contact,
    .profile-shops,
    .profile-ai-summary {
        border-radius: 22px;
    }

    .profile-identity__copy,
    .profile-rating,
    .profile-about,
    .profile-contact,
    .profile-shops,
    .profile-ai-summary {
        padding: 24px;
    }

    .profile-rating,
    .profile-about,
    .profile-contact,
    .profile-summary-grid--no-about .profile-contact {
        min-height: 0;
    }
}
