/* =========================================================
   Siemens Çerkezköy V10
   Temiz CSS mimarisi • bordersız kart sistemi • responsive
   ========================================================= */

:root {
    --font-body: "Manrope", "Segoe UI", Arial, sans-serif;
    --font-display: "Manrope", "Segoe UI", Arial, sans-serif;

    --brand: #00a6a3;
    --brand-strong: #26d6d0;
    --brand-dark: #007d7a;

    --bg: #070b0d;
    --bg-soft: #0b1113;
    --surface: #11191c;
    --surface-raised: #172226;
    --surface-hover: #1d2a2e;
    --field: #0e1518;

    --text: #f4f7f7;
    --text-soft: #c8d0d1;
    --muted: #93a0a3;
    --muted-dark: #6f7d80;

    --header-height: 78px;
    --content-width: 1320px;
    --radius-xs: 8px;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 22px;
    --radius-pill: 999px;

    --shadow-sm: 0 12px 32px rgba(0, 0, 0, 0.22);
    --shadow-md: 0 24px 64px rgba(0, 0, 0, 0.32);
    --shadow-header: 0 14px 40px rgba(0, 0, 0, 0.34);
    --focus-ring: 0 0 0 3px rgba(38, 214, 208, 0.22);
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    min-width: 320px;
    scroll-behavior: smooth;
    background: var(--bg);
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    color: var(--text);
    background: var(--bg);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: -0.01em;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

body.menu-open,
body.filter-open {
    overflow: hidden;
}

main {
    display: block;
    min-height: 40vh;
}

.has-solid-header main {
    padding-top: var(--header-height);
}

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

img {
    height: auto;
}

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

button,
input,
select,
textarea {
    margin: 0;
    font: inherit;
}

button {
    color: inherit;
    cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin-top: 0;
    font-family: var(--font-display);
    text-wrap: balance;
}

p {
    text-wrap: pretty;
}

::selection {
    color: #061011;
    background: var(--brand-strong);
}

:focus-visible {
    outline: 2px solid var(--brand-strong);
    outline-offset: 4px;
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible,
button:focus-visible {
    outline: none;
}

[hidden] {
    display: none !important;
}

.shell {
    width: min(calc(100% - 64px), var(--content-width));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 4000;
    top: 12px;
    left: 12px;
    padding: 11px 16px;
    color: #071012;
    background: #fff;
    border-radius: var(--radius-sm);
    transform: translateY(-160%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: translateY(0);
}

/* Header */
.site-header {
    position: fixed;
    z-index: 1200;
    inset: 0 0 auto;
    height: var(--header-height);
    color: var(--text);
    background: transparent;
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), backdrop-filter 0.3s var(--ease);
}

.site-header--overlay {
    background: linear-gradient(180deg, rgba(4, 8, 9, 0.55), rgba(4, 8, 9, 0));
}

.site-header--solid,
.site-header.is-scrolled,
body.menu-open .site-header {
    background: rgba(7, 11, 13, 0.92);
    box-shadow: var(--shadow-header);
    backdrop-filter: blur(18px) saturate(130%);
    -webkit-backdrop-filter: blur(18px) saturate(130%);
}

.header-main {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(190px, 245px) minmax(0, 1fr) auto;
    align-items: center;
    gap: clamp(20px, 3vw, 44px);
}

.brand {
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
    width: max-content;
    max-width: 100%;
}

.brand-word {
    color: var(--brand-strong);
    font-size: 28px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: 0.09em;
}

.brand-local {
    color: #b8c4c6;
    font-size: 9px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.22em;
}

.main-nav {
    height: 100%;
    display: flex;
    align-items: stretch;
    gap: clamp(18px, 2.5vw, 34px);
}

.main-nav > a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: #e6eded;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    transition: color 0.2s ease;
}

.main-nav > a::after {
    content: "";
    position: absolute;
    right: 100%;
    bottom: 10px;
    left: 0;
    height: 2px;
    border-radius: var(--radius-pill);
    background: var(--brand-strong);
    transition: right 0.3s var(--ease);
}

.main-nav > a:hover,
.main-nav > a.active {
    color: #fff;
}

.main-nav > a:hover::after,
.main-nav > a.active::after {
    right: 0;
}

.header-actions {
    height: 100%;
    display: flex;
    align-items: center;
    gap: 8px;
}

.header-action {
    min-width: 84px;
    min-height: 54px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 12px;
    color: #c7d0d1;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--radius-sm);
    font-size: 10px;
    line-height: 1.2;
    transition: color 0.2s ease, background 0.2s ease, transform 0.2s var(--ease);
}

.header-action:hover {
    color: var(--brand-strong);
    background: rgba(255, 255, 255, 0.09);
    transform: translateY(-1px);
}

.header-action svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-toggle {
    display: none;
    width: 48px;
    height: 48px;
    padding: 11px;
    background: rgba(255, 255, 255, 0.06);
    border: 0;
    border-radius: var(--radius-sm);
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    display: block;
    margin: 5px 0;
    background: #f4f8f8;
    border-radius: var(--radius-pill);
    transform-origin: center;
    transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-backdrop {
    position: fixed;
    z-index: 1090;
    inset: var(--header-height) 0 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Common controls */
.kicker {
    display: block;
    margin-bottom: 14px;
    color: var(--brand-strong);
    font-size: 12px;
    font-weight: 800;
    line-height: 1.35;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.kicker--light {
    color: #69eee8;
}

.button-row,
.newsletter-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.btn {
    min-height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 0;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    box-shadow: none;
    transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.25s var(--ease);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn--light {
    color: #071012;
    background: #f1f6f6;
}

.btn--light:hover {
    background: #fff;
}

.btn--outline-light {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55);
}

.btn--outline-light:hover {
    color: #071012;
    background: #fff;
    box-shadow: none;
}

.btn--dark {
    color: #071012;
    background: #eef4f4;
}

.btn--dark:hover {
    color: #fff;
    background: var(--brand);
}

.btn--teal {
    color: #fff;
    background: var(--brand);
}

.btn--teal:hover {
    background: var(--brand-dark);
}

.btn--outline-dark {
    color: #edf4f4;
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 0 0 1px rgba(217, 230, 231, 0.32);
}

.btn--outline-dark:hover {
    color: #071012;
    background: #edf4f4;
    box-shadow: none;
}

.under-link {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding-bottom: 6px;
    color: var(--brand-strong);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
}

.under-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 2px;
    border-radius: var(--radius-pill);
    background: currentColor;
    transform-origin: left;
    transition: transform 0.3s var(--ease);
}

.under-link:hover::after {
    transform: scaleX(0.45);
}

/* Hero */
.hero-stage {
    position: relative;
    min-height: clamp(650px, 82vh, 860px);
    overflow: hidden;
    background: #080c0e;
}

.hero-stage__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-stage__shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(3, 7, 8, 0.94) 0%, rgba(3, 7, 8, 0.72) 38%, rgba(3, 7, 8, 0.12) 76%),
        linear-gradient(0deg, rgba(3, 7, 8, 0.25), rgba(3, 7, 8, 0.02));
}

.hero-stage__inner {
    position: relative;
    min-height: inherit;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
}

.hero-panel {
    width: min(620px, 100%);
    padding: clamp(70px, 9vw, 125px) 0;
    color: #fff;
}

.hero-panel h1 {
    max-width: 620px;
    margin: 0 0 24px;
    font-size: clamp(45px, 5vw, 76px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -0.058em;
}

.hero-panel p {
    max-width: 560px;
    margin: 0 0 34px;
    color: #d4dddd;
    font-size: clamp(16px, 1.4vw, 18px);
    line-height: 1.7;
}

/* Sections */
.section {
    padding: clamp(72px, 8vw, 112px) 0;
}

.section--white {
    background: var(--bg);
}

.section--mist {
    background: var(--bg-soft);
}

.section--charcoal {
    color: #fff;
    background: #0d1416;
}

.section-title-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: clamp(30px, 4vw, 46px);
}

.section-title-row h2 {
    margin: 0;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.048em;
}

.section-title-row--center {
    justify-content: center;
    text-align: center;
}

.section-title-row--inverse .under-link {
    color: #fff;
}

/* Editorial cards */
.editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(300px, 1fr);
    grid-template-rows: repeat(2, minmax(280px, 1fr));
    gap: 18px;
    min-height: 700px;
}

.editorial-card {
    position: relative;
    min-width: 0;
    min-height: 0;
    overflow: hidden;
    background: var(--surface);
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.editorial-card--large {
    grid-row: 1 / 3;
}

.editorial-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.85s var(--ease);
}

.editorial-card:hover img {
    transform: scale(1.035);
}

.editorial-card__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 7, 8, 0.06) 22%, rgba(3, 7, 8, 0.92) 100%);
}

.editorial-card--large .editorial-card__veil {
    background: linear-gradient(90deg, rgba(3, 7, 8, 0.94) 0%, rgba(3, 7, 8, 0.64) 45%, rgba(3, 7, 8, 0.08) 80%);
}

.editorial-card__copy {
    position: absolute;
    z-index: 2;
    right: 0;
    bottom: 0;
    left: 0;
    padding: clamp(25px, 3vw, 38px);
    color: #f4f8f8;
}

.editorial-card__copy--dark {
    top: 0;
    bottom: auto;
    width: min(470px, 72%);
    padding: clamp(34px, 4vw, 54px);
}

