:root {
    --color-navy: #071b3a;
    --color-navy-2: #0e2a55;
    --color-red: #d71920;
    --color-white: #ffffff;
    --color-soft: #f7f9fc;
    --color-soft-blue: #edf3fb;
    --color-text: #1f2937;
    --color-muted: #667085;
    --color-line: #dce3ee;
    --color-success: #137a46;
    --color-danger: #b42318;
    --font-title: "Poppins", Arial, sans-serif;
    --font-body: "Inter", Arial, sans-serif;
    --radius: 14px;
    --radius-sm: 10px;
    --shadow-soft: 0 12px 30px rgba(7, 27, 58, .08);
    --shadow-lift: 0 20px 46px rgba(7, 27, 58, .14);
    --transition: 180ms ease;
}

* {
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background:
        radial-gradient(circle at 10% 0%, rgba(215, 25, 32, .07), transparent 28%),
        linear-gradient(180deg, rgba(247, 249, 252, .95), rgba(255, 255, 255, 0) 420px),
        var(--color-white);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.55;
}

body.modal-open {
    overflow: hidden;
}

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

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

h1,
h2,
h3,
.brand,
.button,
.product-title,
.category-card span {
    font-family: var(--font-title);
}

.site-header {
    position: sticky;
    top: 10px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    width: min(1120px, calc(100% - 24px));
    min-height: 82px;
    margin: 10px auto 0;
    padding: 8px 10px 8px 14px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 28px;
    background: rgba(7, 27, 58, .97);
    color: var(--color-white);
    box-shadow: 0 14px 32px rgba(7, 27, 58, .14);
    backdrop-filter: blur(16px);
}

.brand {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-width: 0;
    color: var(--color-white);
    font-weight: 900;
    letter-spacing: .01em;
}

.brand-logo {
    width: 150px;
    height: 66px;
    object-fit: contain;
    background: transparent;
}

.brand-text {
    color: var(--color-white);
    font-size: 16px;
    white-space: nowrap;
}

.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 34px;
    height: 34px;
    border: 2px solid var(--color-white);
    border-radius: 50%;
    background: var(--color-red);
    font-size: 13px;
}

.nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    min-height: 42px;
    border: 1px solid rgba(255, 255, 255, .38);
    border-radius: 999px;
    padding: 8px 16px;
    background: transparent;
    color: var(--color-white);
    cursor: pointer;
    font: 700 14px var(--font-body);
}

.nav-toggle-icon {
    display: grid;
    gap: 3px;
    width: 16px;
}

.nav-toggle-icon span {
    display: block;
    width: 16px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:first-child {
    transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:last-child {
    transform: translateY(-5px) rotate(-45deg);
}

.site-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    left: 14px;
    display: none;
    flex-direction: column;
    gap: 3px;
    padding: 8px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-sm);
    background: rgba(7, 27, 58, .99);
    box-shadow: var(--shadow-lift);
}

.site-nav.is-open {
    display: flex;
    animation: menuIn 160ms ease both;
}

.site-nav a {
    padding: 8px 10px;
    border-radius: 999px;
    color: var(--color-white);
    font-size: 14px;
    font-weight: 700;
    transition: background var(--transition), color var(--transition);
}

.site-nav a:hover,
.site-nav a.is-active {
    background: rgba(255, 255, 255, .14);
    color: var(--color-white);
}

.site-nav .nav-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 40px;
    max-width: 100%;
    padding: 8px 14px;
    background: var(--color-red);
    color: var(--color-white);
    box-shadow: 0 8px 16px rgba(215, 25, 32, .18);
    white-space: nowrap;
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact:focus-visible {
    background: #b9141b;
    color: var(--color-white);
}

.nav-contact-icon {
    display: block;
    flex: 0 0 20px;
    width: 20px;
    min-width: 20px;
    max-width: 20px;
    height: 20px;
    max-height: 20px;
    overflow: hidden;
}

.hero,
.section,
.page-heading,
.site-footer {
    width: min(1120px, calc(100% - 36px));
    margin-inline: auto;
}

