:root {
    --promo-h: 34px;
    --topbar-h: 56px;
    --nav-h: 60px;
    --header-h: 74px;
    --brand: #3bb3e6;
    --cta: #d08a49;
    --cta-hover: #c57e3c;
    --radius: 12px;

    --page-bg: #ffffff;
    --page-text: #0f172a;
    --page-muted: #4b5563;
    --section-alt-bg: #f6f7f9;

    --surface: #ffffff;
    --surface-2: #f6f7f9;
    --border: rgba(15, 23, 42, 0.12);
    --shadow: 0 10px 22px rgba(17, 24, 39, 0.08);

    --header-bg: #ffffff;
    --header-text: #0f172a;
    --header-muted: #374151;
    --header-border: rgba(15, 23, 42, 0.14);
    --header-chip-bg: rgba(15, 23, 42, 0.06);
    --header-chip-border: rgba(15, 23, 42, 0.12);
    --header-hover: rgba(15, 23, 42, 0.06);

    --on-dark-text: rgba(255, 255, 255, 0.92);
    --on-dark-muted: rgba(255, 255, 255, 0.70);
    --on-dark-border: rgba(255, 255, 255, 0.10);
}

@media (prefers-color-scheme: dark) {
    :root:not([data-theme]) {
        --page-bg: #070b10;
        --page-text: rgba(255, 255, 255, 0.92);
        --page-muted: rgba(255, 255, 255, 0.70);
        --section-alt-bg: #0b0f14;

        --surface: #0b0f14;
        --surface-2: #101826;
        --border: rgba(255, 255, 255, 0.10);
        --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);

        --header-bg: #0c1118;
        --header-text: rgba(255, 255, 255, 0.92);
        --header-muted: rgba(255, 255, 255, 0.70);
        --header-border: rgba(255, 255, 255, 0.10);
        --header-chip-bg: rgba(255, 255, 255, 0.08);
        --header-chip-border: rgba(255, 255, 255, 0.14);
        --header-hover: rgba(255, 255, 255, 0.06);
    }
}

:root[data-theme="dark"] {
    --page-bg: #070b10;
    --page-text: rgba(255, 255, 255, 0.92);
    --page-muted: rgba(255, 255, 255, 0.70);
    --section-alt-bg: #0b0f14;

    --surface: #0b0f14;
    --surface-2: #101826;
    --border: rgba(255, 255, 255, 0.10);
    --shadow: 0 14px 40px rgba(0, 0, 0, 0.35);

    --header-bg: #0c1118;
    --header-text: rgba(255, 255, 255, 0.92);
    --header-muted: rgba(255, 255, 255, 0.70);
    --header-border: rgba(255, 255, 255, 0.10);
    --header-chip-bg: rgba(255, 255, 255, 0.08);
    --header-chip-border: rgba(255, 255, 255, 0.14);
    --header-hover: rgba(255, 255, 255, 0.06);
}

@media (prefers-reduced-motion: reduce) {
    * {
        scroll-behavior: auto !important;
        transition: none !important;
        animation: none !important;
    }
}

* {
    box-sizing: border-box;
}

html,
body {
    height: 100%;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--page-text);
    background: var(--page-bg);
    padding-top: var(--header-h);
}

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

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-h);
    z-index: 90;
    background: color-mix(in oklab, var(--header-bg) 92%, transparent);
    border-bottom: 1px solid var(--header-border);
    backdrop-filter: blur(8px);
}

.site-header__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.site-header__logo {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--header-border);
    background: #ffffff;
    display: grid;
    place-items: center;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.site-header__logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.site-header__logo img {
    width: 44px;
    height: 44px;
    object-fit: contain;
}

