:root {
    --ink: #17365f;
    --ink-deep: #102b4f;
    --muted: #78879b;
    --cream: #e9eef5;
    --paper: #f8fafc;
    --sage: #9ba9bb;
    --orange: #f1a18f;
    --accent: #f1a18f;
    --line: #d6deea;
    --white: #fff;
    --serif: "Playfair Display", serif;
    --sans: "DM Sans", sans-serif
}

* {
    box-sizing: border-box
}

[hidden] {
    display: none !important
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    font-size: 16px
}

main {
    flex: 1 0 auto
}

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

button,
input,
textarea {
    font: inherit
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.site-header {
    height: 82px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    border-bottom: 1px solid rgba(255, 255, 255, .12);
    background: rgba(16, 43, 79, .96);
    color: #fff;
    box-shadow: 0 8px 30px rgba(16, 43, 79, .12);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 20
}

.brand {
    display: flex;
    align-items: baseline;
    gap: 8px;
    font-family: var(--serif);
    font-weight: 700;
    font-size: 25px;
    letter-spacing: .08em
}

.brand small {
    font: 600 9px var(--sans);
    letter-spacing: .28em;
    color: #d7dde7
}

.site-header nav {
    display: flex;
    align-items: center;
    gap: 32px;
    font-weight: 600;
    font-size: 14px
}

.cart-link {
    display: flex;
    gap: 8px;
    align-items: center
}

.cart-link span {
    display: grid;
    place-items: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--orange);
    color: var(--ink-deep);
    font-size: 12px
}

.hero {
    min-height: 560px;
    padding: 95px 8vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background:
        radial-gradient(circle at 17% 24%, rgba(255,255,255,.16) 0 2px, transparent 3px),
        radial-gradient(circle at 81% 68%, rgba(241,161,143,.26) 0 2px, transparent 3px),
        linear-gradient(90deg, rgba(16, 43, 79, .96), rgba(31, 67, 108, .76)),
        url("https://www.atriaok.com.ar/img/hero-bg.jpg") center 38%/cover;
    color: #fff
}

.hero h1 em {
    position: relative;
    display: inline-block;
    text-shadow: 0 0 30px rgba(241, 161, 143, .22)
}

.hero h1 em::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -.08em;
    width: 100%;
    height: .055em;
    border-radius: 99px;
    background: var(--orange);
    box-shadow: 0 0 18px rgba(241, 161, 143, .7);
    transform: scaleX(0);
    transform-origin: left;
    animation: hero-underline .9s cubic-bezier(.65, 0, .35, 1) .45s forwards
}

@keyframes hero-underline {
    to { transform: scaleX(1) }
}

.page-sparkle {
    position: fixed;
    z-index: 40;
    left: 0;
    top: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #fff8e8;
    box-shadow: 0 0 7px #fff, 0 0 16px rgba(241, 161, 143, .9), 0 0 26px rgba(241, 161, 143, .55);
    opacity: 0;
    pointer-events: none;
    will-change: transform, opacity;
    backface-visibility: hidden;
    transform: translate3d(-50%, -50%, 0) scale(.2) rotate(0deg)
}

.page-sparkle::before,
.page-sparkle::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 100%;
    background: linear-gradient(transparent, #fff 42%, #fff 58%, transparent);
    backface-visibility: hidden
}

.page-sparkle::before {
    width: 3px;
    height: 48px;
    transform: translate3d(-50%, -50%, 0)
}

.page-sparkle::after {
    width: 42px;
    height: 3px;
    transform: translate3d(-50%, -50%, 0)
}

.page-sparkle.is-shining {
    animation: sparkle-shine 1.45s cubic-bezier(.22, .65, .3, 1) both
}

@keyframes sparkle-shine {
    0% { opacity: 0; transform: translate3d(-50%, -50%, 0) scale(.2) rotate(0deg) }
    32% { opacity: .7; transform: translate3d(-50%, -50%, 0) scale(1) rotate(22deg) }
    55% { opacity: .66; transform: translate3d(-50%, -50%, 0) scale(.88) rotate(32deg) }
    100% { opacity: 0; transform: translate3d(-50%, -50%, 0) scale(.82) rotate(42deg) }
}

