* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --ink: #142841;
    --ink-deep: #081522;
    --sea: #6fb7b4;
    --sea-dark: #2d746f;
    --coral: #c56f52;
    --palm: #2f6b55;
    --shell: #f7f2ea;
    --sand: #e7dccd;
    --foam: #fbfaf6;
    --white: #ffffff;
    --text: #25313d;
    --muted: #6d7a83;
    --border: rgba(20, 40, 65, 0.14);
    --shadow-soft: 0 20px 50px rgba(20, 40, 65, 0.08);
    --shadow-strong: 0 28px 80px rgba(8, 21, 34, 0.22);
    --radius: 8px;
    --header-height: 76px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --font-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
    --font-sans: "Segoe UI", Arial, sans-serif;
}

html {
    scroll-behavior: smooth;
    scrollbar-color: var(--sea-dark) rgba(20, 40, 65, 0.08);
    scrollbar-width: thin;
}

* {
    scrollbar-color: var(--sea-dark) rgba(20, 40, 65, 0.08);
    scrollbar-width: thin;
}

*::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

*::-webkit-scrollbar-track {
    background:
        linear-gradient(180deg, rgba(251, 250, 246, 0.96), rgba(231, 220, 205, 0.44));
}

*::-webkit-scrollbar-thumb {
    border: 3px solid rgba(251, 250, 246, 0.96);
    border-radius: 99px;
    background: linear-gradient(180deg, var(--ink), var(--sea-dark));
}

*::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--sea-dark), var(--coral));
}

/* ==================== SCROLL REVEAL ANIMATIONS ==================== */

@keyframes revealFadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes revealFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes revealScale {
    from {
        opacity: 0;
        transform: scale(0.94);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes textRevealFadeUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(28px);
}

.scroll-reveal.is-visible {
    animation: revealFadeUp 0.8s var(--ease) forwards;
}

.scroll-reveal--fade {
    opacity: 0;
}

.scroll-reveal--fade.is-visible {
    animation: revealFadeIn 0.8s var(--ease) forwards;
}

.scroll-reveal--scale {
    opacity: 0;
    transform: scale(0.94);
}

.scroll-reveal--scale.is-visible {
    animation: revealScale 0.8s var(--ease) forwards;
}

/* Delay staggering para múltiplos elementos */
.scroll-reveal:nth-child(1) { animation-delay: 0ms; }
.scroll-reveal:nth-child(2) { animation-delay: 80ms; }
.scroll-reveal:nth-child(3) { animation-delay: 160ms; }
.scroll-reveal:nth-child(4) { animation-delay: 240ms; }
.scroll-reveal:nth-child(5) { animation-delay: 320ms; }
.scroll-reveal:nth-child(6) { animation-delay: 400ms; }
.scroll-reveal:nth-child(7) { animation-delay: 480ms; }
.scroll-reveal:nth-child(8) { animation-delay: 560ms; }

/* Smooth transitions para todos os elementos */
a, button, input, textarea, select {
    transition: color 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

/* Melhorias de transitions de header */
.site-header {
    transition: background 260ms var(--ease), box-shadow 260ms var(--ease), backdrop-filter 260ms var(--ease);
}

/* Smooth scroll behavior para links internos */
a[href^="#"] {
    scroll-behavior: smooth;
}

/* Animações especiais para section-heading */
.section-heading.scroll-reveal h2 {
    animation: textRevealFadeUp 0.8s var(--ease) forwards;
}

.section-heading.scroll-reveal p {
    animation: textRevealFadeUp 0.8s var(--ease) forwards;
    animation-delay: 80ms;
}

.section-heading.scroll-reveal .eyebrow {
    animation: revealFadeIn 0.6s var(--ease) forwards;
    animation-delay: 0ms;
}

body {
    min-width: 320px;
    overflow-x: hidden;
    background: var(--foam);
    color: var(--text);
    font-family: var(--font-sans);
    line-height: 1.6;
    letter-spacing: 0;
}

body.is-loading,
body.modal-open {
    overflow: hidden;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    color: inherit;
}

a {
    color: inherit;
}

.container {
    width: calc(100vw - 40px);
    max-width: 1240px;
    margin-inline: auto;
}

.hidden {
    display: none !important;
}

.eyebrow {
    color: var(--sea-dark);
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.25;
    text-transform: none;
}

h1,
h2,
h3,
h4 {
    color: var(--ink);
    font-family: var(--font-serif);
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1.02;
    overflow-wrap: anywhere;
}

p {
    letter-spacing: 0;
}

.price-badge {
    width: max-content;
    max-width: 100%;
    display: inline-flex;
    align-items: baseline;
    gap: 0.22rem;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
    box-shadow: none;
    font-family: var(--font-sans);
    font-weight: 800;
    font-variant-numeric: lining-nums tabular-nums;
    letter-spacing: 0;
    line-height: 1;
    white-space: nowrap;
}

.price-currency {
    color: var(--sea-dark);
    font-family: var(--font-sans);
    font-size: 0.7em;
    font-weight: 600;
    line-height: 1;
}

.price-amount {
    font-family: var(--font-sans);
    font-size: 1em;
    font-weight: 800;
    line-height: 1;
}

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

.price-pending {
    font-family: var(--font-sans);
    font-size: 0.88rem;
    font-weight: 800;
}

.btn {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.78rem 1.1rem;
    border: 1px solid transparent;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease), box-shadow 220ms var(--ease);
}

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

.btn-light {
    background: var(--foam);
    color: var(--ink);
    box-shadow: 0 16px 40px rgba(8, 21, 34, 0.18);
}

.btn-light:hover {
    background: var(--white);
}

.btn-dark {
    background: var(--ink);
    color: var(--white);
}

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

.btn-glass {
    border-color: rgba(255, 255, 255, 0.52);
    background: rgba(255, 255, 255, 0.14);
    color: var(--white);
    backdrop-filter: blur(14px);
}

.btn-glass:hover {
    background: rgba(255, 255, 255, 0.24);
}

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

.icon-action {
    position: relative;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    text-decoration: none;
    transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease);
}

.icon-action:hover {
    transform: translateY(-2px);
    border-color: rgba(20, 40, 65, 0.28);
}

.cart-count,
.favorite-count {
    position: absolute;
    top: -4px;
    right: -4px;
    min-width: 19px;
    height: 19px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding-inline: 5px;
    border: 2px solid var(--white);
    border-radius: 99px;
    background: var(--coral);
    color: var(--white);
    font-size: 0.68rem;
    font-weight: 800;
    line-height: 1;
}

.site-loader {
    --loader-progress: 0%;
    position: fixed;
    inset: 0;
    z-index: 20000;
    display: grid;
    place-items: center;
    gap: 1rem;
    align-content: center;
    padding: 2rem;
    background:
        linear-gradient(180deg, rgba(247, 242, 234, 0.94), rgba(247, 242, 234, 0.86)),
        url("../assets/images/hero-background.jpg") center / cover;
    color: var(--ink);
    transition: opacity 700ms var(--ease), visibility 700ms var(--ease);
}

.site-loader::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 42%;
    background: linear-gradient(180deg, rgba(111, 183, 180, 0), rgba(111, 183, 180, 0.22));
    pointer-events: none;
}

.loader-mark {
    position: relative;
    z-index: 1;
    width: 132px;
    height: 132px;
    display: grid;
    place-items: center;
}

.loader-logo {
    width: 102px;
    height: 102px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--shadow-soft);
    animation: loaderLift 2800ms var(--ease) infinite;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border: 1px solid rgba(20, 40, 65, 0.16);
    border-radius: 50%;
    animation: loaderRing 2200ms var(--ease) infinite;
}

.loader-copy {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 0.35rem;
    text-align: center;
}

.loader-copy strong {
    color: var(--ink);
    font-family: var(--font-serif);
    font-size: 2.15rem;
    font-weight: 400;
    letter-spacing: 0;
    line-height: 1;
}

.loader-copy span {
    color: var(--muted);
    font-size: 0.92rem;
}