.site-header__nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.site-header__link {
    padding: 12px 16px;
    border-radius: 999px;
    font-weight: 800;
    font-size: 16px;
    color: var(--header-text);
    background: color-mix(in oklab, var(--header-hover) 60%, transparent);
    border: 1px solid color-mix(in oklab, var(--header-border) 70%, transparent);
    box-shadow: 0 1px 2px rgba(0,0,0,0.12);
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.site-header__link:hover {
    background: color-mix(in oklab, var(--header-hover) 100%, transparent);
    border-color: var(--header-border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.16);
}

.site-header__link[aria-current="page"] {
    background: var(--cta);
    border-color: var(--cta);
    color: var(--on-dark-text);
    box-shadow: 0 2px 10px rgba(208, 138, 73, 0.28);
    font-weight: 900;
}

.site-header__link[aria-current="page"]:hover {
    background: var(--cta-hover);
    border-color: var(--cta-hover);
}

.site-header__menu-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid var(--header-border);
    background: var(--surface);
    box-shadow: var(--shadow);
    display: grid;
    place-items: center;
    cursor: pointer;
    color: var(--header-text);
    transition: background 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.site-header__menu-btn:hover {
    background: color-mix(in oklab, var(--header-hover) 100%, transparent);
    border-color: var(--header-border);
    box-shadow: 0 2px 10px rgba(0,0,0,0.18);
}

.whatsapp-fab {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 90;
    width: 56px;
    height: 56px;
    border-radius: 18px;
    background: #25d366;
    color: #0b1220;
    display: grid;
    place-items: center;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
}

.whatsapp-fab i {
    font-size: 26px;
}

.backdrop {
    position: fixed;
    inset: 0;
    z-index: 95;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(2px);
}

.side-menu {
    position: fixed;
    top: 0;
    right: 0;
    height: 100dvh;
    width: min(360px, 92vw);
    z-index: 1001;
    background: var(--surface);
    border-left: 1px solid var(--border);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.28);
    transform: translateX(110%);
    transition: transform 180ms ease;
    display: grid;
    align-content: start;
    gap: 12px;
    padding: 14px;
}

.side-menu.is-open {
    transform: translateX(0);
}

.side-menu__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.side-menu__brand {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid var(--border);
    display: grid;
    place-items: center;
    overflow: hidden;
}

.side-menu__brand img {
    width: 46px;
    height: 46px;
    object-fit: contain;
}

.side-menu__close {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border);
    cursor: pointer;
    display: grid;
    place-items: center;
    color: var(--page-text);
    transition: background 160ms ease, border-color 160ms ease;
}

.side-menu__link:hover {
    background: var(--surface-2);
    border-color: var(--cta);
}

.side-menu__link[aria-current="page"] {
    background: var(--cta);
    color: #ffffff;
    border-color: var(--cta);
}

.side-menu__nav {
    display: grid;
    gap: 8px;
}

.side-menu__link {
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    font-weight: 700;
    color: var(--page-text);
}

.side-menu__cta {
    margin-top: 6px;
    padding: 12px 12px;
    border-radius: 14px;
    background: var(--cta);
    color: #111827;
    font-weight: 800;
    text-align: center;
}

@media (min-width: 768px) {
    .side-menu__section > .side-menu__cta {
        display: none;
    }
}

.side-menu__section {
    border-top: 1px solid var(--border);
    padding-top: 12px;
    display: grid;
    gap: 4px;
}

.side-menu__label {
    font-weight: 800;
    color: var(--page-text);
    font-size: 13px;
}

.side-menu__meta {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 12px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--page-text);
    font-weight: 700;
}

.side-menu__meta i {
    color: color-mix(in oklab, var(--cta) 75%, #111827);
}

.lang {
    display: inline-flex;
    gap: 8px;
}

.lang__btn {
    padding: 10px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    cursor: pointer;
    font-weight: 800;
    color: var(--page-text);
    min-width: 54px;
}

.lang__btn[aria-pressed="true"] {
    border-color: color-mix(in oklab, var(--brand) 40%, var(--border));
    background: color-mix(in oklab, var(--brand) 16%, var(--surface));
}

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

.contact-card {
    display: grid;
    gap: 10px;
    padding: 22px;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.contact-card:hover {
    transform: translateY(-3px);
    border-color: color-mix(in oklab, var(--cta) 32%, var(--border));
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.16);
}

.contact-card:active {
    transform: translateY(-1px);
}

.contact-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(
        135deg,
        color-mix(in oklab, var(--cta) 22%, var(--surface)) 0%,
        color-mix(in oklab, var(--brand) 14%, var(--surface)) 100%
    );
    border: 1px solid color-mix(in oklab, var(--cta) 22%, var(--border));
    color: color-mix(in oklab, var(--cta) 70%, var(--page-text));
}