.eyebrow {
    letter-spacing: .2em;
    font-size: 12px;
    font-weight: 700;
    margin: 0 0 18px
}

.hero h1,
.detail-copy h1,
.cart-page>h1,
.checkout-page h1,
.success-page h1 {
    font: 700 clamp(42px, 7vw, 82px)/.98 var(--serif);
    margin: 0
}

.hero h1 em {
    color: var(--orange);
    font-size: .78em;
    font-weight: 600
}

.hero>p:not(.eyebrow) {
    max-width: 520px;
    font-size: 18px;
    line-height: 1.7;
    color: #dce4ee;
    margin: 24px 0 30px
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 50px;
    padding: 0 25px;
    border: 0;
    border-radius: 2px;
    font-weight: 700;
    cursor: pointer
}

.button.dark {
    background: var(--ink);
    color: #fff
}

.hero .button {
    background: var(--orange);
    color: var(--ink-deep);
    box-shadow: 0 12px 30px rgba(7, 26, 52, .22)
}

.button.accent {
    background: var(--orange);
    color: var(--ink-deep)
}

.button.full {
    width: 100%
}

.button:hover {
    filter: brightness(1.08)
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto }
    .hero h1 em::after { animation: none }
    .hero h1 em::after { transform: scaleX(1) }
    .page-sparkle { display: none }
}

.catalog,
.cart-page,
.checkout-page {
    padding: 85px 5vw;
    max-width: 1440px;
    margin: auto
}

.catalog {
    position: relative
}

.catalog::before {
    content: "";
    position: absolute;
    inset: 30px 5vw auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--orange), transparent);
    opacity: .55
}

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

.section-heading h2 {
    font: 600 clamp(32px, 4vw, 50px) var(--serif);
    margin: 0
}

.section-heading .eyebrow,
.detail-copy .eyebrow {
    color: var(--orange)
}

.section-heading>p {
    color: var(--muted)
}

.filters {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--line);
    padding: 24px 0 34px
}

.search {
    position: relative;
    display: inline-block
}

.search input {
    display: block;
    width: 250px;
    border: 1px solid var(--line);
    background: #fff;
    padding: 12px 42px 12px 15px;
    border-radius: 3px;
    outline: none
}

.search-reset {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 1;
    display: grid;
    place-items: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    color: var(--muted);
    font-size: 22px;
    line-height: 1;
    text-decoration: none
}

.search-reset:hover,
.search-reset:focus-visible {
    background: var(--cream);
    color: var(--ink);
    outline: none
}

.search input:focus,
.checkout-form input:focus,
.checkout-form textarea:focus,
.quantity input:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(241, 161, 143, .2)
}

.size-guide-link {
    display: block;
    width: max-content;
    margin: -7px 0 27px;
    padding: 0;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: none;
    color: var(--ink);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap
}

.size-guide-link:hover {
    color: var(--orange)
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 9px
}

.chips a {
    padding: 9px 16px;
    border: 1px solid var(--line);
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600
}

.chips a.active {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff
}

.size-guide-modal {
    width: min(620px, calc(100% - 32px));
    max-height: calc(100vh - 32px);
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: var(--paper);
    box-shadow: 0 24px 80px rgba(0, 0, 0, .38)
}

.size-guide-modal::backdrop {
    background: rgba(23, 33, 29, .72);
    backdrop-filter: blur(3px)
}

.size-guide-window {
    padding: 18px
}

.size-guide-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px
}

.size-guide-header h2 {
    margin: 0;
    font: 600 25px var(--serif)
}

.size-guide-close {
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 50%;
    background: var(--cream);
    color: var(--ink);
    font-size: 27px;
    line-height: 1;
    cursor: pointer
}

.size-guide-modal img {
    display: block;
    width: 100%;
    max-height: calc(100vh - 120px);
    object-fit: contain;
    border-radius: 3px
}

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

.product-image {
    position: relative;
    display: block;
    aspect-ratio: 4/5;
    background: var(--cream);
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 12px 30px rgba(16, 43, 79, .08)
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s
}

.product-card:hover img {
    transform: scale(1.025)
}

