:root {
    --bg: #08090b;
    --surface: #101216;
    --surface-2: #171a20;
    --surface-3: #20242c;
    --text: #f7f5f2;
    --muted: #b7b1a8;
    --soft: #7e7780;
    --line: rgba(255, 255, 255, .11);
    --line-strong: rgba(255, 255, 255, .2);
    --red: #f02d3a;
    --red-2: #a80718;
    --gold: #f4b860;
    --cyan: #48d6d2;
    --green: #25d366;
    --shadow: 0 22px 60px rgba(0, 0, 0, .38);
    --radius: 8px;
    --max: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    overflow-x: hidden;
    color: var(--text);
    background:
        linear-gradient(135deg, rgba(240, 45, 58, .14), transparent 34%),
        linear-gradient(215deg, rgba(72, 214, 210, .1), transparent 32%),
        var(--bg);
    font-family: Inter, Montserrat, Arial, sans-serif;
    font-size: 16px;
    line-height: 1.55;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
    background-size: 44px 44px;
    mask-image: linear-gradient(to bottom, rgba(0, 0, 0, .75), transparent 78%);
}

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

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

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    padding: 14px max(22px, calc((100vw - var(--max)) / 2 + 20px));
    background: rgba(8, 9, 11, .82);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    width: clamp(132px, 16vw, 180px);
    max-width: 42vw;
    min-height: 42px;
    overflow: hidden;
}

.brand img {
    width: 100%;
    height: auto;
    max-height: 52px;
    object-fit: contain;
}

nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 6px;
    flex-wrap: wrap;
}

.nav-toggle {
    width: 44px;
    height: 44px;
    display: none;
    place-items: center;
    gap: 5px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .05);
    color: var(--text);
    cursor: pointer;
}

.nav-toggle span {
    width: 20px;
    height: 2px;
    display: block;
    border-radius: 999px;
    background: currentColor;
    transition: transform .18s ease, opacity .18s ease;
}

.site-header.nav-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.site-header.nav-open .nav-toggle span:nth-child(2) {
    opacity: 0;
}

.site-header.nav-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

nav a,
.nav-dropdown summary {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 12px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    color: rgba(247, 245, 242, .78);
    font-weight: 750;
    list-style: none;
    cursor: pointer;
    transition: color .18s ease, background .18s ease, border-color .18s ease, transform .18s ease;
}

nav a:hover,
.nav-dropdown summary:hover,
.nav-dropdown[open] summary {
    color: var(--text);
    background: rgba(255, 255, 255, .07);
    border-color: var(--line);
    transform: translateY(-1px);
}

.nav-dropdown {
    position: relative;
}

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

.nav-dropdown summary::after {
    content: "";
    width: 7px;
    height: 7px;
    margin-left: 8px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-2px) rotate(45deg);
}

.nav-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 40;
    min-width: 190px;
    display: grid;
    gap: 4px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(8, 9, 11, .96);
    box-shadow: var(--shadow);
}

.nav-menu a {
    justify-content: flex-start;
    width: 100%;
}

.cart-link {
    color: var(--text);
    background: rgba(240, 45, 58, .12);
    border-color: rgba(240, 45, 58, .35);
}

.main-wrap {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
    padding: 36px 0 10px;
}

.hero {
    min-height: calc(100vh - 126px);
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .75fr);
    align-items: center;
    gap: 44px;
    padding: 32px 0 56px;
}

.hero > *,
.catalog-head > *,
.visual-section > *,
.product-detail > *,
.checkout-grid > *,
.account-grid > * {
    min-width: 0;
}

.hero h1 {
    max-width: 780px;
    margin: 10px 0 18px;
    font-size: clamp(52px, 9vw, 118px);
    line-height: .88;
    font-weight: 950;
    overflow-wrap: anywhere;
}

.hero p {
    max-width: 650px;
    margin: 0;
    color: rgba(247, 245, 242, .78);
    font-size: clamp(18px, 2vw, 22px);
}

.eyebrow,
.tag {
    color: var(--gold);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 900;
}

.actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: fit-content;
    max-width: 100%;
    padding: 11px 16px;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .06);
    color: var(--text);
    font-weight: 850;
    line-height: 1.15;
    cursor: pointer;
    transition: transform .18s ease, border-color .18s ease, background .18s ease, box-shadow .18s ease;
}

.btn:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, .32);
    background: rgba(255, 255, 255, .1);
}