.loader-tide {
    position: relative;
    z-index: 1;
    width: min(360px, 72vw);
    height: 8px;
    overflow: hidden;
    border: 1px solid rgba(20, 40, 65, 0.16);
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.48);
}

.loader-tide span {
    width: var(--loader-progress);
    height: 100%;
    display: block;
    border-radius: inherit;
    background: linear-gradient(90deg, var(--sea), var(--coral));
    transition: width 260ms var(--ease);
}

.site-loader--hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

@keyframes loaderLift {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

@keyframes loaderRing {
    0% { transform: scale(0.88); opacity: 0.55; }
    70%, 100% { transform: scale(1.14); opacity: 0; }
}

.site-header {
    position: fixed;
    inset: 0 0 auto;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: background 240ms var(--ease), border-color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.site-header.is-scrolled,
.site-header.menu-open {
    border-bottom: 1px solid var(--border);
    background: rgba(251, 250, 246, 0.94);
    box-shadow: 0 12px 36px rgba(20, 40, 65, 0.08);
    backdrop-filter: blur(18px);
}

.nav-shell {
    width: calc(100vw - 32px);
    max-width: 1320px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.1rem;
    margin-inline: auto;
}

.brand-link {
    display: inline-flex;
    align-items: center;
    gap: 0.72rem;
    color: var(--white);
    text-decoration: none;
    transition: color 240ms var(--ease);
}

.site-header.is-scrolled .brand-link,
.site-header.menu-open .brand-link {
    color: var(--ink);
}

.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 50%;
    background: var(--ink);
}

.brand-word {
    font-family: var(--font-serif);
    font-size: 1.22rem;
    line-height: 1;
    letter-spacing: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
}

.site-header.is-scrolled .nav-menu,
.site-header.menu-open .nav-menu {
    color: var(--text);
}

.nav-menu a {
    position: relative;
    color: inherit;
    font-size: 0.92rem;
    text-decoration: none;
    white-space: nowrap;
}

.nav-menu a::after {
    content: "";
    position: absolute;
    inset: auto 0 -7px;
    height: 1px;
    background: currentColor;
    opacity: 0.82;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 220ms var(--ease);
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after,
.nav-menu a[aria-current="page"]::after {
    transform: scaleX(1);
}

.nav-search {
    width: 230px;
    height: 42px;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding-inline: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.32);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.site-header.is-scrolled .nav-search,
.site-header.menu-open .nav-search {
    border-color: var(--border);
    background: var(--white);
    color: var(--ink);
}

.nav-search input {
    width: 100%;
    min-width: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: inherit;
    font-size: 0.9rem;
}

.nav-search input::placeholder {
    color: currentColor;
    opacity: 0.7;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.site-header:not(.is-scrolled):not(.menu-open) .nav-actions .icon-action {
    border-color: rgba(255, 255, 255, 0.32);
    background: rgba(255, 255, 255, 0.16);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.menu-toggle {
    display: none;
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    display: block;
    border-radius: 3px;
    background: currentColor;
    transition: transform 220ms var(--ease);
}

.menu-toggle span + span {
    margin-top: 5px;
}

.menu-toggle.active span:first-child {
    transform: translateY(3.5px) rotate(45deg);
}

.menu-toggle.active span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
}

.hero-section {
    position: relative;
    min-height: 92vh;
    min-height: 92svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    isolation: isolate;
    background: var(--ink-deep);
}

.hero-bg,
.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-shade,
.page-hero-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(8, 21, 34, 0.78), rgba(8, 21, 34, 0.34) 48%, rgba(8, 21, 34, 0.14)),
        linear-gradient(180deg, rgba(8, 21, 34, 0.08), rgba(8, 21, 34, 0.72));
}

.hero-content {
    width: calc(100vw - 40px);
    max-width: 1240px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 370px);
    align-items: end;
    gap: clamp(2rem, 6vw, 6rem);
    margin: 0 auto;
    padding: calc(var(--header-height) + 2rem) 0 6.4rem;
    color: var(--white);
}

.hero-copy {
    min-width: 0;
}

.hero-content .eyebrow,
.page-hero-content .eyebrow {
    color: #d5f4ef;
}

.hero-content h1 {
    margin-top: 0.5rem;
    color: var(--white);
    font-size: 7rem;
    line-height: 0.88;
    text-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
}

.hero-text {
    width: min(100%, 520px);
    margin-top: 0.7rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.06rem;
    line-height: 1.45;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.35rem;
}

.hero-artist-card {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4.35;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: calc(var(--radius) * 2);
    background: var(--ink-deep);
    color: var(--white);
    cursor: pointer;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.34);
    text-align: left;
    isolation: isolate;
}

.hero-artist-card::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: inherit;
    pointer-events: none;
}

.hero-artist-card img {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 52% 38%;
    transition: transform 700ms var(--ease);
}

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

.hero-artist-shade {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(180deg, rgba(8, 21, 34, 0.2), transparent 38%),
        linear-gradient(180deg, transparent 45%, rgba(8, 21, 34, 0.92));
}

.hero-artist-topline {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.5rem 0.62rem;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: var(--radius);
    background: rgba(8, 21, 34, 0.62);
    font-size: 0.72rem;
    backdrop-filter: blur(12px);
}

.hero-artist-caption {
    position: absolute;
    right: 1.1rem;
    bottom: 1.1rem;
    left: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.hero-play-icon {
    width: 48px;
    height: 48px;
    flex: 0 0 48px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.46);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.94);
    color: var(--ink);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.hero-artist-caption > span:last-child {
    display: grid;
}

.hero-artist-caption small {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.7rem;
    font-style: normal;
}

.hero-artist-caption strong {
    margin-top: 0.1rem;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.65rem;
    font-weight: 500;
    line-height: 1;
}

.hero-artist-caption em {
    margin-top: 0.2rem;
    color: #d5f4ef;
    font-size: 0.72rem;
    font-style: normal;
}

.hero-index {
    position: absolute;
    right: max(20px, calc((100vw - 1240px) / 2));
    bottom: 2rem;
    z-index: 2;
    display: flex;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.76rem;
}

.hero-index span {
    padding: 0.42rem 0.56rem;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 2rem;
}

.section-heading.center {
    margin-inline: auto;
    text-align: center;
}

.section-heading.compact {
    max-width: 620px;
}

.section-heading h2 {
    margin-top: 0.7rem;
    font-size: 3rem;
}

.section-heading p:not(.eyebrow) {
    margin-top: 0.7rem;
    color: var(--muted);
    font-size: 1.02rem;
}

.products-section {
    padding: 5.6rem 0;
    background:
        linear-gradient(180deg, var(--white) 0%, var(--shell) 100%);
}

.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-bottom: 1.6rem;
}

.filter-btn {
    min-height: 42px;
    padding: 0.55rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.66);
    color: var(--ink);
    cursor: pointer;
    font-weight: 500;
    transition: background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.filter-btn:hover {
    transform: translateY(-1px);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1.15rem;
}

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

.product-card {
    min-width: 0;
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid rgba(20, 40, 65, 0.1);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    box-shadow: 0 16px 40px rgba(20, 40, 65, 0.06);
    transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), opacity 220ms var(--ease), border-color 220ms var(--ease);
}

.product-card:hover {
    border-color: rgba(45, 116, 111, 0.2);
    transform: translateY(-6px);
    box-shadow: var(--shadow-soft);
}

.product-card:focus-visible {
    outline: 3px solid rgba(45, 116, 111, 0.28);
    outline-offset: 4px;
}

.product-card.product-hidden {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
}

.product-media {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: calc(var(--radius) - 1px) calc(var(--radius) - 1px) 0 0;
    background: var(--white);
}

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

.product-tag {
    position: absolute;
    z-index: 3;
    top: 0.72rem;
    left: 0.72rem;
    max-width: calc(100% - 1.44rem);
    padding: 0.35rem 0.55rem;
    border: 1px solid rgba(20, 40, 65, 0.12);
    border-radius: var(--radius);
    background: rgba(251, 250, 246, 0.86);
    color: var(--ink);
    font-size: 0.72rem;
    font-weight: 500;
    line-height: 1.12;
    box-shadow: 0 10px 24px rgba(8, 21, 34, 0.08);
    backdrop-filter: blur(10px);
}