.hero {
    display: grid;
    gap: 24px;
    align-items: center;
    padding: 34px 0 18px;
}

.hero-editorial {
    position: relative;
    overflow: hidden;
    width: min(1120px, calc(100% - 24px));
    margin-top: 18px;
    padding: clamp(30px, 6vw, 58px);
    border-radius: 30px;
    background:
        radial-gradient(circle at 78% 18%, rgba(215, 25, 32, .32), transparent 30%),
        linear-gradient(135deg, #061735 0%, #0a2a58 58%, #071b3a 100%);
    color: var(--color-white);
    box-shadow: 0 28px 70px rgba(7, 27, 58, .22);
}

.hero-editorial::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 24px;
    pointer-events: none;
}

.hero-content {
    display: grid;
    justify-items: center;
    text-align: center;
}

.hero h1,
.page-heading h1 {
    max-width: 850px;
    margin: 0 auto;
    color: var(--color-navy);
    font-size: clamp(36px, 7vw, 68px);
    line-height: .98;
    letter-spacing: 0;
}

.hero-editorial h1 {
    color: var(--color-white);
    font-size: clamp(38px, 7vw, 74px);
}

.hero p,
.page-heading p:last-child {
    max-width: 680px;
    margin: 16px auto 0;
    color: var(--color-muted);
    font-size: clamp(16px, 2vw, 18px);
}

.hero-editorial p {
    color: rgba(255, 255, 255, .78);
}

.hero-editorial .eyebrow {
    color: var(--color-white);
}

.hero-editorial .button.secondary {
    border-color: rgba(255, 255, 255, .5);
    background: rgba(255, 255, 255, .1);
    color: var(--color-white);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 0 10px;
    color: var(--color-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.eyebrow::before,
.eyebrow::after {
    content: "";
    width: 22px;
    height: 2px;
    border-radius: 99px;
    background: currentColor;
    opacity: .65;
}

.hero-actions,
.form-actions,
.admin-actions,
.row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    justify-content: center;
}

.hero-actions {
    margin-top: 22px;
}

.form-actions {
    margin-top: 8px;
}

.button,
button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    border: 1px solid transparent;
    border-radius: 999px;
    padding: 9px 16px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 900;
    transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
}

.button:hover,
button.button:hover {
    transform: translateY(-1px);
}

.button.primary {
    background: var(--color-navy);
    color: var(--color-white);
    box-shadow: 0 12px 24px rgba(7, 27, 58, .2);
}

.button.primary:hover {
    background: var(--color-red);
    box-shadow: 0 14px 26px rgba(215, 25, 32, .22);
}

.button.secondary {
    border-color: rgba(7, 27, 58, .18);
    background: var(--color-white);
    color: var(--color-navy);
}

.button.ghost {
    border-color: var(--color-line);
    background: transparent;
    color: var(--color-navy);
}

.button.danger {
    background: var(--color-danger);
    color: var(--color-white);
}

.button.small {
    min-height: 32px;
    padding: 6px 10px;
    font-size: 13px;
}

.hero-visual {
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 24px;
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .16);
}

.hero-visual img {
    width: 100%;
    height: 100%;
    max-height: 360px;
    object-fit: cover;
    object-position: center;
    transition: transform 500ms ease;
}

.hero-visual picture {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-visual:hover img {
    transform: scale(1.025);
}

.hero-collage {
    position: relative;
    min-height: 340px;
}

.hero-main-img {
    min-height: 340px;
}

.hero-floating-card {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: grid;
    gap: 3px;
    max-width: 230px;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .28);
    border-radius: 18px;
    background: rgba(255, 255, 255, .92);
    color: var(--color-navy);
    box-shadow: 0 18px 30px rgba(0, 0, 0, .12);
}