.editorial-card__copy span {
    display: block;
    margin-bottom: 10px;
    color: var(--brand-strong);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.editorial-card__copy h3 {
    margin: 0 0 11px;
    font-size: clamp(25px, 2.5vw, 40px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.editorial-card__copy p {
    margin: 0 0 18px;
    color: #d3dcdd;
}

.editorial-card__copy b,
.help-card b {
    display: inline-block;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

/* Categories */
.category-rail {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
    gap: 14px;
}

.category-tile {
    min-width: 0;
    padding: 18px 14px 24px;
    color: var(--text);
    background: var(--surface);
    border: 0;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
    transition: background 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.category-tile:hover {
    background: var(--surface-hover);
    box-shadow: var(--shadow-sm);
    transform: translateY(-5px);
}

.category-tile__visual {
    height: clamp(145px, 13vw, 190px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 42%, #2a3639 0%, #1b2427 58%, #12191b 100%);
    border-radius: calc(var(--radius-md) - 4px);
}

.category-tile__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.category-tile h3 {
    margin: 0 0 6px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.3;
}

.category-tile span {
    display: block;
    color: var(--muted);
    font-size: 11px;
    line-height: 1.45;
}

/* Products */
.product-showcase,
.product-grid--catalog {
    display: grid;
    gap: 20px;
}

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

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

.product-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    color: var(--text);
    background: var(--surface);
    border: 0;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition: transform 0.38s var(--ease), box-shadow 0.38s var(--ease), background 0.3s ease;
}

.product-card:hover {
    background: var(--surface-raised);
    box-shadow: var(--shadow-md);
    transform: translateY(-7px);
}

.product-card__media {
    height: clamp(270px, 24vw, 340px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(22px, 2.3vw, 34px);
    overflow: hidden;
    background: radial-gradient(circle at 50% 40%, #2b373a 0%, #1a2326 55%, #111719 100%);
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.45s var(--ease);
}

.product-card:hover .product-card__media img {
    transform: scale(1.03);
}

.product-card__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 24px;
    background: linear-gradient(180deg, rgba(18, 26, 28, 0.96), rgba(13, 20, 22, 0.98));
}

.product-card__series {
    color: var(--brand-strong);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.product-card h3 {
    margin: 8px 0 4px;
    font-size: 18px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.025em;
}

.product-card h3 a {
    transition: color 0.2s ease;
}

.product-card h3 a:hover {
    color: var(--brand-strong);
}

.product-card small {
    color: #839194;
    font-size: 11px;
}

.product-card p {
    margin: 15px 0 23px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.product-card__footer {
    margin-top: auto;
    padding-top: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.product-card__footer strong {
    font-size: 17px;
    font-weight: 700;
}

.round-arrow {
    flex: 0 0 auto;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    color: #edf4f4;
    background: rgba(255, 255, 255, 0.07);
    border: 0;
    border-radius: 50%;
    font-size: 19px;
    transition: color 0.25s ease, background 0.25s ease, transform 0.25s var(--ease);
}

.round-arrow:hover {
    color: #071012;
    background: var(--brand-strong);
    transform: translateX(2px);
}

/* Help cards */
.help-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.help-card {
    min-height: 330px;
    padding: clamp(28px, 3vw, 40px);
    background: #12191b;
    border: 0;
    border-radius: var(--radius-md);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.16);
    transition: background 0.3s ease, transform 0.3s var(--ease), box-shadow 0.3s ease;
}

.help-card:hover {
    background: var(--surface-hover);
    box-shadow: var(--shadow-sm);
    transform: translateY(-4px);
}

.help-card svg {
    width: 50px;
    height: 50px;
    margin-bottom: 26px;
    fill: none;
    stroke: var(--brand-strong);
    stroke-width: 1.4;
}

.help-card h3 {
    margin: 0 0 14px;
    font-size: clamp(22px, 2.2vw, 27px);
    font-weight: 400;
    line-height: 1.22;
}

.help-card p {
    margin: 0 0 24px;
    color: #aeb9bb;
}

/* Store feature */
.store-feature {
    min-height: 580px;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
}

.store-feature__media {
    min-height: 520px;
    overflow: hidden;
}

.store-feature__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-feature__copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: clamp(54px, 7vw, 100px);
    color: var(--text);
    background: #12191b;
}

.store-feature__copy h2 {
    margin: 0 0 22px;
    font-size: clamp(38px, 4.5vw, 62px);
    font-weight: 300;
    line-height: 1.05;
    letter-spacing: -0.052em;
}

.store-feature__copy p {
    max-width: 570px;
    margin: 0 0 30px;
    color: #a9b5b7;
    font-size: 16px;
    line-height: 1.7;
}

/* CTA and footer */
.newsletter-strip {
    padding: clamp(50px, 6vw, 72px) 0;
    color: #fff;
    background: linear-gradient(110deg, #00817e 0%, #006c69 54%, #083c3c 100%);
}

.newsletter-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.newsletter-grid h2 {
    max-width: 780px;
    margin: 0;
    font-size: clamp(31px, 4vw, 51px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.site-footer {
    padding-top: clamp(58px, 7vw, 78px);
    color: #fff;
    background: #050809;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.45fr repeat(3, minmax(150px, 1fr));
    gap: clamp(32px, 4vw, 56px);
    padding-bottom: 58px;
}

.brand--footer .brand-local {
    color: #aebbbc;
}

.footer-intro p {
    max-width: 430px;
    margin: 22px 0 0;
    color: #9aa7a9;
    font-size: 14px;
}

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

.footer-column h3 {
    margin: 0 0 11px;
    font-size: 14px;
    font-weight: 700;
}

.footer-column a,
.footer-column span {
    color: #98a5a7;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-column a:hover {
    color: #fff;
}

.footer-bottom {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    padding-top: 10px;
    color: #718083;
    font-size: 11px;
}

.footer-credits a,
.footer-admin-link {
    color: #a9b5b7;
    transition: color 0.2s ease;
}

.footer-credits a:hover,
.footer-admin-link:hover {
    color: var(--brand-strong);
}

.seo-copy {
    max-width: 1120px;
}

.seo-copy__intro {
    max-width: 900px;
    margin-bottom: 34px;
}

.seo-copy h2 {
    margin-bottom: 20px;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.045em;
}

.seo-copy h3 {
    margin-bottom: 12px;
    font-size: 21px;
    font-weight: 600;
}

.seo-copy p {
    margin: 0;
    color: #9eabad;
    font-size: 15px;
    line-height: 1.85;
}

.seo-copy__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.seo-copy__grid article {
    padding: 26px;
    background: var(--surface);
    border-radius: var(--radius-md);
}

.seo-copy__links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 28px;
}

.seo-copy__links a {
    padding: 10px 14px;
    color: #d9e2e3;
    background: var(--surface-raised);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
    transition: color 0.2s ease, background 0.2s ease;
}

.seo-copy__links a:hover {
    color: #061011;
    background: var(--brand-strong);
}

.mobile-contact-bar {
    display: none;
}

/* Inner page hero */
.page-hero {
    position: relative;
    display: flex;
    align-items: flex-end;
    min-height: clamp(430px, 50vh, 560px);
    padding: calc(var(--header-height) + clamp(80px, 9vw, 130px)) 0 clamp(72px, 8vw, 105px);
    overflow: hidden;
    color: var(--text);
    background:
        radial-gradient(circle at 78% 22%, rgba(0, 166, 163, 0.18), transparent 28%),
        linear-gradient(135deg, #172124 0%, #0d1416 48%, #080d0f 100%);
}

.page-hero::after {
    content: "";
    position: absolute;
    right: -10%;
    bottom: -34%;
    width: 44vw;
    min-width: 420px;
    aspect-ratio: 1;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(38, 214, 208, 0.11), transparent 68%);
    pointer-events: none;
}

.page-hero--dark {
    background:
        radial-gradient(circle at 75% 15%, rgba(0, 166, 163, 0.22), transparent 27%),
        linear-gradient(135deg, #121c1e 0%, #080d0f 70%);
}

.page-hero__inner {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 940px;
}

.page-hero h1 {
    max-width: 900px;
    margin: 0 0 18px;
    font-size: clamp(43px, 5.6vw, 72px);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.page-hero p {
    max-width: 760px;
    margin: 0;
    color: #a7b3b5;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.7;
}

/* Catalog */
.catalog-section {
    min-height: 600px;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: clamp(30px, 4vw, 50px);
    align-items: start;
}

.catalog-results {
    min-width: 0;
}

.catalog-mobile-toolbar {
    display: none;
}

.filter-panel {
    position: sticky;
    top: calc(var(--header-height) + 24px);
    padding: 26px;
    color: var(--text);
    background: var(--surface);
    border: 0;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.filter-panel__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 22px;
}

.filter-panel h2 {
    margin: 0;
    font-size: 21px;
    font-weight: 600;
}

.filter-close {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 0;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
}

.filter-panel form {
    display: grid;
    gap: 12px;
}

.filter-panel label,
.contact-form label {
    display: block;
    margin-top: 3px;
    color: #dbe2e3;
    font-size: 12px;
    font-weight: 700;
}

input,
select,
textarea {
    width: 100%;
    min-height: 52px;
    padding: 13px 15px;
    color: var(--text);
    background: var(--field);
    border: 0;
    border-radius: var(--radius-sm);
    outline: none;
    box-shadow: inset 0 0 0 1px rgba(197, 215, 217, 0.16);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

textarea {
    min-height: 160px;
    resize: vertical;
}

input::placeholder,
textarea::placeholder {
    color: var(--muted-dark);
}

input:hover,
select:hover,
textarea:hover {
    box-shadow: inset 0 0 0 1px rgba(197, 215, 217, 0.28);
}

input:focus,
select:focus,
textarea:focus {
    background: #10191c;
    box-shadow: inset 0 0 0 1px var(--brand-strong), var(--focus-ring);
}

select {
    color-scheme: dark;
    appearance: none;
    -webkit-appearance: none;
    padding-right: 44px;
    background-image:
        linear-gradient(45deg, transparent 50%, #99a7a9 50%),
        linear-gradient(135deg, #99a7a9 50%, transparent 50%);
    background-position:
        calc(100% - 19px) 50%,
        calc(100% - 14px) 50%;
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.filter-panel .btn {
    width: 100%;
    margin-top: 5px;
}

.filter-reset {
    padding: 6px 0;
    color: #9aa7a9;
    font-size: 12px;
    text-align: center;
}

.results-head {
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
    color: #879497;
    font-size: 13px;
}

.results-head strong {
    color: var(--text);
    font-size: 15px;
}

.filter-toggle {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 17px;
    color: #fff;
    background: var(--surface-raised);
    border: 0;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
    font-size: 14px;
    font-weight: 700;
}

.filter-toggle svg {
    width: 20px;
    height: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.filter-backdrop {
    position: fixed;
    z-index: 1400;
    inset: 0;
    background: rgba(0, 0, 0, 0.68);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

/* Campaigns */
.campaign-list {
    display: grid;
    gap: 26px;
}

.campaign-wide {
    position: relative;
    min-height: clamp(480px, 48vw, 610px);
    overflow: hidden;
    background: var(--surface);
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.campaign-wide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.campaign-wide__veil {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(3, 7, 8, 0.94), rgba(3, 7, 8, 0.12) 74%);
}

.campaign-wide--light .campaign-wide__veil {
    background: linear-gradient(90deg, rgba(3, 7, 8, 0.93), rgba(3, 7, 8, 0.1) 74%);
}

.campaign-wide__copy {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: clamp(28px, 5vw, 72px);
    width: min(550px, calc(100% - 56px));
    color: #f4f7f7;
    transform: translateY(-50%);
}

.campaign-wide__copy h2 {
    margin: 0 0 17px;
    font-size: clamp(37px, 4.3vw, 61px);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.05em;
}

.campaign-wide__copy p {
    max-width: 520px;
    margin: 0 0 27px;
    color: #d1d9da;
    font-size: 16px;
    line-height: 1.7;
}

/* Store */
.store-layout {
    min-height: 650px;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
}

.store-layout__image {
    min-height: 560px;
    background: #151c1f;
}

.store-layout__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.store-layout__info {
    padding: clamp(48px, 7vw, 96px);
    color: var(--text);
    background: #12191b;
}

.store-layout__info h2 {
    margin: 0 0 26px;
    font-size: clamp(38px, 4.3vw, 58px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.048em;
}

.store-data {
    display: grid;
    gap: 8px;
    margin: 0 0 32px;
}

.store-data div {
    display: grid;
    grid-template-columns: 132px minmax(0, 1fr);
    gap: 20px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, 0.035);
    border-radius: var(--radius-sm);
}

.store-data dt {
    color: #8d999c;
}

.store-data dd {
    min-width: 0;
    margin: 0;
    overflow-wrap: anywhere;
}

/* Store location */
.store-location {
    min-width: 0;
    display: grid;
    grid-template-rows: minmax(330px, 1fr) auto;
    color: var(--text);
    background: #12191b;
}

.store-location__map {
    position: relative;
    min-height: 330px;
    overflow: hidden;
    background: #0c1214;
}

.store-location__map iframe {
    width: 100%;
    height: 100%;
    min-height: 330px;
    display: block;
    border: 0;
    filter: saturate(.82) contrast(1.03);
}

.store-location__content {
    padding: clamp(34px, 4.5vw, 58px);
}

.store-location__content h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 3.5vw, 50px);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.store-location__content > p {
    max-width: 680px;
    margin: 0 0 24px;
    color: #b8c4c6;
    overflow-wrap: anywhere;
}

.store-location__meta {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 26px;
}

.store-location__meta > * {
    min-width: 0;
    padding: 15px 16px;
    background: rgba(255,255,255,.04);
    border-radius: var(--radius-sm);
}

.store-location__meta b,
.store-location__meta span {
    display: block;
}

.store-location__meta b {
    margin-bottom: 4px;
    color: #eef5f5;
    font-size: 13px;
}

.store-location__meta span {
    color: #98a7aa;
    font-size: 13px;
    overflow-wrap: anywhere;
}

/* Customer reviews */
.reviews-panel {
    margin-top: clamp(34px, 5vw, 60px);
    padding: clamp(22px, 3.4vw, 38px);
    overflow: hidden;
    background: linear-gradient(145deg, rgba(17,25,28,.98), rgba(10,16,18,.98));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.reviews-panel__head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
}

.reviews-panel__head h3 {
    margin: 6px 0 0;
    font-size: clamp(25px, 3vw, 38px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.reviews-panel__count {
    flex: 0 0 auto;
    padding: 7px 12px;
    color: #b8c4c6;
    background: rgba(255,255,255,.05);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 700;
}

.review-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.review-card {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 22px;
    background: rgba(255,255,255,.045);
    border-radius: var(--radius-md);
}

.review-card__rating {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
    color: #536064;
    font-size: 15px;
}

.review-card__rating .is-filled {
    color: var(--brand-strong);
}

.review-card blockquote {
    flex: 1;
    margin: 0 0 22px;
    color: #e9eeee;
    font-size: 14px;
    line-height: 1.7;
}

.review-card footer {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr) auto;
    align-items: center;
    gap: 10px;
}

.review-card__avatar {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    color: #061011;
    background: var(--brand-strong);
    border-radius: 50%;
    font-weight: 800;
    text-transform: uppercase;
}

.review-card footer strong,
.review-card footer span {
    display: block;
}

.review-card footer strong {
    font-size: 13px;
}

.review-card footer span,
.review-card footer time {
    color: #829094;
    font-size: 11px;
}

/* Contact */
.contact-layout {
    display: grid;
    grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
    gap: clamp(42px, 6vw, 74px);
}

.contact-aside h2 {
    margin: 0 0 18px;
    font-size: clamp(31px, 3.4vw, 42px);
    font-weight: 300;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.contact-aside p {
    color: var(--muted);
}

.contact-cards {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.contact-card {
    padding: 20px;
    background: var(--surface);
    border: 0;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, transform 0.2s var(--ease), box-shadow 0.2s ease;
}

.contact-card:hover {
    background: var(--surface-hover);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.contact-card b {
    display: block;
    margin-bottom: 5px;
}

.contact-card span {
    color: var(--muted);
    font-size: 14px;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 17px;
    padding: clamp(22px, 3vw, 34px);
    background: var(--surface);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.contact-form .full {
    grid-column: 1 / -1;
}

.contact-form label {
    margin-bottom: 7px;
}

.form-alert {
    margin-bottom: 20px;
    padding: 15px 17px;
    color: #dff9f7;
    background: #123a38;
    border: 0;
    border-radius: var(--radius-sm);
    box-shadow: inset 4px 0 0 var(--brand-strong);
}

.empty-state {
    padding: clamp(50px, 7vw, 82px) 24px;
    color: var(--text);
    background: var(--surface);
    border: 0;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.empty-state h1,
.empty-state h2 {
    margin-top: 0;
    font-weight: 400;
}

.empty-state p {
    color: var(--muted);
}

/* Responsive: large tablet */
@media (max-width: 1180px) {
    :root {
        --content-width: 1120px;
    }

    .shell {
        width: min(calc(100% - 48px), var(--content-width));
    }

    .header-main {
        grid-template-columns: minmax(180px, 220px) minmax(0, 1fr) auto;
        gap: 20px;
    }

    .main-nav {
        gap: 20px;
    }

    .header-action {
        min-width: 72px;
        padding-inline: 9px;
    }

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

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

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

@media (max-width: 1050px) and (min-width: 901px) {
    .header-main {
        grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    }

    .header-actions {
        display: none;
    }

    .main-nav {
        justify-content: flex-end;
    }
}

/* Responsive: navigation and tablet */
@media (max-width: 900px) {
    :root {
        --header-height: 70px;
    }

    .shell {
        width: min(calc(100% - 40px), var(--content-width));
    }

    .header-main {
        grid-template-columns: minmax(0, 1fr) auto;
    }

    .header-actions {
        display: none;
    }

    .menu-toggle {
        display: block;
        justify-self: end;
    }

    .main-nav {
        position: fixed;
        z-index: 1100;
        top: var(--header-height);
        right: 0;
        bottom: 0;
        width: min(86vw, 390px);
        height: calc(100dvh - var(--header-height));
        max-height: calc(100dvh - var(--header-height));
        display: flex;
        align-items: stretch;
        flex-direction: column;
        gap: 6px;
        padding: 22px;
        overflow-y: auto;
        background: #0c1214;
        box-shadow: -24px 0 64px rgba(0, 0, 0, 0.42);
        transform: translateX(104%);
        visibility: hidden;
        transition: transform 0.34s var(--ease), visibility 0.34s;
    }

    .main-nav.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .main-nav > a {
        min-height: 58px;
        padding: 0 18px;
        background: rgba(255, 255, 255, 0.035);
        border-radius: var(--radius-sm);
        font-size: 17px;
    }

    .main-nav > a::after {
        top: 50%;
        right: auto;
        bottom: auto;
        left: 8px;
        width: 3px;
        height: 22px;
        transform: translateY(-50%);
    }

    .main-nav > a.active {
        padding-left: 24px;
        background: rgba(38, 214, 208, 0.09);
    }

    .editorial-grid {
        grid-template-columns: 1fr;
        grid-template-rows: minmax(480px, 58vw) repeat(2, minmax(330px, 42vw));
        min-height: auto;
    }

    .editorial-card--large {
        grid-row: auto;
    }

    .editorial-card__copy--dark {
        width: min(470px, 82%);
    }

    .help-grid {
        grid-template-columns: 1fr;
    }

    .help-card {
        min-height: auto;
    }

    .store-feature,
    .store-layout {
        grid-template-columns: 1fr;
    }

    .store-feature__media,
    .store-layout__image {
        min-height: min(62vw, 520px);
    }

    .newsletter-grid {
        align-items: flex-start;
        flex-direction: column;
    }

    .catalog-mobile-toolbar {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        margin-bottom: 24px;
        color: #94a1a3;
        font-size: 13px;
    }

    .catalog-layout {
        display: block;
    }

    .filter-panel {
        position: fixed;
        z-index: 1500;
        top: 0;
        right: 0;
        bottom: 0;
        width: min(92vw, 410px);
        max-height: 100dvh;
        padding: 24px;
        overflow-y: auto;
        border-radius: 0;
        box-shadow: -24px 0 64px rgba(0, 0, 0, 0.48);
        transform: translateX(105%);
        visibility: hidden;
        transition: transform 0.34s var(--ease), visibility 0.34s;
    }

    .filter-panel.is-open {
        transform: translateX(0);
        visibility: visible;
    }

    .filter-panel__head {
        position: sticky;
        z-index: 2;
        top: -24px;
        margin: -24px -24px 24px;
        padding: 18px 24px;
        background: rgba(17, 25, 28, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .filter-close {
        display: grid;
        place-items: center;
    }

    .results-head span {
        display: none;
    }

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

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

    .seo-copy__grid {
        grid-template-columns: 1fr;
    }
}

/* Responsive: phones */
@media (max-width: 620px) {
    body {
        padding-bottom: calc(58px + env(safe-area-inset-bottom));
    }

    .shell {
        width: min(calc(100% - 24px), var(--content-width));
    }

    .site-header--overlay {
        background: linear-gradient(180deg, rgba(4, 8, 9, 0.74), rgba(4, 8, 9, 0));
    }

    .brand {
        gap: 7px;
    }

    .brand-word {
        font-size: 21px;
    }

    .brand-local {
        max-width: 72px;
        overflow: hidden;
        font-size: 7px;
        letter-spacing: 0.18em;
        text-overflow: ellipsis;
    }

    .section {
        padding: 64px 0;
    }

    .hero-stage {
        min-height: 650px;
    }

    .hero-stage__media {
        object-position: 64% center;
    }

    .hero-stage__shade {
        background:
            linear-gradient(180deg, rgba(3, 7, 8, 0.42) 0%, rgba(3, 7, 8, 0.73) 52%, rgba(3, 7, 8, 0.97) 100%),
            linear-gradient(90deg, rgba(3, 7, 8, 0.55), rgba(3, 7, 8, 0.1));
    }

    .hero-stage__inner {
        align-items: flex-end;
    }

    .hero-panel {
        padding: 94px 0 56px;
    }

    .hero-panel h1 {
        margin-bottom: 18px;
        font-size: clamp(39px, 12vw, 51px);
        line-height: 1.04;
    }

    .hero-panel p {
        margin-bottom: 25px;
        font-size: 15px;
        line-height: 1.6;
    }

    .button-row,
    .button-row .btn,
    .newsletter-actions,
    .newsletter-actions .btn {
        width: 100%;
    }

    .section-title-row {
        align-items: flex-start;
        flex-direction: column;
        gap: 16px;
    }

    .section-title-row--center {
        align-items: center;
    }

    .section-title-row h2 {
        font-size: clamp(31px, 9.6vw, 42px);
    }

    .editorial-grid {
        grid-template-rows: 440px 330px 330px;
        gap: 12px;
    }

    .editorial-card__copy,
    .editorial-card__copy--dark {
        top: auto;
        right: 0;
        bottom: 0;
        left: 0;
        width: auto;
        padding: 25px;
    }

    .editorial-card--large .editorial-card__veil {
        background: linear-gradient(180deg, rgba(3, 7, 8, 0.12) 20%, rgba(3, 7, 8, 0.92) 100%);
    }

    .editorial-card__copy h3 {
        font-size: 28px;
    }

    .category-rail {
        display: grid;
        grid-auto-flow: column;
        grid-auto-columns: minmax(230px, 78vw);
        grid-template-columns: none;
        gap: 12px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        padding: 4px 2px 14px;
        scroll-snap-type: inline mandatory;
        scrollbar-width: thin;
        scrollbar-color: var(--brand) transparent;
    }

    .category-tile {
        scroll-snap-align: start;
    }

    .category-tile__visual {
        height: 190px;
    }

    .product-showcase,
    .product-grid--catalog {
        grid-template-columns: 1fr;
    }

    .product-card__media {
        height: min(82vw, 340px);
    }

    .product-card__content {
        padding: 22px;
    }

    .help-card {
        padding: 28px;
    }

    .store-feature__media,
    .store-layout__image {
        min-height: 360px;
    }

    .store-feature__copy,
    .store-layout__info,
    .store-location__content {
        padding: 42px 24px;
    }

    .store-feature__copy h2,
    .store-layout__info h2,
    .store-location__content h2 {
        font-size: 37px;
    }

    .store-location__map,
    .store-location__map iframe {
        min-height: 300px;
    }

    .store-location__meta,
    .review-grid {
        grid-template-columns: 1fr;
    }

    .reviews-panel {
        margin-inline: -2px;
        padding: 20px 14px;
    }

    .reviews-panel__head {
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
    }

    .review-card {
        padding: 20px;
    }

    .review-card footer {
        grid-template-columns: 38px minmax(0, 1fr);
    }

    .review-card footer time {
        grid-column: 2;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        min-height: 0;
        align-items: flex-start;
        flex-direction: column;
        padding: 20px 0;
    }

    .mobile-contact-bar {
        position: fixed;
        z-index: 1300;
        right: 0;
        bottom: 0;
        left: 0;
        height: calc(58px + env(safe-area-inset-bottom));
        display: grid;
        grid-template-columns: 1fr 1fr;
        padding: 6px 8px calc(6px + env(safe-area-inset-bottom));
        gap: 8px;
        background: rgba(7, 11, 13, 0.96);
        box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.32);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        transition: transform 0.28s var(--ease), visibility 0.28s ease;
    }

    .mobile-contact-bar a {
        display: grid;
        place-items: center;
        color: #fff;
        background: #152025;
        border-radius: var(--radius-sm);
        font-size: 14px;
        font-weight: 700;
    }

    .mobile-contact-bar a:last-child {
        background: var(--brand-dark);
    }

    body.menu-open .mobile-contact-bar,
    body.filter-open .mobile-contact-bar {
        visibility: hidden;
        transform: translateY(110%);
    }

    .page-hero {
        min-height: 410px;
        padding: calc(var(--header-height) + 74px) 0 62px;
    }

    .page-hero h1 {
        font-size: clamp(39px, 11vw, 52px);
    }

    .page-hero p {
        font-size: 15px;
    }

    .results-head {
        min-height: auto;
        margin-bottom: 18px;
    }

    .campaign-wide {
        min-height: 570px;
    }

    .campaign-wide__veil,
    .campaign-wide--light .campaign-wide__veil {
        background: linear-gradient(180deg, rgba(3, 7, 8, 0.08) 18%, rgba(3, 7, 8, 0.94) 100%);
    }

    .campaign-wide__copy {
        top: auto;
        right: 25px;
        bottom: 28px;
        left: 25px;
        width: auto;
        transform: none;
    }

    .campaign-wide__copy h2 {
        font-size: 40px;
    }

    .store-data div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    .contact-form .full {
        grid-column: auto;
    }

    .contact-form .btn {
        width: 100%;
    }
}

@media (max-width: 390px) {
    .shell {
        width: min(calc(100% - 20px), var(--content-width));
    }

    .brand-local {
        display: none;
    }

    .hero-panel h1,
    .page-hero h1 {
        letter-spacing: -0.045em;
    }

    .category-rail {
        grid-auto-columns: 84vw;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}

/* V10: breadcrumbs, pagination and campaign detail semantics */
.page-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 9px;
    margin: 0 0 24px;
    overflow-x: auto;
    color: #809093;
    font-size: 12px;
    white-space: nowrap;
    scrollbar-width: none;
}

.page-breadcrumbs::-webkit-scrollbar {
    display: none;
}

.page-breadcrumbs a {
    color: #9da9ab;
}

.page-breadcrumbs a:hover,
.page-breadcrumbs strong {
    color: var(--brand-strong);
}

.page-breadcrumbs--light,
.page-breadcrumbs--light a,
.page-breadcrumbs--light strong {
    color: rgba(255, 255, 255, 0.82);
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-top: 34px;
}

.pagination__status {
    min-width: 70px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-align: center;
}

.campaign-detail-hero {
    min-height: 72vh;
}

.campaign-wide__copy h1 {
    margin: 0 0 17px;
    font-size: clamp(37px, 4.3vw, 61px);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.05em;
}

@media (max-width: 720px) {
    .pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .pagination .btn {
        width: 100%;
    }

    .campaign-detail-hero {
        min-height: 620px;
    }
}

/* V11: custom 404 page */
.not-found-page {
    position: relative;
    min-height: 100vh;
    min-height: 100svh;
    display: grid;
    place-items: center;
    padding: calc(var(--header-height) + 80px) 0 90px;
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 78% 20%, rgba(0, 166, 163, 0.22), transparent 30%),
        linear-gradient(135deg, #162124 0%, #0b1113 56%, #070b0d 100%);
}

.not-found-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 84%);
    pointer-events: none;
}

.not-found-page__inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    text-align: center;
}

.not-found-page__code {
    display: block;
    margin-bottom: -22px;
    color: rgba(38, 214, 208, 0.13);
    font-size: clamp(120px, 24vw, 290px);
    font-weight: 800;
    line-height: 0.82;
    letter-spacing: -0.09em;
    user-select: none;
}

.not-found-page h1 {
    margin: 18px auto;
    max-width: 760px;
    font-size: clamp(42px, 6vw, 76px);
    font-weight: 300;
    line-height: 1.04;
    letter-spacing: -0.055em;
}

.not-found-page p {
    max-width: 650px;
    margin: 0 auto 18px;
    color: #b8c4c6;
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.7;
}

.not-found-page__redirect {
    font-size: 14px !important;
}

.not-found-page__redirect strong {
    color: var(--brand-strong);
}

.not-found-page .btn {
    margin-top: 14px;
}


/* V12: defensive responsive fixes */
iframe,
video,
embed,
object {
    max-width: 100%;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    min-width: 0;
}

.button-row > * {
    max-width: 100%;
}

@media (max-width: 620px) {
    input,
    select,
    textarea {
        font-size: 16px;
    }

    .button-row {
        flex-direction: column;
        align-items: stretch;
    }

    .store-layout {
        min-height: auto;
    }
}

/* V12.1 - Full-width store map */
.store-map-full {
    position: relative;
    min-height: clamp(620px, 72vh, 820px);
    overflow: hidden;
    color: var(--text);
    background: #0c1214;
}

.store-map-full__map,
.store-map-full__map iframe {
    width: 100%;
    height: 100%;
    min-height: inherit;
}

.store-map-full__map {
    position: absolute;
    inset: 0;
}

.store-map-full__map iframe {
    display: block;
    border: 0;
    filter: saturate(.88) contrast(1.02);
}

.store-map-full__overlay {
    position: relative;
    z-index: 2;
    width: min(100%, 1440px);
    min-height: inherit;
    margin: 0 auto;
    padding: clamp(32px, 5vw, 76px);
    display: flex;
    align-items: flex-end;
    pointer-events: none;
}

.store-map-full__card {
    width: min(540px, 100%);
    padding: clamp(30px, 4vw, 52px);
    background: rgba(10, 16, 18, .94);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius-lg);
    box-shadow: 0 30px 80px rgba(0, 0, 0, .32);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    pointer-events: auto;
}

.store-map-full__card h2 {
    margin: 0 0 14px;
    font-size: clamp(36px, 4vw, 56px);
    font-weight: 300;
    line-height: 1.06;
    letter-spacing: -.048em;
}

.store-map-full__card > p {
    margin: 0 0 24px;
    color: #b8c4c6;
    line-height: 1.75;
    overflow-wrap: anywhere;
}

@media (max-width: 720px) {
    .store-map-full {
        min-height: auto;
        overflow: visible;
    }

    .store-map-full__map {
        position: relative;
        height: 390px;
        min-height: 390px;
    }

    .store-map-full__map iframe {
        min-height: 390px;
    }

    .store-map-full__overlay {
        min-height: 0;
        padding: 0;
        display: block;
    }

    .store-map-full__card {
        width: 100%;
        padding: 38px 22px 44px;
        border: 0;
        border-radius: 0;
        box-shadow: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
}


/* =========================================================
   V12.2 - Modern customer reviews and store location
   ========================================================= */
.reviews-showcase {
    margin-top: clamp(40px, 6vw, 76px);
    padding: clamp(28px, 4.5vw, 58px);
    color: #0b1517;
    background:
        radial-gradient(circle at 100% 0, rgba(38, 214, 208, .18), transparent 34%),
        linear-gradient(145deg, #f8fbfb, #eef5f5);
    border-radius: clamp(22px, 3vw, 34px);
    box-shadow: 0 24px 70px rgba(0, 0, 0, .16);
}

.reviews-showcase__intro {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: clamp(26px, 5vw, 70px);
    margin-bottom: clamp(26px, 4vw, 42px);
}

.reviews-showcase__copy {
    max-width: 760px;
}

.reviews-showcase__copy .kicker {
    color: var(--brand-dark);
}

.reviews-showcase__copy h2 {
    max-width: 760px;
    margin: 8px 0 14px;
    color: #0a1416;
    font-size: clamp(30px, 4.2vw, 54px);
    font-weight: 300;
    line-height: 1.06;
    letter-spacing: -.05em;
}

.reviews-showcase__copy p {
    max-width: 670px;
    margin: 0;
    color: #526164;
    font-size: 15px;
    line-height: 1.75;
}

.reviews-score {
    min-width: 236px;
    display: flex;
    align-items: center;
    gap: 17px;
    padding: 19px 21px;
    color: #f5ffff;
    background: #0d181a;
    border-radius: 20px;
    box-shadow: 0 16px 36px rgba(5, 14, 16, .18);
}

.reviews-score > strong {
    font-size: 42px;
    font-weight: 300;
    line-height: 1;
    letter-spacing: -.06em;
}

.reviews-score__stars {
    display: flex;
    gap: 2px;
    margin-bottom: 4px;
    color: #455255;
    font-size: 14px;
}

.reviews-score__stars .is-filled {
    color: var(--brand-strong);
}

.reviews-score > div > span {
    display: block;
    color: #a9b5b7;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .02em;
}

.review-grid--modern {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
    gap: 18px;
}

.review-card--modern {
    position: relative;
    min-height: 278px;
    padding: clamp(23px, 3vw, 30px);
    overflow: hidden;
    color: #102023;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(12, 32, 35, .07);
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(14, 31, 34, .07);
    transition: transform .3s var(--ease), box-shadow .3s ease, background .3s ease;
}

.review-card--modern::after {
    content: "";
    position: absolute;
    right: -36px;
    bottom: -55px;
    width: 145px;
    height: 145px;
    background: radial-gradient(circle, rgba(38, 214, 208, .16), transparent 67%);
    pointer-events: none;
}

.review-card--modern:hover {
    background: #fff;
    box-shadow: 0 22px 46px rgba(10, 28, 31, .13);
    transform: translateY(-6px);
}

.review-card__topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.review-card--modern .review-card__rating {
    margin: 0;
    color: #c4cecf;
    font-size: 14px;
}

.review-card__number {
    color: #91a0a2;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
}

.review-card__quote-mark {
    height: 45px;
    margin: 18px 0 3px;
    color: var(--brand);
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: .85;
}

.review-card--modern blockquote {
    position: relative;
    z-index: 1;
    margin: 0 0 28px;
    color: #1e2d30;
    font-size: clamp(15px, 1.35vw, 17px);
    font-weight: 550;
    line-height: 1.7;
}

.review-card--modern footer {
    position: relative;
    z-index: 1;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    margin-top: auto;
    padding-top: 18px;
    border-top: 1px solid rgba(15, 39, 42, .08);
}

.review-card--modern .review-card__avatar {
    width: 44px;
    height: 44px;
    color: #042526;
    background: linear-gradient(145deg, #63e3df, var(--brand-strong));
    box-shadow: 0 7px 18px rgba(0, 166, 163, .21);
}

.review-card--modern footer strong {
    color: #101b1d;
    font-size: 13px;
}

.review-card--modern footer span,
.review-card--modern footer time {
    color: #748285;
    font-size: 11px;
}

.store-location-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 10% 15%, rgba(38, 214, 208, .08), transparent 28%),
        #081013;
}

.store-location-heading {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(260px, .65fr);
    align-items: end;
    gap: clamp(28px, 6vw, 90px);
    margin-bottom: clamp(30px, 4vw, 50px);
}

.store-location-heading h2 {
    margin: 8px 0 0;
    font-size: clamp(36px, 5vw, 66px);
    font-weight: 300;
    line-height: 1.02;
    letter-spacing: -.055em;
}

.store-location-heading > p {
    margin: 0 0 5px;
    color: #9ca9ab;
    font-size: 15px;
    line-height: 1.75;
}

.store-location-modern {
    display: grid;
    grid-template-columns: minmax(0, 1.55fr) minmax(350px, .75fr);
    min-height: 620px;
    overflow: hidden;
    background: #11191c;
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: clamp(22px, 3vw, 34px);
    box-shadow: 0 30px 90px rgba(0, 0, 0, .3);
}

.store-location-modern__map {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    background: #d9e0e0;
}

.store-location-modern__map iframe {
    width: 100%;
    height: 100%;
    min-height: inherit;
    display: block;
    border: 0;
    filter: saturate(.72) contrast(1.02);
}

.store-location-modern__map::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 72%, rgba(8, 16, 19, .22));
    pointer-events: none;
}

.store-location-modern__map-badge {
    position: absolute;
    z-index: 2;
    left: 22px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: #102023;
    background: rgba(255, 255, 255, .92);
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.store-location-modern__map-badge span {
    width: 9px;
    height: 9px;
    background: var(--brand);
    border-radius: 50%;
    box-shadow: 0 0 0 5px rgba(0, 166, 163, .13);
}

.store-location-modern__map-badge b {
    font-size: 12px;
}

.store-location-modern__details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(30px, 4.3vw, 58px);
    background:
        radial-gradient(circle at 100% 0, rgba(38, 214, 208, .09), transparent 32%),
        #11191c;
}

.store-location-modern__eyebrow {
    color: var(--brand-strong);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.store-location-modern__details h3 {
    margin: 12px 0 14px;
    font-size: clamp(30px, 3.2vw, 46px);
    font-weight: 300;
    line-height: 1.06;
    letter-spacing: -.045em;
}

.store-location-modern__lead {
    margin: 0 0 28px;
    color: #9ba8aa;
    font-size: 14px;
    line-height: 1.75;
}

.store-location-modern__list {
    display: grid;
    gap: 2px;
    border-top: 1px solid rgba(255, 255, 255, .08);
}

.store-location-modern__item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.store-location-modern__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    color: var(--brand-strong);
    background: rgba(38, 214, 208, .08);
    border-radius: 13px;
}

.store-location-modern__icon svg {
    width: 21px;
    height: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.store-location-modern__item small,
.store-location-modern__item strong {
    display: block;
}

.store-location-modern__item small {
    margin-bottom: 3px;
    color: #738184;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.store-location-modern__item strong {
    color: #eaf0f0;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.55;
    overflow-wrap: anywhere;
}

.store-location-modern__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

@media (max-width: 980px) {
    .reviews-showcase__intro,
    .store-location-heading {
        grid-template-columns: 1fr;
    }

    .reviews-score {
        width: fit-content;
    }

    .store-location-modern {
        grid-template-columns: 1fr;
    }

    .store-location-modern__map,
    .store-location-modern__map iframe {
        min-height: 470px;
    }

    .store-location-modern__map::after {
        display: none;
    }
}

@media (max-width: 620px) {
    .reviews-showcase {
        margin-inline: -2px;
        padding: 28px 18px;
        border-radius: 22px;
    }

    .reviews-score {
        width: 100%;
        min-width: 0;
    }

    .review-card--modern {
        min-height: 250px;
    }

    .review-card--modern footer {
        grid-template-columns: 44px minmax(0, 1fr);
    }

    .review-card--modern footer time {
        grid-column: 2;
    }

    .store-location-modern {
        min-height: 0;
        border-radius: 22px;
    }

    .store-location-modern__map,
    .store-location-modern__map iframe {
        min-height: 360px;
    }

    .store-location-modern__map-badge {
        left: 14px;
        bottom: 14px;
    }

    .store-location-modern__details {
        padding: 32px 20px;
    }

    .store-location-modern__actions {
        flex-direction: column;
    }
}

/* Store location: visual + map */
.store-location-modern--visual-map {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    min-height: 540px;
}

.store-location-modern--visual-map .store-location-modern__visual {
    position: relative;
    min-width: 0;
    min-height: 540px;
    margin: 0;
    overflow: hidden;
    background: #11191c;
}

.store-location-modern--visual-map .store-location-modern__visual::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, transparent 72%, rgba(8, 16, 19, .14)),
        linear-gradient(0deg, rgba(8, 16, 19, .18), transparent 35%);
    pointer-events: none;
}

.store-location-modern--visual-map .store-location-modern__visual img {
    width: 100%;
    height: 100%;
    min-height: 540px;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform .7s cubic-bezier(.2, .75, .25, 1);
}

.store-location-modern--visual-map:hover .store-location-modern__visual img {
    transform: scale(1.025);
}

.store-location-modern--visual-map .store-location-modern__map,
.store-location-modern--visual-map .store-location-modern__map iframe {
    width: 100%;
    min-height: 540px;
}

.store-location-modern--visual-map .store-location-modern__map::after {
    background: linear-gradient(90deg, rgba(8, 16, 19, .12), transparent 24%);
}

@media (max-width: 980px) {
    .store-location-modern--visual-map {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .store-location-modern--visual-map .store-location-modern__visual,
    .store-location-modern--visual-map .store-location-modern__visual img {
        min-height: 390px;
    }

    .store-location-modern--visual-map .store-location-modern__map,
    .store-location-modern--visual-map .store-location-modern__map iframe {
        min-height: 460px;
    }
}

@media (max-width: 620px) {
    .store-location-modern--visual-map .store-location-modern__visual,
    .store-location-modern--visual-map .store-location-modern__visual img {
        min-height: 245px;
    }

    .store-location-modern--visual-map .store-location-modern__map,
    .store-location-modern--visual-map .store-location-modern__map iframe {
        min-height: 360px;
    }
}


/* =========================================================
   V13.0 - Premium reviews + AOS motion
   ========================================================= */
.reviews-showcase {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: clamp(30px, 4.8vw, 62px);
    background:
        radial-gradient(circle at 92% 8%, rgba(0, 153, 153, .16), transparent 28%),
        radial-gradient(circle at 7% 95%, rgba(38, 214, 208, .10), transparent 30%),
        linear-gradient(145deg, #fbfdfd 0%, #eef5f5 100%);
    border: 1px solid rgba(5, 42, 45, .08);
    border-radius: 26px;
    box-shadow: 0 28px 75px rgba(7, 26, 29, .13);
}

.reviews-showcase::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent 0%, var(--brand) 24%, var(--brand-strong) 70%, transparent 100%);
    opacity: .78;
}

.reviews-showcase::after {
    content: "";
    position: absolute;
    z-index: -1;
    top: -120px;
    right: -105px;
    width: 330px;
    height: 330px;
    border: 1px solid rgba(0, 153, 153, .12);
    border-radius: 50%;
    box-shadow: 0 0 0 42px rgba(0, 153, 153, .035), 0 0 0 88px rgba(0, 153, 153, .025);
    pointer-events: none;
}

.reviews-showcase__intro {
    position: relative;
    z-index: 2;
    align-items: center;
    padding-bottom: clamp(25px, 3.5vw, 38px);
    border-bottom: 1px solid rgba(11, 42, 45, .09);
}

.reviews-showcase__copy h2 {
    max-width: 690px;
    font-weight: 400;
    letter-spacing: -.045em;
}

.reviews-showcase__copy p {
    max-width: 620px;
    color: #5b696c;
}

.reviews-score {
    position: relative;
    min-width: 248px;
    overflow: hidden;
    padding: 21px 23px;
    background:
        radial-gradient(circle at 100% 0%, rgba(38, 214, 208, .25), transparent 48%),
        linear-gradient(145deg, #101d1f, #071113);
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: 18px;
    box-shadow: 0 18px 42px rgba(5, 19, 21, .22);
}

.reviews-score::after {
    content: "";
    position: absolute;
    right: -28px;
    bottom: -48px;
    width: 105px;
    height: 105px;
    border: 1px solid rgba(72, 226, 220, .28);
    border-radius: 50%;
}

.reviews-score > strong {
    position: relative;
    z-index: 1;
    color: #fff;
    font-weight: 500;
}

.reviews-score__stars {
    position: relative;
    z-index: 1;
    gap: 3px;
    font-size: 15px;
}

.reviews-score > div > span {
    position: relative;
    z-index: 1;
    color: #b8c4c6;
    font-size: 11px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.review-grid--modern {
    position: relative;
    z-index: 2;
    gap: clamp(16px, 2vw, 22px);
}

.review-card--modern {
    display: flex;
    flex-direction: column;
    min-height: 292px;
    padding: clamp(24px, 2.8vw, 31px);
    background:
        linear-gradient(145deg, rgba(255, 255, 255, .98), rgba(248, 252, 252, .94));
    border: 1px solid rgba(9, 51, 54, .09);
    border-radius: 18px;
    box-shadow: 0 12px 34px rgba(8, 32, 35, .08);
    transition:
        transform .38s var(--ease),
        box-shadow .38s ease,
        border-color .38s ease;
}

.review-card--modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 24px;
    width: 54px;
    height: 3px;
    background: linear-gradient(90deg, var(--brand), var(--brand-strong));
    border-radius: 0 0 8px 8px;
    transition: width .38s var(--ease);
}

.review-card--modern::after {
    right: -52px;
    bottom: -68px;
    width: 172px;
    height: 172px;
    background: radial-gradient(circle, rgba(38, 214, 208, .15), transparent 66%);
    transition: transform .45s var(--ease), opacity .35s ease;
}

.review-card--modern:hover {
    border-color: rgba(0, 153, 153, .25);
    box-shadow: 0 25px 52px rgba(7, 31, 34, .14);
    transform: translateY(-8px);
}

.review-card--modern:hover::before {
    width: calc(100% - 48px);
}

.review-card--modern:hover::after {
    opacity: .95;
    transform: scale(1.14);
}

.review-card__topline {
    min-height: 26px;
}

.review-card__meta-top {
    display: flex;
    align-items: center;
    gap: 10px;
}

.review-card__tag {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 10px;
    color: #356265;
    background: rgba(0, 153, 153, .08);
    border: 1px solid rgba(0, 153, 153, .10);
    border-radius: 999px;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.review-card__number {
    color: #8a989a;
    font-size: 10px;
}

.review-card__quote-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    margin: 20px 0 10px;
    color: #006f70;
    background: linear-gradient(145deg, rgba(38, 214, 208, .17), rgba(0, 153, 153, .07));
    border: 1px solid rgba(0, 153, 153, .10);
    border-radius: 14px;
    font-size: 48px;
    line-height: 1;
}

.review-card--modern blockquote {
    flex: 1;
    margin-bottom: 26px;
    color: #17282b;
    font-size: clamp(15px, 1.3vw, 17px);
    font-weight: 600;
    line-height: 1.68;
    letter-spacing: -.01em;
}

.review-card--modern footer {
    grid-template-columns: 48px minmax(0, 1fr) auto;
    padding-top: 19px;
    border-top-color: rgba(8, 48, 51, .09);
}

.review-card--modern .review-card__avatar {
    width: 48px;
    height: 48px;
    border: 3px solid rgba(255, 255, 255, .9);
    box-shadow: 0 0 0 1px rgba(0, 153, 153, .13), 0 8px 20px rgba(0, 153, 153, .20);
}

.review-card--modern footer strong {
    font-size: 13px;
    font-weight: 800;
}

.review-card--modern footer span,
.review-card--modern footer time {
    margin-top: 3px;
    color: #778689;
}

.review-card--modern footer time {
    padding: 6px 9px;
    background: #f2f6f6;
    border-radius: 8px;
    white-space: nowrap;
}

@media (max-width: 860px) {
    .reviews-showcase__intro {
        grid-template-columns: 1fr;
        align-items: start;
    }

    .reviews-score {
        width: fit-content;
    }
}

@media (max-width: 620px) {
    .reviews-showcase {
        padding: 26px 16px;
        border-radius: 20px;
    }

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

    .reviews-score {
        width: 100%;
        border-radius: 16px;
    }

    .review-card--modern {
        min-height: 270px;
        border-radius: 16px;
    }

    .review-card__tag {
        padding-inline: 8px;
        font-size: 8px;
    }

    .review-card--modern footer {
        grid-template-columns: 48px minmax(0, 1fr);
    }

    .review-card--modern footer time {
        grid-column: 2;
        width: fit-content;
        margin-top: 7px;
    }
}

@media (prefers-reduced-motion: reduce) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* Facebook benzeri yorum akışı */
.review-feed {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 16px;
    max-width: 1080px;
}

.review-thread {
    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    align-items: start;
    gap: 14px;
}

.review-thread__avatar {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 30% 25%, rgba(255,255,255,.24), transparent 28%),
        linear-gradient(145deg, #078f91, #005e61);
    border: 3px solid rgba(255, 255, 255, .96);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(0, 125, 128, .12), 0 10px 24px rgba(0, 87, 90, .18);
    font-size: 18px;
    font-weight: 800;
    text-transform: uppercase;
}

.review-thread__content {
    min-width: 0;
}

.review-thread__bubble {
    position: relative;
    min-height: 104px;
    padding: 17px 20px 18px;
    overflow: visible;
    background: linear-gradient(145deg, rgba(255,255,255,.99), rgba(245,249,249,.98));
    border: 1px solid rgba(7, 67, 70, .10);
    border-radius: 9px 24px 24px 24px;
    box-shadow: 0 9px 28px rgba(8, 37, 40, .07);
    transition: transform .32s var(--ease), box-shadow .32s ease, border-color .32s ease;
}

.review-thread__bubble::before {
    content: "";
    position: absolute;
    top: 18px;
    left: -8px;
    width: 16px;
    height: 16px;
    background: #fbfdfd;
    border-left: 1px solid rgba(7, 67, 70, .10);
    border-bottom: 1px solid rgba(7, 67, 70, .10);
    border-radius: 0 0 0 4px;
    transform: rotate(45deg);
}

.review-thread:hover .review-thread__bubble {
    border-color: rgba(0, 153, 153, .24);
    box-shadow: 0 16px 36px rgba(6, 39, 42, .11);
    transform: translateX(5px);
}

.review-thread__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 9px;
}

.review-thread__person {
    min-width: 0;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px 10px;
}

.review-thread__person strong {
    color: #12282b;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: -.01em;
}

.review-thread__person span {
    display: inline-flex;
    align-items: center;
    min-height: 23px;
    padding: 0 9px;
    color: #577073;
    background: rgba(0, 153, 153, .07);
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
}

.review-thread__rating {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 2px;
    min-height: 27px;
    padding: 0 9px;
    background: #eef5f5;
    border-radius: 999px;
    color: #cbd4d5;
    font-size: 12px;
    line-height: 1;
}

.review-thread__rating .is-filled {
    color: #e8a81a;
}

.review-thread__bubble p {
    margin: 0;
    color: #263a3d;
    font-size: clamp(14px, 1.15vw, 16px);
    font-weight: 500;
    line-height: 1.68;
    overflow-wrap: anywhere;
}

.review-thread__meta {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 7px 8px 0 13px;
    color: #829093;
    font-size: 10px;
}

.review-thread__verified {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #297174;
    font-weight: 750;
}

.review-thread__verified::before {
    content: "✓";
    width: 16px;
    height: 16px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #078f91;
    border-radius: 50%;
    font-size: 9px;
    font-weight: 900;
}

.review-thread__meta time {
    position: relative;
    padding-left: 10px;
}

.review-thread__meta time::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 3px;
    background: #a5b1b3;
    border-radius: 50%;
    transform: translateY(-50%);
}

@media (max-width: 620px) {
    .review-feed {
        gap: 14px;
    }

    .review-thread {
        grid-template-columns: 42px minmax(0, 1fr);
        gap: 10px;
    }

    .review-thread__avatar {
        width: 42px;
        height: 42px;
        border-width: 2px;
        font-size: 14px;
    }

    .review-thread__bubble {
        min-height: 0;
        padding: 14px 15px 15px;
        border-radius: 8px 19px 19px 19px;
    }

    .review-thread__bubble::before {
        top: 14px;
        left: -6px;
        width: 12px;
        height: 12px;
    }

    .review-thread__head {
        align-items: flex-start;
        gap: 9px;
    }

    .review-thread__person {
        display: grid;
        gap: 4px;
    }

    .review-thread__person span {
        width: fit-content;
    }

    .review-thread__rating {
        padding-inline: 7px;
        font-size: 10px;
    }

    .review-thread__meta {
        flex-wrap: wrap;
        padding-left: 7px;
    }
}

/* Sade sosyal medya tipi yorum akışı — v15 */
.social-reviews {
    position: relative;
    margin-top: clamp(46px, 6vw, 82px);
    padding: clamp(28px, 4vw, 48px);
    overflow: hidden;
    background: linear-gradient(135deg, rgba(255,255,255,.94), rgba(246,249,249,.98));
    border: 1px solid rgba(8, 49, 52, .07);
    border-radius: 28px;
    box-shadow: 0 24px 70px rgba(14, 46, 49, .07);
}

.social-reviews::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #009999, #67d5d2 52%, transparent 92%);
}

.social-reviews__heading {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 28px;
    margin-bottom: 30px;
}

.social-reviews__heading h2 {
    max-width: 720px;
    margin: 7px 0 9px;
    font-size: clamp(27px, 4vw, 48px);
    line-height: 1.06;
    letter-spacing: -.045em;
}

.social-reviews__heading p {
    max-width: 620px;
    margin: 0;
    color: #657477;
    font-size: 14px;
    line-height: 1.65;
}

.social-reviews__summary {
    flex: 0 0 auto;
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 2px 12px;
    min-width: 180px;
    padding: 15px 18px;
    color: #102d30;
    background: #fff;
    border: 1px solid rgba(0, 153, 153, .13);
    border-radius: 18px;
    box-shadow: 0 12px 28px rgba(13, 53, 56, .08);
}

.social-reviews__summary-score {
    grid-row: 1 / span 2;
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -.06em;
}

.social-reviews__summary-stars {
    display: inline-flex;
    gap: 1px;
    color: #d5dddd;
    font-size: 12px;
    line-height: 1;
}

.social-reviews__summary-stars i,
.social-comment__stars i {
    font-style: normal;
}

.social-reviews__summary-stars .is-filled,
.social-comment__stars .is-filled {
    color: #f3ab19;
}

.social-reviews__summary small {
    color: #738184;
    font-size: 10px;
    font-weight: 700;
}

.social-comment-list {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 13px;
    max-width: 1000px;
}

.social-comment {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
    gap: 12px;
}

.social-comment__avatar {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #fff;
    background: linear-gradient(145deg, #00a7a7, #006b6e);
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 7px 18px rgba(0, 104, 108, .18);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
}

.social-comment__body {
    min-width: 0;
}

.social-comment__tube {
    position: relative;
    width: 100%;
    padding: 14px 20px 15px;
    color: #1f2e30;
    background: #edf1f2;
    border-radius: 22px 22px 22px 7px;
    transition: background-color .25s ease, transform .25s ease, box-shadow .25s ease;
}

.social-comment__tube::before {
    content: "";
    position: absolute;
    left: -6px;
    top: 17px;
    width: 13px;
    height: 13px;
    background: #edf1f2;
    border-radius: 0 0 0 3px;
    transform: rotate(45deg);
    transition: background-color .25s ease;
}

.social-comment:hover .social-comment__tube {
    background: #e7eeee;
    box-shadow: 0 10px 24px rgba(21, 54, 57, .07);
    transform: translateX(3px);
}

.social-comment:hover .social-comment__tube::before {
    background: #e7eeee;
}

.social-comment__identity {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 5px 9px;
    margin-bottom: 5px;
}

.social-comment__identity strong {
    color: #132b2e;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: -.01em;
}

.social-comment__identity span {
    color: #7a888a;
    font-size: 10px;
    font-weight: 650;
}

.social-comment__tube p {
    margin: 0;
    color: #2e4144;
    font-size: clamp(13px, 1.05vw, 15px);
    font-weight: 500;
    line-height: 1.58;
    overflow-wrap: anywhere;
}

.social-comment__footer {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 25px;
    padding: 5px 8px 0 12px;
    color: #8a9698;
}

.social-comment__stars {
    display: inline-flex;
    gap: 1px;
    color: #d0d8d9;
    font-size: 10px;
    line-height: 1;
}

.social-comment__footer time {
    position: relative;
    padding-left: 10px;
    font-size: 9px;
    font-weight: 650;
}

.social-comment__footer time::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 3px;
    height: 3px;
    background: #aab4b5;
    border-radius: 50%;
    transform: translateY(-50%);
}

@media (max-width: 760px) {
    .social-reviews {
        padding: 25px 18px;
        border-radius: 22px;
    }

    .social-reviews__heading {
        display: grid;
        align-items: start;
        gap: 18px;
        margin-bottom: 24px;
    }

    .social-reviews__summary {
        min-width: 0;
        width: fit-content;
    }

    .social-comment {
        grid-template-columns: 40px minmax(0, 1fr);
        gap: 9px;
    }

    .social-comment__avatar {
        width: 40px;
        height: 40px;
        border-width: 2px;
        font-size: 13px;
    }

    .social-comment__tube {
        padding: 12px 15px 13px;
        border-radius: 18px 18px 18px 6px;
    }

    .social-comment__tube::before {
        top: 14px;
        left: -5px;
        width: 11px;
        height: 11px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .social-comment__tube {
        transition: none;
    }
}

/* Siemens deneyim akışı — hareketli yorum alanı v16 */
.review-drift {
    position: relative;
    margin-top: clamp(46px, 6vw, 84px);
    padding: clamp(30px, 4.6vw, 58px);
    overflow: hidden;
    color: #fff;
    background:
        radial-gradient(circle at 12% 14%, rgba(0, 212, 205, .17), transparent 31%),
        radial-gradient(circle at 88% 82%, rgba(0, 153, 153, .15), transparent 30%),
        linear-gradient(145deg, #071316 0%, #0a2427 54%, #071719 100%);
    border: 1px solid rgba(119, 232, 226, .13);
    border-radius: 36px;
    box-shadow: 0 35px 90px rgba(5, 25, 28, .18);
    isolation: isolate;
}

.review-drift::before,
.review-drift::after {
    content: "";
    position: absolute;
    pointer-events: none;
    z-index: -1;
}

.review-drift::before {
    inset: -34% -10% auto auto;
    width: 560px;
    aspect-ratio: 1;
    border: 1px solid rgba(86, 222, 216, .13);
    border-radius: 50%;
    box-shadow:
        0 0 0 62px rgba(80, 218, 212, .025),
        0 0 0 128px rgba(80, 218, 212, .018);
}

.review-drift::after {
    left: -110px;
    bottom: -150px;
    width: 420px;
    height: 280px;
    background: radial-gradient(ellipse, rgba(0, 171, 171, .16), transparent 68%);
    filter: blur(8px);
}

.review-drift__heading {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 34px;
    margin-bottom: 28px;
}

.review-drift__heading h2 {
    max-width: 760px;
    margin: 8px 0 12px;
    color: #fff;
    font-size: clamp(31px, 4.6vw, 62px);
    line-height: .98;
    letter-spacing: -.055em;
}

.review-drift__heading p {
    max-width: 650px;
    margin: 0;
    color: rgba(226, 242, 242, .68);
    font-size: clamp(13px, 1.25vw, 16px);
    line-height: 1.7;
}

.review-drift__aside {
    flex: 0 0 auto;
    display: grid;
    justify-items: end;
    gap: 11px;
}

.review-drift__summary {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    gap: 2px 13px;
    min-width: 190px;
    padding: 16px 18px;
    color: #fff;
    background: rgba(255, 255, 255, .075);
    border: 1px solid rgba(152, 235, 231, .16);
    border-radius: 22px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .07), 0 18px 40px rgba(1, 13, 15, .18);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
}

.review-drift__score {
    grid-row: 1 / span 2;
    font-size: 35px;
    font-weight: 800;
    letter-spacing: -.065em;
}

.review-drift__stars,
.review-float__stars {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    color: rgba(255, 255, 255, .22);
    line-height: 1;
}

.review-drift__stars {
    font-size: 12px;
}

.review-drift__stars i,
.review-float__stars i {
    font-style: normal;
}

.review-drift__stars .is-filled,
.review-float__stars .is-filled {
    color: #f4b43f;
}

.review-drift__summary small {
    color: rgba(230, 246, 246, .62);
    font-size: 10px;
    font-weight: 750;
}

.review-motion-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 13px;
    color: rgba(235, 249, 249, .78);
    background: transparent;
    border: 1px solid rgba(177, 235, 232, .14);
    border-radius: 999px;
    cursor: pointer;
    font: inherit;
    font-size: 10px;
    font-weight: 750;
    transition: color .25s ease, background-color .25s ease, border-color .25s ease;
}

.review-motion-toggle:hover,
.review-motion-toggle:focus-visible,
.review-motion-toggle[aria-pressed="true"] {
    color: #fff;
    background: rgba(255, 255, 255, .08);
    border-color: rgba(132, 232, 226, .28);
    outline: none;
}

.review-motion-toggle__icon {
    position: relative;
    width: 14px;
    height: 14px;
    display: inline-block;
}

.review-motion-toggle__icon::before,
.review-motion-toggle__icon::after {
    content: "";
    position: absolute;
    top: 2px;
    bottom: 2px;
    width: 3px;
    background: #51d1cd;
    border-radius: 4px;
    transition: transform .25s ease, width .25s ease;
}

.review-motion-toggle__icon::before { left: 2px; }
.review-motion-toggle__icon::after { right: 2px; }

.review-motion-toggle[aria-pressed="true"] .review-motion-toggle__icon::before {
    inset: 2px auto 2px 3px;
    width: 0;
}

.review-motion-toggle[aria-pressed="true"] .review-motion-toggle__icon::after {
    top: 1px;
    right: 1px;
    bottom: auto;
    width: 0;
    height: 0;
    background: transparent;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 9px solid #51d1cd;
    border-radius: 0;
}

.review-pond {
    position: relative;
    z-index: 2;
    display: grid;
    gap: 14px;
    min-height: 430px;
    padding: 20px;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.012)),
        radial-gradient(circle at 18% 20%, rgba(16, 189, 188, .08), transparent 34%),
        radial-gradient(circle at 78% 72%, rgba(77, 211, 206, .06), transparent 30%);
    border: 1px solid rgba(143, 226, 222, .11);
    border-radius: 30px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,.045), inset 0 -30px 90px rgba(0,0,0,.08);
}

.review-pond.is-drifting {
    display: block;
    height: clamp(570px, 58vw, 700px);
    min-height: 0;
    padding: 0;
}

.review-pond__current,
.review-pond__glow {
    position: absolute;
    pointer-events: none;
    opacity: 0;
}

.review-pond.is-drifting .review-pond__current,
.review-pond.is-drifting .review-pond__glow {
    opacity: 1;
}

.review-pond__current {
    width: 480px;
    height: 180px;
    border: 1px solid rgba(92, 218, 212, .09);
    border-radius: 50%;
    filter: blur(.2px);
}

.review-pond__current--one {
    left: -90px;
    top: 16%;
    transform: rotate(-12deg);
    animation: reviewCurrentOne 15s ease-in-out infinite alternate;
}

.review-pond__current--two {
    right: -120px;
    bottom: 12%;
    transform: rotate(16deg);
    animation: reviewCurrentTwo 18s ease-in-out infinite alternate;
}

.review-pond__glow {
    left: 50%;
    top: 50%;
    width: 240px;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(0, 192, 190, .12), transparent 69%);
    filter: blur(16px);
    transform: translate(-50%, -50%);
    animation: reviewGlow 12s ease-in-out infinite alternate;
}

.review-float {
    position: relative;
    z-index: 2;
    width: min(410px, calc(100% - 8px));
    outline: none;
}

.review-pond.is-drifting .review-float {
    position: absolute;
    left: 0;
    top: 0;
    margin: 0;
    will-change: transform;
}

.review-float__card {
    position: relative;
    display: grid;
    grid-template-columns: 50px minmax(0, 1fr);
    align-items: start;
    gap: 13px;
    padding: 15px 17px 15px 15px;
    color: #183033;
    background:
        linear-gradient(145deg, rgba(255,255,255,.98), rgba(239,247,247,.95));
    border: 1px solid rgba(158, 231, 227, .28);
    border-radius: 24px 24px 24px 9px;
    box-shadow: 0 18px 42px rgba(0, 15, 18, .22), inset 0 1px 0 rgba(255,255,255,.9);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    transform-origin: center;
    transition: transform .3s cubic-bezier(.2,.8,.2,1), box-shadow .3s ease, border-color .3s ease;
}

.review-float__card::before {
    content: "";
    position: absolute;
    left: -7px;
    top: 24px;
    width: 14px;
    height: 14px;
    background: #f7fbfb;
    border-left: 1px solid rgba(158, 231, 227, .28);
    border-bottom: 1px solid rgba(158, 231, 227, .28);
    border-radius: 0 0 0 4px;
    transform: rotate(45deg);
}

.review-float:hover,
.review-float:focus-visible,
.review-float.is-paused {
    z-index: 10;
}

.review-float:hover .review-float__card,
.review-float:focus-visible .review-float__card,
.review-float.is-paused .review-float__card {
    border-color: rgba(73, 210, 203, .54);
    box-shadow: 0 28px 60px rgba(0, 12, 14, .32), 0 0 0 1px rgba(81, 209, 205, .10);
    transform: scale(1.025);
}

.review-float__avatar {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    color: #fff;
    background:
        radial-gradient(circle at 28% 22%, rgba(255,255,255,.26), transparent 30%),
        linear-gradient(145deg, #0cb0ad, #006c70);
    border: 3px solid rgba(255,255,255,.95);
    border-radius: 50%;
    box-shadow: 0 8px 20px rgba(0, 111, 114, .2);
    font-size: 15px;
    font-weight: 850;
    text-transform: uppercase;
}

.review-float__content {
    min-width: 0;
}

.review-float__topline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 7px;
}

.review-float__topline > div {
    min-width: 0;
    display: grid;
    gap: 2px;
}

.review-float__topline strong {
    overflow: hidden;
    color: #102c2f;
    font-size: 13px;
    font-weight: 850;
    letter-spacing: -.012em;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.review-float__topline span:not(.review-float__stars) {
    color: #718486;
    font-size: 9px;
    font-weight: 700;
}

.review-float__stars {
    flex: 0 0 auto;
    gap: 1px;
    padding-top: 2px;
    color: #cbd6d7;
    font-size: 9px;
}

.review-float__content p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #314749;
    font-size: clamp(12px, 1vw, 14px);
    font-weight: 520;
    line-height: 1.55;
    overflow-wrap: anywhere;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.review-float__content time {
    display: block;
    margin-top: 8px;
    color: #91a0a2;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: .02em;
}

.review-drift__hint {
    position: relative;
    z-index: 2;
    margin: 15px 4px 0;
    color: rgba(216, 237, 237, .48);
    font-size: 9px;
    font-weight: 650;
    text-align: right;
}

@keyframes reviewCurrentOne {
    from { transform: translate3d(0, 0, 0) rotate(-12deg) scale(1); }
    to { transform: translate3d(120px, 34px, 0) rotate(-5deg) scale(1.12); }
}

@keyframes reviewCurrentTwo {
    from { transform: translate3d(0, 0, 0) rotate(16deg) scale(1); }
    to { transform: translate3d(-110px, -28px, 0) rotate(7deg) scale(1.08); }
}

@keyframes reviewGlow {
    from { transform: translate(-58%, -46%) scale(.84); opacity: .52; }
    to { transform: translate(-36%, -58%) scale(1.25); opacity: 1; }
}

@media (max-width: 900px) {
    .review-drift {
        border-radius: 28px;
    }

    .review-drift__heading {
        align-items: flex-start;
    }

    .review-pond.is-drifting {
        height: 640px;
    }

    .review-float {
        width: min(360px, calc(100% - 8px));
    }
}

@media (max-width: 760px) {
    .review-drift {
        padding: 27px 18px;
        border-radius: 24px;
    }

    .review-drift__heading {
        display: grid;
        gap: 22px;
        margin-bottom: 20px;
    }

    .review-drift__heading h2 br {
        display: none;
    }

    .review-drift__aside {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
    }

    .review-drift__summary {
        min-width: 170px;
        padding: 13px 15px;
        border-radius: 18px;
    }

    .review-drift__score {
        font-size: 30px;
    }

    .review-motion-toggle {
        display: none;
    }

    .review-pond,
    .review-pond.is-drifting {
        height: auto;
        min-height: 0;
        display: grid;
        gap: 13px;
        padding: 0;
        overflow: visible;
        background: transparent;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .review-pond__current,
    .review-pond__glow {
        display: none;
    }

    .review-float,
    .review-pond.is-drifting .review-float {
        position: relative;
        left: auto;
        top: auto;
        width: 100%;
        transform: none !important;
        will-change: auto;
    }

    .review-float__card {
        grid-template-columns: 44px minmax(0, 1fr);
        gap: 11px;
        padding: 14px;
        border-radius: 20px 20px 20px 8px;
    }

    .review-float__card::before {
        top: 21px;
    }

    .review-float__avatar {
        width: 44px;
        height: 44px;
        font-size: 13px;
    }

    .review-drift__hint {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .review-pond,
    .review-pond.is-drifting {
        height: auto;
        min-height: 0;
        display: grid;
        gap: 14px;
        padding: 0;
        overflow: visible;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .review-float,
    .review-pond.is-drifting .review-float {
        position: relative;
        width: 100%;
        transform: none !important;
        will-change: auto;
    }

    .review-pond__current,
    .review-pond__glow,
    .review-motion-toggle,
    .review-drift__hint {
        display: none;
    }
}

.review-float__aos {
    width: 100%;
}