.product-card:hover h3 a,
.arrow:hover {
    color: var(--orange)
}

.badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--ink);
    color: #fff;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 700;
    font-weight: normal
}

.badge-in-stock {
    background: rgba(255, 255, 255, .9);
    color: var(--ink);
    font-weight: normal
}

.promo-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(64%, 235px);
    aspect-ratio: 1;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border-radius: 50%;
    color: #fff;
    text-align: center;
    text-shadow: 0 2px 14px rgba(0,0,0,.7);
    background: rgba(20, 77, 139, .45);
    box-shadow: 0 16px 38px rgba(7,26,52,.3);
    pointer-events: none
}

.promo-overlay small {
    font: 400 clamp(20px,2.2vw,32px) "DM Serif Display", serif;
    letter-spacing: .12em
}

.promo-overlay strong {
    font: 400 clamp(45px,5vw,72px)/1 "DM Serif Display", serif;
    letter-spacing: -.04em
}

.promo-overlay em {
    margin-top: 7px;
    font: normal 700 clamp(11px,1.2vw,16px) var(--sans);
    letter-spacing: .15em
}
.product-info .product-price {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 22px;
    line-height: 1.25
}

.product-info .product-price del {
    color: #9aa3af;
    font-size: 16px;
    font-weight: 500
}