.product-quick-add {
    position: absolute;
    z-index: 3;
    right: 1rem;
    bottom: 1rem;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(20, 40, 65, 0.88);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(8, 21, 34, 0.16);
}

.product-favorite {
    position: absolute;
    z-index: 3;
    top: 0.72rem;
    right: 0.72rem;
    border-color: rgba(255, 255, 255, 0.72);
    background: rgba(20, 40, 65, 0.82);
    color: var(--white);
    box-shadow: 0 14px 30px rgba(8, 21, 34, 0.16);
}

.product-favorite.active {
    border-color: rgba(198, 48, 63, 0.24);
    background: var(--white);
    color: #d73747;
}

.product-info {
    position: relative;
    display: grid;
    align-content: start;
    gap: 0.32rem;
    min-height: 130px;
    padding: 1rem 1rem 4.55rem;
}

.product-info h3 {
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 1.02rem;
    font-weight: 700;
    line-height: 1.18;
    overflow-wrap: anywhere;
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
}

.product-price {
    flex: 0 0 auto;
    font-size: 1rem;
}

.product-price .price-amount {
    font-size: 1em;
}

.no-results {
    margin-top: 2rem;
    padding: 2rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    text-align: center;
}

.no-results i {
    color: var(--sea-dark);
    font-size: 1.4rem;
}

.no-results h3 {
    margin-top: 0.7rem;
    font-family: var(--font-sans);
    font-size: 1.2rem;
    font-weight: 800;
}

.no-results p {
    margin: 0.3rem auto 1rem;
    color: var(--muted);
}

.catalog-hero {
    position: relative;
    height: min(620px, 64vh);
    min-height: 500px;
    overflow: hidden;
    isolation: isolate;
    background: var(--ink-deep);
}

.promo-carousel {
    --promo-index: 0;
    position: absolute;
    inset: 0;
    display: flex;
    transform: translate3d(calc(var(--promo-index) * -100%), 0, 0);
    transition: transform 1100ms cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.promo-slide {
    position: relative;
    min-width: 100%;
    flex: 0 0 100%;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.promo-slide.active {
    z-index: 1;
}

.promo-slide-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(24px) saturate(1.04);
    opacity: 0.42;
    transform: scale(1.16);
}

.promo-product-frame {
    position: absolute;
    right: max(20px, calc((100vw - 1240px) / 2));
    bottom: 4.4rem;
    z-index: -1;
    width: min(34vw, 410px);
    min-width: 270px;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    background:
        radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.42), transparent 28%),
        rgba(251, 250, 246, 0.88);
    box-shadow: 0 30px 90px rgba(8, 21, 34, 0.34);
    transform: translateX(18px) scale(0.97);
    opacity: 0;
    transition: transform 1100ms cubic-bezier(0.16, 1, 0.3, 1), opacity 900ms var(--ease);
}

.promo-product-image {
    width: 100%;
    height: 100%;
    padding: 1rem;
    object-fit: contain;
    transform: scale(0.96);
    transition: transform 4200ms linear;
}

.promo-slide.active .promo-product-frame {
    transform: translateX(0) scale(1);
    opacity: 1;
}

.promo-slide.active .promo-product-image {
    transform: scale(1);
}

.promo-slide::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(8, 21, 34, 0.86), rgba(8, 21, 34, 0.48) 56%, rgba(8, 21, 34, 0.24)),
        linear-gradient(180deg, rgba(8, 21, 34, 0.08), rgba(8, 21, 34, 0.78));
}

.promo-copy {
    width: calc(100vw - 40px);
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 0 5.6rem;
    color: var(--white);
}

.promo-copy .eyebrow {
    color: #d5f4ef;
}

.promo-copy h1 {
    max-width: 790px;
    margin-top: 0.8rem;
    color: var(--white);
    font-size: 4.35rem;
    text-shadow: 0 18px 58px rgba(0, 0, 0, 0.34);
}

.promo-copy p:not(.eyebrow) {
    max-width: 600px;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.14rem;
}

.promo-dots {
    position: absolute;
    right: max(20px, calc((100vw - 1240px) / 2));
    bottom: 2.2rem;
    z-index: 2;
    display: flex;
    gap: 0.55rem;
}

.promo-dots button {
    width: 42px;
    height: 4px;
    border: 0;
    border-radius: 99px;
    background: rgba(255, 255, 255, 0.36);
    cursor: pointer;
    transition: width 220ms var(--ease), background 220ms var(--ease);
}

.promo-dots button.active {
    width: 64px;
    background: var(--white);
}

.catalog-products {
    padding-top: 5rem;
}

.catalog-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
}

.catalog-help {
    min-height: 36px;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    margin-bottom: 0.45rem;
    padding: 0.42rem 0;
    border-bottom: 1px solid rgba(45, 116, 111, 0.28);
    color: var(--sea-dark);
    font-size: 0.88rem;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    transition: color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.catalog-help:hover {
    border-color: var(--ink);
    color: var(--ink);
    transform: translateY(-1px);
}

.catalog-grid {
    margin-top: 0.2rem;
}

.catalog-filter-shell {
    margin: 0 0 1.35rem;
}

.filter-toggle {
    width: 100%;
    min-height: 66px;
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.75rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.8);
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 14px 34px rgba(20, 40, 65, 0.06);
    text-align: left;
    transition: border-color 220ms var(--ease), background 220ms var(--ease), box-shadow 220ms var(--ease), transform 220ms var(--ease);
}

.filter-toggle:hover,
.filter-toggle.active {
    border-color: rgba(20, 40, 65, 0.26);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.filter-toggle.active {
    transform: translateY(-1px);
}

.filter-toggle-icon {
    width: 42px;
    height: 42px;
    flex: 0 0 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--ink);
    color: var(--white);
    transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.filter-toggle-icon i {
    transition: transform 260ms var(--ease);
}

.filter-toggle.active .filter-toggle-icon {
    background: var(--sea-dark);
    transform: rotate(-8deg) scale(1.04);
}

.filter-toggle.active .filter-toggle-icon i {
    transform: rotate(90deg);
}

.filter-toggle strong,
.filter-toggle small {
    display: block;
}

.filter-toggle strong {
    font-size: 0.98rem;
    line-height: 1.1;
}

.filter-toggle small {
    margin-top: 0.18rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.filter-toggle-chevron {
    margin-left: auto;
    transition: transform 260ms var(--ease);
}

.filter-toggle.active .filter-toggle-chevron {
    transform: rotate(180deg);
}

.catalog-filter-panel {
    max-height: 0;
    overflow: hidden;
    border: 1px solid transparent;
    border-radius: var(--radius);
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: max-height 420ms var(--ease), opacity 260ms var(--ease), transform 320ms var(--ease), padding 320ms var(--ease), margin 320ms var(--ease), border-color 320ms var(--ease);
}

.catalog-filter-panel.active {
    max-height: 760px;
    margin-top: 0.75rem;
    padding: 1rem;
    border-color: var(--border);
    background: rgba(255, 255, 255, 0.82);
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    box-shadow: 0 18px 46px rgba(20, 40, 65, 0.07);
}

.filter-panel-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.82fr 1.08fr;
    gap: 0.85rem;
    align-items: stretch;
}

.filter-group {
    min-width: 0;
    margin: 0;
    padding: 0.95rem;
    border: 1px solid rgba(20, 40, 65, 0.1);
    border-radius: var(--radius);
    background: var(--foam);
}

.filter-group legend {
    padding: 0 0.25rem;
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 600;
}

.filter-chip-list,
.color-chip-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.filter-chip {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.65rem;
    padding: 0.5rem 0.62rem;
    font-size: 0.88rem;
    line-height: 1.1;
}

.filter-chip span {
    font-weight: 500;
}

.filter-chip strong {
    min-width: 25px;
    height: 25px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(20, 40, 65, 0.08);
    color: inherit;
    font-size: 0.76rem;
    font-weight: 600;
    line-height: 1;
}

.filter-chip.active strong,
.filter-chip:hover strong {
    background: rgba(255, 255, 255, 0.18);
}

.price-filter {
    display: grid;
    align-content: start;
    gap: 0.85rem;
}

.price-filter-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.8rem;
    color: var(--muted);
    font-size: 0.82rem;
}