.contact-card__label {
    font-weight: 900;
    font-size: 14px;
    color: var(--page-text);
}

.contact-card__value {
    color: var(--page-muted);
    font-weight: 700;
    line-height: 1.35;
}

.about__panel--pro {
    padding: 24px;
}

.about__panel-head {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}

.about__panel-icon {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: linear-gradient(
        135deg,
        color-mix(in oklab, var(--cta) 20%, var(--surface)) 0%,
        color-mix(in oklab, var(--brand) 12%, var(--surface)) 100%
    );
    border: 1px solid color-mix(in oklab, var(--cta) 20%, var(--border));
    color: color-mix(in oklab, var(--cta) 70%, var(--page-text));
    flex: 0 0 auto;
}

.about__owner-img {
    width: 100%;
    height: 100%;
    border-radius: 999px;
    object-fit: cover;
}

.about__panel-sub {
    margin: 6px 0 0;
    color: var(--page-muted);
    font-weight: 600;
    line-height: 1.6;
}

.container {
    width: min(1200px, calc(100% - 40px));
    margin: 0 auto;
}

.promo-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--promo-h);
    z-index: 60;
    background: var(--brand);
    color: #0b1220;
    display: flex;
    align-items: center;
    font-weight: 600;
    letter-spacing: 0.2px;
}

.promo-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.topbar {
    position: fixed;
    top: var(--promo-h);
    left: 0;
    right: 0;
    height: var(--topbar-h);
    z-index: 70;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
}

.topbar__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.topbar__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 260px;
}

.topbar__mark {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: var(--header-chip-bg);
    border: 1px solid var(--header-chip-border);
    display: grid;
    place-items: center;
    color: var(--header-text);
    font-weight: 800;
}

.topbar__name {
    color: var(--header-text);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2px;
}

.topbar__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--header-muted);
    font-size: 13px;
}

.theme {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.theme__btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--page-text);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.theme__btn[aria-pressed="true"] {
    border-color: color-mix(in oklab, var(--brand) 40%, var(--border));
    background: color-mix(in oklab, var(--brand) 16%, var(--surface));
    color: var(--page-text);
}

.theme__btn:hover {
    border-color: color-mix(in oklab, var(--cta) 32%, var(--border));
    background: var(--surface-2);
}

.topbar__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 10px;
    transition: background 140ms ease, color 140ms ease;
}

.topbar__link:hover {
    background: var(--header-hover);
    color: var(--header-text);
}

.topbar__search {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border: 1px solid var(--header-border);
    border-radius: 999px;
    background: var(--header-hover);
    color: var(--header-muted);
}

.topbar__search input {
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--header-text);
    width: 180px;
    font-size: 13px;
}

.topbar__search input::placeholder {
    color: color-mix(in oklab, var(--header-muted) 75%, transparent);
}

.nav {
    position: fixed;
    top: calc(var(--promo-h) + var(--topbar-h));
    left: 0;
    right: 0;
    height: var(--nav-h);
    z-index: 80;
    background: var(--header-bg);
    border-bottom: 1px solid var(--header-border);
}

.nav__inner {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.nav__logo {
    color: var(--header-text);
    font-weight: 800;
    letter-spacing: 0.4px;
}

.nav__toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--header-border);
    color: var(--header-text);
    border-radius: 10px;
    padding: 10px 12px;
    cursor: pointer;
}

.nav__menu {
    display: block;
}

.nav__list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 0;
    margin: 0;
}