.price del, .line-total del { display:block; color:var(--muted); font-size:.72em; font-weight:500 }
.promotion-callout { display:inline-flex; gap:10px; align-items:center; margin:18px 0 0; padding:9px 13px; border-radius:999px; background:#fbe3dc; color:var(--ink-deep); font-size:13px }
.promo-note { display:block; margin-top:7px; color:#a95747; font-weight:700 }
.discount-row { color:#ffc4b7 }

.product-info {
    padding-top: 16px
}

.product-info>p {
    font-size: 11px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--muted);
    margin: 0 0 8px
}

.product-info h3 {
    font: 600 22px var(--serif);
    margin: 0 0 12px
}

.product-info .product-model {
    font: 500 12px var(--sans);
    letter-spacing: .04em;
    color: var(--muted)
}

.product-info>div {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.arrow {
    font-size: 22px
}

.no-image {
    height: 100%;
    display: grid;
    place-items: center;
    font: 700 22px var(--serif);
    letter-spacing: .18em;
    color: #fff;
    background: linear-gradient(145deg, #294e7a, #879bb5)
}

.product-detail {
    max-width: 1320px;
    margin: auto;
    padding: 60px 5vw 100px;
    display: grid;
    grid-template-columns: 1.12fr .88fr;
    gap: 7vw
}

.main-photo {
    aspect-ratio: 4/5;
    background: var(--cream)
}

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

.thumbnails {
    display: flex;
    gap: 10px;
    margin-top: 12px
}

.thumbnails button {
    width: 72px;
    height: 84px;
    padding: 0;
    border: 2px solid transparent;
    background: none;
    cursor: pointer
}

.thumbnails button.active {
    border-color: var(--ink)
}

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

.detail-copy {
    padding-top: 15px
}

.back {
    font-size: 13px;
    font-weight: 600;
    color: var(--muted);
    display: inline-block;
    margin-bottom: 55px;
    border-radius: 2px
}

.detail-copy .back,
.back.shopping {
    padding: 9px 13px;
    background: var(--cream);
    color: var(--sage);
    border-radius: 999px;
    font-weight: 200
}

.detail-copy .back:hover,
.back.shopping:hover {
    filter: brightness(.95)
}

.detail-copy h1 {
    font-size: clamp(40px, 5vw, 68px)
}

.detail-copy .eyebrow {
    margin: 0 0 14px;
    color: var(--muted)
}

.price {
    font-size: 25px;
    font-weight: 700;
    margin: 20px 0
}

.description {
    line-height: 1.75;
    color: var(--muted);
    border-bottom: 1px solid var(--line);
    padding-bottom: 25px
}

.add-form fieldset {
    padding: 0;
    border: 0;
    margin: 25px 0 18px
}

.add-form legend {
    font-weight: 700;
    margin-bottom: 13px
}

.add-form .optional-shirt {
    border-bottom: 1px solid var(--line);
    padding-bottom: 25px;
    margin-bottom: 0
}

.optional-shirt-options span {
    min-width: 86px;
    padding: 0 12px;
    font-size: 14px
}

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

.sizes input {
    position: absolute;
    opacity: 0
}

.sizes span {
    display: grid;
    place-items: center;
    min-width: 48px;
    height: 44px;
    border: 1px solid var(--line);
    cursor: pointer
}

.sizes input:checked+span {
    background: var(--ink);
    border-color: var(--ink);
    color: #fff
}

.quantity {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 18px
}

.quantity input {
    width: 75px;
    padding: 10px;
    border: 1px solid var(--line)
}

.benefits {
    list-style: none;
    padding: 20px 0;
    margin: 15px 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 2
}

.payment-methods {
    margin-top: 8px;
    padding: 24px;
    border: 1px solid var(--line);
    background: #fff
}

.payment-methods-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line)
}

.payment-methods .eyebrow { margin: 0 0 4px }
.payment-methods h2 { margin: 0; font-size: 23px }
.payment-methods ul { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 13px }
.payment-methods li { display: flex; align-items: center; gap: 12px; min-width: 0 }
.payment-methods li>span {
    display: grid;
    place-items: center;
    flex: 0 0 42px;
    height: 34px;
    border-radius: 6px;
    background: #f2e1dc;
    color: var(--ink-deep);
    font-size: 11px;
    font-weight: 800
}
.payment-methods li div { display: grid; line-height: 1.25 }
.payment-methods li strong { font-size: 14px }
.payment-methods li small { margin-top: 2px; color: var(--muted); font-size: 12px }
.card-brands { display: flex; align-items: center; gap: 9px; flex: 0 0 auto }
.visa-brand {
    display: grid;
    place-items: center;
    width: 51px;
    height: 31px;
    border: 1px solid #d9dce5;
    border-radius: 5px;
    color: #1a3d8f;
    font-size: 15px;
    font-style: italic;
    font-weight: 800;
    letter-spacing: -.7px
}
.mastercard-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 51px;
    height: 31px;
    border: 1px solid #d9dce5;
    border-radius: 5px
}
.mastercard-brand i { width: 18px; height: 18px; border-radius: 50%; background: #e44536 }
.mastercard-brand i+i { margin-left: -6px; background: #f2a72b; opacity: .9 }

.cart-payment-methods {
    margin-top: 25px;
    padding-top: 22px;
    border-top: 1px solid rgba(255,255,255,.35)
}
.cart-payment-heading { display: flex; align-items: center; justify-content: space-between; gap: 14px }
.cart-payment-methods h3 { margin: 0; color: #fff; font-family: "DM Sans", sans-serif; font-size: 17px }
.cart-payment-methods ul { list-style: none; margin: 17px 0 0; padding: 0; display: grid; gap: 11px }
.cart-payment-methods li { display: grid; line-height: 1.3 }
.cart-payment-methods li strong { color: #fff; font-size: 13px; font-weight: 600 }
.cart-payment-methods li small { color: rgba(255,255,255,.7); font-size: 11px }
.cart-payment-methods .visa-brand,
.cart-payment-methods .mastercard-brand { background: #fff }

@media (max-width: 420px) {
    .payment-methods { padding: 19px }
    .payment-methods-heading { align-items: flex-start; flex-direction: column }
}

.out-of-stock,
.flash {
    padding: 15px;
    background: #f2e1dc;
    margin: 25px 0
}

.flash {
    margin: 0;
    text-align: center
}

.flash.success {
    background: #dce9dc
}

.flash.error {
    background: #f2d9d3
}

.cart-page>h1,
.checkout-page h1 {
    font-size: clamp(42px, 5vw, 66px)
}

.cart-layout,
.checkout-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 370px;
    gap: 6vw
}

.cart-items {
    border-top: 1px solid var(--line);
    margin-top: 40px
}

.cart-item {
    display: grid;
    grid-template-columns: 95px 1fr 70px 110px 30px;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid var(--line)
}

.cart-item>img,
.mini-no-image {
    width: 95px;
    height: 115px;
    object-fit: cover;
    background: var(--cream)
}

.mini-no-image {
    display: grid;
    place-items: center;
    font: 700 24px var(--serif)
}

.cart-item-copy h3 {
    font: 600 21px var(--serif);
    margin: 0 0 7px
}

.cart-item-copy p {
    color: var(--muted);
    margin: 0 0 10px
}

.cart-item label {
    font-size: 11px;
    color: var(--muted)
}

.cart-item label input {
    display: block;
    width: 65px;
    padding: 8px;
    border: 1px solid var(--line);
    margin-top: 5px
}

.line-total {
    font-weight: 700;
    text-align: right
}

.remove {
    border: 0;
    background: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--muted)
}

.text-button {
    border: 0;
    background: none;
    text-decoration: underline;
    padding: 18px 0;
    cursor: pointer
}

.shopping {
    margin: 30px 0
}

.summary {
    background: var(--ink-deep);
    color: #fff;
    padding: 28px;
    align-self: start;
    position: sticky;
    top: 105px
}

.summary h2 {
    font: 600 27px var(--serif);
    margin: 0 0 24px
}

.summary>div {
    display: flex;
    justify-content: space-between;
    padding: 12px 0
}

.summary .total {
    border-top: 1px solid #c9c7bf;
    margin-top: 10px;
    padding: 20px 0;
    font-size: 20px
}

.summary>p {
    color: #bdc9d8;
    font-size: 12px;
    line-height: 1.6
}

.empty {
    text-align: center;
    padding: 80px 20px;
    background: var(--cream)
}

.empty h3 {
    font: 600 30px var(--serif);
    margin: 0 0 10px
}

.empty p {
    color: var(--muted);
    margin-bottom: 25px
}

.empty>a:not(.button) {
    text-decoration: underline
}

.checkout-page>div>.back {
    margin-bottom: 45px
}

.lead {
    max-width: 670px;
    color: var(--muted);
    line-height: 1.7
}

.checkout-form {
    margin-top: 35px
}

.checkout-form label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 20px
}

.checkout-form input,
.checkout-form textarea {
    display: block;
    width: 100%;
    border: 1px solid var(--line);
    background: #fff;
    padding: 13px;
    margin-top: 8px
}

.field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.privacy {
    text-align: center;
    color: var(--muted);
    font-size: 11px
}

.order-row {
    gap: 20px;
    border-bottom: 1px solid #d6d2c9;
    font-size: 14px
}

.order-row span {
    max-width: 220px
}

.order-row small {
    display: block;
    color: #bdc9d8;
    margin-top: 4px
}

.success-page {
    max-width: 680px;
    margin: auto;
    padding: 120px 5vw;
    text-align: center
}

.admin-page { width:min(1280px,90vw); margin:auto; padding:70px 0 100px }
.admin-page h1 { margin:0; font:700 clamp(42px,6vw,68px) var(--serif) }
.admin-login { max-width:560px }
.admin-layout { display:grid; grid-template-columns:minmax(320px,.8fr) 1.2fr; gap:35px; align-items:start }
.admin-card { padding:25px; border:1px solid var(--line); border-radius:5px; background:#fff }
.admin-card h2, .admin-list h2 { margin-top:0; font:600 27px var(--serif) }
.admin-card label, .admin-card legend { display:block; margin-bottom:17px; font-size:13px; font-weight:700 }
.admin-card input:not([type=checkbox]), .admin-card select { display:block; width:100%; margin-top:7px; padding:11px; border:1px solid var(--line); background:#fff }
.admin-card fieldset { margin:4px 0 24px; padding:0; border:0 }
.product-selector { max-height:220px; padding:12px; overflow:auto; border:1px solid var(--line) }
.product-selector label { margin:0; padding:7px 2px; font-weight:500 }
.promotion-row { display:flex; justify-content:space-between; gap:24px; align-items:center; margin-bottom:14px }
.promotion-row h3 { margin:8px 0 5px }
.promotion-row p, .promotion-row small { color:var(--muted) }
.promo-chip { display:inline-block; padding:5px 9px; border-radius:99px; background:var(--orange); font-weight:800 }

.success-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: var(--sage);
    margin: 0 auto 28px;
    font-size: 35px
}

.success-page h1 {
    font-size: 55px
}

.success-page>p:not(.eyebrow) {
    line-height: 1.8;
    color: var(--muted);
    margin: 25px 0 32px
}

.site-footer {
    flex: 0 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px 40px;
    min-height: 132px;
    background: var(--ink-deep);
    color: #fff;
    padding: 45px 5vw
}

.site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0
}

.site-footer__social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px
}

.site-footer__social p {
    margin: 0;
    color: #bdc9d8;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .04em
}

.social-links {
    display: flex;
    align-items: center;
    gap: 10px
}

.site-footer .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background-color .2s ease, border-color .2s ease, color .2s ease, transform .2s ease
}

.site-footer .social-links a:hover,
.site-footer .social-links a:focus-visible {
    border-color: #f69b88;
    background: #f69b88;
    color: var(--ink-deep);
    transform: translateY(-2px)
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    stroke: none
}

.social-links svg rect,
.social-links svg circle:not(.social-icon-fill) {
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8
}

.social-links span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0
}