.hero-floating-card span {
    color: var(--color-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.hero-floating-card strong {
    font-family: var(--font-title);
    font-size: 20px;
}

.section {
    padding: 46px 0;
}

.intro-section {
    padding-top: 20px;
}

.benefits-section {
    padding-top: 26px;
    padding-bottom: 10px;
}

.benefits-grid {
    display: grid;
    gap: 14px;
}

.benefit-card {
    display: grid;
    justify-items: center;
    align-content: start;
    gap: 8px;
    min-height: 190px;
    padding: 22px 18px;
    border: 1px solid rgba(7, 27, 58, .08);
    border-radius: 20px;
    background: linear-gradient(180deg, var(--color-white), var(--color-soft-blue));
    text-align: center;
    box-shadow: 0 8px 20px rgba(7, 27, 58, .06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: rgba(7, 27, 58, .18);
    box-shadow: var(--shadow-lift);
}

.benefit-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-title);
    font-size: 25px;
    font-weight: 900;
}

.benefit-card h3 {
    margin: 2px 0 0;
    color: var(--color-navy);
    font-size: 16px;
    letter-spacing: .055em;
    line-height: 1.2;
    text-transform: uppercase;
}

.benefit-card p {
    margin: 0;
    color: var(--color-muted);
    font-size: 14px;
    line-height: 1.5;
}

.intro-panel {
    display: grid;
    justify-items: center;
    gap: 18px;
    padding: 26px;
    border: 1px solid rgba(7, 27, 58, .08);
    border-radius: var(--radius);
    background:
        linear-gradient(135deg, rgba(237, 243, 251, .8), rgba(255, 255, 255, .96)),
        var(--color-white);
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.intro-panel h2 {
    max-width: 780px;
    margin: 0 auto;
    color: var(--color-navy);
    font-size: clamp(24px, 4vw, 38px);
    line-height: 1.08;
}

.intro-panel .intro-copy {
    max-width: 620px;
    margin: 12px auto 0;
    color: var(--color-muted);
}

.section-head {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-bottom: 24px;
    text-align: center;
}

.section-head h2,
.contact-box h2 {
    margin: 0;
    color: var(--color-navy);
    font-size: clamp(26px, 4vw, 38px);
    line-height: 1.05;
}

.section-head p {
    max-width: 620px;
    margin: 0 auto;
    color: var(--color-muted);
}

.category-grid,
.product-grid,
.contact-grid {
    display: grid;
    gap: 18px;
}

.category-card {
    min-height: 260px;
    display: grid;
    align-content: end;
    justify-items: center;
    gap: 6px;
    overflow: hidden;
    position: relative;
    padding: 22px;
    border: 1px solid rgba(7, 27, 58, .08);
    border-radius: 24px;
    background: var(--color-white);
    text-align: center;
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.category-card:hover,
.category-card:focus-visible,
.category-card.is-touched {
    transform: translateY(-4px);
    border-color: rgba(215, 25, 32, .42);
    box-shadow: var(--shadow-lift);
}

.category-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transition: transform 520ms ease;
}

.category-card:hover img,
.category-card.is-touched img {
    transform: scale(1.035);
}

.category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7, 27, 58, .08), rgba(7, 27, 58, .82)),
        linear-gradient(45deg, rgba(215, 25, 32, .24), transparent 42%);
}

.category-card span,
.category-card small {
    position: relative;
    z-index: 1;
}

.category-card span {
    color: var(--color-white);
    font-size: 28px;
    font-weight: 900;
}

.category-card small {
    max-width: 260px;
    color: rgba(255, 255, 255, .92);
    font-weight: 500;
}

.page-heading {
    display: grid;
    justify-items: center;
    padding: 48px 0 14px;
    text-align: center;
}

.filter-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 9px;
    margin-top: 24px;
}

.filter-pill {
    border: 1px solid rgba(7, 27, 58, .12);
    border-radius: 999px;
    padding: 8px 14px;
    background: var(--color-white);
    color: var(--color-navy);
    font-size: 14px;
    font-weight: 800;
    transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
}

.filter-pill:hover,
.filter-pill.is-active {
    transform: translateY(-1px);
    border-color: var(--color-red);
    background: var(--color-red);
    color: var(--color-white);
}

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