.price-filter-head strong {
    color: var(--ink);
    font-size: 0.9rem;
    text-align: right;
}

.price-filter input[type="range"] {
    width: 100%;
    accent-color: var(--sea-dark);
    cursor: pointer;
}

.color-chip {
    min-height: 39px;
    display: inline-flex;
    align-items: center;
    gap: 0.42rem;
    padding: 0.45rem 0.58rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 500;
    transition: background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.color-chip:hover,
.color-chip.active {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
    transform: translateY(-1px);
}

.color-swatch {
    width: 13px;
    height: 13px;
    flex: 0 0 13px;
    border: 1px solid rgba(8, 21, 34, 0.18);
    border-radius: 50%;
    background: var(--white);
}

.color-swatch--preto {
    background: #101820;
}

.color-swatch--prata {
    background: linear-gradient(135deg, #f7f7f7, #9fa7ad);
}

.color-swatch--dourado {
    background: linear-gradient(135deg, #f6de8f, #b88424);
}

.color-swatch--azul {
    background: #255c99;
}

.color-swatch--vermelha {
    background: #b7292f;
}

.color-swatch--branco {
    background: linear-gradient(135deg, #ffffff, #ece7dc);
}

.filter-panel-actions {
    display: flex;
    justify-content: flex-end;
    gap: 0.65rem;
    margin-top: 0.9rem;
}

.filter-clear {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding: 0.74rem 0.95rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    font-weight: 700;
}

.collections-section {
    padding: 5.6rem 0;
    background: var(--foam);
}

.collections-layout {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    grid-template-rows: repeat(2, 280px);
    gap: 1rem;
}

.collection-tile {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--ink);
    box-shadow: var(--shadow-soft);
}

.collection-tile.tall {
    grid-row: span 2;
}

.collection-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.95) contrast(1.03);
    transition: transform 520ms var(--ease);
}

.collection-tile:hover img {
    transform: scale(1.04);
}

.collection-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8, 21, 34, 0.04), rgba(8, 21, 34, 0.72));
}

.collection-tile div {
    position: absolute;
    inset: auto 0 0;
    z-index: 1;
    padding: 1.3rem;
    color: var(--white);
}

.collection-tile span {
    display: block;
    color: #d5f4ef;
    font-size: 0.82rem;
    font-weight: 800;
}

.collection-tile h3 {
    margin-top: 0.35rem;
    color: var(--white);
    font-size: 2rem;
}

.collection-tile p {
    max-width: 360px;
    margin-top: 0.35rem;
    color: rgba(255, 255, 255, 0.85);
}

.artists-section {
    padding: 6.5rem 0;
    overflow: hidden;
    background:
        linear-gradient(180deg, rgba(8, 21, 34, 0.91), rgba(8, 21, 34, 0.97)),
        radial-gradient(circle at 82% 20%, rgba(111, 183, 180, 0.24), transparent 34%),
        url("../assets/images/patrocinador-seorf.jpeg") center top / cover no-repeat,
        var(--ink-deep);
    color: var(--white);
}

.artists-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 2.4rem;
}

.artists-heading .section-heading {
    margin-bottom: 0;
}

.artists-heading .eyebrow {
    color: #aee1dc;
}

.artists-heading h2 {
    color: var(--white);
}

.artists-heading .section-heading p:not(.eyebrow) {
    color: rgba(255, 255, 255, 0.7);
}

.artists-label {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.7rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.82rem;
    backdrop-filter: blur(12px);
}

.artist-feature {
    width: min(100%, 1120px);
    min-width: 0;
    overflow: hidden;
    margin-inline: auto;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: calc(var(--radius) * 2);
    background: rgba(8, 21, 34, 0.72);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.24);
    backdrop-filter: blur(16px);
}

.artist-showcase-layout {
    display: grid;
    grid-template-columns: minmax(300px, 0.72fr) minmax(0, 1.28fr);
    min-height: 640px;
}

.artist-media-column {
    min-width: 0;
    display: flex;
    flex-direction: column;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.045);
}

.artist-video-frame {
    position: relative;
    width: 100%;
    max-width: 310px;
    aspect-ratio: 9 / 16;
    display: grid;
    place-items: center;
    align-self: center;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(45, 116, 111, 0.16), transparent 42%),
        #03070b;
}

.artist-video-frame::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset -1px 0 rgba(255, 255, 255, 0.12);
}

.artist-video-frame video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #03070b;
}

.artist-media-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    background: rgba(8, 21, 34, 0.72);
    color: var(--white);
    font-size: 0.76rem;
    backdrop-filter: blur(12px);
    pointer-events: none;
}

.artist-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: 4;
    width: 78px;
    height: 78px;
    display: grid;
    place-items: center;
    gap: 0.2rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.62);
    border-radius: 50%;
    background: rgba(251, 250, 246, 0.94);
    color: var(--ink);
    cursor: pointer;
    box-shadow: 0 18px 48px rgba(0, 0, 0, 0.32);
    transform: translate(-50%, -50%);
    transition: opacity 220ms var(--ease), transform 220ms var(--ease), background 220ms var(--ease);
}

.artist-video-play:hover {
    background: var(--white);
    transform: translate(-50%, -50%) scale(1.06);
}

.artist-video-play span {
    position: absolute;
    top: calc(100% + 0.65rem);
    color: var(--white);
    font-size: 0.72rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

.artist-video-frame.is-playing .artist-video-play {
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -50%) scale(0.86);
}

.artist-video-info {
    min-width: 0;
    margin-top: auto;
    padding: 1.45rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
}

.artist-video-info .eyebrow {
    color: #aee1dc;
}

.artist-video-info h3 {
    margin-top: 0.65rem;
    color: var(--white);
    font-size: clamp(2rem, 2.7vw, 2.75rem);
    line-height: 0.92;
}

.artist-role {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    margin-top: 1.15rem;
    color: #d5f4ef;
    font-size: 0.92rem;
    font-weight: 700;
}

.artist-role span {
    color: var(--coral);
}

.artist-story-panel {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: clamp(2rem, 5vw, 4.5rem);
    background:
        radial-gradient(circle at 80% 12%, rgba(111, 183, 180, 0.14), transparent 30%),
        rgba(20, 40, 65, 0.36);
}

.artist-story-copy {
    max-width: 640px;
}

.artist-story-copy .eyebrow {
    color: #aee1dc;
}

.artist-story-copy h4 {
    margin-top: 0.8rem;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 4vw, 4rem);
    font-weight: 400;
    line-height: 0.96;
}

.artist-description {
    max-width: 610px;
    margin-top: 1.4rem;
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.02rem;
}

.artist-story-note {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-top: 2rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(255, 255, 255, 0.62);
    font-size: 0.82rem;
}

.artist-story-note i {
    color: var(--coral);
    font-size: 1.1rem;
}

.artist-video-footer {
    width: 100%;
    margin-top: auto;
    padding: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    background: rgba(8, 21, 34, 0.48);
}

.artist-video-navigation-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.artist-video-navigation-head > div:first-child {
    display: grid;
    gap: 0.15rem;
}

.artist-video-navigation-head small {
    color: rgba(255, 255, 255, 0.46);
    font-size: 0.68rem;
}

.artist-video-navigation-head [data-artist-count] {
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    font-variant-numeric: tabular-nums;
}

.artist-video-arrows,
.artist-gallery-actions > div {
    display: flex;
    gap: 0.45rem;
}

.artist-video-arrows button,
.artist-gallery-actions button {
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    cursor: pointer;
}

