@charset "UTF-8";

:root {
    --ink: #172033;
    --ink-soft: #344056;
    --muted: #69758b;
    --line: rgba(92, 112, 151, 0.17);
    --glass: rgba(255, 255, 255, 0.68);
    --glass-strong: rgba(255, 255, 255, 0.88);
    --blue: #1976ff;
    --blue-deep: #3b4df5;
    --purple: #8b5cf6;
    --pink: #ed63b7;
    --cyan: #4ad7e9;
    --green: #29b780;
    --surface-shadow: 0 28px 70px rgba(48, 66, 112, 0.12), 0 4px 18px rgba(55, 76, 120, 0.06);
    --soft-shadow: 0 16px 40px rgba(48, 66, 112, 0.1);
    --radius-xl: 36px;
    --radius-lg: 28px;
    --radius-md: 22px;
    --radius-sm: 16px;
    --shell: 1240px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 140px;
}

body {
    margin: 0;
    min-width: 320px;
    color: var(--ink);
    background: #f4f7fc;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.55;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -3;
    background:
        radial-gradient(circle at 15% 4%, rgba(117, 198, 255, 0.28), transparent 29%),
        radial-gradient(circle at 85% 14%, rgba(189, 140, 255, 0.2), transparent 31%),
        radial-gradient(circle at 58% 75%, rgba(244, 160, 219, 0.14), transparent 28%),
        linear-gradient(145deg, #f8fbff 0%, #eef3fb 50%, #f9f5fb 100%);
}

button,
input,
select,
textarea {
    color: inherit;
    font: inherit;
}

button,
select {
    cursor: pointer;
}

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

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

p,
h1,
h2,
h3,
ul {
    margin-top: 0;
}

h1,
h2,
h3 {
    letter-spacing: -0.045em;
    line-height: 1.04;
}

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

.glass-surface {
    border: 1px solid rgba(255, 255, 255, 0.82);
    background: var(--glass);
    box-shadow: var(--surface-shadow);
    -webkit-backdrop-filter: blur(28px) saturate(155%);
    backdrop-filter: blur(28px) saturate(155%);
}

.aurora-backdrop {
    position: fixed;
    inset: 0;
    z-index: -2;
    overflow: hidden;
    pointer-events: none;
}

.aurora-orb {
    position: absolute;
    border-radius: 999px;
    opacity: 0.45;
    filter: blur(22px);
    animation: aurora-float 14s ease-in-out infinite alternate;
}

.aurora-orb-one {
    top: 7%;
    left: -7%;
    width: 310px;
    height: 310px;
    background: radial-gradient(circle at 35% 35%, rgba(88, 196, 255, 0.72), rgba(54, 110, 255, 0.05) 70%);
}

.aurora-orb-two {
    top: 32%;
    right: -10%;
    width: 390px;
    height: 390px;
    background: radial-gradient(circle at 40% 40%, rgba(183, 116, 255, 0.55), rgba(235, 104, 190, 0.06) 72%);
    animation-delay: -5s;
}

.aurora-orb-three {
    bottom: -12%;
    left: 30%;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle at 50% 40%, rgba(105, 232, 210, 0.38), rgba(59, 130, 246, 0.03) 72%);
    animation-delay: -9s;
}

@keyframes aurora-float {
    from { transform: translate3d(-18px, -10px, 0) scale(0.95); }
    to { transform: translate3d(28px, 34px, 0) scale(1.08); }
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    padding: 11px 16px;
    border-radius: 14px;
    background: #111827;
    color: #fff;
    transform: translateY(-150%);
    transition: transform 0.2s ease;
}

.skip-link:focus {
    transform: none;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    color: #52617b;
    font-size: 12px;
    font-weight: 750;
    letter-spacing: 0.15em;
    line-height: 1;
    text-transform: uppercase;
}

.eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--pink));
    box-shadow: 0 0 0 5px rgba(56, 149, 255, 0.1);
}

.button {
    position: relative;
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 13px 22px;
    overflow: hidden;
    border: 0;
    border-radius: 999px;
    font-weight: 720;
    letter-spacing: -0.015em;
    line-height: 1.2;
    text-align: center;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button:focus-visible,
.share-button:focus-visible,
.menu-toggle:focus-visible,
.gallery-thumb:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
    outline: 3px solid rgba(25, 118, 255, 0.38);
    outline-offset: 3px;
}

.button-primary {
    color: #fff;
    background:
        linear-gradient(105deg, rgba(255, 255, 255, 0.24), transparent 35%),
        linear-gradient(135deg, #1a91ff 0%, #4c5cf5 52%, #8d55e9 100%);
    box-shadow: 0 13px 28px rgba(62, 93, 232, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.button-primary:hover {
    box-shadow: 0 17px 36px rgba(62, 93, 232, 0.38), inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.button-glass {
    border: 1px solid rgba(255, 255, 255, 0.94);
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 0 10px 28px rgba(49, 68, 109, 0.09), inset 0 1px 0 #fff;
}

.button-light {
    color: #26344f;
    background: rgba(255, 255, 255, 0.93);
    box-shadow: 0 14px 34px rgba(24, 37, 73, 0.18), inset 0 1px 0 #fff;
}

.button-translucent {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    background: rgba(255, 255, 255, 0.13);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.19);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.button-small {
    min-height: 42px;
    padding: 10px 17px;
    font-size: 13px;
}

.button-wide {
    width: 100%;
}

.button-glow {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.9);
}

.theme-preview-bar {
    position: sticky;
    top: 0;
    z-index: 120;
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 9px 20px;
    color: #fff;
    background: linear-gradient(90deg, #18223b, #3d4fb9, #803b9b);
    font-size: 13px;
    text-align: center;
}

.theme-preview-bar a {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.site-header {
    position: sticky;
    top: 14px;
    z-index: 90;
    padding-top: 14px;
}

.theme-preview .site-header {
    top: 58px;
}

.header-inner {
    display: flex;
    min-height: 76px;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 11px 12px 11px 20px;
    border-radius: 27px;
    transition: min-height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled .header-inner {
    min-height: 66px;
    background: rgba(255, 255, 255, 0.83);
    box-shadow: 0 18px 45px rgba(49, 69, 110, 0.16), 0 2px 10px rgba(49, 69, 110, 0.08);
}

.wordmark {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    flex: 0 0 auto;
}

.wordmark-image {
    display: inline-flex;
    flex: 0 0 auto;
    align-items: center;
    justify-content: flex-start;
}

.wordmark-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: left center;
}

.wordmark-image-icon {
    width: 39px;
    height: 39px;
    overflow: hidden;
    border-radius: 13px;
}

.wordmark--image {
    max-width: min(190px, 32vw);
}

.wordmark-image-full {
    width: 190px;
    height: 46px;
}

.wordmark-gem {
    position: relative;
    display: grid;
    width: 39px;
    height: 39px;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 13px;
    background: linear-gradient(145deg, #77e2ff, #4a75f5 48%, #ad62ed 77%, #fb85bb);
    box-shadow: 0 9px 20px rgba(74, 101, 220, 0.27), inset 0 1px 1px rgba(255, 255, 255, 0.6);
}

.wordmark-gem::before {
    content: "";
    position: absolute;
    width: 33px;
    height: 14px;
    top: -5px;
    left: -3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.55);
    filter: blur(4px);
    transform: rotate(-17deg);
}

.wordmark-gem i {
    width: 13px;
    height: 13px;
    border: 2px solid rgba(255, 255, 255, 0.92);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.14);
}

.wordmark-copy {
    display: grid;
    gap: 1px;
}

.wordmark-copy strong {
    font-size: 17px;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.1;
}

.wordmark-copy small {
    color: var(--muted);
    font-size: 10px;
    font-weight: 650;
    letter-spacing: 0.115em;
    line-height: 1.2;
    text-transform: uppercase;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px;
    border: 1px solid rgba(255, 255, 255, 0.72);
    border-radius: 999px;
    background: rgba(239, 244, 252, 0.68);
    box-shadow: inset 0 1px 2px rgba(62, 81, 120, 0.05);
}

.desktop-nav a {
    padding: 8px 14px;
    border-radius: 999px;
    color: #4d5a70;
    font-size: 13px;
    font-weight: 650;
    transition: color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.desktop-nav a:hover {
    color: #1f2b44;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 5px 14px rgba(44, 61, 100, 0.08);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.phone-link {
    font-size: 13px;
    font-weight: 730;
    white-space: nowrap;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: inset 0 1px 0 #fff;
}

.menu-toggle span {
    width: 18px;
    height: 1.5px;
    border-radius: 2px;
    background: var(--ink);
    transition: transform 0.2s ease;
}

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

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

.mobile-menu {
    display: none;
}

.intro-strip {
    padding: 24px 0 0;
}

.intro-card {
    position: relative;
    display: grid;
    min-height: 360px;
    align-items: center;
    grid-template-columns: minmax(0, 1.08fr) minmax(330px, 0.72fr);
    gap: 32px;
    overflow: hidden;
    padding: clamp(38px, 4.5vw, 58px);
    border-radius: 42px;
    background:
        linear-gradient(130deg, rgba(255, 255, 255, 0.89), rgba(255, 255, 255, 0.47)),
        radial-gradient(circle at 75% 15%, rgba(97, 200, 255, 0.3), transparent 35%),
        radial-gradient(circle at 88% 75%, rgba(180, 100, 245, 0.23), transparent 37%);
}

.intro-card::before {
    content: "";
    position: absolute;
    top: -160px;
    right: 15%;
    width: 380px;
    height: 380px;
    border: 1px solid rgba(255, 255, 255, 0.66);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 0 80px rgba(255, 255, 255, 0.3);
}

.intro-copy {
    position: relative;
    z-index: 2;
    max-width: 690px;
}

.intro-copy h1 {
    max-width: 720px;
    margin-bottom: 18px;
    font-size: clamp(42px, 4.8vw, 64px);
    font-weight: 750;
    letter-spacing: -0.067em;
}

.intro-copy h1 span {
    color: transparent;
    background: linear-gradient(94deg, #208ef5 5%, #5f61ed 48%, #bd5fcf 88%);
    -webkit-background-clip: text;
    background-clip: text;
}

.intro-copy > p {
    max-width: 590px;
    margin-bottom: 24px;
    color: var(--ink-soft);
    font-size: clamp(16px, 1.5vw, 19px);
    letter-spacing: -0.025em;
}

.intro-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 11px;
}

.intro-visual {
    position: relative;
    z-index: 2;
    display: grid;
    min-height: 270px;
    place-items: center;
    perspective: 1200px;
}

.glass-device {
    position: relative;
    width: min(100%, 228px);
    min-height: 286px;
    padding: 17px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.46);
    box-shadow: 0 42px 78px rgba(58, 67, 129, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.9);
    transform: rotate(5deg);
    -webkit-backdrop-filter: blur(22px) saturate(150%);
    backdrop-filter: blur(22px) saturate(150%);
}

.glass-device::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.46), transparent 30%, transparent 70%, rgba(255, 255, 255, 0.22));
    pointer-events: none;
}

.device-top {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #526079;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.16em;
}

.device-top i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(44, 62, 99, 0.15);
}