.product-card {
    overflow: hidden;
    border: 1px solid rgba(7, 27, 58, .08);
    border-radius: 22px;
    background: var(--color-white);
    box-shadow: 0 8px 22px rgba(7, 27, 58, .06);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover,
.product-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(7, 27, 58, .16);
    box-shadow: var(--shadow-lift);
}

.product-open {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    font: inherit;
    text-align: center;
    position: relative;
}

.product-media {
    position: relative;
    overflow: hidden;
    background: var(--color-soft);
}

.product-media img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: var(--color-soft);
    transition: transform 420ms ease, opacity var(--transition);
}

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

.product-card.is-sold-out .product-media img {
    opacity: .72;
}

.sold-out-badge,
.photo-count,
.modal-sold-out {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    color: var(--color-white);
    font-size: 12px;
    font-weight: 900;
}

.sold-out-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    min-height: 29px;
    padding: 6px 11px;
    background: var(--color-red);
    text-transform: uppercase;
    box-shadow: 0 8px 18px rgba(215, 25, 32, .24);
}

.photo-count {
    position: absolute;
    right: 12px;
    bottom: 12px;
    padding: 6px 10px;
    background: rgba(7, 27, 58, .88);
}

.product-info {
    display: grid;
    justify-items: center;
    gap: 7px;
    padding: 18px 16px 20px;
}

.product-category {
    display: inline-flex;
    color: var(--color-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-title {
    display: block;
    color: var(--color-navy);
    font-size: 20px;
    font-weight: 900;
    line-height: 1.1;
}

.product-price {
    display: block;
    color: var(--color-navy-2);
    font-size: 15px;
    font-weight: 800;
}

.product-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    border: 1px solid rgba(7, 27, 58, .14);
    border-radius: 999px;
    padding: 7px 12px;
    color: var(--color-navy);
    font-family: var(--font-title);
    font-size: 13px;
    font-weight: 800;
    transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.product-card:hover .product-cta {
    border-color: var(--color-red);
    background: var(--color-red);
    color: var(--color-white);
}

.empty-state,
.contact-box,
.admin-panel,
.login-card {
    border: 1px solid rgba(7, 27, 58, .08);
    border-radius: var(--radius);
    background: var(--color-white);
    box-shadow: var(--shadow-soft);
}

.empty-state {
    padding: 30px;
    text-align: center;
}

.contact-section {
    padding-top: 24px;
}

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

.contact-box {
    display: grid;
    justify-items: center;
    gap: 8px;
    padding: 24px;
    text-align: center;
}

.contact-label {
    color: var(--color-red);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.contact-box p {
    margin: 0;
    color: var(--color-muted);
}

.site-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: min(1120px, calc(100% - 24px));
    margin-top: 42px;
    margin-bottom: 14px;
    padding: 18px 22px;
    border-radius: 24px;
    color: var(--color-white);
}

body > .site-footer {
    background: var(--color-navy);
}

.site-footer p {
    margin: 2px 0 0;
    color: rgba(255, 255, 255, .78);
    font-size: 13px;
}

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

.footer-logo {
    width: auto;
    max-width: 122px;
    height: 56px;
    object-fit: contain;
    background: transparent;
}

.footer-links {
    display: flex;
    gap: 12px;
    color: rgba(255, 255, 255, .86);
    font-size: 14px;
    font-weight: 700;
}

.product-modal {
    position: fixed;
    inset: 0;
    z-index: 40;
    display: none;
    padding: 16px;
}

.product-modal[aria-hidden="false"] {
    display: grid;
    place-items: center;
}

.product-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(7, 27, 58, .72);
    animation: fadeIn 160ms ease both;
}

.product-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    max-height: min(700px, calc(100vh - 32px));
    display: grid;
    gap: 20px;
    overflow: auto;
    border-radius: var(--radius);
    padding: 18px;
    background: var(--color-white);
    box-shadow: var(--shadow-lift);
    animation: modalIn 180ms ease both;
}