.nav__link {
    color: color-mix(in oklab, var(--header-text) 82%, transparent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2px;
    padding: 10px 2px;
    transition: color 140ms ease;
}

.nav__link:hover {
    color: var(--header-text);
}

.nav__cta {
    background: var(--cta);
    color: #111827;
    padding: 10px 14px;
    border-radius: 999px;
}

.nav__cta:hover {
    color: #111827;
    background: var(--cta-hover);
}

.hero {
    position: relative;
    height: min(720px, calc(100vh - var(--header-h)));
    min-height: 520px;
    background: #05070a;
    overflow: hidden;
}

.hero--small {
    height: min(520px, calc(70vh - var(--header-h)));
    min-height: 360px;
}

.hero__slides {
    position: absolute;
    inset: 0;
}

.hero__slide {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    opacity: 0;
    transform: scale(1.03);
    transition: opacity 700ms ease, transform 1200ms ease;
}

.hero__slide.is-active {
    opacity: 1;
    transform: scale(1);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.40) 46%, rgba(0, 0, 0, 0.25) 100%);
}

.hero__content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 10px;
    padding: 36px 0;
    color: var(--on-dark-text);
}

.hero__kicker {
    margin: 0;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    font-size: 12px;
}

.hero__title {
    margin: 0;
    font-size: clamp(36px, 4.2vw, 64px);
    line-height: 1.05;
    letter-spacing: -0.6px;
}

.hero__price {
    margin: 4px 0 10px;
    font-size: 20px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.90);
}

.hero__unit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.70);
    font-weight: 500;
}

.hero__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero__controls {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 14px;
    pointer-events: none;
}

.hero__arrow {
    pointer-events: auto;
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: var(--on-dark-text);
    border-radius: 999px;
    cursor: pointer;
    transition: background 160ms ease;
}

.hero__arrow:hover {
    background: rgba(0, 0, 0, 0.50);
}

.hero__dots {
    pointer-events: auto;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hero__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.12);
    cursor: pointer;
    padding: 0;
}

.hero__dot.is-active {
    background: var(--cta);
    border-color: var(--cta);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.2px;
    cursor: pointer;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.btn--primary {
    background: var(--cta);
    color: #111827;
}

.btn--primary:hover {
    background: var(--cta-hover);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.16);
    color: var(--on-dark-text);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.10);
}

.btn--outline {
    background: transparent;
    border-color: var(--border);
    color: var(--page-text);
}

.btn--outline:hover {
    border-color: color-mix(in oklab, var(--border) 50%, var(--page-text));
}

.btn--block {
    width: 100%;
}

.specs {
    background: var(--surface);
    color: var(--page-text);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

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

.spec {
    padding: 12px 10px;
    border-radius: 10px;
}

.spec__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.24px;
    color: var(--page-muted);
    font-weight: 700;
    margin-bottom: 8px;
}

.spec__value {
    font-size: 13px;
    font-weight: 600;
    color: var(--page-text);
}

.section {
    padding: 70px 0;
}

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

.section__head {
    max-width: 760px;
    margin-bottom: 28px;
}

.section__head h2 {
    margin: 0 0 10px;
    font-size: 38px;
    letter-spacing: -0.4px;
}

.section__head p {
    margin: 0;
    color: var(--page-muted);
}

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

.btn--sm {
    padding: 10px 14px;
    font-size: 12px;
}

.product-carousel {
    position: relative;
}

.product-carousel__track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 2px 2px 10px;
    border-radius: var(--radius);
    scroll-behavior: smooth;
}

.product-carousel__track::-webkit-scrollbar {
    height: 10px;
}

.product-carousel__track::-webkit-scrollbar-thumb {
    background: color-mix(in oklab, var(--border) 55%, transparent);
    border-radius: 999px;
}

.product-carousel__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--surface) 90%, transparent);
    color: var(--page-text);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    z-index: 2;
}

.product-carousel__arrow[data-xscroll-prev] {
    inset-inline-start: -8px;
}