.device-gradient {
    position: absolute;
    top: 45px;
    right: -30px;
    width: 188px;
    height: 188px;
    border-radius: 50%;
    background: conic-gradient(from 210deg, #52d8ea, #4482ff, #9f62ec, #f781b5, #fbd180, #52d8ea);
    filter: blur(3px);
    opacity: 0.78;
    box-shadow: 0 0 70px rgba(108, 106, 241, 0.35);
}

.device-gradient::after {
    content: "";
    position: absolute;
    inset: 20%;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.38);
    filter: blur(11px);
}

.glass-device > strong {
    position: absolute;
    z-index: 2;
    bottom: 69px;
    left: 20px;
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.92;
    text-shadow: 0 4px 18px rgba(34, 44, 92, 0.2);
}

.device-countries {
    position: absolute;
    right: 14px;
    bottom: 15px;
    left: 14px;
    z-index: 2;
    display: flex;
    gap: 6px;
    padding: 7px;
    border: 1px solid rgba(255, 255, 255, 0.56);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.31);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.device-countries span {
    flex: 1;
    padding: 7px 5px;
    border-radius: 999px;
    color: #fff;
    background: rgba(255, 255, 255, 0.17);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-align: center;
}

.country-list {
    position: absolute;
    right: clamp(38px, 5vw, 72px);
    bottom: 24px;
    left: clamp(38px, 5vw, 72px);
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 14px;
    color: #6e7990;
    font-size: 11px;
    font-weight: 750;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.country-list i {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--blue), var(--pink));
}

.catalog-section,
.editorial-section,
.steps-section,
.benefits-section,
.faq-section,
.cta-section {
    padding-top: var(--home-section-gap, clamp(42px, 5vw, 72px));
}

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 34px;
}

.section-heading h2,
.editorial-copy h2,
.steps-head h2,
.benefits-heading h2,
.faq-title h2,
.reservation-panel h2 {
    margin-bottom: 13px;
    font-size: clamp(36px, 4.6vw, 62px);
    font-weight: 720;
}

.catalog-meta,
.faq-title > p {
    margin-bottom: 0;
    color: var(--muted);
}

.glass-control {
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 12px 28px rgba(49, 68, 109, 0.08), inset 0 1px 0 #fff;
    -webkit-backdrop-filter: blur(20px) saturate(150%);
    backdrop-filter: blur(20px) saturate(150%);
}

.sort-form {
    display: flex;
    min-width: 254px;
    align-items: center;
    gap: 10px;
    padding: 7px 8px 7px 17px;
}

.sort-form label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 650;
}

.sort-form select {
    min-width: 132px;
    flex: 1;
    padding: 10px 31px 10px 13px;
    border: 0;
    border-radius: 999px;
    outline: 0;
    background: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 700;
}

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

.product-card {
    min-width: 0;
    padding: 10px;
    border-radius: 31px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, background 0.35s ease;
}

.product-card:hover {
    z-index: 2;
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 32px 74px rgba(45, 62, 105, 0.18);
    transform: translateY(-8px);
}

.product-card > a {
    display: block;
}

.product-image-wrap {
    position: relative;
    aspect-ratio: 0.83;
    overflow: hidden;
    border-radius: 23px;
    background: linear-gradient(145deg, #eef2f8, #f9fbff);
}

.product-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.product-card:hover .product-image-wrap img {
    transform: scale(1.035);
}

.status-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 999px;
    color: #4c5770;
    background: rgba(255, 255, 255, 0.74);
    box-shadow: 0 8px 20px rgba(37, 48, 82, 0.12);
    font-size: 10px;
    font-weight: 750;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.status-badge i,
.status-inline i {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #f1a845;
    box-shadow: 0 0 0 4px rgba(241, 168, 69, 0.13);
}

.card-arrow {
    position: absolute;
    right: 14px;
    bottom: 14px;
    display: grid;
    width: 40px;
    height: 40px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.74);
    border-radius: 14px;
    color: #2c3a55;
    background: rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 20px rgba(38, 52, 86, 0.1);
    font-size: 18px;
    opacity: 0;
    transform: translateY(5px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
}

.product-card:hover .card-arrow {
    opacity: 1;
    transform: none;
}

.card-body {
    padding: 19px 9px 11px;
}

.card-brand,
.product-brand {
    margin-bottom: 7px;
    color: #68758d;
    font-size: 11px;
    font-weight: 780;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.card-title {
    margin-bottom: 8px;
    font-size: 19px;
    font-weight: 700;
    letter-spacing: -0.035em;
}

.card-price {
    flex: 0 0 auto;
    font-size: 16px;
    letter-spacing: -0.03em;
    white-space: nowrap;
}

.card-details {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 13px;
}

.placeholder-image {
    display: grid;
    width: 100%;
    height: 100%;
    place-items: center;
    color: rgba(56, 70, 101, 0.37);
    background:
        radial-gradient(circle at 72% 25%, rgba(94, 210, 239, 0.42), transparent 34%),
        radial-gradient(circle at 30% 75%, rgba(190, 112, 236, 0.32), transparent 39%),
        linear-gradient(145deg, #f3f7fc, #e8edf7);
}

.placeholder-image span {
    font-size: clamp(18px, 2vw, 25px);
    font-weight: 800;
    letter-spacing: 0.18em;
}

.empty-catalog {
    display: grid;
    min-height: 360px;
    grid-column: 1 / -1;
    grid-template-columns: auto minmax(0, 580px);
    align-items: center;
    justify-content: center;
    gap: 42px;
    padding: 48px;
    border-radius: var(--radius-xl);
    text-align: left;
}

.empty-catalog h3 {
    margin-bottom: 15px;
    font-size: clamp(30px, 4vw, 48px);
}

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

.empty-catalog .button {
    margin-top: 8px;
}

.empty-icon {
    position: relative;
    width: 128px;
    height: 128px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 39px;
    background: conic-gradient(from 170deg, #61d8ef, #4d76f5, #a25ee9, #f083b4, #61d8ef);
    box-shadow: 0 27px 52px rgba(72, 86, 175, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: rotate(-7deg);
}

.empty-icon i {
    position: absolute;
    inset: 29px;
    border: 2px solid rgba(255, 255, 255, 0.82);
    border-radius: 50%;
}

.editorial-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
    gap: clamp(38px, 6vw, 80px);
    align-items: center;
    padding: 16px;
    border-radius: 42px;
    background:
        linear-gradient(130deg, rgba(255, 255, 255, 0.82), rgba(251, 250, 255, 0.58)),
        radial-gradient(circle at 87% 13%, rgba(190, 131, 255, 0.19), transparent 30%);
}

.editorial-image {
    position: relative;
    min-height: 620px;
    overflow: hidden;
    border-radius: 31px;
    background: #e9edf4;
}

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

.editorial-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(22, 29, 50, 0.23), transparent 35%);
}

.image-chip {
    position: absolute;
    bottom: 22px;
    left: 22px;
    z-index: 2;
    padding: 11px 15px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    color: #fff;
    background: rgba(22, 29, 50, 0.2);
    font-size: 12px;
    font-weight: 700;
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
}

.editorial-copy {
    max-width: 520px;
    padding: 45px 50px 45px 0;
}

.editorial-copy h2 {
    margin-bottom: 23px;
}

.editorial-lead {
    margin-bottom: 30px;
    color: var(--ink-soft);
    font-size: 18px;
    letter-spacing: -0.02em;
}

.store-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 32px;
    padding: 0;
    list-style: none;
}

.store-list li {
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    color: #5b6680;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: inset 0 1px 0 #fff;
    font-size: 10px;
    font-weight: 790;
    letter-spacing: 0.09em;
}

.steps-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.55fr);
    align-items: end;
    gap: 60px;
    margin-bottom: 34px;
}