.btn:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 3px solid rgba(72, 214, 210, .34);
    outline-offset: 2px;
}

.btn.primary {
    border-color: rgba(240, 45, 58, .65);
    background: linear-gradient(135deg, var(--red), var(--red-2));
    box-shadow: 0 18px 35px rgba(240, 45, 58, .2);
}

.btn.ghost {
    background: rgba(255, 255, 255, .03);
}

.btn.small {
    min-height: 38px;
    margin-top: 12px;
    padding: 9px 12px;
    font-size: 14px;
}

.btn.danger {
    border-color: rgba(240, 45, 58, .5);
    background: rgba(240, 45, 58, .13);
    color: #ffd6da;
}

.hero-card {
    min-height: 420px;
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(160deg, rgba(240, 45, 58, .22), transparent 45%),
        linear-gradient(25deg, rgba(72, 214, 210, .16), transparent 42%),
        var(--surface);
    box-shadow: var(--shadow);
    text-align: center;
    font-size: clamp(50px, 7vw, 82px);
    font-weight: 950;
    isolation: isolate;
}

.hero-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background:
        linear-gradient(90deg, transparent 49%, rgba(255, 255, 255, .08) 50%, transparent 51%),
        linear-gradient(transparent 49%, rgba(255, 255, 255, .08) 50%, transparent 51%);
    background-size: 52px 52px;
}

.hero-card small {
    display: block;
    margin-top: 10px;
    color: rgba(247, 245, 242, .7);
    font-size: 15px;
    font-weight: 800;
}

.hero-media,
.catalog-media,
.visual-media,
.gallery-grid figure {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
}

.hero-media {
    aspect-ratio: 4 / 5;
    min-height: 420px;
    max-height: 560px;
}

.hero-media img,
.catalog-media img,
.visual-media img,
.gallery-grid img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.section,
.process {
    padding: 54px 0;
}

.section,
.process,
.trust-band,
.product-sections,
.editorial-preview,
.final-cta,
.site-footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 420px;
}

.page-head {
    max-width: 780px;
    padding: 44px 0 28px;
}

.catalog-head,
.visual-section {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, 1fr);
    gap: 28px;
    align-items: center;
}

.catalog-media {
    aspect-ratio: 16 / 7;
    max-height: 360px;
}

.visual-media {
    aspect-ratio: 16 / 10;
    max-height: 440px;
}

.section h1,
.section h2,
.process h2 {
    margin: 0 0 16px;
    font-size: clamp(34px, 5vw, 54px);
    line-height: 1;
    font-weight: 950;
    overflow-wrap: anywhere;
}

.section p,
.process p {
    color: rgba(247, 245, 242, .72);
}

.section-intro {
    max-width: 820px;
    margin-bottom: 22px;
}

.grid {
    display: grid;
    gap: 18px;
}

.products-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.product-sections {
    display: grid;
    gap: 38px;
}

.product-section {
    padding-top: 18px;
    border-top: 1px solid var(--line);
}

.product-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.product-section-head h2 {
    margin: 6px 0 8px;
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1;
}

.product-section-head p {
    max-width: 720px;
    margin: 0;
    color: rgba(247, 245, 242, .68);
}

.product-empty {
    margin-top: 0;
}

.product-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(244, 184, 96, .08), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .025));
    box-shadow: 0 18px 45px rgba(0, 0, 0, .24);
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(244, 184, 96, .45);
    background: linear-gradient(180deg, rgba(255, 255, 255, .08), rgba(255, 255, 255, .035));
}

.product-img {
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 26% 18%, rgba(244, 184, 96, .18), transparent 28%),
        linear-gradient(135deg, rgba(240, 45, 58, .12), transparent 38%),
        var(--surface);
}

.product-img img,
.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 16px;
}

.product-card h3 {
    margin: 10px 0 6px;
    font-size: 21px;
    line-height: 1.15;
}

.product-card p {
    margin: 0 0 14px;
    color: rgba(247, 245, 242, .68);
}

.price-block {
    margin-top: auto;
    display: grid;
    gap: 4px;
    align-items: start;
}

.price-current {
    font-size: 21px;
    color: var(--gold);
    line-height: 1.1;
}

.price-old {
    width: fit-content;
    color: rgba(247, 245, 242, .48);
    font-size: 14px;
    font-weight: 850;
    text-decoration: line-through;
    text-decoration-thickness: 2px;
}