.product-carousel__arrow[data-xscroll-next] {
    inset-inline-end: -8px;
}

.product-tile {
    scroll-snap-align: start;
    flex: 0 0 280px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    overflow: hidden;
    display: grid;
}

.product-tile__img {
    aspect-ratio: 16 / 10;
    background: #0b0f14;
    overflow: hidden;
}

.product-tile__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.product-tile__body {
    padding: 16px;
    display: grid;
    gap: 10px;
    text-align: center;
}

.product-tile__title {
    margin: 0;
    font-size: 15px;
    font-weight: 900;
}

.product-tile__sub {
    margin: 0;
    color: var(--page-muted);
    font-weight: 600;
    font-size: 13px;
    line-height: 1.35;
}

.product-tile__price {
    font-weight: 900;
    color: var(--page-text);
    font-size: 14px;
}

.product-tile__price span {
    color: var(--page-muted);
    font-weight: 800;
}

.product-tile__body .btn {
    width: 100%;
}

.product-tile__body .btn--primary {
    padding: 12px 18px;
    font-size: 13px;
}

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

.product-detail {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 18px;
    align-items: start;
}

.product-detail__hero {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    background: var(--surface);
    box-shadow: var(--shadow);
    aspect-ratio: 16 / 9;
}

.product-detail__hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 200ms ease;
}

.product-detail__hero.is-zoom img {
    transform: scale(1.08);
}

.product-detail__gallery {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.product-detail__gallery img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    object-position: center;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: var(--surface);
    transition: border-color 160ms ease, transform 160ms ease;
}

.product-detail__gallery img:hover {
    transform: scale(1.02);
}

.product-detail__gallery img.is-active {
    border-color: var(--cta);
}

/* Fullscreen Image Viewer */
.viewer {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: none;
}
.viewer.is-open {
    display: block;
}
.viewer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    backdrop-filter: blur(2px);
}
.viewer__panel {
    position: absolute;
    inset: 6% 4% 6% 4%;
    border-radius: 16px;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: grid;
    grid-template-rows: auto 1fr;
}
.viewer__toolbar {
    display: flex;
    justify-content: flex-end;
    gap: 8px;
    padding: 10px;
    border-bottom: 1px solid var(--border);
}
.viewer__btn {
    padding: 8px 12px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: var(--surface);
    color: var(--page-text);
    font-weight: 700;
    cursor: pointer;
}
.viewer__btn:hover {
    background: var(--surface-hover, rgba(0,0,0,0.04));
}
.viewer__imgwrap {
    position: relative;
    overflow: hidden;
    cursor: grab;
}
.viewer__img {
    position: relative;
    display: block;
    max-width: none;
    max-height: none;
    width: 100%;
    height: auto;
    object-fit: contain;
    user-select: none;
    will-change: transform;
    transform-origin: 0 0;
    transition: transform 200ms ease-out;
}
.viewer__imgwrap:active {
    cursor: grabbing;
}

.viewer__img.is-dragging {
    transition: none;
}
.product-detail__info {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 18px;
    display: grid;
    gap: 14px;
}

.product-detail__price {
    font-size: 24px;
    font-weight: 1000;
    color: var(--page-text);
}

.product-detail__kpoints {
    display: grid;
    gap: 10px;
}

.product-detail__klabel {
    font-weight: 900;
    color: var(--page-text);
    font-size: 13px;
}

.product-detail__label {
    font-weight: 900;
    color: var(--page-text);
    font-size: 16px;
    margin-bottom: 8px;
}

.card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    background: var(--surface);
    box-shadow: var(--shadow);
}

.card__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(208, 138, 73, 0.14);
    color: color-mix(in oklab, var(--cta) 65%, #111827);
    margin-bottom: 14px;
}

.card h3 {
    margin: 0 0 10px;
    font-size: 18px;
}

.card p {
    margin: 0 0 14px;
    color: var(--page-muted);
}