.steps-head h2 {
    margin-bottom: 0;
}

.steps-head > p {
    margin-bottom: 7px;
    color: var(--muted);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 15px;
}

.step {
    position: relative;
    min-height: 285px;
    padding: 25px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    transition: transform 0.3s ease, background 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.82);
    transform: translateY(-5px);
}

.step-number {
    color: #7b879e;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.12em;
}

.step-icon {
    position: relative;
    width: 67px;
    height: 67px;
    margin: 38px 0 29px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 22px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(226, 236, 255, 0.6));
    box-shadow: 0 15px 30px rgba(54, 75, 122, 0.12), inset 0 1px 0 #fff;
}

.step-icon::before,
.step-icon::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}

.step-icon::before {
    inset: 18px;
    border: 2px solid rgba(60, 92, 202, 0.62);
}

.step-icon::after {
    top: 11px;
    right: 11px;
    width: 10px;
    height: 10px;
    background: linear-gradient(135deg, var(--cyan), var(--purple));
    box-shadow: 0 0 14px rgba(80, 127, 240, 0.5);
}

.step:nth-child(2) .step-icon {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(241, 227, 255, 0.65));
}

.step:nth-child(3) .step-icon {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(221, 248, 248, 0.68));
}

.step:nth-child(4) .step-icon {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 232, 242, 0.65));
}

.step h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

.step p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
}

.benefits-panel {
    position: relative;
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
    gap: clamp(40px, 7vw, 92px);
    padding: clamp(45px, 6.5vw, 84px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.17);
    border-radius: 42px;
    color: #fff;
    background:
        radial-gradient(circle at 15% 5%, rgba(70, 196, 240, 0.34), transparent 32%),
        radial-gradient(circle at 92% 18%, rgba(186, 91, 226, 0.34), transparent 31%),
        radial-gradient(circle at 70% 100%, rgba(68, 103, 237, 0.32), transparent 38%),
        linear-gradient(145deg, #18243c 0%, #252743 50%, #272044 100%);
    box-shadow: 0 38px 80px rgba(27, 35, 72, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.13);
}

.benefits-panel::before {
    content: "";
    position: absolute;
    top: -220px;
    right: 12%;
    width: 420px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50%;
    box-shadow: 0 0 0 38px rgba(255, 255, 255, 0.025), 0 0 0 76px rgba(255, 255, 255, 0.018);
}

.benefits-heading,
.benefits-list {
    position: relative;
    z-index: 2;
}

.benefits-heading .eyebrow {
    color: rgba(255, 255, 255, 0.62);
}

.benefits-heading h2 {
    margin-bottom: 22px;
}

.benefits-heading > p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.63);
}

.benefits-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.benefit {
    min-height: 192px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.075);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
}

.benefit > span {
    display: block;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, 0.48);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.13em;
}

.benefit h3 {
    margin-bottom: 9px;
    font-size: 18px;
}

.benefit p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.63fr) minmax(0, 1.37fr);
    gap: clamp(45px, 8vw, 110px);
}

.faq-title {
    align-self: start;
    position: sticky;
    top: 130px;
}

.faq-list {
    display: grid;
    gap: 11px;
}

.faq-list details {
    padding: 0 23px;
    border-radius: 23px;
    transition: background 0.2s ease;
}

.faq-list details[open] {
    background: rgba(255, 255, 255, 0.86);
}

.faq-list summary {
    position: relative;
    display: flex;
    min-height: 78px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list summary i {
    position: relative;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.62);
    box-shadow: 0 5px 14px rgba(44, 60, 100, 0.07), inset 0 1px 0 #fff;
}

.faq-list summary i::before,
.faq-list summary i::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1.5px;
    border-radius: 2px;
    background: #526078;
    transform: translate(-50%, -50%);
    transition: transform 0.2s ease;
}

.faq-list summary i::after {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-list details[open] summary i::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list details p {
    max-width: 650px;
    margin: -2px 48px 24px 0;
    color: var(--muted);
    font-size: 14px;
}

.cta-section {
    padding-bottom: 34px;
}

.cta-panel {
    position: relative;
    display: flex;
    min-height: 330px;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: clamp(48px, 7vw, 88px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 42px;
    color: #fff;
    background:
        radial-gradient(circle at 78% 8%, rgba(123, 224, 246, 0.62), transparent 27%),
        radial-gradient(circle at 95% 85%, rgba(241, 108, 195, 0.54), transparent 32%),
        linear-gradient(125deg, #2689f5 0%, #4d5eec 43%, #9c51d7 76%, #e06ba9 100%);
    box-shadow: 0 36px 72px rgba(77, 78, 190, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-panel > div:not(.cta-shine) {
    position: relative;
    z-index: 2;
}

.cta-shine {
    position: absolute;
    top: -70%;
    left: 24%;
    width: 210px;
    height: 250%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
    transform: rotate(24deg);
}

.cta-panel .eyebrow {
    color: rgba(255, 255, 255, 0.72);
}

.cta-panel .eyebrow::before {
    background: #fff;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.12);
}

.cta-panel h2 {
    max-width: 680px;
    margin-bottom: 0;
    font-size: clamp(36px, 5vw, 64px);
}

.cta-actions {
    display: grid;
    min-width: 265px;
    gap: 10px;
}

.product-page {
    padding-top: 30px;
}

.breadcrumbs {
    display: flex;
    width: fit-content;
    max-width: min(calc(100% - 48px), var(--shell));
    align-items: center;
    gap: 11px;
    margin-bottom: 18px;
    padding: 10px 16px;
    color: var(--muted);
    font-size: 12px;
    white-space: nowrap;
}

.breadcrumbs a:hover {
    color: var(--blue);
}

.breadcrumbs i {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #9ca8bb;
}

.breadcrumbs span {
    max-width: 260px;
    overflow: hidden;
    color: var(--ink-soft);
    text-overflow: ellipsis;
}

.product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.72fr);
    gap: 20px;
    align-items: start;
}

.product-gallery {
    min-width: 0;
    padding: 12px;
    border-radius: var(--radius-xl);
}

.gallery-main {
    aspect-ratio: 0.92;
    overflow: hidden;
    border-radius: 27px;
    background: #eef2f8;
}

.gallery-main > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #f3f5f9;
}

.gallery-main .placeholder-image {
    min-height: 100%;
}

.gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 8px;
    padding: 11px 2px 1px;
}

.gallery-thumb {
    aspect-ratio: 1;
    padding: 3px;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: 15px;
    background: transparent;
    transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.gallery-thumb:hover {
    transform: translateY(-2px);
}

.gallery-thumb.is-active {
    border-color: rgba(70, 100, 230, 0.43);
    background: rgba(255, 255, 255, 0.78);
}

.gallery-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 11px;
    object-fit: cover;
}

.product-info {
    position: sticky;
    top: 112px;
    padding: clamp(30px, 4vw, 48px);
    border-radius: var(--radius-xl);
}

.theme-preview .product-info {
    top: 158px;
}

.product-status-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 30px;
}