.artist-video-arrows button:hover,
.artist-gallery-actions button:hover {
    border-color: rgba(255, 255, 255, 0.44);
    background: rgba(255, 255, 255, 0.16);
}

.artist-video-dots {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    margin-top: 1rem;
}

.artist-video-dots button {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    align-items: center;
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.artist-video-dots button span {
    width: 9px;
    height: 9px;
    display: block;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: background 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.artist-video-dots button.active span {
    background: var(--sea);
    border-color: #d5f4ef;
    transform: scale(1.35);
}

.artist-video-hint {
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.7rem;
}

.artist-gallery-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 2rem;
    margin: 4rem 0 1.4rem;
}

.artist-gallery-heading h3 {
    margin-top: 0.45rem;
    color: var(--white);
    font-size: 2.4rem;
}

.artist-gallery-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.artist-gallery-actions > p {
    max-width: 390px;
    color: rgba(255, 255, 255, 0.66);
    text-align: right;
}

.artist-gallery {
    display: grid;
    grid-auto-columns: calc((100% - 3rem) / 4);
    grid-auto-flow: column;
    gap: 1rem;
    padding-bottom: 0.3rem;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.artist-gallery::-webkit-scrollbar {
    display: none;
}

.artist-gallery-item {
    position: relative;
    min-width: 0;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius);
    background: var(--ink-deep);
    scroll-snap-align: start;
}

.artist-gallery-item::after {
    content: "";
    position: absolute;
    inset: 45% 0 0;
    background: linear-gradient(180deg, transparent, rgba(3, 7, 11, 0.84));
    pointer-events: none;
}

.artist-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms var(--ease);
}

.artist-gallery-item:hover img {
    transform: scale(1.035);
}

.artist-gallery-item figcaption {
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    left: 1rem;
    z-index: 1;
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.35rem;
    line-height: 1.05;
}

.inspiration-section {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    padding: 5.6rem 0;
    background: var(--ink-deep);
}

.inspiration-section::before,
.inspiration-section::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.inspiration-section::before {
    z-index: -2;
    background: url("../assets/images/img-5.jpg") center 62% / cover no-repeat;
    transform: scale(1.01);
}

.inspiration-section::after {
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(8, 21, 34, 0.94) 0%, rgba(8, 21, 34, 0.78) 44%, rgba(8, 21, 34, 0.48) 100%),
        linear-gradient(180deg, rgba(8, 21, 34, 0.08), rgba(8, 21, 34, 0.38));
}

.inspiration-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 2rem;
    align-items: center;
}

.inspiration-copy {
    max-width: 390px;
    color: rgba(255, 255, 255, 0.84);
}

.inspiration-copy .eyebrow {
    color: #d5f4ef;
}

.inspiration-copy h2 {
    margin-top: 0.7rem;
    color: var(--white);
    font-size: 3rem;
}

.inspiration-copy p {
    margin: 1rem 0 1.6rem;
}

.inspiration-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 170px;
    gap: 0.9rem;
}

.inspiration-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--sand);
    box-shadow: 0 18px 44px rgba(8, 21, 34, 0.12);
}

.inspiration-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.inspiration-item.wide {
    grid-column: span 2;
}

.inspiration-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 520ms var(--ease);
}

.inspiration-item:hover img {
    transform: scale(1.05);
}

.inspiration-item i {
    position: absolute;
    right: 0.8rem;
    bottom: 0.8rem;
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.86);
    color: var(--ink);
}

.about-preview {
    padding: 5.6rem 0;
    background: var(--foam);
}

.about-preview-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3rem;
    align-items: center;
}

.about-media {
    padding: 1rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.about-media img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: calc(var(--radius) - 2px);
}

.about-preview-copy h2 {
    margin-top: 0.7rem;
    font-size: 3rem;
}

.about-preview-copy p:not(.eyebrow) {
    max-width: 560px;
    margin: 1rem 0;
    color: var(--muted);
    font-size: 1.04rem;
}

.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    color: var(--ink);
    font-weight: 800;
    text-decoration: none;
}

.text-link::after {
    content: "";
    width: 44px;
    height: 1px;
    margin-left: 0.8rem;
    background: currentColor;
    transition: width 220ms var(--ease);
}

.text-link:hover::after {
    width: 64px;
}

.faq-section {
    padding: 5.4rem 0;
    background: var(--white);
}

.faq-layout {
    display: grid;
    grid-template-columns: 0.42fr 0.58fr;
    gap: 3rem;
    align-items: start;
}

.faq-list {
    border-top: 1px solid var(--border);
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 1.16rem;
    font-weight: 700;
    line-height: 1.22;
    text-align: left;
}

.faq-question span {
    max-width: 88%;
}

.faq-question i {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(20, 40, 65, 0.14);
    border-radius: 50%;
    color: var(--sea-dark);
    font-size: 0.78rem;
    transition: transform 220ms var(--ease), background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease);
}

.faq-item.active .faq-question i {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    color: var(--muted);
    transition: max-height 260ms var(--ease), padding 260ms var(--ease);
}

.faq-answer p {
    max-width: 620px;
    margin: 0;
    font-family: var(--font-sans);
    font-size: 0.92rem;
    line-height: 1.45;
}

.faq-item.active .faq-answer {
    max-height: 140px;
    padding-bottom: 0.9rem;
}

.cart-modal {
    position: fixed;
    inset: 0;
    z-index: 3000;
    pointer-events: none;
}

.cart-modal.active {
    pointer-events: auto;
}

.cart-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 21, 34, 0.46);
    opacity: 0;
    transition: opacity 240ms var(--ease);
}

.cart-modal.active .cart-backdrop {
    opacity: 1;
}

.cart-panel {
    position: absolute;
    inset: 0 0 0 auto;
    width: min(430px, 100%);
    display: flex;
    flex-direction: column;
    padding: 1.3rem;
    background: var(--foam);
    box-shadow: -28px 0 80px rgba(8, 21, 34, 0.18);
    transform: translateX(100%);
    transition: transform 280ms var(--ease);
}

.cart-modal.active .cart-panel {
    transform: translateX(0);
}

.cart-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border);
}

.cart-header h2 {
    margin-top: 0.35rem;
    font-size: 2rem;
}

.cart-items {
    flex: 1;
    overflow: auto;
    padding: 1rem 0;
}

.favorite-items {
    flex: 1;
    display: grid;
    align-content: start;
    gap: 0.85rem;
    overflow: auto;
    padding: 1rem 0;
}

.empty-cart {
    padding: 2rem 1rem;
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    color: var(--muted);
    text-align: center;
}

.cart-item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.cart-item h4 {
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.2;
}

.cart-item-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.34rem;
    margin-top: 0.25rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.cart-item-separator {
    color: rgba(109, 122, 131, 0.56);
}

.cart-unit-price {
    color: var(--ink);
    font-size: 0.84rem;
    font-weight: 700;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.favorite-item {
    display: grid;
    grid-template-columns: 106px minmax(0, 1fr);
    gap: 0.9rem;
    padding: 0.72rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
}

.favorite-item-media {
    width: 100%;
    aspect-ratio: 1 / 1;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(20, 40, 65, 0.08);
    border-radius: var(--radius);
    background: var(--foam);
    cursor: pointer;
}

.favorite-item-media img {
    width: 100%;
    height: 100%;
    padding: 0.45rem;
    object-fit: contain;
}

.favorite-item-copy {
    min-width: 0;
    display: grid;
    gap: 0.5rem;
}

.favorite-item-tag {
    display: inline-flex;
    width: max-content;
    max-width: 100%;
    margin-bottom: 0.3rem;
    padding: 0.22rem 0.42rem;
    border-radius: var(--radius);
    background: var(--shell);
    color: var(--ink);
    font-size: 0.66rem;
    font-weight: 800;
    line-height: 1.1;
}

.favorite-item h4 {
    color: var(--ink);
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.18;
}

.favorite-item p {
    margin-top: 0.22rem;
    color: var(--muted);
    font-size: 0.82rem;
    line-height: 1.25;
}

.favorite-price {
    color: var(--ink);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.1;
    font-variant-numeric: tabular-nums;
}

.favorite-item-actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.45rem;
}

