:root {
    --bg: #f4f1ea;
    --ink: #14211c;
    --green: #1f6b4a;
    --line: #d9d3c7;
    --card: #fffdf8;
    --muted: #5c675f;
}

* { box-sizing: border-box; }

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, sans-serif;
    background: var(--bg);
    color: var(--ink);
    line-height: 1.45;
}

a { color: var(--green); }

.site .bar, .site main, .site .foot { width: min(960px, calc(100% - 2rem)); margin: 0 auto; }

.wrap { width: min(1080px, calc(100% - 1.5rem)); margin-inline: auto; }

.platform .sheet { width: min(720px, calc(100% - 1.5rem)); margin: 1.5rem auto 3rem; }

.bar {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1rem;
    align-items: center;
    padding: 1rem 0;
}

.bar nav { display: flex; flex-wrap: wrap; gap: .75rem; }

.bar a, .foot a { text-decoration: none; }

.mark { font-weight: 700; color: var(--ink); }

.slogan {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    line-height: 1.15;
    margin: 0 0 .75rem;
}

.lead { font-size: 1.15rem; }

.button, button {
    display: inline-block;
    background: var(--green);
    color: #fff;
    border: 0;
    border-radius: 999px;
    padding: .65rem 1rem;
    text-decoration: none;
    font: inherit;
    cursor: pointer;
}

h1, h2, h3 { line-height: 1.2; }

.steps, .cards, .countries, .trust, .hours { list-style: none; padding: 0; margin: 0; }

.steps, .cards { display: grid; gap: .75rem; }

@media (min-width: 720px) {
    .steps, .cards { grid-template-columns: repeat(3, 1fr); }
}

.steps li, .cards article, .sheet, .block, .ad {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem;
}

.countries {
    display: grid;
    grid-template-columns: 1fr;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--card);
    overflow: hidden;
}

.countries li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .75rem;
    min-height: 48px;
    margin: 0;
    padding: 0 .9rem;
    border-bottom: 1px solid var(--line);
}

.countries li:last-child { border-bottom: 0; }

.countries span { color: var(--ink); }