.status-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    color: #66728a;
    background: rgba(242, 245, 250, 0.76);
    font-size: 10px;
    font-weight: 780;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.status-inline.is-available i {
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(41, 183, 128, 0.13);
}

.product-info h1 {
    margin-bottom: 18px;
    font-size: clamp(38px, 4.5vw, 61px);
    font-weight: 730;
}

.product-price {
    margin-bottom: 33px;
    color: transparent;
    background: linear-gradient(92deg, #197be9, #5b5fe8, #a64cbd);
    -webkit-background-clip: text;
    background-clip: text;
    font-size: 27px;
    font-weight: 780;
    letter-spacing: -0.04em;
}

.product-facts {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 28px;
}

.product-fact {
    min-width: 0;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, 0.76);
    border-radius: 18px;
    background: rgba(244, 247, 252, 0.58);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.product-fact span,
.product-fact strong {
    display: block;
    overflow-wrap: anywhere;
}

.product-fact span {
    margin-bottom: 5px;
    color: var(--muted);
    font-size: 10px;
    font-weight: 670;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.product-fact strong {
    font-size: 14px;
}

.product-description {
    margin-bottom: 29px;
    color: var(--ink-soft);
    line-height: 1.7;
    white-space: pre-line;
}

.product-actions {
    margin-bottom: 17px;
}

.reservation-note {
    display: flex;
    gap: 11px;
    margin-bottom: 27px;
    padding: 0 5px;
    color: var(--muted);
    font-size: 12px;
    line-height: 1.55;
}

.reservation-note i,
.privacy-chip i {
    width: 8px;
    height: 8px;
    flex: 0 0 auto;
    margin-top: 5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan), var(--blue), var(--purple));
    box-shadow: 0 0 0 5px rgba(58, 126, 240, 0.09);
}

.share-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 7px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.share-row > span {
    margin-right: 3px;
    color: var(--muted);
    font-size: 11px;
    font-weight: 650;
}

.share-button {
    min-height: 34px;
    padding: 8px 11px;
    border: 1px solid rgba(255, 255, 255, 0.84);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.55);
    box-shadow: inset 0 1px 0 #fff;
    font-size: 11px;
    font-weight: 680;
    transition: background 0.2s ease, transform 0.2s ease;
}

.share-button:hover {
    background: rgba(255, 255, 255, 0.92);
    transform: translateY(-1px);
}

.reservation-section {
    padding: clamp(80px, 10vw, 130px) 0 35px;
    scroll-margin-top: 110px;
}

.reservation-shell {
    display: grid;
    grid-template-columns: minmax(280px, 0.68fr) minmax(0, 1.32fr);
    gap: clamp(40px, 7vw, 90px);
    padding: clamp(38px, 6vw, 72px);
    border-radius: 42px;
    background:
        radial-gradient(circle at 5% 5%, rgba(94, 202, 244, 0.21), transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(191, 99, 226, 0.15), transparent 34%),
        rgba(255, 255, 255, 0.67);
}

.reservation-panel h2 {
    margin-bottom: 20px;
}

.reservation-panel > p {
    color: var(--muted);
}

.privacy-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 12px;
    padding: 9px 12px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    color: #5e6b82;
    background: rgba(255, 255, 255, 0.48);
    font-size: 11px;
    font-weight: 680;
}

.privacy-chip i {
    margin-top: 0;
}

.reservation-form-wrap {
    min-width: 0;
    padding: 27px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.58);
    box-shadow: 0 20px 45px rgba(50, 68, 109, 0.1), inset 0 1px 0 #fff;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.field-full {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    color: #536078;
    font-size: 12px;
    font-weight: 710;
}