.favorite-detail-btn {
    min-height: 32px;
    padding: 0.42rem 0.72rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--foam);
    color: var(--ink);
    cursor: pointer;
    font-size: 0.84rem;
    font-weight: 700;
    transition: background 220ms var(--ease), border-color 220ms var(--ease);
}

.favorite-detail-btn:hover {
    border-color: var(--sea-dark);
    background: #edf7f5;
}

.cart-controls {
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50%;
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
}

.qty-value {
    width: 26px;
    text-align: center;
    font-weight: 800;
}

.remove-btn {
    color: var(--coral);
}

.cart-summary {
    display: grid;
    gap: 0.75rem;
    padding: 1rem 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.cart-summary div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.cart-summary span {
    color: var(--muted);
}

.cart-total-price {
    color: var(--ink);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.cart-note {
    display: grid;
    gap: 0.45rem;
    padding: 1rem 0;
}

.cart-note span {
    color: var(--ink);
    font-weight: 800;
}

.cart-note textarea {
    width: 100%;
    min-height: 92px;
    resize: vertical;
    padding: 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    outline: 0;
    background: var(--white);
    color: var(--text);
}

.cart-note textarea:focus {
    border-color: var(--sea-dark);
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 3200;
    display: none;
    padding: clamp(28px, 4vw, 58px);
    overflow: auto;
    background: rgba(8, 21, 34, 0.62);
}

.product-modal.active {
    display: grid;
    place-items: center;
}

.product-modal-panel {
    width: min(calc(100vw - 96px), 1380px);
    position: relative;
    overflow: hidden;
    border-radius: var(--radius);
    background: var(--foam);
    box-shadow: var(--shadow-strong);
}

.product-modal-top-actions {
    position: fixed;
    top: max(1.15rem, env(safe-area-inset-top));
    right: max(1.15rem, env(safe-area-inset-right));
    z-index: 3300;
    display: flex;
    align-items: flex-start;
    gap: 0.68rem;
}

.close-product-modal,
.share-product-modal {
    width: 54px;
    height: 54px;
    flex-basis: 54px;
    font-size: 1.08rem;
    border-color: rgba(20, 40, 65, 0.18);
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 34px rgba(8, 21, 34, 0.18);
    backdrop-filter: blur(12px);
}

.product-share {
    position: relative;
}

.product-share-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    width: 190px;
    display: grid;
    gap: 0.18rem;
    padding: 0.42rem;
    border: 1px solid rgba(20, 40, 65, 0.14);
    border-radius: var(--radius);
    background: rgba(251, 250, 246, 0.98);
    box-shadow: 0 18px 44px rgba(8, 21, 34, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-5px);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
    backdrop-filter: blur(14px);
}

.product-share.active .product-share-menu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.product-share-menu button {
    min-height: 42px;
    display: flex;
    align-items: center;
    gap: 0.62rem;
    padding: 0.62rem 0.7rem;
    border: 0;
    border-radius: var(--radius);
    background: transparent;
    color: var(--ink);
    cursor: pointer;
    font-weight: 700;
    text-align: left;
}

.product-share-menu button:hover {
    background: rgba(20, 40, 65, 0.08);
}

.product-share-menu i {
    width: 18px;
    color: var(--sea-dark);
    text-align: center;
}

@media (min-width: 861px) {
    .product-modal-top-actions {
        flex-direction: column-reverse;
        align-items: flex-end;
    }
}

.product-modal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
    gap: 0;
}

.modal-media {
    position: relative;
    min-height: clamp(620px, 72vh, 780px);
    overflow: hidden;
    background: var(--white);
}

.modal-zoom {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    padding: 0;
    overflow: hidden;
    border: 0;
    background: transparent;
    color: var(--ink);
    cursor: zoom-in;
    touch-action: pan-y;
}

.modal-zoom img {
    width: 100%;
    height: 100%;
    padding: clamp(1.2rem, 2vw, 2rem);
    object-fit: contain;
    transform: scale(1);
    transform-origin: var(--zoom-x, 50%) var(--zoom-y, 50%);
    transition: transform 220ms var(--ease);
    pointer-events: none;
    user-select: none;
    will-change: transform;
}

.modal-zoom.is-zoomed {
    cursor: grab;
    touch-action: none;
}

.modal-zoom.is-zoomed:active {
    cursor: grabbing;
}

.modal-zoom.is-zoomed img {
    transform: scale(2.35);
    transition-duration: 90ms;
}

.modal-zoom-indicator {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(20, 40, 65, 0.12);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 14px 30px rgba(20, 40, 65, 0.12);
    backdrop-filter: blur(10px);
}

.modal-zoom .zoom-out-icon {
    display: none;
}

.modal-zoom.is-zoomed .zoom-in-icon {
    display: none;
}

.modal-zoom.is-zoomed .zoom-out-icon {
    display: inline-block;
}

.modal-zoom:focus-visible {
    outline: 3px solid rgba(42, 130, 150, 0.28);
    outline-offset: -6px;
}

.modal-thumbs {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 3;
    display: flex;
    gap: 0.55rem;
}

.modal-thumbs button {
    width: 58px;
    height: 58px;
    overflow: hidden;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    cursor: pointer;
    opacity: 0.72;
}

.modal-thumbs button.active,
.modal-thumbs button:hover {
    border-color: var(--ink);
    opacity: 1;
}

.modal-thumbs img {
    width: 100%;
    height: 100%;
    padding: 0.2rem;
    object-fit: contain;
}

.modal-copy {
    display: flex;
    flex-direction: column;
    padding: clamp(3rem, 4vw, 4.5rem);
}

.modal-copy h2 {
    max-width: 620px;
    margin-top: 0.5rem;
    font-size: clamp(3.15rem, 4vw, 4.25rem);
}

.modal-price {
    align-self: flex-start;
    margin: 0.85rem 0 1rem;
    font-size: 1.42rem;
}

.modal-price .price-amount {
    font-size: 1em;
}

.modal-description {
    color: var(--muted);
    font-size: 1.02rem;
}

.modal-color-options {
    display: grid;
    gap: 0.7rem;
    margin-top: 1.25rem;
}

.modal-color-options > span {
    color: var(--ink);
    font-size: 0.86rem;
    font-weight: 800;
}

.modal-color-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.modal-color-list button {
    min-height: 42px;
    padding: 0.62rem 0.9rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    color: var(--ink);
    cursor: pointer;
    font-weight: 700;
    transition: background 220ms var(--ease), border-color 220ms var(--ease), color 220ms var(--ease), transform 220ms var(--ease);
}

.modal-color-list button.active,
.modal-color-list button:hover {
    border-color: var(--ink);
    background: var(--ink);
    color: var(--white);
}

.modal-color-list button:hover {
    transform: translateY(-1px);
}

.modal-specs {
    display: grid;
    gap: 0.7rem;
    margin: 1.6rem 0;
    list-style: none;
}

.modal-specs li {
    display: flex;
    gap: 0.6rem;
    color: var(--text);
}

.modal-specs li::before {
    content: "";
    width: 7px;
    height: 7px;
    flex: 0 0 7px;
    margin-top: 0.58rem;
    border-radius: 50%;
    background: var(--sea-dark);
}

.modal-actions {
    display: grid;
    gap: 0.9rem;
    margin-top: auto;
}

.quantity-control {
    width: max-content;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
}

.toast-root {
    position: fixed;
    top: calc(var(--header-height) + 16px);
    right: 20px;
    z-index: 5000;
    display: grid;
    gap: 0.7rem;
}

.toast {
    max-width: min(360px, calc(100vw - 40px));
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    background: var(--ink);
    color: var(--white);
    box-shadow: var(--shadow-soft);
    animation: toastIn 220ms var(--ease);
}