.product-detail {
    width: min(1120px, calc(100% - 36px));
    display: grid;
    gap: 28px;
    align-items: center;
    margin: 44px auto 64px;
}

.detail-gallery {
    display: grid;
    gap: 12px;
}

.detail-main-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 640px;
    border-radius: 26px;
    object-fit: contain;
    background: var(--color-soft);
    box-shadow: var(--shadow-soft);
}

.detail-thumbs {
    display: flex;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
}

.detail-thumb {
    width: 78px;
    height: 78px;
    flex: 0 0 auto;
    overflow: hidden;
    border: 2px solid transparent;
    border-radius: 16px;
    padding: 0;
    background: var(--color-soft);
    cursor: pointer;
}

.detail-thumb.is-active {
    border-color: var(--color-red);
}

.detail-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-copy {
    display: grid;
    justify-items: center;
    gap: 14px;
    text-align: center;
}

.detail-copy h1 {
    max-width: 620px;
    margin: 0;
    color: var(--color-navy);
    font-family: var(--font-title);
    font-size: clamp(34px, 6vw, 58px);
    line-height: 1;
}

.detail-copy p {
    max-width: 580px;
    margin: 0;
    color: var(--color-muted);
}

.detail-status {
    display: inline-flex;
    border-radius: 999px;
    padding: 7px 12px;
    font-weight: 900;
}

.detail-status.available {
    background: #e8f7ef;
    color: var(--color-success);
}

.detail-status.sold {
    background: #fff0ee;
    color: var(--color-danger);
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: var(--color-navy);
    color: var(--color-white);
    cursor: pointer;
    font-size: 24px;
    line-height: 1;
    transition: transform var(--transition), background var(--transition);
}

.modal-close:hover {
    transform: rotate(6deg);
    background: var(--color-red);
}

.modal-gallery {
    display: grid;
    gap: 12px;
}

.modal-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    max-height: 520px;
    border-radius: var(--radius-sm);
    object-fit: contain;
    background: var(--color-soft);
}

.modal-thumbs {
    display: flex;
    justify-content: center;
    gap: 8px;
    overflow-x: auto;
}

.modal-thumb {
    flex: 0 0 auto;
    width: 66px;
    height: 66px;
    border: 2px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0;
    overflow: hidden;
    background: var(--color-soft);
    cursor: pointer;
}

.modal-thumb.is-active {
    border-color: var(--color-red);
}

.modal-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.modal-copy {
    display: grid;
    align-content: center;
    justify-items: center;
    gap: 12px;
    text-align: center;
}

.modal-copy h2 {
    margin: 0;
    color: var(--color-navy);
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1;
}

.modal-description {
    margin: 0;
    color: var(--color-muted);
}

.modal-sold-out {
    padding: 7px 12px;
    background: var(--color-red);
}

.modal-price {
    margin: 0;
    color: var(--color-navy);
    font: 800 22px var(--font-title);
}

.modal-options {
    width: 100%;
}

.modal-options h3 {
    margin: 0 0 8px;
    color: var(--color-navy);
    font-size: 14px;
}

.option-chips,
.size-options {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}

.option-chip {
    display: inline-flex;
    border: 1px solid var(--color-line);
    border-radius: 999px;
    padding: 6px 11px;
    background: var(--color-soft-blue);
    color: var(--color-navy);
    font-size: 13px;
    font-weight: 800;
}

.size-option {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 52px;
    height: 52px;
    padding: 0 14px;
    border: 2px solid var(--color-line);
    border-radius: 12px;
    background: var(--color-white);
    color: var(--color-navy);
    cursor: pointer;
    font: 800 16px var(--font-title);
    transition: transform var(--transition), border-color var(--transition), background var(--transition), color var(--transition);
}

.size-option:hover,
.size-option.is-selected {
    transform: translateY(-2px);
    border-color: var(--color-navy);
    background: var(--color-navy);
    color: var(--color-white);
}

.whatsapp-button {
    width: 100%;
    margin-top: 4px;
    background: #168a4c;
    color: var(--color-white);
    box-shadow: 0 12px 24px rgba(22, 138, 76, .2);
}