.countries em {
    flex: none;
    font-style: normal;
    font-size: .72rem;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

@media (min-width: 720px) {
    .countries {
        grid-template-columns: 1fr 1fr;
        gap: .4rem .7rem;
        border: 0;
        background: transparent;
        overflow: visible;
    }

    .countries li {
        border: 1px solid var(--line);
        border-radius: 12px;
        background: var(--card);
    }
}

.sheet { margin: 1rem 0 2rem; }

.form, .editor { display: grid; gap: .75rem; }

label { display: grid; gap: .25rem; font-size: .95rem; }

input, select, textarea {
    font: inherit;
    padding: .55rem .7rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    width: 100%;
}

textarea { min-height: 6rem; }

.errors { color: #8a2b2b; }

.foot { padding: 2rem 0 3rem; color: var(--muted); }

.foot p { display: flex; flex-wrap: wrap; gap: .75rem; }

.site.palette-noche { --bg: #14181c; --ink: #f4f1ea; --green: #e0a24a; --card: #1d2328; --line: #343b42; --muted: #c5cdc4; }
.site.palette-arena { --bg: #f6f1e6; --ink: #1c1915; --green: #9a5b2f; --card: #fffaf2; --line: #e4d8c6; }
.site.palette-selva { --bg: #f3f6f2; --ink: #14241a; --green: #1f6b4a; --card: #fff; --line: #d5e0d6; }
.site.palette-ambar { --bg: #fff8ee; --ink: #2a2118; --green: #c47b12; --card: #fff; --line: #ead9b8; }

.hero-block img, .editor img { width: 100%; height: auto; border-radius: 12px; background: var(--line); }

.hours { display: grid; gap: .25rem; }

.hours li { display: flex; justify-content: space-between; gap: 1rem; }

.pre { white-space: pre-wrap; }

.ad { display: flex; gap: .75rem; align-items: baseline; font-size: .9rem; margin: .75rem 0; }

.saved { color: var(--green); }

.top {
    position: sticky;
    top: 0;
    z-index: 2;
    background: rgba(244, 241, 234, .92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(8px);
}

.top-inner, .foot-inner {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem 1.25rem;
    align-items: center;
    justify-content: space-between;
    padding: .85rem 0;
}

.top-tools, .foot-inner p { display: flex; flex-wrap: wrap; gap: .85rem; align-items: center; }

.top-inner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
}

.top-tools { justify-self: end; }

.mark { display: inline-flex; align-items: center; gap: .55rem; color: inherit; text-decoration: none; }

.mark-logo { width: 2rem; height: 2rem; display: block; flex: none; }

.mark-name {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.28rem;
    letter-spacing: -.03em;
    line-height: 1;
    color: var(--ink);
}

.mark-name small {
    font-family: ui-sans-serif, system-ui, sans-serif;
    font-size: .68rem;
    letter-spacing: .01em;
    color: var(--muted);
    margin-left: .08rem;
}

.nav-fold { position: relative; }

.nav-burger {
    display: none;
    width: 2.45rem;
    height: 2.45rem;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
    cursor: pointer;
    list-style: none;
}

.nav-burger::-webkit-details-marker { display: none; }

.nav-burger span,
.nav-burger span::before,
.nav-burger span::after {
    display: block;
    width: .95rem;
    height: 1.5px;
    background: #0e2419;
    border-radius: 2px;
    position: relative;
}

.nav-burger span::before,
.nav-burger span::after {
    content: "";
    position: absolute;
    left: 0;
}

.nav-burger span::before { top: -5px; }
.nav-burger span::after { top: 5px; }

.nav-fold { display: none; }

.top nav {
    display: flex;
    gap: .15rem;
    align-items: center;
    background: #fff;
    border: 1px solid #cfc6b8;
    border-radius: 999px;
    padding: .22rem;
    box-shadow: 0 8px 22px rgba(14, 36, 25, .06);
}



.top nav a {
    color: var(--ink);
    text-decoration: none;
    padding: .42rem .8rem;
    border-radius: 999px;
    font-size: .92rem;
}

.top nav a.is-current,
.top nav a:hover { background: #0e2419; color: #f4f1ea; }

@media (max-width: 800px) {
    .top-inner {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr) auto;
        align-items: center;
        gap: .45rem;
    }
    .mark { grid-column: 1; }
    .mark-name small { display: none; }
    .top .nav-desk { display: none; }
    .nav-fold { display: block; grid-column: 3; }
    .top-tools {
        grid-column: 2;
        justify-self: end;
        margin-left: 0;
        min-width: 0;
    }
    .lang-menu { min-width: 0; max-width: 100%; }
    .nav-burger { display: grid; }
    .top-tools .text-link,
    .top-tools .button-small { display: none; }
    .lang-menu summary {
        max-width: 7.2rem;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
    }
    .nav-fold[open] nav {
        display: grid;
        position: absolute;
        top: calc(100% + .55rem);
        right: 0;
        width: min(16rem, 72vw);
        padding: .35rem;
        border-radius: 16px;
        background: #fffdf8;
        box-shadow: 0 16px 36px rgba(14, 36, 25, .14);
        z-index: 4;
    }
    .top .button-small { display: none; }
}

.top select { width: auto; padding: .35rem .5rem; background: transparent; }

.button-small { padding: .45rem .85rem; font-size: .92rem; }

.text-link { color: var(--ink); text-decoration: none; font-weight: 650; }

.stage {
    background:
        radial-gradient(900px 420px at 90% -10%, rgba(224, 162, 74, .35), transparent 60%),
        linear-gradient(165deg, #123526 0%, #0e2419 55%, #1a3b2c 100%);
    color: #f4f1ea;
    padding: 3.2rem 0 4rem;
}

.stage-grid { display: grid; gap: 2rem; align-items: center; }

@media (min-width: 860px) {
    .stage-grid { grid-template-columns: 1.3fr .8fr; }
}

.eyebrow {
    margin: 0 0 .8rem;
    letter-spacing: .14em;
    font-size: .78rem;
    color: #e0a24a;
}

.stage .slogan { font-size: clamp(2.1rem, 5vw, 3.6rem); max-width: 16ch; }

.stage .lead { font-size: 1.25rem; max-width: 34rem; color: #d7e4da; }

.promise { max-width: 36rem; color: #e7d7b4; margin-top: .35rem; }

#leicht, #sprachen, #precios, #dominio, #paises, #ventajas, #porque, #redes { scroll-margin-top: 5.5rem; }

.band-cta { margin: 1.4rem 0 0; }

#ventajas .cards, #porque .cards, #redes .cards { grid-template-columns: 1fr; }

@media (min-width: 800px) {
    #ventajas .cards, #porque .cards { grid-template-columns: 1fr 1fr; }
    #redes .cards { grid-template-columns: 1fr; }
}

@media (min-width: 960px) {
    #redes .cards { grid-template-columns: 1fr 1fr 1fr; }
}

.stage-actions { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-top: 1.4rem; }

.stage .button { background: #e0a24a; color: #1c1408; font-weight: 700; }

.text-link.light { color: #f4f1ea; }

.preview {
    background: #f6f1e6;
    color: #1c1915;
    border-radius: 22px;
    padding: 1rem;
    box-shadow: 0 24px 50px rgba(0, 0, 0, .25);
}

.preview-kicker { margin: 0 0 .6rem; font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: #9a5b2f; }

.preview-bar { display: flex; gap: .35rem; margin-bottom: .8rem; }

.preview-bar span { width: .55rem; height: .55rem; border-radius: 50%; background: #d9d3c7; }

.preview-hero {
    border-radius: 16px;
    min-height: 9rem;
    padding: 1.1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background:
        linear-gradient(180deg, transparent, rgba(14, 36, 25, .72)),
        linear-gradient(135deg, #1f6b4a, #0e2419 70%);
    color: #f4f1ea;
}

.preview-hero strong { font-family: Georgia, serif; font-size: 1.6rem; }

.preview-hero em { font-style: normal; opacity: .85; }

.preview ul { list-style: none; padding: .8rem .2rem 0; margin: 0; display: grid; gap: .35rem; }

.preview-host { margin: .8rem 0 0; font-size: .85rem; color: #5c675f; }

.band { padding: 2.6rem 0; }

.band h2, .trust-band h2 { font-family: Georgia, serif; font-size: 2rem; margin-top: 0; }

.steps li { display: grid; gap: .35rem; }

.num { font-family: Georgia, serif; color: var(--green); font-size: 1.3rem; }

.price { font-family: Georgia, serif; font-size: 2.4rem; margin: .2rem 0 .6rem; }

.price small, .price-note { display: block; font-family: ui-sans-serif, system-ui, sans-serif; font-size: .95rem; color: var(--muted); font-weight: 400; }

.domain-search { display: grid; gap: .5rem; margin-top: .4rem; }

.domain-search button { width: 100%; }

.domain-results { list-style: none; padding: 0; margin: .75rem 0 0; display: grid; gap: .4rem; }

.domain-results li { display: flex; justify-content: space-between; gap: .6rem; font-size: .92rem; }

.domain-results .taken { color: var(--muted); text-decoration: line-through; }

.cards .featured {
    background: #0e2419;
    color: #f4f1ea;
    border-color: #0e2419;
}

.cards .featured .price small { color: #e0a24a; }

.price-local, .price-when { margin: 0 0 .35rem; font-size: .95rem; }

.price-when { color: var(--muted); }

.cards .featured .price-local,
.cards .featured .price-when { color: #e0a24a; }

.plan-points {
    margin: .7rem 0 0;
    padding: 0 0 0 1.05rem;
    display: grid;
    gap: .45rem;
}

.plan-points li { line-height: 1.4; }

.cards .featured .plan-points { color: #f4f1ea; }

.country-open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: .3rem;
    margin: .3rem 0 1rem;
    padding: 1.25rem 1.15rem 1.15rem;
    border-radius: 22px;
    text-decoration: none;
    color: #f4f1ea;
    background:
        radial-gradient(220px 140px at 100% 0%, rgba(224, 162, 74, .88), transparent 62%),
        #1f6b4a;
}

.country-kicker {
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: .72rem;
    color: #e0a24a;
}

.country-open strong {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.1rem, 9vw, 3rem);
    line-height: 1.05;
}

.country-go {
    margin-top: .85rem;
    display: inline-flex;
    align-items: center;
    min-height: 48px;
    padding: 0 1.05rem;
    border-radius: 999px;
    background: #e0a24a;
    color: #1c1408;
    font-weight: 700;
}

.trust-band { background: #0e2419; color: #f4f1ea; padding: 2.6rem 0; }

.trust-band .trust { display: grid; gap: .75rem; }

@media (min-width: 800px) {
    .trust-band .trust { grid-template-columns: 1fr 1fr; }
}

.trust-band .trust li {
    background: transparent;
    border: 1px solid rgba(244, 241, 234, .2);
    border-radius: 16px;
    padding: 1rem;
}

.module-row { list-style: none; padding: 0; margin: 0; display: grid; gap: .75rem; }

@media (min-width: 720px) {
    .module-row { grid-template-columns: repeat(3, 1fr); }
}

.module-row li {
    display: grid;
    gap: .3rem;
    padding: 1rem;
    border-radius: 16px;
    background: var(--card);
    border: 1px solid var(--line);
}

.module-row span { color: var(--muted); }

.platform .foot {
    width: auto;
    margin: 0;
    background: #0e2419;
    color: #d7e4da;
}

.platform .foot a { color: #f4f1ea; }

.platform .foot .mark-name,
.platform .foot .mark-name small { color: #f4f1ea; }

.lang-switch {
    display: flex;
    gap: .1rem;
    background: #fff;
    border: 1px solid #cfc6b8;
    border-radius: 999px;
    padding: .18rem;
}

.lang-switch button {
    width: auto;
    background: transparent;
    color: var(--ink);
    border-radius: 999px;
    padding: .32rem .55rem;
    font-size: .78rem;
    letter-spacing: .04em;
}

.lang-switch button.is-current { background: #0e2419; color: #f4f1ea; }

.lang-menu { position: relative; }

.lang-menu summary {
    list-style: none;
    cursor: pointer;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .4rem .8rem;
    background: #fff;
    font-weight: 650;
}

.lang-menu summary::-webkit-details-marker { display: none; }

.lang-menu form, .lang-band form { display: grid; gap: .75rem; }

.lang-menu form {
    position: absolute;
    right: 0;
    top: calc(100% + .4rem);
    width: min(28rem, 80vw);
    max-height: 22rem;
    overflow: auto;
    padding: .8rem;
    background: #fffdf8;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: 0 18px 40px rgba(14, 36, 25, .16);
    z-index: 3;
}

.lang-grid { display: flex; flex-wrap: wrap; gap: .45rem; }

.lang-grid button {
    width: auto;
    border-radius: 999px;
    padding: .45rem .75rem;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    font-size: .95rem;
}

.lang-grid button.is-current { background: #0e2419; color: #f4f1ea; border-color: #0e2419; }

.lang-lead { max-width: 40rem; color: var(--muted); font-size: 1.05rem; }

.lang-feature {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.2rem;
    align-items: baseline;
    margin: .4rem 0 1rem;
}

.lang-feature button {
    width: auto;
    background: transparent;
    color: #0e2419;
    border: 0;
    border-radius: 0;
    padding: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(1.5rem, 3vw, 2.15rem);
    line-height: 1.2;
}

.lang-feature button:hover { color: #9a5b2f; }

.lang-q { max-width: 22rem; }

html[dir="rtl"] .stage .slogan { direction: ltr; text-align: start; }

html[dir="rtl"] .lang-menu form { right: auto; left: 0; }

.hint { margin: 0; color: var(--muted); font-size: .9rem; }

fieldset.plans {
    margin: 0;
    padding: .85rem .9rem 1rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    display: grid;
    gap: .65rem;
}

fieldset.plans legend { padding: 0 .3rem; font-weight: 700; }

.plan-choice {
    display: flex;
    align-items: flex-start;
    gap: .7rem;
    padding: .75rem .8rem;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
}

.plan-choice input {
    width: 1.15rem;
    height: 1.15rem;
    margin: .15rem 0 0;
    padding: 0;
    flex: none;
    accent-color: var(--green);
}

.plan-choice > span { display: grid; gap: .15rem; }

.plan-free { font-weight: 700; }

.plan-after { color: var(--muted); font-size: .92rem; }

.guide-jump { margin: -.35rem 0 1.2rem; }

.guide-filters { margin: 1rem 0 1.25rem; }

.check {
    display: flex;
    align-items: center;
    gap: .55rem;
}

.check input { width: 1.1rem; height: 1.1rem; }

.views { display: flex; flex-wrap: wrap; gap: .4rem; }

.views a {
    text-decoration: none;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: .4rem .75rem;
    background: #fff;
    color: var(--ink);
}

.views a.is-current {
    background: #0e2419;
    color: #f4f1ea;
    border-color: #0e2419;
}

.guide h2 { margin: 1.25rem 0 .55rem; font-size: 1.15rem; }

.guide-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
    display: grid;
    gap: .65rem;
}

.guide-list li {
    display: grid;
    gap: .2rem;
    padding: .85rem .9rem;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
}

.guide-list a { font-weight: 700; text-decoration: none; }

.guide-list span,
.guide-list em { color: var(--muted); font-style: normal; font-size: .92rem; }

.plans-page h1,
.about-page h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 5vw, 3rem);
    margin: 0 0 .35rem;
}

.plans-page .lang-lead,
.about-page .lang-lead { margin-top: 0; }

.plan-grid {
    display: grid;
    gap: .75rem;
    margin: 1rem 0 1.6rem;
}

@media (min-width: 800px) {
    .plan-grid { grid-template-columns: 1fr 1fr; }
}

.plan-grid article {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem 1.05rem 1.15rem;
}

.plan-kicker {
    margin: 0;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-size: .75rem;
    font-weight: 700;
}

.plan-registrar {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.45rem;
    line-height: 1.2;
    margin: .35rem 0 .25rem;
}

.plan-grid .price { margin-bottom: .15rem; }

.plan-grid .featured {
    background: #0e2419;
    color: #f4f1ea;
    border-color: #0e2419;
}

.plan-grid .featured .plan-kicker,
.plan-grid .featured .price-when,
.plan-grid .featured .price-local,
.plan-grid .featured .price small { color: #e0a24a; }

.plan-grid .featured .plan-points { color: #f4f1ea; }

.plans-cta { margin: .2rem 0 0; }

.langs { margin: 0; padding: 0; border: 0; }

.panel-app .nav-desk,
.panel-app .nav-fold,
.panel-app .order,
.panel-app .foot { display: none; }

.panel {
    display: grid;
    grid-template-columns: 210px minmax(0, 1fr);
    gap: 1rem;
    width: min(1100px, calc(100% - 1.5rem));
    margin: 1rem auto 2.5rem;
    align-items: start;
}

.panel-side {
    position: sticky;
    top: .8rem;
    background: #10281c;
    color: #f4f1ea;
    border-radius: 18px;
    padding: .85rem .7rem;
}

.panel-hello { margin: .2rem .6rem .7rem; font-weight: 700; }

.panel-side nav { display: grid; gap: .15rem; }

.panel-side nav a,
.panel-back {
    color: #f4f1ea;
    text-decoration: none;
    padding: .55rem .7rem;
    border-radius: 10px;
}

.panel-side nav a:hover,
.panel-back:hover { background: rgba(255, 255, 255, .08); }

.panel-side nav a.is-current { background: rgba(255, 255, 255, .14); font-weight: 700; }

.panel-side form { margin: .8rem .3rem 0; }

.panel-side button {
    width: 100%;
    background: transparent;
    color: #f4f1ea;
    border: 1px solid rgba(255, 255, 255, .25);
}

.panel-back { display: block; margin-top: .8rem; font-size: .85rem; color: #c9c2b4; }

.panel-main { display: grid; gap: .85rem; }

.panel-tiles { display: grid; gap: .85rem; }

.panel-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 1rem 1.05rem 1.15rem;
}

.panel-card h1,
.panel-card h2 { font-family: Georgia, "Times New Roman", serif; margin: .15rem 0 .4rem; }

.panel-main .form { max-width: none; }

@media (min-width: 860px) {
    .panel-tiles { grid-template-columns: 1.2fr .8fr; }
}

@media (max-width: 800px) {
    .panel { grid-template-columns: 1fr; }
    .panel-side { position: static; }
    .panel-side nav { display: flex; gap: .25rem; overflow-x: auto; }
    .panel-side nav a { white-space: nowrap; }
}

.phone { display: flex; align-items: center; gap: .4rem; }

.phone-code {
    padding: .55rem .7rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #f3efe6;
    font-weight: 700;
    white-space: nowrap;
}

.phone input { flex: 1; width: auto; }

.lang-picks { display: flex; flex-wrap: wrap; gap: .45rem; }

.lang-picks .check {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    width: auto;
    margin: 0;
    padding: .4rem .75rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #fff;
}

.lang-picks .check input {
    width: 1rem;
    height: 1rem;
    margin: 0;
    padding: 0;
    border-radius: .2rem;
    flex: none;
    accent-color: var(--green);
}

.lang-picks .check:has(input:checked) {
    background: #143226;
    color: #f4f1ea;
    border-color: #143226;
}

.shop-top {
    position: sticky;
    top: 0;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .65rem .9rem;
    width: min(880px, calc(100% - 1.5rem));
    margin: 0 auto;
    padding: .8rem 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
}

.shop-name {
    color: var(--ink);
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
}

.shop-nav, .shop-langs { display: flex; flex-wrap: wrap; gap: .7rem; }

.shop-nav { width: 100%; }

.shop-nav a, .shop-langs a { color: var(--ink); text-decoration: none; }

.shop-langs a.is-current { font-weight: 700; }

.shop-call { margin-left: auto; }

.site main { width: min(880px, calc(100% - 1.5rem)); }

.site .block {
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--line);
}

.shop-hero { padding: 2.2rem 0 1.6rem; }

.shop-hero h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(2.2rem, 7vw, 3.6rem);
    margin: .2rem 0 .45rem;
}

.shop-kicker, .shop-lead { margin: 0; }

.shop-kicker { color: var(--muted); letter-spacing: .04em; text-transform: uppercase; font-size: .78rem; }

.shop-lead { font-size: 1.15rem; max-width: 38rem; }

.shop-hero .button { margin-top: 1rem; }

.shop-photo {
    width: 100%;
    max-height: 360px;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 1rem;
}

.service-grid { display: grid; gap: .75rem; }

.service-grid article {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: .9rem 1rem;
}

.site .ad {
    background: transparent;
    border-style: dashed;
}

.shop-foot { border-top: 1px solid var(--line); }

.shop-foot strong { color: var(--ink); }

@media (min-width: 760px) {
    .shop-nav { width: auto; margin-left: auto; }
    .service-grid { grid-template-columns: 1fr 1fr; }
}

.chat-log { display: grid; gap: .45rem; margin: 0 0 .75rem; max-height: 22rem; overflow: auto; }

.chat-log p { margin: 0; padding: .55rem .75rem; border-radius: 14px; max-width: 34rem; }

.chat-bot { background: #143226; color: #f4f1ea; }

.chat-user { background: #fff; border: 1px solid var(--line); justify-self: end; }

.chat-chips { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: .7rem; }

.chat-chips button {
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    border-radius: 999px;
    padding: .35rem .7rem;
}

.chat-compose { display: flex; gap: .45rem; }

.chat-compose input { flex: 1; }