@keyframes toastIn {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.page-hero {
    position: relative;
    min-height: 62vh;
    display: flex;
    align-items: flex-end;
    padding: calc(var(--header-height) + 4rem) 0 4.5rem;
    overflow: hidden;
    isolation: isolate;
    background: var(--ink);
}

.page-hero-content {
    width: calc(100vw - 40px);
    max-width: 1120px;
    margin-inline: auto;
    color: var(--white);
}

.page-hero-content h1 {
    max-width: 820px;
    margin-top: 0.7rem;
    color: var(--white);
    font-size: 4.35rem;
}

.page-hero-content p:not(.eyebrow) {
    max-width: 620px;
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.story-section,
.values-section,
.contact-main-section {
    padding: 5.6rem 0;
}

.story-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 3.5rem;
    align-items: start;
}

.story-grid h2,
.values-section h2,
.contact-intro h2 {
    margin-top: 0.7rem;
    font-size: 3rem;
}

.story-copy {
    display: grid;
    gap: 1rem;
    color: var(--muted);
    font-size: 1.04rem;
}

.metric-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.4rem;
}

.metric {
    padding-top: 1rem;
    border-top: 1px solid var(--border);
}

.metric strong {
    display: block;
    color: var(--ink);
    font-size: 1.2rem;
}

.metric span {
    color: var(--muted);
    font-size: 0.88rem;
}

.split-feature {
    padding: 5.6rem 0;
    background: var(--shell);
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.split-grid img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow-soft);
}

.split-copy h2 {
    margin-top: 0.7rem;
    font-size: 3rem;
}

.split-copy p {
    margin-top: 1rem;
    color: var(--muted);
    font-size: 1.04rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.value-card {
    min-width: 0;
    padding: 1.3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
}

.value-card span {
    color: var(--coral);
    font-family: var(--font-serif);
    font-size: 2rem;
}

.value-card h3 {
    margin-top: 0.8rem;
    font-family: var(--font-sans);
    font-size: 1.08rem;
    font-weight: 800;
}

.value-card p {
    margin-top: 0.55rem;
    color: var(--muted);
}

.contact-intro {
    max-width: 780px;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 0.84fr 1.16fr;
    gap: 3rem;
    align-items: start;
}

.contact-main-grid--info {
    grid-template-columns: minmax(0, 760px);
}

.contact-panel {
    display: grid;
    gap: 1rem;
}

.contact-main-grid--info .contact-panel {
    padding: 1.3rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow-soft);
}

.contact-method {
    padding: 1.2rem 0;
    border-top: 1px solid var(--border);
}

.contact-method span {
    display: block;
    color: var(--muted);
    font-size: 0.82rem;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-method a,
.contact-method p {
    margin-top: 0.35rem;
    color: var(--ink);
    font-size: 1.04rem;
    text-decoration: none;
}

.contact-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 0.8rem;
}

.site-footer {
    background: var(--ink-deep);
    color: rgba(255, 255, 255, 0.78);
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) repeat(2, minmax(180px, 0.5fr));
    gap: 2rem;
    padding: 3.8rem 0;
}

.footer-logo {
    width: 210px;
    max-width: 100%;
    border-radius: var(--radius);
}

.footer-brand p {
    max-width: 420px;
    margin-top: 1rem;
}

.site-footer h3 {
    margin-bottom: 0.9rem;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 800;
}

.site-footer a {
    display: block;
    margin-top: 0.55rem;
    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;
}

.site-footer a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 1.1rem 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

.whatsapp-float {
    position: fixed;
    right: 1.2rem;
    bottom: 1.2rem;
    z-index: 1100;
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 1.65rem;
    text-decoration: none;
    box-shadow: 0 16px 38px rgba(37, 211, 102, 0.28);
    transition: transform 220ms var(--ease);
}

.whatsapp-float:hover {
    transform: translateY(-3px);
}

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

@media (max-width: 1100px) {
    .nav-menu {
        gap: 0.9rem;
    }

    .nav-search {
        width: 190px;
    }

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

    .inspiration-layout,
    .about-preview-grid,
    .story-grid,
    .split-grid,
    .contact-main-grid,
    .faq-layout {
        grid-template-columns: 1fr;
    }

    .inspiration-section {
        background: var(--ink-deep);
    }

    .inspiration-section::before {
        background-position: 42% center;
    }

    .inspiration-section::after {
        background:
            linear-gradient(180deg, rgba(8, 21, 34, 0.93) 0%, rgba(8, 21, 34, 0.73) 52%, rgba(8, 21, 34, 0.58) 100%),
            linear-gradient(90deg, rgba(8, 21, 34, 0.24), rgba(8, 21, 34, 0.08));
    }

    .inspiration-copy {
        max-width: 680px;
    }
}

@media (max-width: 860px) {
    :root {
        --header-height: 70px;
    }

    .container,
    .hero-content,
    .page-hero-content,
    .promo-copy {
        width: calc(100vw - 28px);
        max-width: calc(100vw - 28px);
    }

    .site-header {
        background: rgba(251, 250, 246, 0.94);
        border-bottom: 1px solid var(--border);
        backdrop-filter: blur(18px);
    }

    .brand-link,
    .site-header:not(.is-scrolled):not(.menu-open) .brand-link {
        color: var(--ink);
    }

    .site-header:not(.is-scrolled):not(.menu-open) .nav-actions .icon-action {
        border-color: var(--border);
        background: var(--white);
        color: var(--ink);
    }

    .brand-logo {
        width: 44px;
        height: 44px;
    }

    .menu-toggle {
        display: inline-flex;
        flex-direction: column;
    }

    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: 14px;
        right: 14px;
        display: grid;
        gap: 0.35rem;
        padding: 1rem;
        border: 1px solid var(--border);
        border-radius: var(--radius);
        background: var(--foam);
        color: var(--ink);
        box-shadow: var(--shadow-soft);
        transform: translateY(-12px);
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 220ms var(--ease), transform 220ms var(--ease), visibility 220ms var(--ease);
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-menu a {
        min-height: 44px;
        display: flex;
        align-items: center;
        padding-inline: 0.2rem;
        color: var(--ink);
    }

    .nav-menu a::after {
        inset: auto auto 7px 0.2rem;
        width: 48px;
    }

    .nav-search {
        width: 100%;
        margin-bottom: 0.4rem;
        border-color: var(--border);
        background: var(--white);
        color: var(--ink);
    }

    .hero-section {
        min-height: 760px;
    }

    .catalog-hero {
        height: 540px;
        min-height: 540px;
    }

    .hero-content {
        grid-template-columns: minmax(0, 1fr) minmax(230px, 300px);
        gap: 1.5rem;
        padding-bottom: 6rem;
    }

    .hero-content h1 {
        font-size: 5.4rem;
    }

    .promo-copy {
        padding-bottom: 5.6rem;
    }

    .promo-copy h1 {
        font-size: 3.45rem;
    }

    .promo-product-frame {
        right: 14px;
        bottom: 3.2rem;
        width: 250px;
        min-width: 0;
        opacity: 0.32;
    }

    .promo-dots {
        left: 14px;
        right: auto;
        bottom: 1.4rem;
    }

    .hero-index {
        left: 14px;
        right: auto;
        width: calc(100vw - 28px);
        bottom: 0.85rem;
        flex-wrap: wrap;
    }

    .section-heading h2,
    .inspiration-copy h2,
    .about-preview-copy h2,
    .story-grid h2,
    .values-section h2,
    .contact-intro h2,
    .split-copy h2 {
        font-size: 2.35rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.85rem;
    }

    .catalog-heading {
        display: grid;
        gap: 0.4rem;
    }

    .catalog-help {
        width: max-content;
        margin-bottom: 0.55rem;
    }

    .filter-panel-grid {
        grid-template-columns: 1fr;
    }

    .catalog-filter-panel.active {
        max-height: 980px;
    }

    .collections-layout {
        grid-template-columns: 1fr;
        grid-template-rows: none;
    }

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

    .artists-heading .section-heading {
        width: 100%;
    }

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

    .artist-media-column {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }

    .artist-video-frame {
        width: 100%;
        max-width: 360px;
        height: auto;
    }

    .artist-story-panel {
        min-height: 500px;
        padding: 2.2rem;
    }

    .artist-story-copy h4 {
        font-size: clamp(2.5rem, 7vw, 3.6rem);
    }

    .artist-gallery-heading {
        align-items: flex-start;
        flex-direction: column;
        gap: 0.5rem;
    }

    .artist-gallery-actions {
        width: 100%;
        justify-content: space-between;
    }

    .artist-gallery-actions > p {
        text-align: left;
    }

    .collection-tile,
    .collection-tile.tall {
        grid-row: auto;
        height: 340px;
    }

    .inspiration-grid {
        grid-auto-rows: 145px;
    }

    .product-modal {
        padding: 0;
    }

    .product-modal.active {
        display: block;
    }

    .product-modal-panel {
        width: 100%;
        min-height: 100%;
        border-radius: 0;
    }

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

    .modal-media {
        min-height: 0;
        aspect-ratio: 1 / 1;
    }

    .modal-copy {
        padding: 1.4rem;
    }

    .modal-copy h2 {
        font-size: 2.3rem;
    }

    .metric-row,
    .values-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .page-hero-content h1 {
        font-size: 3.2rem;
    }
}