.whatsapp-button:hover {
    background: #10723e;
}

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

.admin-body {
    min-height: 100vh;
    background: var(--color-soft);
}

.admin-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 18px 20px;
    background: var(--color-navy);
    color: var(--color-white);
}

.admin-header h1 {
    margin: 0;
    font-family: var(--font-title);
}

.admin-header .button.secondary,
.admin-header .button.ghost {
    border-color: rgba(255, 255, 255, .5);
    color: var(--color-white);
}

.admin-header .button.secondary {
    background: rgba(255, 255, 255, .1);
}

.admin-main {
    width: min(1180px, calc(100% - 32px));
    margin: 24px auto 56px;
}

.admin-panel,
.login-card {
    padding: 20px;
}

.login-card {
    width: min(420px, calc(100% - 32px));
    margin: 10vh auto;
}

.login-card h1 {
    margin-bottom: 4px;
    color: var(--color-navy);
}

.admin-form {
    display: grid;
    gap: 16px;
}

.admin-form label {
    display: grid;
    gap: 7px;
    color: var(--color-navy);
    font-weight: 800;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    padding: 11px 12px;
    background: var(--color-white);
    color: var(--color-text);
    font: inherit;
    font-weight: 400;
}

.form-row {
    display: grid;
    gap: 16px;
}

.form-row-compact {
    align-items: end;
}

.checkbox-label {
    align-self: end;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    min-height: 44px;
}

.checkbox-label input {
    width: 18px;
    height: 18px;
}

.table-wrap {
    overflow-x: auto;
}

.product-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 980px;
}

.product-table th,
.product-table td {
    padding: 12px;
    border-bottom: 1px solid var(--color-line);
    text-align: left;
    vertical-align: middle;
}

.product-table th {
    color: var(--color-navy);
    font-size: 13px;
    text-transform: uppercase;
}

.product-table small {
    display: block;
    max-width: 360px;
    color: var(--color-muted);
}

.thumb,
.image-preview img {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    object-fit: cover;
    background: var(--color-soft);
}

.image-preview {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--color-muted);
    font-weight: 700;
}

.secondary-images {
    display: grid;
    gap: 10px;
    color: var(--color-navy);
    font-weight: 800;
}

.secondary-image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 12px;
}

.secondary-image-item {
    display: grid !important;
    gap: 8px;
    padding: 10px;
    border: 1px solid var(--color-line);
    border-radius: var(--radius-sm);
    background: var(--color-soft);
    font-size: 13px;
}

.secondary-image-item img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    object-fit: cover;
}

.status {
    display: inline-flex;
    border-radius: 999px;
    padding: 4px 9px;
    font-size: 13px;
    font-weight: 900;
}

.status.visible,
.status.available {
    background: #e8f7ef;
    color: var(--color-success);
}

.status.hidden,
.status.sold-out {
    background: #fff0ee;
    color: var(--color-danger);
}

.alert {
    margin-bottom: 16px;
    border-radius: var(--radius-sm);
    padding: 12px 14px;
    font-weight: 800;
}

.alert.success {
    background: #e8f7ef;
    color: var(--color-success);
}

.alert.error {
    background: #fff0ee;
    color: var(--color-danger);
}

.reveal {
    opacity: 0;
    transform: translateY(14px);
}

.reveal.is-visible {
    animation: sectionIn 520ms ease forwards;
}

@keyframes sectionIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

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

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