.price-badge {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    min-height: 26px;
    padding: 5px 8px;
    border: 1px solid rgba(244, 184, 96, .34);
    border-radius: var(--radius);
    background: rgba(244, 184, 96, .12);
    color: #ffe2ad;
    font-size: 12px;
    font-weight: 900;
}

.about-brand {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 24px;
    align-items: start;
    border-top: 1px solid var(--line);
}

.about-copy p {
    max-width: 820px;
}

.about-card-list,
.brand-grid,
.values-grid,
.customizer-grid {
    display: grid;
    gap: 16px;
}

.about-card-list article,
.brand-grid article,
.values-grid div,
.customizer-option {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(16, 18, 22, .78);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .2);
}

.about-card-list article,
.brand-grid article {
    padding: 20px;
}

.about-card-list h3,
.brand-grid h3,
.customizer-option h2 {
    margin: 0 0 10px;
}

.brand-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.values-section {
    border-top: 1px solid var(--line);
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.values-grid div {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.values-grid strong {
    color: var(--gold);
    font-size: 18px;
}

.values-grid span {
    color: rgba(247, 245, 242, .7);
}

.seo-content {
    border-top: 1px solid var(--line);
}

.seo-link-grid,
.guide-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.seo-link-grid a,
.guide-card,
.internal-links a {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #111111;
}

.seo-link-grid a,
.guide-card {
    display: grid;
    gap: 8px;
    padding: 18px;
}

.seo-link-grid strong,
.guide-card h2,
.guide-card h3 {
    margin: 0;
    color: var(--text);
    line-height: 1.05;
}

.seo-link-grid span,
.guide-card p,
.guide-lead {
    color: var(--muted);
}

.guide-detail {
    max-width: 860px;
}

.guide-detail h1 {
    margin: 8px 0 14px;
    font-size: clamp(40px, 7vw, 72px);
    line-height: .95;
}

.guide-detail section {
    padding: 22px 0;
    border-top: 1px solid var(--line);
}

.guide-detail section h2 {
    margin: 0 0 10px;
}

.guide-cta,
.internal-links,
.cart-total-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.internal-links {
    margin-top: 18px;
}

.internal-links a {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    padding: 9px 12px;
    color: var(--gold);
    font-weight: 850;
}

.customizer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 18px 0 42px;
}

.customizer-option {
    display: grid;
    grid-template-columns: minmax(150px, .65fr) minmax(0, 1fr);
    gap: 18px;
    align-items: center;
    padding: 16px;
}

.customizer-media {
    aspect-ratio: 4 / 3;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    background: var(--surface);
}

.customizer-media img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 12px;
}

.customizer-option ul {
    margin: 12px 0;
    padding-left: 18px;
    color: rgba(247, 245, 242, .72);
}

.product-detail {
    display: grid;
    grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
    gap: 34px;
    align-items: start;
    padding: 54px 0;
}

.product-detail h1 {
    margin: 8px 0 14px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: .98;
}

.detail-price {
    display: grid;
    gap: 7px;
    margin: 22px 0;
}

.detail-price .price-current {
    font-size: clamp(34px, 5vw, 52px);
}

.detail-image {
    min-height: 460px;
    display: grid;
    place-items: center;
    overflow: hidden;
    position: sticky;
    top: 92px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(72, 214, 210, .12), transparent 40%),
        var(--surface);
    box-shadow: var(--shadow);
}

.form-card,
.cart-total,
.summary,
.empty,
.cart-item,
.steps div,
.gallery-grid figure {
    background: rgba(16, 18, 22, .82);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
}

.form-card {
    display: grid;
    gap: 15px;
    padding: 20px;
}

label {
    display: grid;
    gap: 7px;
    color: rgba(247, 245, 242, .78);
    font-size: 14px;
    font-weight: 780;
}

input,
textarea,
select {
    width: 100%;
    min-height: 45px;
    padding: 12px 13px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, .28);
    color: var(--text);
    transition: border-color .18s ease, background .18s ease;
}

input:hover,
textarea:hover,
select:hover {
    border-color: rgba(255, 255, 255, .24);
}

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

select option {
    background: #15171c;
    color: var(--text);
}

.cart-list {
    display: grid;
    gap: 12px;
}

.cart-item {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(180px, 220px) auto;
    gap: 16px;
    align-items: center;
    padding: 16px;
}

.cart-update {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 8px;
    align-items: center;
}

.cart-item p {
    margin: 4px 0 0;
    color: rgba(247, 245, 242, .68);
}