.ticks {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 10px;
    color: var(--page-text);
    font-weight: 500;
    font-size: 13px;
}

.ticks li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    position: relative;
}

.ticks li::before {
    content: "";
    width: 18px;
    height: 18px;
    border-radius: 999px;
    background: color-mix(in oklab, var(--cta) 20%, transparent);
    border: 1px solid color-mix(in oklab, var(--cta) 40%, transparent);
    margin-top: 1px;
    flex: 0 0 auto;
}

.form input[type="checkbox"] {
    accent-color: var(--cta);
}

/* kp-container display rules removed */

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

.price-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    box-shadow: var(--shadow);
    position: relative;
}

.price-card h3 {
    margin: 0 0 10px;
}

.price-card__price {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin: 8px 0 10px;
}

.price-card__price span {
    font-size: 13px;
    font-weight: 600;
    color: var(--page-muted);
    margin-left: 6px;
}

.price-card p {
    margin: 0 0 18px;
    color: var(--page-muted);
}

.price-card.is-featured {
    border-color: rgba(208, 138, 73, 0.55);
    box-shadow: 0 18px 46px rgba(17, 24, 39, 0.10);
    transform: translateY(-6px);
}

.price-card__badge {
    position: absolute;
    top: -12px;
    left: 18px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(208, 138, 73, 0.20);
    border: 1px solid rgba(208, 138, 73, 0.40);
    color: #6b3f16;
    font-weight: 800;
    font-size: 11px;
    letter-spacing: 0.2px;
}

.areas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    align-items: stretch;
}

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

.pill {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 14px 18px;
    background: var(--surface);
    font-weight: 600;
    font-size: 18px;
    color: var(--page-text);
}

.pill i {
    color: #9a5c22;
    font-size: 22px;
}

.pill.is-active {
    background: var(--cta);
    border-color: var(--cta);
    color: var(--on-dark-text);
    box-shadow: 0 2px 10px rgba(208, 138, 73, 0.28);
    font-weight: 800;
}