@media (min-width: 720px) {
    .hero {
        grid-template-columns: minmax(0, .9fr) minmax(320px, .75fr);
    }

    .hero-content {
        align-content: center;
    }

    .hero-editorial .hero-content {
        justify-items: start;
        text-align: left;
    }

    .hero-editorial h1,
    .hero-editorial p {
        margin-left: 0;
        margin-right: 0;
    }

    .nav-toggle {
        display: none;
    }

    .site-nav {
        position: static;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: flex-end;
        flex: 1 1 auto;
        gap: 2px;
        padding: 0;
        background: transparent;
        border: 0;
        box-shadow: none;
    }

    .site-nav a {
        padding: 7px 10px;
        font-size: 13px;
    }

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

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

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

    .product-modal-dialog {
        grid-template-columns: minmax(0, 1.15fr) minmax(280px, .85fr);
        align-items: start;
    }

    .product-detail {
        grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
    }

    .detail-copy {
        justify-items: start;
        text-align: left;
    }

    .form-row {
        grid-template-columns: 1fr 1fr;
    }

    .form-row-compact {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (min-width: 960px) {
    .product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 719px) {
    .site-header {
        top: 8px;
        gap: 12px;
        width: min(100% - 20px, 1120px);
        min-height: 78px;
        margin-top: 8px;
        padding: 7px 9px 7px 10px;
        border-radius: 24px;
    }

    .brand-logo {
        width: 142px;
        height: 66px;
    }

    .brand-text {
        font-size: 14px;
    }

    .site-nav {
        top: calc(100% + 8px);
        right: 0;
        left: 0;
        gap: 4px;
        padding: 10px;
        border-radius: 18px;
    }

    .site-nav a {
        min-height: 42px;
        padding: 10px 14px;
    }

    .site-nav .nav-contact {
        width: 100%;
        min-height: 46px;
        margin-top: 4px;
        padding: 10px 14px;
        border-radius: 14px;
    }

    .hero {
        padding-top: 26px;
    }

    .hero-editorial {
        width: min(100% - 20px, 1120px);
        padding: 26px 18px;
        border-radius: 24px;
    }

    .hero-collage,
    .hero-main-img {
        min-height: 260px;
    }

    .hero-main-img {
        image-rendering: auto;
        object-position: center top;
    }

    .hero-floating-card {
        right: 12px;
        bottom: 12px;
        max-width: 190px;
        padding: 12px;
    }

    .hero-actions,
    .form-actions,
    .admin-actions,
    .row-actions,
    .site-footer,
    .admin-header {
        align-items: center;
        flex-direction: column;
    }

    .intro-panel {
        padding: 22px 18px;
    }

    .category-card {
        min-height: 240px;
    }

    .row-actions {
        align-items: stretch;
    }

    .row-actions .button,
    .hero-actions .button,
    .intro-panel .button {
        width: 100%;
    }

    .site-footer,
    .footer-brand {
        text-align: center;
        justify-content: center;
    }

    .site-footer {
        width: min(100% - 20px, 1120px);
        border-radius: 20px;
    }

    .product-modal-dialog {
        padding: 50px 10px 14px;
    }

    .product-grid {
        gap: 10px;
    }

    .product-card {
        border-radius: 16px;
    }

    .product-info {
        gap: 5px;
        padding: 12px 8px 14px;
    }

    .product-title {
        font-size: clamp(14px, 4.2vw, 17px);
    }

    .product-category {
        font-size: 10px;
    }

    .product-cta {
        width: 100%;
        margin-top: 4px;
        padding: 6px 7px;
        font-size: 11px;
    }

    .sold-out-badge {
        top: 7px;
        left: 7px;
        min-height: 24px;
        padding: 4px 7px;
        font-size: 9px;
    }

    .photo-count {
        right: 7px;
        bottom: 7px;
        padding: 4px 7px;
        font-size: 9px;
    }

    .modal-image {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        max-height: none;
    }

    .modal-thumbs,
    .detail-thumbs {
        justify-content: flex-start;
        padding-bottom: 4px;
        overscroll-behavior-inline: contain;
        scroll-snap-type: inline proximity;
    }

    .modal-thumb,
    .detail-thumb {
        scroll-snap-align: start;
    }

    .size-options {
        gap: 7px;
    }

    .size-option {
        min-width: 46px;
        height: 46px;
        padding-inline: 11px;
        border-radius: 10px;
        font-size: 15px;
    }
}

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

    .reveal {
        opacity: 1;
        transform: none;
    }
}