.site-footer strong {
    font: 600 23px var(--serif)
}

.site-footer span {
    color: #bdc9d8;
    font-size: 13px;
    line-height: 1.4
}

.site-footer a {
    flex: 0 0 auto;
    line-height: 1.4;
    text-decoration: underline;
    text-underline-offset: 3px
}

.whatsapp-float {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 19px 0 15px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 999px;
    background: #25d366;
    color: #092f1a;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 12px 30px rgba(16, 43, 79, .28);
    transition: transform .2s ease, box-shadow .2s ease, filter .2s ease
}

.whatsapp-float svg {
    width: 27px;
    height: 27px;
    fill: #fff
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(16, 43, 79, .36);
    filter: brightness(1.04)
}

.whatsapp-float:focus-visible {
    outline: 3px solid var(--orange);
    outline-offset: 3px
}

@media(max-width:850px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .product-detail,
    .cart-layout,
    .checkout-page {
        grid-template-columns: 1fr
    }

    .summary {
        position: static
    }

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

    .search,
    .search input {
        width: 100%
    }

    .cart-item {
        grid-template-columns: 78px 1fr 65px
    }

    .cart-item>img,
    .mini-no-image {
        width: 78px;
        height: 94px
    }

    .line-total {
        grid-column: 2
    }

    .remove {
        grid-column: 3;
        grid-row: 1
    }

    .product-detail {
        padding-top: 30px
    }

    .admin-layout { grid-template-columns:1fr }

    .detail-copy .back {
        margin-bottom: 35px
    }
}