.pill.is-active i {
    color: var(--on-dark-text);
}
.areas__map {
    border-radius: var(--radius);
    background: linear-gradient(135deg, color-mix(in oklab, var(--surface-2) 70%, #ffffff) 0%, var(--surface-2) 40%, color-mix(in oklab, var(--surface-2) 70%, #ffffff) 100%);
    border: 1px solid var(--border);
    min-height: 260px;
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.areas__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.areas__map-link {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.areas__map-link .areas__map-label {
    pointer-events: auto;
}

.areas__map-label {
    position: absolute;
    inset-inline: 14px;
    bottom: 14px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(0, 0, 0, 0.35);
    color: rgba(255, 255, 255, 0.92);
    font-weight: 800;
    text-align: center;
}

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

.about__owner-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.about__owner-photo-card {
    width: 180px;
    height: 180px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--surface);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.about__owner-card {
    max-width: 520px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.about__panel {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}

.about__panel h3 {
    margin: 0 0 12px;
}

.quote {
    background: var(--surface);
    color: var(--page-text);
    padding: 70px 0;
}

.quote__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-items: start;
}

.quote__info h2 {
    margin: 0 0 10px;
    font-size: 30px;
    letter-spacing: -0.4px;
}

.quote__info p {
    margin: 0 0 18px;
    color: var(--page-muted);
}

.quote__meta {
    display: grid;
    gap: 12px;
}

.quote__meta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--page-text);
    font-weight: 700;
    padding: 12px 14px;
    border-radius: 14px;
    border: 1px solid var(--border);
    background: color-mix(in oklab, var(--surface-2) 70%, var(--surface));
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.10);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.quote__meta-link:hover {
    transform: translateY(-2px);
    border-color: color-mix(in oklab, var(--cta) 32%, var(--border));
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.16);
}

.quote__meta-link:active {
    transform: translateY(-1px);
}

.quote__meta-link i {
    width: 22px;
    text-align: center;
    color: rgba(208, 138, 73, 0.95);
}

.form {
    background: var(--surface-2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 18px;
    box-shadow: var(--shadow);
}

.form__row {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.form__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--page-text);
}

.form__input {
    width: 100%;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: var(--surface);
    padding: 12px 12px;
    color: var(--page-text);
    outline: none;
    font-size: 13px;
}

.form__input::placeholder {
    color: var(--page-muted);
}

.footer {
    background: var(--surface);
    color: var(--page-muted);
    border-top: 1px solid var(--border);
    padding: 24px 0;
}

.footer__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.footer__brand {
    display: grid;
    gap: 4px;
}

.footer__logo {
    color: var(--page-text);
    font-weight: 900;
    letter-spacing: 0.3px;
}

.footer__tag {
    font-size: 13px;
}

.footer__nav {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.footer__nav a:hover {
    color: var(--page-text);
}

.footer__copy {
    font-size: 13px;
}

.how {
    background: var(--surface);
    color: var(--page-text);
    padding: 70px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.how__head {
    max-width: 860px;
    margin-bottom: 24px;
}

.how__head h2 {
    margin: 0 0 10px;
    font-size: 30px;
    letter-spacing: -0.4px;
    color: var(--page-text);
}

.how__head p {
    margin: 0;
    color: var(--page-muted);
}

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

.how-step {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--surface-2);
    box-shadow: var(--shadow);
    padding: 18px;
    display: grid;
    gap: 10px;
}

.how-step__dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    background: var(--cta);
}

.how-step__title {
    margin: 0;
    font-size: 16px;
    font-weight: 900;
    color: var(--page-text);
}

.how-step__text {
    margin: 0;
    color: var(--page-muted);
    line-height: 1.5;
    font-weight: 600;
}

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

@media (max-width: 980px) {
    .topbar__brand {
        min-width: auto;
    }

    .topbar__search {
        display: none;
    }

    .cards,
    .pricing {
        grid-template-columns: 1fr;
    }

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

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

    .areas,
    .about,
    .quote__grid {
        grid-template-columns: 1fr;
    }

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

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

@media (max-width: 820px) {
    .site-header__nav {
        display: none;
    }

    .topbar__actions {
        gap: 8px;
    }

    .topbar__link span {
        display: none;
    }

    .nav__toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .nav__menu {
        position: fixed;
        top: calc(var(--promo-h) + var(--topbar-h) + var(--nav-h));
        left: 0;
        right: 0;
        background: var(--header-bg);
        border-bottom: 1px solid var(--header-border);
        transform: translateY(-12px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 180ms ease, transform 180ms ease;
    }

    .nav__menu.is-open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav__list {
        flex-direction: column;
        align-items: stretch;
        padding: 14px 20px 18px;
        gap: 10px;
    }

    .nav__link {
        padding: 12px 10px;
        border-radius: 12px;
        background: var(--header-hover);
        border: 1px solid var(--header-border);
    }

    .nav__cta {
        text-align: center;
    }
}

@media (max-width: 820px) {
    .site-header--admin .site-header__nav {
        display: flex;
    }
}

/* Desktop Menu Adjustments */
@media (min-width: 821px) {
    .site-header__menu-btn {
        display: grid;
    }

    .side-menu__nav a[data-i18n="nav_home"],
    .side-menu__nav a[data-i18n="nav_products"],
    .side-menu__nav a[data-i18n="nav_area"],
    .side-menu__nav a[data-i18n="nav_about"],
    .side-menu__nav a[data-i18n="label_contact"] {
        display: none;
    }
}

/* Ensure Side Menu Items are Visible on Mobile */
@media (max-width: 820px) {
    .side-menu__nav a[data-i18n="nav_home"],
    .side-menu__nav a[data-i18n="nav_products"],
    .side-menu__nav a[data-i18n="nav_area"],
    .side-menu__nav a[data-i18n="nav_about"] {
        display: block !important;
    }
    
    .side-menu__nav a[data-i18n="label_contact"] {
        display: none !important;
    }
}