.field input,
.field textarea {
    width: 100%;
    margin-top: 8px;
    border: 1px solid rgba(92, 112, 151, 0.16);
    border-radius: 17px;
    outline: 0;
    color: var(--ink);
    background: rgba(246, 248, 252, 0.82);
    box-shadow: inset 0 2px 5px rgba(49, 65, 102, 0.035), 0 1px 0 #fff;
    transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.field input {
    height: 54px;
    padding: 0 16px;
}

.field textarea {
    min-height: 118px;
    padding: 15px 16px;
    resize: vertical;
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(65, 102, 230, 0.42);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 0 0 4px rgba(46, 113, 241, 0.08), inset 0 1px 0 #fff;
}

.phone-control {
    position: relative;
    margin-top: 8px;
}

.phone-prefix {
    position: absolute;
    z-index: 1;
    top: 50%;
    left: 16px;
    transform: translateY(-50%);
    pointer-events: none;
    color: #536078;
    font-size: 14px;
    font-variant-numeric: tabular-nums;
}

.field .phone-control input {
    margin-top: 0;
    padding-left: 68px;
    font-variant-numeric: tabular-nums;
}

.phone-hint {
    display: block;
    margin: 7px 8px 0;
    color: var(--muted);
    font-size: 10px;
    font-weight: 500;
    line-height: 1.45;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #a0a9b8;
}

.form-hint {
    margin: 11px 8px 0;
    color: var(--muted);
    font-size: 10px;
    line-height: 1.5;
    text-align: center;
}

.notice {
    margin-bottom: 18px;
    padding: 13px 15px;
    border-radius: 16px;
    font-size: 13px;
}

.notice-error {
    border: 1px solid rgba(210, 75, 99, 0.16);
    color: #a73c55;
    background: rgba(255, 235, 239, 0.72);
}

.queue-success {
    padding: 18px 15px;
    text-align: center;
}

.queue-number {
    display: grid;
    width: 80px;
    height: 80px;
    place-items: center;
    margin: 0 auto 22px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 27px;
    color: #fff;
    background: linear-gradient(145deg, #4bd4e8, #4773ef 48%, #9c5ae7);
    box-shadow: 0 20px 37px rgba(68, 90, 215, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.5);
    font-size: 28px;
    font-weight: 800;
}

.queue-success h3 {
    margin-bottom: 10px;
    font-size: 28px;
}

.queue-success p {
    max-width: 490px;
    margin: 0 auto;
    color: var(--muted);
}

.site-footer {
    padding: 90px 0 24px;
}

.footer-panel {
    padding: clamp(38px, 5vw, 62px);
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 42px;
    color: #fff;
    background:
        radial-gradient(circle at 5% 0%, rgba(71, 178, 231, 0.17), transparent 27%),
        radial-gradient(circle at 98% 100%, rgba(168, 79, 212, 0.18), transparent 28%),
        linear-gradient(145deg, #182237, #24243b 58%, #28213f);
    box-shadow: 0 32px 72px rgba(29, 37, 68, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(150px, 0.5fr) minmax(210px, 0.6fr);
    gap: 70px;
}

.wordmark-light .wordmark-copy small {
    color: rgba(255, 255, 255, 0.48);
}

.footer-note {
    max-width: 410px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.56);
}

.footer-links,
.footer-contact {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-links > span,
.footer-contact > span {
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.43);
    font-size: 10px;
    font-weight: 780;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.footer-links a,
.footer-contact a {
    width: fit-content;
    color: rgba(255, 255, 255, 0.81);
    font-size: 14px;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-contact p {
    margin: 7px 0 0;
    color: rgba(255, 255, 255, 0.43);
    font-size: 12px;
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.38);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.system-message {
    display: grid;
    min-height: 66vh;
    place-items: center;
    padding: 70px 24px;
}

.system-card {
    position: relative;
    width: min(100%, 650px);
    padding: clamp(50px, 8vw, 90px);
    overflow: hidden;
    border-radius: 42px;
    text-align: center;
}

.system-card > *:not(.system-orb) {
    position: relative;
    z-index: 2;
}

.system-card h1 {
    margin-bottom: 20px;
    font-size: clamp(38px, 6vw, 64px);
}

.system-card p {
    color: var(--muted);
}

.system-card .button {
    margin-top: 13px;
}

.system-orb {
    position: absolute;
    top: -110px;
    right: -80px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: conic-gradient(from 180deg, rgba(76, 213, 235, 0.58), rgba(71, 111, 238, 0.52), rgba(175, 87, 227, 0.5), rgba(242, 117, 177, 0.45), rgba(76, 213, 235, 0.58));
    filter: blur(7px);
}

@media (max-width: 1100px) {
    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-menu {
        position: absolute;
        top: calc(100% + 8px);
        right: 24px;
        left: 24px;
        display: grid;
        gap: 5px;
        padding: 11px;
        border-radius: 25px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px) scale(0.985);
        transform-origin: top center;
        transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .mobile-menu.is-open {
        opacity: 1;
        pointer-events: auto;
        transform: none;
    }

    .mobile-menu a {
        padding: 13px 15px;
        border-radius: 15px;
        color: var(--ink-soft);
        font-size: 14px;
        font-weight: 680;
    }

    .mobile-menu a:hover {
        background: rgba(255, 255, 255, 0.73);
    }

    .mobile-menu .mobile-viber {
        margin-top: 4px;
        color: #fff;
        background: linear-gradient(135deg, #248cf7, #5c5fe8, #9454dd);
        text-align: center;
    }

    .intro-card {
        grid-template-columns: minmax(0, 1fr) 310px;
        padding-inline: 52px;
    }

    .intro-copy h1 {
        font-size: clamp(42px, 6vw, 60px);
    }

    .glass-device {
        min-height: 286px;
    }

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

    .step {
        min-height: 250px;
    }

    .step-icon {
        margin-block: 25px 22px;
    }

    .product-layout {
        grid-template-columns: minmax(0, 1fr) minmax(360px, 0.8fr);
    }

    .product-info {
        padding: 31px;
    }
}

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

    .site-header {
        top: 8px;
        padding-top: 8px;
    }

    .theme-preview .site-header {
        top: 57px;
    }

    .header-inner {
        min-height: 68px;
        padding: 9px 9px 9px 15px;
        border-radius: 23px;
    }

    .site-header.is-scrolled .header-inner {
        min-height: 62px;
    }

    .phone-link,
    .header-actions > .button {
        display: none;
    }

    .intro-strip {
        padding-top: 17px;
    }

    .intro-card {
        min-height: 525px;
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 50px 38px 68px;
        border-radius: 34px;
    }

    .intro-copy {
        max-width: 620px;
    }

    .intro-visual {
        position: absolute;
        right: -42px;
        bottom: 42px;
        min-height: auto;
        opacity: 0.52;
        transform: scale(0.74);
        transform-origin: bottom right;
    }

    .glass-device {
        width: 240px;
    }

    .country-list {
        right: 35px;
        bottom: 23px;
        left: 35px;
    }

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

    .sort-form {
        width: 100%;
    }

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

    .editorial-card {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .editorial-image {
        min-height: 560px;
    }

    .editorial-copy {
        max-width: none;
        padding: 48px 34px 40px;
    }

    .steps-head,
    .benefits-panel,
    .faq-grid,
    .reservation-shell {
        grid-template-columns: 1fr;
    }

    .steps-head {
        gap: 15px;
    }

    .benefits-panel {
        gap: 38px;
    }

    .faq-grid {
        gap: 30px;
    }

    .faq-title {
        position: static;
    }

    .cta-panel {
        min-height: 390px;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
    }

    .cta-actions {
        width: 100%;
    }

    .product-page {
        padding-top: 22px;
    }

    .breadcrumbs {
        max-width: calc(100% - 32px);
    }

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

    .product-info {
        position: static;
    }

    .gallery-main {
        aspect-ratio: 1;
    }

    .reservation-shell {
        gap: 30px;
    }

    .footer-grid {
        grid-template-columns: 1.3fr 0.7fr;
    }

    .footer-contact {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    :root {
        --radius-xl: 29px;
        --radius-lg: 24px;
    }

    html {
        scroll-padding-top: 105px;
    }

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

    .theme-preview-bar {
        min-height: 49px;
        justify-content: space-between;
        gap: 8px;
        padding-inline: 12px;
        font-size: 10px;
    }

    .theme-preview-bar a {
        flex: 0 0 auto;
    }

    .header-inner {
        width: calc(100% - 22px);
    }

    .mobile-menu {
        right: 11px;
        left: 11px;
    }

    .wordmark-gem {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .wordmark-image-icon {
        width: 36px;
        height: 36px;
        border-radius: 12px;
    }

    .wordmark-image-full {
        width: 158px;
        height: 40px;
    }

    .wordmark-copy strong {
        font-size: 15px;
    }

    .intro-card {
        min-height: 540px;
        padding: 42px 24px 65px;
        border-radius: 30px;
    }

    .intro-copy h1 {
        margin-bottom: 20px;
        font-size: clamp(42px, 13.5vw, 62px);
    }

    .intro-copy > p {
        font-size: 16px;
    }

    .intro-actions {
        display: grid;
        width: 100%;
    }

    .intro-actions .button {
        width: 100%;
    }

    .intro-visual {
        right: -66px;
        bottom: 31px;
        opacity: 0.38;
        transform: scale(0.66);
    }

    .country-list {
        right: 24px;
        left: 24px;
        gap: 9px;
        font-size: 9px;
    }

    .catalog-section,
    .editorial-section,
    .steps-section,
    .benefits-section,
    .faq-section,
    .cta-section {
        padding-top: var(--home-section-gap, 42px);
    }

    .section-heading h2,
    .editorial-copy h2,
    .steps-head h2,
    .benefits-heading h2,
    .faq-title h2,
    .reservation-panel h2 {
        font-size: clamp(33px, 10vw, 46px);
    }

    .section-heading {
        margin-bottom: 23px;
    }

    .product-grid {
        gap: 10px;
    }

    .product-card {
        padding: 6px;
        border-radius: 22px;
    }

    .product-image-wrap {
        border-radius: 17px;
    }

    .status-badge {
        top: 8px;
        left: 8px;
        padding: 6px 8px;
        font-size: 8px;
    }

    .card-arrow {
        display: none;
    }

    .card-body {
        padding: 13px 5px 7px;
    }

    .card-title-row {
        display: block;
    }

    .card-title {
        margin-bottom: 6px;
        font-size: 15px;
    }

    .card-price {
        display: block;
        margin-bottom: 6px;
        font-size: 14px;
    }

    .card-brand,
    .card-details {
        font-size: 9px;
    }

    .empty-catalog {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 36px 25px;
        text-align: center;
    }

    .empty-icon {
        width: 100px;
        height: 100px;
        margin: 0 auto;
        border-radius: 31px;
    }

    .editorial-card {
        padding: 8px;
        border-radius: 30px;
    }

    .editorial-image {
        min-height: 390px;
        border-radius: 23px;
    }

    .editorial-copy {
        padding: 36px 17px 25px;
    }

    .editorial-lead {
        font-size: 16px;
    }

    .steps-grid,
    .benefits-list {
        grid-template-columns: 1fr;
    }

    .step {
        min-height: 226px;
        padding: 23px;
    }

    .step-icon {
        width: 58px;
        height: 58px;
        margin: 22px 0 20px;
        border-radius: 19px;
    }

    .benefits-panel {
        padding: 37px 20px 20px;
        border-radius: 30px;
    }

    .benefit {
        min-height: 175px;
    }

    .faq-list details {
        padding-inline: 17px;
        border-radius: 20px;
    }

    .faq-list summary {
        min-height: 72px;
        font-size: 14px;
    }

    .faq-list details p {
        margin-right: 0;
    }

    .cta-section {
        padding-bottom: 16px;
    }

    .cta-panel {
        min-height: 430px;
        padding: 41px 24px;
        border-radius: 30px;
    }

    .cta-panel h2 {
        font-size: 39px;
    }

    .breadcrumbs {
        max-width: calc(100% - 22px);
        overflow: hidden;
    }

    .breadcrumbs a:nth-of-type(2),
    .breadcrumbs i:nth-of-type(2) {
        display: none;
    }

    .product-gallery {
        padding: 8px;
    }

    .gallery-main {
        border-radius: 22px;
    }

    .gallery-thumbs {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }

    .product-info {
        padding: 27px 21px;
    }

    .product-status-row {
        margin-bottom: 25px;
    }

    .product-info h1 {
        font-size: clamp(36px, 11vw, 50px);
    }

    .product-facts {
        gap: 5px;
    }

    .product-fact {
        padding: 11px 9px;
        border-radius: 15px;
    }

    .product-fact strong {
        font-size: 12px;
    }

    .share-row > span {
        width: 100%;
    }

    .reservation-section {
        padding-top: 76px;
    }

    .reservation-shell {
        padding: 29px 13px 13px;
        border-radius: 30px;
    }

    .reservation-panel {
        padding-inline: 10px;
    }

    .reservation-form-wrap {
        padding: 20px 14px;
        border-radius: 23px;
    }

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

    .field-full {
        grid-column: auto;
    }

    .site-footer {
        padding-top: 70px;
    }

    .footer-panel {
        padding: 36px 24px 24px;
        border-radius: 30px;
    }

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

    .footer-contact {
        grid-column: auto;
    }

    .footer-bottom {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
    }

    .system-message {
        padding-inline: 11px;
    }

    .system-card {
        border-radius: 30px;
    }
}

@media (max-width: 390px) {
    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-image-wrap {
        aspect-ratio: 0.9;
    }

    .card-title-row {
        display: flex;
    }

    .card-price {
        display: inline;
    }

    .card-brand,
    .card-details {
        font-size: 10px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .glass-surface,
    .glass-control,
    .mobile-menu,
    .button-glass,
    .reservation-form-wrap {
        background: rgba(255, 255, 255, 0.94);
    }
}

/* Distinct visual stories for the four "How it works" steps. */
.step {
    display: flex;
    min-height: 346px;
    flex-direction: column;
    padding: 18px;
}

.step-number {
    position: absolute;
    z-index: 3;
    top: 30px;
    left: 30px;
    display: inline-flex;
    min-width: 37px;
    height: 25px;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    border: 1px solid rgba(255, 255, 255, 0.82);
    border-radius: 999px;
    color: #6f665e;
    background: rgba(255, 253, 249, 0.86);
    box-shadow: 0 7px 18px rgba(87, 65, 46, 0.1);
    backdrop-filter: blur(8px);
}

.step-visual {
    position: relative;
    display: grid;
    width: 100%;
    height: 148px;
    flex: 0 0 auto;
    place-items: center;
    overflow: hidden;
    margin: 0 0 22px;
    border: 1px solid rgba(255, 255, 255, 0.86);
    border-radius: calc(var(--radius-lg) - 8px);
    background: linear-gradient(135deg, #fffaf1, #f1dfcd);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.94), 0 14px 30px rgba(88, 62, 40, 0.07);
}

.step:nth-child(2) .step-visual {
    background: linear-gradient(135deg, #fff9fc, #eadff0);
}

.step:nth-child(3) .step-visual {
    background: linear-gradient(135deg, #f9fdf9, #dcebe4);
}

.step:nth-child(4) .step-visual {
    background: linear-gradient(135deg, #f8fcff, #dce8ee);
}

.step-visual::after {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 82% 8%, rgba(255, 255, 255, 0.76), transparent 34%);
    content: "";
    pointer-events: none;
}

.step-visual img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.step:hover .step-visual img {
    transform: scale(1.025);
}

.step h3 {
    margin: 0 0 10px;
}

@media (max-width: 1100px) {
    .step {
        min-height: 326px;
    }
}

@media (max-width: 680px) {
    .step {
        min-height: auto;
        padding: 16px;
    }

    .step-number {
        top: 28px;
        left: 28px;
    }

    .step-visual {
        height: 150px;
        margin-bottom: 20px;
    }
}

/* Aurura light glass — pearl, champagne and warm titanium */
:root {
    color-scheme: light;
    --ink: #292520;
    --ink-soft: #504942;
    --muted: #7d756d;
    --line: rgba(102, 78, 55, 0.13);
    --glass: rgba(255, 252, 247, 0.7);
    --glass-strong: rgba(255, 253, 249, 0.9);
    --blue: #b89468;
    --blue-deep: #9c7554;
    --purple: #a87578;
    --pink: #c38b85;
    --cyan: #e9dbc5;
    --green: #78906e;
    --surface-shadow: 0 28px 72px rgba(95, 72, 49, 0.12), 0 4px 18px rgba(76, 55, 37, 0.06);
    --soft-shadow: 0 16px 40px rgba(91, 68, 47, 0.1);
}

body {
    color: var(--ink);
    background: #f5f1eb;
}

body::before {
    background:
        radial-gradient(circle at 13% 3%, rgba(224, 198, 156, 0.28), transparent 30%),
        radial-gradient(circle at 87% 13%, rgba(221, 171, 164, 0.18), transparent 31%),
        radial-gradient(circle at 56% 78%, rgba(207, 190, 169, 0.18), transparent 30%),
        linear-gradient(145deg, #fbf9f5 0%, #f1ece4 50%, #faf4f1 100%);
}

.glass-surface {
    border-color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 252, 247, 0.67);
    box-shadow: var(--surface-shadow), inset 0 1px 0 rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: blur(30px) saturate(135%);
    backdrop-filter: blur(30px) saturate(135%);
}

.aurora-orb {
    opacity: 0.42;
    filter: blur(28px);
}

.aurora-orb-one {
    background: radial-gradient(circle at 35% 35%, rgba(219, 186, 137, 0.55), rgba(181, 139, 92, 0.03) 70%);
}

.aurora-orb-two {
    background: radial-gradient(circle at 40% 40%, rgba(218, 164, 160, 0.42), rgba(151, 96, 96, 0.03) 72%);
}

.aurora-orb-three {
    background: radial-gradient(circle at 50% 40%, rgba(220, 207, 187, 0.46), rgba(156, 130, 98, 0.03) 72%);
}

.skip-link {
    color: #fffaf2;
    background: #332d27;
}

.eyebrow {
    color: #766d64;
}

.eyebrow::before {
    background: linear-gradient(135deg, #ead9bd, #bd9060, #b57778);
    box-shadow: 0 0 0 5px rgba(184, 142, 96, 0.09), 0 0 17px rgba(189, 144, 96, 0.14);
}

.button:focus-visible,
.share-button:focus-visible,
.menu-toggle:focus-visible,
.gallery-thumb:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
a:focus-visible {
    outline-color: rgba(177, 132, 80, 0.5);
}

.button-primary {
    color: #fffaf3;
    background:
        linear-gradient(108deg, rgba(255, 255, 255, 0.2), transparent 32%),
        linear-gradient(135deg, #4a4036 0%, #302a25 50%, #5a3e3b 100%);
    box-shadow: 0 14px 30px rgba(58, 43, 32, 0.27), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.button-primary:hover {
    box-shadow: 0 18px 39px rgba(58, 43, 32, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.26);
}

.button-glass {
    border-color: rgba(255, 255, 255, 0.92);
    color: #39322c;
    background: rgba(255, 253, 249, 0.58);
    box-shadow: 0 11px 29px rgba(88, 64, 43, 0.1), inset 0 1px 0 #fff;
}

.button-light {
    color: #2f2923;
    background: rgba(255, 252, 245, 0.94);
    box-shadow: 0 15px 35px rgba(69, 48, 32, 0.18), inset 0 1px 0 #fff;
}

.button-translucent {
    border-color: rgba(255, 253, 247, 0.33);
    color: #fffaf2;
    background: rgba(255, 249, 240, 0.14);
}

.button-glow {
    background: #f4dfbf;
    box-shadow: 0 0 13px rgba(240, 210, 167, 0.75);
}

.theme-preview-bar {
    color: #fffaf3;
    background: linear-gradient(90deg, #302922, #735440, #704247);
}

.theme-preview-bar a {
    background: rgba(255, 250, 242, 0.13);
}

.header-inner {
    border-color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 252, 247, 0.67);
}

.site-header.is-scrolled .header-inner {
    background: rgba(255, 253, 249, 0.86);
    box-shadow: 0 19px 48px rgba(81, 59, 40, 0.15), 0 2px 10px rgba(68, 49, 34, 0.07), inset 0 1px 0 #fff;
}

.wordmark-gem {
    border-color: rgba(255, 255, 255, 0.88);
    background: linear-gradient(145deg, #f2e5ce, #c99e6c 42%, #aa706a 73%, #73504a);
    box-shadow: 0 10px 22px rgba(116, 80, 53, 0.25), inset 0 1px 1px rgba(255, 255, 255, 0.66);
}

.wordmark-gem::before {
    background: rgba(255, 255, 255, 0.57);
}

.wordmark-gem i {
    border-color: rgba(255, 253, 247, 0.94);
    box-shadow: 0 0 0 4px rgba(255, 250, 241, 0.15);
}

.wordmark-copy small {
    color: #817970;
}

.desktop-nav {
    border-color: rgba(255, 255, 255, 0.8);
    background: rgba(234, 225, 213, 0.53);
    box-shadow: inset 0 1px 2px rgba(86, 65, 45, 0.05);
}

.desktop-nav a {
    color: #675f57;
}

.desktop-nav a:hover {
    color: #302a25;
    background: rgba(255, 253, 249, 0.93);
    box-shadow: 0 5px 14px rgba(74, 54, 37, 0.08);
}

.phone-link {
    color: #3f3831;
}

.menu-toggle {
    border-color: rgba(255, 255, 255, 0.9);
    background: rgba(255, 252, 247, 0.64);
    box-shadow: inset 0 1px 0 #fff;
}

.menu-toggle span {
    background: #3a332c;
}

.mobile-menu {
    background: rgba(255, 252, 247, 0.96);
}

.intro-card {
    border-color: rgba(255, 255, 255, 0.88);
    background:
        linear-gradient(130deg, rgba(255, 254, 251, 0.88), rgba(247, 239, 229, 0.54)),
        radial-gradient(circle at 76% 12%, rgba(218, 186, 139, 0.26), transparent 35%),
        radial-gradient(circle at 89% 76%, rgba(215, 160, 157, 0.19), transparent 38%);
    box-shadow: 0 35px 88px rgba(95, 70, 47, 0.14), inset 0 1px 0 #fff;
}

.intro-card::before {
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 0 82px rgba(255, 255, 255, 0.36);
}

.intro-copy h1 span {
    background: linear-gradient(94deg, #443b32 2%, #a77e53 43%, #bd7e79 78%, #7f5552 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.intro-copy > p {
    color: #544c45;
}

.glass-device {
    border-color: rgba(255, 255, 255, 0.93);
    background: rgba(255, 251, 244, 0.51);
    box-shadow: 0 43px 80px rgba(102, 73, 48, 0.22), inset 0 1px 1px rgba(255, 255, 255, 0.92);
}

.glass-device::after {
    background: linear-gradient(120deg, rgba(255, 255, 255, 0.52), transparent 31%, transparent 69%, rgba(190, 138, 90, 0.12));
}

.device-top {
    color: #756c63;
}

.device-top i {
    background: rgba(89, 68, 48, 0.16);
}

.device-gradient {
    background: conic-gradient(from 210deg, #eee1ca, #c49b6b, #a7735a, #b97b7c, #e1b38d, #eee1ca);
    box-shadow: 0 0 72px rgba(184, 132, 84, 0.28);
    opacity: 0.78;
}

.device-gradient::after {
    background: rgba(255, 251, 244, 0.43);
}

.glass-device > strong {
    color: #fffdf9;
    text-shadow: 0 4px 18px rgba(79, 52, 33, 0.25);
}

.device-countries {
    border-color: rgba(255, 255, 255, 0.61);
    background: rgba(255, 251, 244, 0.28);
}

.device-countries span {
    color: #fffdf8;
    background: rgba(255, 255, 255, 0.17);
}

.country-list {
    color: #7c746c;
}

.country-list i {
    background: linear-gradient(135deg, #c89d69, #b27072);
}

.catalog-meta,
.faq-title > p,
.steps-head > p {
    color: var(--muted);
}

.glass-control {
    border-color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 252, 247, 0.63);
    box-shadow: 0 12px 29px rgba(88, 64, 43, 0.09), inset 0 1px 0 #fff;
}

.sort-form label {
    color: #7c746c;
}

.sort-form select {
    color: #3e3730;
    background-color: rgba(255, 253, 249, 0.88);
}

.sort-form select option {
    color: #3e3730;
    background: #fffdf9;
}

.product-card {
    border-color: rgba(255, 255, 255, 0.87);
    background: rgba(255, 252, 247, 0.65);
    box-shadow: 0 25px 64px rgba(91, 67, 46, 0.11), inset 0 1px 0 #fff;
}

.product-card:hover {
    background: rgba(255, 254, 251, 0.88);
    box-shadow: 0 35px 80px rgba(87, 62, 42, 0.18);
}

.product-image-wrap,
.gallery-main {
    background: linear-gradient(145deg, #eee8df, #fbf9f5);
}

.status-badge {
    border-color: rgba(255, 255, 255, 0.76);
    color: #5d554d;
    background: rgba(255, 252, 247, 0.79);
    box-shadow: 0 9px 22px rgba(75, 53, 36, 0.13);
}

.status-badge i,
.status-inline i {
    background: #bf8d55;
    box-shadow: 0 0 0 4px rgba(191, 141, 85, 0.12);
}

.card-arrow {
    border-color: rgba(255, 255, 255, 0.78);
    color: #403831;
    background: rgba(255, 252, 247, 0.75);
    box-shadow: 0 9px 22px rgba(74, 52, 35, 0.11);
}

.card-brand,
.product-brand {
    color: #766d64;
}

.card-details {
    color: #80776f;
}

.placeholder-image {
    color: rgba(72, 56, 42, 0.32);
    background:
        radial-gradient(circle at 72% 25%, rgba(211, 172, 119, 0.34), transparent 35%),
        radial-gradient(circle at 28% 76%, rgba(205, 145, 144, 0.25), transparent 40%),
        linear-gradient(145deg, #f4eee6, #e8ded2);
}

.empty-catalog {
    background:
        radial-gradient(circle at 18% 15%, rgba(207, 170, 118, 0.13), transparent 30%),
        rgba(255, 252, 247, 0.69);
}

.empty-catalog p {
    color: #7d756d;
}

.empty-icon {
    border-color: rgba(255, 255, 255, 0.85);
    background: conic-gradient(from 170deg, #f0e3ca, #c59a68, #a87259, #b87979, #e0b38e, #f0e3ca);
    box-shadow: 0 28px 55px rgba(115, 77, 50, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.empty-icon i {
    border-color: rgba(255, 253, 247, 0.79);
}

.editorial-card {
    border-color: rgba(255, 255, 255, 0.87);
    background:
        linear-gradient(130deg, rgba(255, 253, 249, 0.84), rgba(247, 239, 230, 0.6)),
        radial-gradient(circle at 88% 14%, rgba(215, 162, 158, 0.14), transparent 31%);
}

.editorial-image {
    background: #ece5dc;
}

.editorial-image::after {
    background: linear-gradient(to top, rgba(55, 42, 31, 0.28), transparent 40%);
}

.image-chip {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fffaf3;
    background: rgba(52, 39, 29, 0.25);
}

.editorial-lead {
    color: #554d46;
}

.store-list li {
    border-color: rgba(255, 255, 255, 0.88);
    color: #6f665e;
    background: rgba(255, 252, 247, 0.6);
    box-shadow: inset 0 1px 0 #fff;
}

.step {
    border-color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 252, 247, 0.65);
}

.step:hover {
    background: rgba(255, 254, 251, 0.89);
}

.step-number {
    color: #80776e;
}

.step-icon,
.step:nth-child(2) .step-icon,
.step:nth-child(3) .step-icon,
.step:nth-child(4) .step-icon {
    border-color: rgba(255, 255, 255, 0.87);
    background: linear-gradient(145deg, rgba(255, 253, 249, 0.95), rgba(236, 224, 208, 0.66));
    box-shadow: 0 16px 33px rgba(88, 62, 40, 0.12), inset 0 1px 0 #fff;
}

.step:nth-child(2) .step-icon {
    background: linear-gradient(145deg, rgba(255, 253, 249, 0.95), rgba(244, 224, 222, 0.68));
}

.step:nth-child(3) .step-icon {
    background: linear-gradient(145deg, rgba(255, 253, 249, 0.95), rgba(237, 227, 210, 0.68));
}

.step:nth-child(4) .step-icon {
    background: linear-gradient(145deg, rgba(255, 253, 249, 0.95), rgba(239, 216, 214, 0.66));
}

.step-icon::before {
    border-color: rgba(173, 126, 75, 0.61);
}

.step-icon::after {
    background: linear-gradient(135deg, #e1c9a4, #b58252, #ad6d70);
    box-shadow: 0 0 14px rgba(174, 125, 73, 0.28);
}

.step p {
    color: #7c746c;
}

.benefits-panel {
    border-color: rgba(255, 248, 237, 0.15);
    background:
        radial-gradient(circle at 13% 4%, rgba(207, 169, 115, 0.21), transparent 33%),
        radial-gradient(circle at 92% 18%, rgba(160, 92, 96, 0.23), transparent 32%),
        radial-gradient(circle at 71% 100%, rgba(178, 141, 93, 0.12), transparent 39%),
        linear-gradient(145deg, #29241f 0%, #383028 50%, #3a2427 100%);
    box-shadow: 0 39px 83px rgba(74, 49, 32, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.benefits-panel::before {
    border-color: rgba(246, 223, 188, 0.1);
    box-shadow: 0 0 0 38px rgba(235, 208, 168, 0.02), 0 0 0 76px rgba(235, 208, 168, 0.013);
}

.benefits-heading .eyebrow {
    color: rgba(244, 230, 209, 0.64);
}

.benefits-heading > p,
.benefit p {
    color: rgba(245, 232, 213, 0.61);
}

.benefit {
    border-color: rgba(255, 245, 229, 0.13);
    background: rgba(255, 248, 238, 0.07);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.benefit > span {
    color: rgba(244, 221, 188, 0.46);
}

.faq-list details {
    border-color: rgba(255, 255, 255, 0.86);
    background: rgba(255, 252, 247, 0.65);
}

.faq-list details[open] {
    background: rgba(255, 254, 251, 0.9);
}

.faq-list summary i {
    border-color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 253, 249, 0.67);
    box-shadow: 0 6px 16px rgba(73, 52, 36, 0.08), inset 0 1px 0 #fff;
}

.faq-list summary i::before,
.faq-list summary i::after {
    background: #6d645b;
}

.faq-list details p {
    color: #7a726a;
}

.cta-panel {
    border-color: rgba(255, 255, 255, 0.34);
    background:
        radial-gradient(circle at 79% 7%, rgba(255, 239, 211, 0.5), transparent 29%),
        radial-gradient(circle at 96% 86%, rgba(182, 104, 109, 0.3), transparent 34%),
        linear-gradient(125deg, #b88d5f 0%, #946b4e 42%, #8d5558 76%, #56383a 100%);
    box-shadow: 0 38px 76px rgba(112, 73, 46, 0.25), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.cta-shine {
    background: linear-gradient(90deg, transparent, rgba(255, 245, 228, 0.2), transparent);
}

.cta-panel .eyebrow {
    color: rgba(255, 247, 236, 0.75);
}

.cta-panel .eyebrow::before {
    background: #fff4e3;
    box-shadow: 0 0 0 5px rgba(255, 244, 226, 0.12);
}

.breadcrumbs {
    color: #80776f;
}

.breadcrumbs a:hover {
    color: #9f744c;
}

.breadcrumbs i {
    background: #a09991;
}

.breadcrumbs span {
    color: #514941;
}

.product-gallery,
.product-info {
    border-color: rgba(255, 255, 255, 0.87);
    background: rgba(255, 252, 247, 0.69);
}

.gallery-main > img {
    background: #f1ebe3;
}

.gallery-thumb.is-active {
    border-color: rgba(177, 130, 77, 0.45);
    background: rgba(255, 252, 247, 0.8);
}

.status-inline {
    color: #766e66;
    background: rgba(238, 229, 218, 0.68);
}

.status-inline.is-available i {
    background: #7e9872;
    box-shadow: 0 0 0 4px rgba(126, 152, 114, 0.12);
}

.product-price {
    background: linear-gradient(92deg, #4a4036, #9f744c 48%, #a66568);
    -webkit-background-clip: text;
    background-clip: text;
}

.product-fact {
    border-color: rgba(255, 255, 255, 0.83);
    background: rgba(239, 230, 218, 0.52);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.product-fact span {
    color: #7a726a;
}

.product-description {
    color: #554e47;
}

.reservation-note {
    color: #7e766e;
}

.reservation-note i,
.privacy-chip i {
    background: linear-gradient(135deg, #ddc49d, #b68250, #a9676b);
    box-shadow: 0 0 0 5px rgba(177, 131, 78, 0.08);
}

.share-button {
    border-color: rgba(255, 255, 255, 0.86);
    color: #625a52;
    background: rgba(255, 252, 247, 0.6);
    box-shadow: inset 0 1px 0 #fff;
}

.share-button:hover {
    color: #302a25;
    background: rgba(255, 254, 251, 0.94);
}

.reservation-shell {
    border-color: rgba(255, 255, 255, 0.86);
    background:
        radial-gradient(circle at 5% 5%, rgba(209, 171, 117, 0.2), transparent 31%),
        radial-gradient(circle at 90% 91%, rgba(210, 148, 149, 0.13), transparent 35%),
        rgba(255, 252, 247, 0.68);
}

.reservation-panel > p {
    color: #7d756d;
}

.privacy-chip {
    border-color: rgba(255, 255, 255, 0.86);
    color: #71685f;
    background: rgba(255, 252, 247, 0.57);
}

.reservation-form-wrap {
    border-color: rgba(255, 255, 255, 0.88);
    background: rgba(255, 253, 249, 0.61);
    box-shadow: 0 22px 49px rgba(88, 62, 40, 0.11), inset 0 1px 0 #fff;
}

.field label {
    color: #655d55;
}

.field input,
.field textarea {
    border-color: rgba(111, 83, 58, 0.13);
    color: #39322c;
    background: rgba(244, 238, 230, 0.79);
    box-shadow: inset 0 2px 5px rgba(75, 54, 37, 0.035), 0 1px 0 #fff;
}

.field input:focus,
.field textarea:focus {
    border-color: rgba(173, 125, 72, 0.42);
    background: rgba(255, 254, 251, 0.96);
    box-shadow: 0 0 0 4px rgba(177, 130, 76, 0.08), inset 0 1px 0 #fff;
}

.field input::placeholder,
.field textarea::placeholder {
    color: #aaa198;
}

.phone-prefix {
    color: #655d55;
}

.phone-hint {
    color: #837a72;
}

.form-hint {
    color: #837a72;
}

.notice-error {
    border-color: rgba(180, 96, 105, 0.18);
    color: #9e4f5c;
    background: rgba(255, 234, 235, 0.72);
}

.queue-number {
    border-color: rgba(255, 255, 255, 0.84);
    color: #fffaf2;
    background: linear-gradient(145deg, #d9ba8c, #b88655 48%, #9e6261);
    box-shadow: 0 22px 41px rgba(107, 72, 46, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.54);
}

.queue-success p {
    color: #7d756d;
}

.footer-panel {
    border-color: rgba(255, 245, 230, 0.13);
    background:
        radial-gradient(circle at 5% 0%, rgba(205, 162, 105, 0.17), transparent 29%),
        radial-gradient(circle at 98% 100%, rgba(145, 79, 84, 0.18), transparent 30%),
        linear-gradient(145deg, #29241f, #352c25 58%, #3a2528);
    box-shadow: 0 34px 75px rgba(80, 52, 34, 0.23), inset 0 1px 0 rgba(255, 255, 255, 0.09);
}

.wordmark-light .wordmark-copy small,
.footer-note,
.footer-contact p {
    color: rgba(246, 233, 214, 0.53);
}

.footer-links > span,
.footer-contact > span {
    color: rgba(244, 224, 196, 0.43);
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 244, 229, 0.81);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fffaf2;
}

.footer-bottom {
    border-color: rgba(255, 241, 219, 0.1);
    color: rgba(244, 222, 190, 0.39);
}

.system-card {
    border-color: rgba(255, 255, 255, 0.87);
    background: rgba(255, 252, 247, 0.72);
}

.system-card p {
    color: #7d756d;
}

.system-orb {
    background: conic-gradient(from 180deg, rgba(236, 218, 188, 0.55), rgba(194, 145, 90, 0.52), rgba(166, 104, 94, 0.48), rgba(183, 112, 117, 0.46), rgba(236, 218, 188, 0.55));
}

@media (max-width: 1100px) {
    .mobile-menu a {
        color: #554d45;
    }

    .mobile-menu a:hover {
        background: rgba(235, 224, 210, 0.55);
    }

    .mobile-menu .mobile-viber {
        color: #fffaf3;
        background: linear-gradient(135deg, #4b4036, #6b4b3a, #754548);
    }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))) {
    .glass-surface,
    .glass-control,
    .mobile-menu,
    .reservation-form-wrap {
        background: rgba(255, 252, 247, 0.96);
    }
}