@media(max-width:560px) {
    .site-header {
        height: 68px;
        padding: 0 20px
    }

    .site-header nav>a:first-child {
        display: none
    }

    .hero {
        min-height: 520px;
        padding: 70px 22px
    }

    .catalog,
    .cart-page,
    .checkout-page {
        padding: 60px 20px
    }

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

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

    .section-heading>p {
        margin-bottom: 0
    }

    .product-detail {
        display: block;
        padding: 20px 20px 70px
    }

    .detail-copy {
        padding-top: 35px
    }

    .field-grid {
        grid-template-columns: 1fr
    }

    .cart-item {
        gap: 12px
    }

    .cart-item-copy h3 {
        font-size: 18px
    }

    .summary {
        padding: 22px
    }

    .site-footer {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
        min-height: 0;
        padding: 35px 20px
    }

    .site-footer__social {
        align-items: flex-start
    }

    .whatsapp-float {
        right: 16px;
        bottom: 16px;
        width: 56px;
        height: 56px;
        min-height: 56px;
        padding: 0;
        justify-content: center
    }

    .whatsapp-float span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0
    }

    .success-page h1 {
        font-size: 42px
    }

    .size-guide-window {
        padding: 12px
    }

    .size-guide-header {
        margin-bottom: 10px
    }
}

.quantity {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center
}

.quantity input {
    grid-column: 2;
    grid-row: 1/3
}

.stock-message {
    font-size: 11px;
    font-weight: 500;
    color: var(--muted);
    margin-top: 4px
}

.quantity input:disabled {
    background: #eee;
    cursor: not-allowed
}