@media (max-width: 560px) {
    .artists-section {
        background:
            linear-gradient(180deg, rgba(8, 21, 34, 0.93), rgba(8, 21, 34, 0.98)),
            url("../assets/images/patrocinador-seorf.jpeg") 58% top / auto 100% no-repeat,
            var(--ink-deep);
    }

    .inspiration-section::before {
        background-position: 38% center;
        background-size: auto 100%;
    }

    .inspiration-section::after {
        background:
            linear-gradient(180deg, rgba(8, 21, 34, 0.95) 0%, rgba(8, 21, 34, 0.76) 48%, rgba(8, 21, 34, 0.66) 100%),
            linear-gradient(90deg, rgba(8, 21, 34, 0.3), rgba(8, 21, 34, 0.08));
    }

    .hero-section {
        min-height: 960px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        align-content: center;
        gap: 1.35rem;
        padding-top: calc(var(--header-height) + 2rem);
        padding-bottom: 6.2rem;
    }

    .catalog-hero {
        height: 480px;
        min-height: 480px;
    }

    .hero-content h1 {
        font-size: 4rem;
    }

    .hero-artist-card {
        width: min(100%, 310px);
        aspect-ratio: 4 / 5;
        justify-self: start;
    }

    .hero-artist-card img {
        object-position: 52% 34%;
    }

    .hero-artist-caption strong {
        font-size: 1.35rem;
    }

    .promo-copy h1 {
        font-size: 2.35rem;
        line-height: 1;
    }

    .promo-product-frame {
        right: -52px;
        bottom: 4.8rem;
        width: 220px;
        opacity: 0.24;
    }

    .hero-text,
    .page-hero-content p:not(.eyebrow),
    .promo-copy p:not(.eyebrow) {
        font-size: 0.94rem;
    }

    .hero-text {
        max-width: 350px;
        margin-top: 0.45rem;
        line-height: 1.4;
    }

    .section-heading h2,
    .inspiration-copy h2,
    .about-preview-copy h2,
    .story-grid h2,
    .values-section h2,
    .contact-intro h2,
    .split-copy h2,
    .page-hero-content h1 {
        font-size: 2rem;
        line-height: 1.08;
    }

    .contact-actions {
        flex-direction: column;
    }

    .hero-actions {
        gap: 0.45rem;
        margin-top: 0.95rem;
    }

    .hero-index {
        display: flex;
        align-items: center;
        justify-content: flex-start;
        gap: 0.35rem;
        bottom: 0.72rem;
        font-size: 0.68rem;
    }

    .hero-index span {
        flex: 0 1 auto;
        min-height: 38px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        padding: 0.48rem 0.58rem;
        text-align: center;
        white-space: nowrap;
    }

    .hero-actions .btn {
        min-height: 40px;
        padding: 0.56rem 0.7rem;
        font-size: 0.86rem;
    }

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

    .products-section,
    .catalog-products,
    .collections-section,
    .artists-section,
    .inspiration-section,
    .about-preview,
    .faq-section,
    .story-section,
    .values-section,
    .contact-main-section,
    .split-feature {
        padding: 4rem 0;
    }

    .product-info {
        min-height: 128px;
        padding: 0.78rem 0.78rem 3.85rem;
    }

    .product-info h3 {
        font-size: 0.92rem;
    }

    .product-price {
        font-size: 0.82rem;
    }

    .product-tag {
        font-size: 0.64rem;
    }

    .product-quick-add,
    .product-favorite {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .product-quick-add {
        right: 0.78rem;
        bottom: 0.78rem;
    }

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

    .filter-btn {
        width: 100%;
    }

    .filter-toggle {
        min-height: 58px;
        gap: 0.72rem;
        padding: 0.64rem;
    }

    .filter-toggle-icon {
        width: 38px;
        height: 38px;
        flex-basis: 38px;
    }

    .filter-toggle small {
        font-size: 0.76rem;
    }

    .catalog-filter-panel.active {
        padding: 0.75rem;
    }

    .filter-group {
        padding: 0.78rem;
    }

    .filter-chip-list,
    .color-chip-list {
        gap: 0.42rem;
    }

    .filter-chip,
    .color-chip {
        width: auto;
        min-height: 37px;
        font-size: 0.8rem;
    }

    .filter-panel-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .filter-panel-actions .btn,
    .filter-clear {
        width: 100%;
    }

    .catalog-help {
        width: max-content;
        min-height: 32px;
        font-size: 0.82rem;
    }

    .collection-tile {
        height: 300px;
    }

    .artists-heading {
        gap: 1rem;
        margin-bottom: 1.4rem;
    }

    .artist-video-frame {
        width: 100%;
        max-width: 340px;
        height: auto;
    }

    .artist-video-footer {
        padding: 0.9rem;
    }

    .artist-video-info h3 {
        font-size: 2.25rem;
    }

    .artist-story-panel {
        min-height: 0;
        padding: 1.35rem;
    }

    .artist-story-copy h4 {
        font-size: 2.2rem;
        line-height: 1;
    }

    .artist-story-note {
        margin-top: 1.4rem;
    }

    .artist-description {
        font-size: 0.94rem;
    }

    .artist-video-play {
        width: 68px;
        height: 68px;
    }

    .artist-gallery-heading {
        margin-top: 2.8rem;
    }

    .artist-gallery-heading h3 {
        font-size: 2rem;
    }

    .artist-gallery {
        width: calc(100vw - 14px);
        grid-auto-columns: minmax(250px, 78vw);
        grid-template-columns: none;
        grid-auto-flow: column;
        gap: 0.75rem;
        margin-right: -14px;
        padding-right: 14px;
        overflow-x: auto;
    }

    .collection-tile h3 {
        font-size: 1.62rem;
    }

    .inspiration-layout {
        gap: 1.4rem;
    }

    .inspiration-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-auto-rows: 132px;
        gap: 0.7rem;
    }

    .inspiration-item.large,
    .inspiration-item.wide {
        grid-column: span 2;
    }

    .cart-panel {
        padding: 1rem;
    }

    .cart-item {
        grid-template-columns: 1fr;
    }

    .favorite-item {
        grid-template-columns: 88px minmax(0, 1fr);
        gap: 0.7rem;
        padding: 0.62rem;
    }

    .favorite-detail-btn {
        flex: 1;
    }

    .cart-controls {
        justify-content: flex-start;
    }

    .toast-root {
        left: 14px;
        right: 14px;
    }

    .toast {
        max-width: none;
    }

    .footer-logo {
        width: 180px;
    }

    .whatsapp-float {
        display: none;
    }
}

@media (max-width: 560px) {
    .brand-word {
        display: none;
    }

    .products-grid {
        gap: 0.65rem;
    }

    .product-info h3 {
        font-size: 0.86rem;
    }
}