.cart-total,
.summary,
.empty {
    margin-top: 18px;
    padding: 20px;
}

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

.cart-total h2,
.summary h2 {
    margin: 0;
    color: var(--gold);
}

.checkout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
    gap: 22px;
    align-items: start;
}

.summary {
    position: sticky;
    top: 92px;
}

.summary h3 {
    margin-top: 0;
}

.summary p {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    border-bottom: 1px solid var(--line);
    padding-bottom: 10px;
}

.steps {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.steps div {
    min-height: 112px;
    display: flex;
    align-items: center;
    padding: 22px;
    color: rgba(247, 245, 242, .84);
    font-weight: 850;
}

.gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

.gallery-grid figure {
    margin: 0;
}

.gallery-grid img {
    aspect-ratio: 1 / 1;
}

.gallery-grid figcaption {
    min-height: 58px;
    display: grid;
    gap: 3px;
    align-content: center;
    padding: 14px 16px;
    color: rgba(247, 245, 242, .84);
    font-weight: 850;
}

.gallery-grid figcaption span {
    color: rgba(244, 184, 96, .78);
    font-size: 12px;
    text-transform: uppercase;
}

.collection-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.collection-card {
    display: grid;
    gap: 16px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(16, 18, 22, .82);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
}

.collection-img {
    aspect-ratio: 16 / 10;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    background: var(--surface);
}

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

.site-footer {
    margin-top: 56px;
    padding: 36px max(22px, calc((100vw - var(--max)) / 2 + 20px));
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    border-top: 1px solid var(--line);
    background: rgba(0, 0, 0, .36);
    color: rgba(247, 245, 242, .72);
}

.site-footer strong {
    color: var(--text);
    font-size: 22px;
}

.site-footer p {
    max-width: 620px;
    margin: 8px 0 0;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.footer-contact span {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.footer-contact a {
    min-height: 38px;
    display: inline-flex;
    align-items: center;
    padding: 8px 11px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: rgba(247, 245, 242, .82);
    font-weight: 800;
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 30;
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 13px;
    border-radius: var(--radius);
    background: var(--green);
    color: #062512;
    font-weight: 950;
    box-shadow: 0 18px 36px rgba(37, 211, 102, .26);
    opacity: .9;
}

.alert {
    margin: 14px 0;
    padding: 13px 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.alert.success {
    border-color: rgba(37, 211, 102, .35);
    background: rgba(37, 211, 102, .12);
    color: #c9ffdc;
}

.alert.error {
    border-color: rgba(240, 45, 58, .38);
    background: rgba(240, 45, 58, .12);
    color: #ffd6da;
}

.auth-head {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.auth-shell {
    width: min(460px, 100%);
    margin: 0 auto 40px;
}

.auth-card p {
    margin: 4px 0 0;
    color: rgba(247, 245, 242, .72);
}

.google-auth-card {
    display: grid;
    gap: 14px;
    padding: 16px;
    border: 1px solid rgba(200, 155, 60, .3);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(200, 155, 60, .13), transparent 42%),
        #0c0c0c;
}

.google-auth-copy {
    display: grid;
    gap: 2px;
}

.google-auth-copy strong {
    color: var(--text);
    font-size: 18px;
    line-height: 1.15;
}

.google-auth-copy span {
    color: var(--muted);
    font-size: 14px;
}

.google-button-frame {
    display: grid;
    justify-content: center;
}

.google-button-frame iframe {
    max-width: 100%;
}

.auth-separator {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 6px 0;
    color: rgba(247, 245, 242, .56);
    font-size: 13px;
    font-weight: 850;
    text-transform: uppercase;
}

.auth-separator::before,
.auth-separator::after {
    content: "";
    height: 1px;
    flex: 1;
    background: var(--line);
}

.auth-card a {
    color: var(--gold);
    font-weight: 850;
}

.account-hero {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 22px;
    align-items: center;
    padding: 44px 0 28px;
}

.account-hero h1 {
    margin: 6px 0 10px;
    font-size: clamp(38px, 6vw, 68px);
    line-height: .98;
}

.account-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(247, 245, 242, .72);
}

.account-avatar {
    width: 92px;
    height: 92px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(240, 45, 58, .45);
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(240, 45, 58, .95), rgba(168, 7, 24, .82));
    color: var(--text);
    font-size: 42px;
    font-weight: 950;
    box-shadow: 0 18px 40px rgba(240, 45, 58, .2);
}

.account-grid {
    display: grid;
    grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
    gap: 22px;
    align-items: start;
}

.account-grid h2 {
    margin: 0 0 10px;
}

.account-panel {
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(16, 18, 22, .82);
    box-shadow: 0 16px 38px rgba(0, 0, 0, .22);
}

.account-data {
    display: grid;
    gap: 12px;
    margin: 18px 0;
}

.account-data div,
.account-cart-item,
.account-stats div {
    border: 1px solid rgba(255, 255, 255, .09);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, .035);
}

.account-data div {
    padding: 13px 14px;
}

.account-data dt {
    color: var(--gold);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.account-data dd {
    margin: 3px 0 0;
    overflow-wrap: anywhere;
    color: rgba(247, 245, 242, .88);
    font-weight: 780;
}

.account-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.account-password {
    display: grid;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.account-password h3 {
    margin: 0;
    font-size: 22px;
}

.account-password .btn {
    width: 100%;
}

.account-summary-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.account-summary-head strong {
    color: var(--gold);
    font-size: 28px;
}

.account-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.account-stats div {
    display: grid;
    gap: 2px;
    padding: 14px;
}

.account-stats span {
    color: var(--text);
    font-size: 22px;
    font-weight: 950;
}

.account-stats small {
    color: rgba(247, 245, 242, .6);
    font-weight: 800;
}

.account-empty {
    margin-top: 0;
}

.account-cart-list {
    display: grid;
    gap: 10px;
    margin-bottom: 16px;
}

.account-cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 14px;
}

.account-cart-item p {
    margin: 4px 0 0;
    color: rgba(247, 245, 242, .62);
}

.account-cart-item span {
    color: var(--gold);
    font-weight: 950;
    white-space: nowrap;
}

:root {
    --bg: #080808;
    --surface: #111111;
    --surface-2: #151515;
    --surface-3: #1c1c1c;
    --text: #f5f5f5;
    --muted: #a6a6a6;
    --soft: #777777;
    --line: #2a2a2a;
    --line-strong: #3a3a3a;
    --gold: #c89b3c;
    --orange: #ff6a00;
    --red: #8b1111;
    --red-2: #5e0909;
    --cyan: #ff6a00;
    --shadow: 0 24px 58px rgba(0, 0, 0, .42);
}

body {
    background:
        linear-gradient(180deg, #0b0b0b 0%, #080808 54%, #0b0b0b 100%);
    font-family: Inter, Montserrat, Arial, sans-serif;
}

html {
    background: #080808;
}

.hero h1,
.section h1,
.section h2,
.process h2,
.product-detail h1,
.product-section-head h2,
.final-cta h2,
.category-card strong,
.product-card h3 {
    font-family: "Bebas Neue", "Arial Narrow", Arial, sans-serif;
    font-weight: 400;
    letter-spacing: 0;
}

.hero h1 {
    font-size: 104px;
    line-height: .88;
}

.section h1,
.section h2,
.process h2,
.final-cta h2 {
    font-size: 54px;
}

.product-detail h1 {
    font-size: 66px;
}

.btn {
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0;
    font-size: 13px;
    box-shadow: none;
}

.btn.primary {
    border-color: rgba(200, 155, 60, .72);
    background: linear-gradient(135deg, var(--gold), var(--orange));
    color: #080808;
    box-shadow: 0 18px 34px rgba(200, 155, 60, .18);
}

.btn.ghost {
    border-color: rgba(200, 155, 60, .38);
}

.hero {
    gap: 54px;
    min-height: 650px;
    padding: 54px 0 72px;
}

.hero-product-shot {
    border-color: rgba(200, 155, 60, .28);
    background:
        linear-gradient(160deg, rgba(200, 155, 60, .16), transparent 42%),
        linear-gradient(25deg, rgba(139, 17, 17, .24), transparent 48%),
        #0d0d0d;
}

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

.hero-kpis span {
    min-height: 54px;
    display: flex;
    align-items: center;
    padding-left: 14px;
    border-left: 2px solid var(--gold);
    color: rgba(245, 245, 245, .86);
    font-weight: 800;
}

.trust-band {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--line);
}

.trust-band div {
    min-height: 104px;
    display: grid;
    align-content: center;
    gap: 4px;
    padding: 18px;
    background: #101010;
}

.trust-band strong,
.category-card strong {
    color: var(--text);
    font-size: 26px;
    line-height: 1;
}

.trust-band span,
.category-card span {
    color: var(--muted);
}

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

.section-row h2,
.section-row p {
    margin-bottom: 0;
}

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

.category-card {
    min-height: 142px;
    display: grid;
    align-content: end;
    gap: 8px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background:
        linear-gradient(145deg, rgba(200, 155, 60, .12), transparent 38%),
        #111111;
    transition: transform .18s ease, border-color .18s ease, background .18s ease;
}

.category-card:hover {
    transform: translateY(-4px);
    border-color: rgba(200, 155, 60, .48);
    background:
        linear-gradient(145deg, rgba(255, 106, 0, .14), transparent 38%),
        #141414;
}

.product-card {
    padding: 18px;
    background:
        linear-gradient(150deg, rgba(200, 155, 60, .09), transparent 28%),
        #111111;
}

.product-card:hover {
    border-color: rgba(200, 155, 60, .52);
    background: #151515;
}

.product-img {
    aspect-ratio: 1 / 1;
    background:
        linear-gradient(150deg, rgba(200, 155, 60, .12), transparent 34%),
        #0b0b0b;
}

.product-card h3 {
    margin-top: 14px;
    font-size: 30px;
}

.product-copy {
    min-height: 48px;
}

.price-current {
    color: var(--gold);
}

.price-badge {
    border-color: rgba(200, 155, 60, .42);
    background: rgba(200, 155, 60, .13);
    color: #f6d78c;
}

.commerce-process .steps div {
    border: 1px solid var(--line);
    background:
        linear-gradient(145deg, rgba(200, 155, 60, .1), transparent 36%),
        #111111;
}

.editorial-preview {
    display: grid;
    grid-template-columns: 1.25fr .8fr .8fr;
    grid-auto-rows: 190px;
    gap: 14px;
}

.editorial-preview figure,
.editorial-gallery figure {
    position: relative;
    overflow: hidden;
    margin: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #111111;
}

.editorial-preview figure.featured {
    grid-row: span 2;
}

.editorial-preview img,
.editorial-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.editorial-preview figcaption {
    position: absolute;
    left: 12px;
    bottom: 12px;
    padding: 8px 10px;
    border: 1px solid rgba(255, 255, 255, .13);
    border-radius: var(--radius);
    background: rgba(0, 0, 0, .58);
    color: var(--text);
    font-weight: 800;
}

.lifestyle-section {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, 1.05fr);
    gap: 34px;
    align-items: center;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.lifestyle-section h2 {
    max-width: 620px;
}

.lifestyle-section p {
    max-width: 680px;
}

.trust-section .values-grid div {
    background: #111111;
}

.final-cta {
    display: grid;
    gap: 14px;
    justify-items: center;
    margin: 42px 0 18px;
    padding: 50px 22px;
    border: 1px solid rgba(200, 155, 60, .34);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(200, 155, 60, .14), transparent 42%),
        linear-gradient(25deg, rgba(139, 17, 17, .24), transparent 48%),
        #101010;
    text-align: center;
}

.final-cta h2,
.final-cta p {
    margin: 0;
}

.final-cta p {
    max-width: 620px;
    color: var(--muted);
}

.detail-copy {
    max-width: 720px;
    color: var(--muted);
}

.detail-image {
    background:
        linear-gradient(145deg, rgba(200, 155, 60, .14), transparent 38%),
        #101010;
}

.form-card {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #111111;
}

.form-help {
    margin: -2px 0 0;
    color: var(--muted);
    font-size: 13px;
}

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

.product-trust div {
    display: grid;
    gap: 4px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #111111;
}

.product-trust strong {
    color: var(--gold);
}

.product-trust span {
    color: var(--muted);
    font-size: 13px;
}

.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0 0 22px;
}

.gallery-filter button {
    min-height: 40px;
    padding: 9px 14px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: #111111;
    color: var(--muted);
    cursor: pointer;
    font-weight: 850;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.gallery-filter button:hover,
.gallery-filter button.active {
    border-color: rgba(200, 155, 60, .58);
    background: var(--gold);
    color: #080808;
}

.editorial-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 260px;
    grid-auto-flow: dense;
}

.editorial-gallery figure {
    min-height: 0;
    display: grid;
    grid-template-rows: minmax(0, 1fr) auto;
}

.editorial-gallery figure.featured {
    grid-column: span 2;
    grid-row: span 2;
}

.editorial-gallery figcaption {
    min-height: 68px;
}

.editorial-gallery figure[hidden] {
    display: none;
}
