:root {
    --bg: #f6f1e8;
    --bg-soft: #fbf8f2;
    --bg-strong: #ede4d7;
    --panel: rgba(255, 255, 255, 0.72);
    --panel-strong: rgba(255, 255, 255, 0.9);
    --panel-dark: rgba(29, 26, 23, 0.88);
    --text: #1d1a17;
    --text-soft: #6f655a;
    --text-muted: rgba(29, 26, 23, 0.58);
    --line: rgba(29, 26, 23, 0.1);
    --line-strong: rgba(29, 26, 23, 0.2);
    --accent: #9a7b48;
    --accent-deep: #7d6237;
    --shadow: 0 24px 80px rgba(59, 44, 22, 0.12);
    --shadow-strong: 0 30px 100px rgba(44, 33, 16, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background:
        radial-gradient(circle at top left, rgba(181, 152, 102, 0.12), transparent 22%),
        linear-gradient(180deg, #fbf7ef 0%, #f3ecde 100%);
    color: var(--text);
    font-family: "Manrope", "PingFang SC", "Microsoft YaHei", sans-serif;
}

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

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

button,
.button {
    border: 0;
    font: inherit;
    cursor: pointer;
}

input,
textarea,
select {
    width: 100%;
    border: 1px solid var(--line);
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--text);
    font: inherit;
    line-height: 1.45;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

textarea {
    resize: vertical;
}

select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 54px;
    cursor: pointer;
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 5.75L8 10.25L12.5 5.75' stroke='%236f655a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat, no-repeat;
    background-position: 0 0, calc(100% - 18px) 50%;
    background-size: auto, 16px 16px;
}

select::-ms-expand {
    display: none;
}

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

.custom-select {
    position: relative;
    width: 100%;
}

.custom-select select {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
}

.custom-select-trigger {
    position: relative;
    width: 100%;
    min-height: 52px;
    padding: 14px 54px 14px 16px;
    border: 1px solid var(--line);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0)),
        rgba(255, 255, 255, 0.84);
    color: var(--text);
    text-align: left;
    line-height: 1.45;
    transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease, color 160ms ease;
}

.custom-select-trigger::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 18px;
    width: 16px;
    height: 16px;
    background: no-repeat center / 16px 16px url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 5.75L8 10.25L12.5 5.75' stroke='%236f655a' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    transform: translateY(-50%);
    transition: transform 160ms ease;
}

.custom-select.is-open .custom-select-trigger::after {
    transform: translateY(-50%) rotate(180deg);
}

.custom-select-trigger:hover {
    border-color: var(--line-strong);
}

.custom-select-trigger:focus-visible {
    outline: none;
    border-color: rgba(154, 123, 72, 0.38);
    box-shadow: 0 0 0 4px rgba(154, 123, 72, 0.08);
}

.custom-select-panel {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    z-index: 45;
    display: grid;
    gap: 4px;
    max-height: 280px;
    padding: 10px;
    overflow-y: auto;
    background: rgba(251, 248, 242, 0.98);
    border: 1px solid rgba(29, 26, 23, 0.12);
    box-shadow: 0 28px 60px rgba(44, 33, 16, 0.16);
    backdrop-filter: blur(14px);
}

.custom-select-panel[hidden] {
    display: none;
}

.custom-select-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 44px;
    padding: 0 14px;
    background: transparent;
    border: 1px solid transparent;
    color: var(--text-soft);
    text-align: left;
    transition: background 140ms ease, color 140ms ease, border-color 140ms ease;
}

.custom-select-option:hover,
.custom-select-option.is-highlighted {
    background: rgba(29, 26, 23, 0.04);
    border-color: rgba(29, 26, 23, 0.08);
    color: var(--text);
}

.custom-select-option.is-selected {
    background: rgba(154, 123, 72, 0.08);
    border-color: rgba(154, 123, 72, 0.16);
    color: var(--accent-deep);
}

.custom-select-option.is-selected::after {
    content: "Selected";
    color: rgba(125, 98, 55, 0.78);
    font-size: 0.68rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-body .custom-select-trigger {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
        rgba(255, 255, 255, 0.74);
    border-color: rgba(29, 26, 23, 0.12);
}

.admin-body .custom-select-trigger::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 5.75L8 10.25L12.5 5.75' stroke='%237d6237' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.admin-body .custom-select-panel {
    background: rgba(255, 252, 247, 0.98);
}

input:hover,
textarea:hover,
select:hover {
    border-color: var(--line-strong);
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: rgba(154, 123, 72, 0.38);
    box-shadow: 0 0 0 4px rgba(154, 123, 72, 0.08);
}

.site-shell,
.admin-shell {
    width: min(1380px, calc(100% - 56px));
    margin: 0 auto;
}

.brand,
h1,
h2,
h3,
h4 {
    font-family: "Cormorant Garamond", "Songti SC", serif;
}

.brand {
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.brand-logo {
    display: block;
    width: auto;
    height: auto;
    max-width: 220px;
    max-height: 56px;
    object-fit: contain;
}

.admin-brand-logo {
    max-width: 180px;
}

.site-main {
    padding-bottom: 96px;
}

.announcement-bar {
    padding: 10px 16px;
    border-bottom: 1px solid rgba(29, 26, 23, 0.08);
    background: rgba(255, 255, 255, 0.66);
    color: var(--text-soft);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-align: center;
    text-transform: uppercase;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    background: rgba(246, 241, 232, 0.9);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(29, 26, 23, 0.06);
}

.header-shell,
.header-nav,
.hero-actions,
.hero-highlights,
.section-head,
.footer-shell,
.footer-grid,
.detail-breadcrumbs,
.detail-price-row,
.detail-actions,
.search-page-row-main,
.search-overlay-header,
.search-overlay-input,
.confirm-modal-actions,
.form-actions,
.checkbox-row,
.admin-header,
.actions-cell,
.active-filter-strip {
    display: flex;
    align-items: center;
    gap: 16px;
}

.header-shell {
    min-height: 88px;
    justify-content: space-between;
}

.header-nav {
    flex: 1 1 0;
}

.header-nav-right {
    justify-content: flex-end;
}

.header-brand {
    flex: 0 0 auto;
    text-align: center;
}

.nav-link,
.mobile-nav-link,
.text-link {
    color: var(--text-soft);
    font-size: 0.84rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    transition: color 160ms ease;
}

.nav-link:hover,
.nav-link.is-active,
.mobile-nav-link:hover,
.mobile-nav-link.is-active,
.text-link:hover {
    color: var(--text);
}

.nav-button {
    padding: 0;
    background: transparent;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-panel {
    position: absolute;
    top: calc(100% + 18px);
    left: 0;
    width: min(560px, 80vw);
    padding: 18px;
    background: rgba(251, 248, 242, 0.98);
    border: 1px solid rgba(29, 26, 23, 0.1);
    box-shadow: var(--shadow-strong);
}

.nav-dropdown-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.nav-dropdown-card {
    display: grid;
    gap: 8px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.74);
    border: 1px solid rgba(29, 26, 23, 0.08);
    transition: transform 160ms ease, border-color 160ms ease;
}

.nav-dropdown-card:hover {
    transform: translateY(-2px);
    border-color: var(--line-strong);
}

.nav-dropdown-card span,
.nav-dropdown-footer a,
.hero-meta-card span,
.service-card span,
.trust-band span,
.collection-summary-grid span,
.detail-assurance-grid span,
.floating-card-tags span,
.product-badge,
.active-filter-pill {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.nav-dropdown-card span,
.nav-dropdown-card small,
.nav-dropdown-footer a {
    color: var(--text-soft);
}

.nav-dropdown-card strong {
    font-size: 1.1rem;
}

.nav-dropdown-card small {
    line-height: 1.6;
}

.nav-dropdown-footer {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding-top: 16px;
}

.nav-toggle {
    display: none;
    padding: 0;
    background: transparent;
    color: var(--text);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mobile-nav {
    display: grid;
    gap: 14px;
    padding: 0 0 20px;
}

.mobile-nav[hidden] {
    display: none;
}

.eyebrow,
.product-card-topline span,
.footer-grid span,
.detail-spec-grid span,
.floating-product-card p,
.sidebar-label,
.stat-card span,
.field-group-label {
    color: var(--text-soft);
    font-size: 0.74rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.home-hero,
.page-hero,
.about-hero,
.editorial-split,
.product-detail-layout,
.about-story-grid,
.search-hero {
    display: grid;
    grid-template-columns: minmax(320px, 1fr) minmax(380px, 1fr);
    gap: 40px;
    align-items: stretch;
}

.home-hero,
.page-hero,
.about-hero,
.search-hero {
    padding-top: 44px;
}

.home-hero-copy,
.page-hero-copy,
.about-hero-copy,
.search-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px 0;
}

.home-hero-copy h1,
.page-hero-copy h1,
.about-hero-copy h1,
.search-hero-copy h1,
.detail-copy h1 {
    margin: 0;
    font-size: clamp(3.3rem, 6vw, 5.8rem);
    line-height: 0.94;
}

.hero-intro,
.page-hero-copy p:last-child,
.about-hero-copy p:last-child,
.search-hero-copy p:last-child,
.product-card-copy p,
.category-panel-copy p,
.footer-brand-block p,
.empty-state p,
.editorial-copy p,
.editorial-feature-copy p,
.detail-description,
.about-story-card p,
.hero-meta-card p,
.service-card p,
.trust-band article,
.collection-summary-grid article {
    color: var(--text-soft);
    line-height: 1.8;
}

.hero-intro {
    max-width: 620px;
    margin: 24px 0 0;
    font-size: 1rem;
}

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

.hero-highlights {
    flex-wrap: wrap;
    margin-top: 22px;
    color: var(--text-soft);
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-meta-grid,
.collection-summary-grid,
.detail-assurance-grid,
.service-grid,
.trust-band {
    display: grid;
    gap: 16px;
}

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

.hero-meta-card,
.service-card,
.collection-summary-grid article,
.detail-assurance-grid article,
.trust-band article {
    padding: 18px 20px;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(29, 26, 23, 0.08);
}

.hero-meta-card strong,
.collection-summary-grid strong,
.detail-assurance-grid strong {
    display: block;
    margin: 8px 0 10px;
    font-size: 1.04rem;
}

.button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 0 24px;
    transition: transform 160ms ease, background 160ms ease, color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
    background: var(--text);
    color: #fff;
    box-shadow: 0 18px 32px rgba(29, 26, 23, 0.12);
}

.button-secondary {
    background: transparent;
    border: 1px solid var(--line-strong);
    color: var(--text);
}

.button-primary:hover {
    background: #2b2622;
}

.button-secondary:hover {
    background: rgba(29, 26, 23, 0.04);
}

.home-hero-media,
.page-hero-media,
.about-hero-media {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    background: linear-gradient(180deg, #efe6d8 0%, #e4d7c4 100%);
}

.editorial-feature-media {
    position: relative;
    min-height: 0;
    aspect-ratio: 1 / 1.06;
    overflow: hidden;
    background: linear-gradient(180deg, #efe6d8 0%, #e4d7c4 100%);
}

.home-hero-media img,
.page-hero-media img,
.about-hero-media img,
.category-panel-media img,
.product-card-media img,
.editorial-feature-media img,
.detail-gallery-slide img {
    transition: transform 280ms ease;
}

.home-hero-media:hover img,
.page-hero-media:hover img,
.about-hero-media:hover img,
.category-panel:hover img,
.product-card:hover img,
.editorial-feature-card:hover img,
.detail-gallery:hover img {
    transform: scale(1.03);
}

.floating-product-card,
.category-panel,
.product-card,
.editorial-feature-card,
.empty-state,
.shortcut-card,
.about-story-card,
.search-page-form,
.search-overlay-panel,
.confirm-modal-card,
.admin-login-card,
.admin-sidebar,
.admin-table-wrap,
.product-form,
.stat-card,
.admin-fieldset {
    background: var(--panel);
    border: 1px solid rgba(29, 26, 23, 0.08);
    box-shadow: var(--shadow);
}

.floating-product-card {
    position: absolute;
    right: 24px;
    bottom: 24px;
    width: min(340px, calc(100% - 48px));
    padding: 24px;
    backdrop-filter: blur(10px);
}

.floating-product-card.compact {
    width: min(300px, calc(100% - 48px));
}

.floating-product-card h2,
.section-head h2,
.editorial-copy h2,
.footer-brand-block h2,
.about-story-card h2 {
    margin: 8px 0 10px;
    font-size: clamp(2rem, 3vw, 3rem);
    line-height: 1;
}

.floating-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
}

.floating-card-tags span,
.product-badge {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    background: rgba(29, 26, 23, 0.08);
    border: 1px solid rgba(29, 26, 23, 0.12);
}

.floating-product-card small {
    display: block;
    margin-top: 10px;
    color: var(--text-soft);
    line-height: 1.6;
}

.floating-product-card a,
.editorial-feature-copy a {
    display: inline-flex;
    margin-top: 16px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-size: 0.78rem;
}

.price-row,
.detail-price-row {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price-row strong,
.detail-price-row strong {
    font-size: 1rem;
}

.price-row span,
.detail-price-row span {
    color: var(--text-muted);
    font-size: 0.82rem;
    text-decoration: line-through;
    text-transform: uppercase;
}

.wear-home-hero {
    padding-top: 28px;
}

.wear-hero-card {
    position: relative;
    display: block;
    overflow: hidden;
    min-height: 680px;
    background: linear-gradient(180deg, #ede1cf 0%, #dfcfb7 100%);
}

.wear-hero-media,
.wear-story-media,
.wear-collection-media {
    position: relative;
    overflow: hidden;
}

.wear-hero-media {
    display: grid;
    place-items: center;
    min-height: 680px;
    padding: 44px;
}

.wear-hero-media img {
    width: min(920px, 84%);
    height: auto;
    max-height: 100%;
    object-fit: contain;
    transform: translateY(-54px);
}

.wear-hero-overlay {
    position: absolute;
    left: 52px;
    bottom: 52px;
    display: grid;
    gap: 16px;
    width: min(560px, calc(100% - 104px));
    padding: 30px 32px;
    background: rgba(255, 252, 247, 0.78);
    border: 1px solid rgba(29, 26, 23, 0.08);
    backdrop-filter: blur(12px);
}

.wear-hero-overlay h1 {
    margin: 0;
    font-size: clamp(3rem, 5vw, 5rem);
    line-height: 0.95;
}

.wear-hero-overlay p:last-of-type,
.wear-home-heading p:last-of-type,
.wear-story-copy p:last-of-type,
.wear-newsletter-copy p:last-of-type,
.wear-footer-brand p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.wear-hero-link {
    color: var(--text);
    font-size: 0.78rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.wear-home-section,
.wear-story-stack,
.wear-service-band,
.wear-newsletter {
    padding-top: 84px;
}

.wear-home-heading {
    display: grid;
    gap: 12px;
    margin-bottom: 28px;
}

.wear-home-heading.is-centered {
    justify-items: center;
    text-align: center;
}

.wear-home-heading h2,
.wear-story-copy h2,
.wear-newsletter-copy h2,
.wear-footer-brand h2 {
    margin: 0;
    font-size: clamp(2.3rem, 3.8vw, 3.6rem);
    line-height: 0.98;
}

.wear-home-heading p:last-of-type {
    max-width: 720px;
}

.wear-collection-grid,
.wear-product-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.wear-collection-card {
    display: grid;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.58);
    border: 1px solid rgba(29, 26, 23, 0.08);
    box-shadow: var(--shadow);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.wear-collection-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.wear-collection-media {
    aspect-ratio: 1 / 1.16;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #eee3d3 0%, #e0d1ba 100%);
}

.wear-collection-media img {
    width: 78%;
    height: auto;
    object-fit: contain;
}

.wear-collection-media-text {
    display: grid;
    place-items: center;
    padding: 28px;
}

.wear-collection-copy {
    display: grid;
    gap: 10px;
    padding: 18px 20px 22px;
    text-align: center;
}

.wear-collection-media-text .wear-collection-copy {
    padding: 0;
}

.wear-collection-copy h3 {
    margin: 0;
    font-size: 2rem;
    line-height: 1;
}

.wear-collection-copy p {
    margin: 0;
    color: var(--text-soft);
}

.wear-story-stack {
    display: grid;
    gap: 28px;
}

.wear-story-card {
    display: grid;
    grid-template-columns: minmax(340px, 1.05fr) minmax(320px, 0.95fr);
    align-items: center;
    background: rgba(255, 255, 255, 0.54);
    border: 1px solid rgba(29, 26, 23, 0.08);
    box-shadow: var(--shadow);
    overflow: hidden;
}

.wear-story-card.is-reversed {
    grid-template-columns: minmax(320px, 0.95fr) minmax(340px, 1.05fr);
}

.wear-story-card.is-reversed .wear-story-media {
    order: 2;
}

.wear-story-card.is-reversed .wear-story-copy {
    order: 1;
}

.wear-story-media {
    min-height: 520px;
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #eee2d1 0%, #dfcfb8 100%);
}

.wear-story-media img {
    width: 82%;
    height: auto;
    object-fit: contain;
}

.wear-story-copy {
    display: grid;
    gap: 16px;
    padding: 42px;
}

.wear-service-band {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.wear-service-band article {
    display: grid;
    gap: 10px;
    padding: 22px 24px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(29, 26, 23, 0.08);
}

.wear-service-band span {
    color: var(--text-soft);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.wear-service-band strong {
    font-size: 1rem;
    line-height: 1.6;
}

.wear-newsletter {
    display: grid;
    grid-template-columns: minmax(320px, 0.9fr) minmax(360px, 1.1fr);
    gap: 32px;
    align-items: center;
    padding-bottom: 24px;
}

.wear-newsletter-form-wrap {
    display: grid;
    gap: 14px;
}

.wear-newsletter-form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 12px;
}

.wear-newsletter-form input {
    min-height: 54px;
}

.wear-newsletter-message {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.wear-newsletter-message.is-success {
    color: #315528;
}

.wear-newsletter-message.is-error {
    color: #8c2e2e;
}

.browse-toolbar,
.product-section,
.category-overview,
.editorial-split,
.related-products,
.about-story-grid,
.search-shortcuts,
.service-grid,
.trust-band,
.collection-summary-grid {
    padding-top: 72px;
}

.browse-toolbar {
    display: grid;
    gap: 22px;
}

.browse-tabs,
.detail-tag-row,
.search-chip-grid,
.editorial-service-list,
.search-hero-chips,
.active-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.toolbar-form,
.search-page-row {
    display: grid;
    grid-template-columns: minmax(240px, 1.6fr) repeat(3, minmax(0, 1fr)) auto;
    gap: 12px;
}

.toolbar-form input,
.toolbar-form select,
.search-page-form input,
.search-page-form select {
    min-height: 48px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 0 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.42);
    color: var(--text-soft);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: border-color 160ms ease, color 160ms ease, background 160ms ease;
}

.filter-pill:hover,
.filter-pill.is-active {
    border-color: var(--text);
    color: var(--text);
}

.active-filter-strip {
    justify-content: space-between;
    padding-top: 28px;
}

.active-filter-pill {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    background: rgba(29, 26, 23, 0.05);
    border: 1px solid rgba(29, 26, 23, 0.1);
    color: var(--text);
}

.section-head {
    justify-content: space-between;
    align-items: end;
}

.section-head p {
    max-width: 500px;
    margin: 0;
}

.clean-grid,
.product-grid,
.search-shortcuts,
.service-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
}

.category-panel,
.product-card,
.editorial-feature-card,
.shortcut-card,
.service-card {
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.category-panel:hover,
.product-card:hover,
.editorial-feature-card:hover,
.shortcut-card:hover,
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-strong);
}

.category-panel-media,
.product-card-media {
    position: relative;
    aspect-ratio: 1 / 1.18;
    overflow: hidden;
    background: linear-gradient(180deg, #efe4d2 0%, #e4d7c4 100%);
}

.category-panel-copy,
.product-card-copy,
.editorial-feature-copy {
    padding: 18px;
}

.category-panel-copy h3,
.product-card-copy h3,
.shortcut-card h3,
.service-card h3 {
    margin: 10px 0 8px;
    font-size: 2rem;
    line-height: 1;
}

.product-card-topline {
    display: flex;
    justify-content: space-between;
    gap: 16px;
}

.product-card-badges {
    position: absolute;
    top: 14px;
    left: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    z-index: 2;
}

.product-card-hover {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 56px;
    background: linear-gradient(180deg, rgba(29, 26, 23, 0), rgba(29, 26, 23, 0.78));
    color: #fff;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-size: 0.76rem;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 180ms ease, transform 180ms ease;
}

.product-card:hover .product-card-hover {
    opacity: 1;
    transform: translateY(0);
}

.editorial-split {
    grid-template-columns: minmax(320px, 0.76fr) minmax(420px, 1.24fr);
    align-items: center;
}

.editorial-copy {
    max-width: 430px;
}

.editorial-service-list {
    margin-top: 18px;
}

.editorial-feature-card {
    display: grid;
    grid-template-columns: minmax(300px, 1.08fr) minmax(280px, 0.92fr);
    align-items: center;
}

.editorial-feature-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-self: center;
    gap: 14px;
    padding: 32px;
}

.editorial-feature-copy h3 {
    margin: 0;
    font-size: clamp(2.2rem, 3.4vw, 3.4rem);
    line-height: 0.98;
}

.editorial-feature-copy p {
    margin: 0;
    max-width: 28rem;
}

.editorial-feature-copy .price-row {
    margin-top: 4px;
}

.editorial-feature-copy span {
    color: var(--text-soft);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.image-placeholder {
    display: grid;
    place-items: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #eadfce 0%, #ddcfba 100%);
    color: rgba(29, 26, 23, 0.65);
    font-family: "Cormorant Garamond", serif;
    font-size: 5rem;
}

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

.trust-band strong {
    display: block;
    margin-top: 8px;
    color: var(--text);
    font-size: 1rem;
}

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

.service-card {
    padding: 24px;
}

.footer-shell {
    justify-content: space-between;
    align-items: start;
    padding: 64px 0 88px;
    margin-top: 88px;
    border-top: 1px solid var(--line);
}

.footer-brand-block {
    max-width: 420px;
}

.wear-footer-brand {
    max-width: 360px;
}

.wear-footer-grid {
    gap: 48px;
}

.wear-footer-grid p {
    color: var(--text-soft);
    line-height: 1.7;
}

.footer-cta {
    margin-top: 18px;
}

.footer-grid {
    flex: 1 1 auto;
    justify-content: space-between;
    align-items: start;
}

.footer-grid div {
    display: grid;
    gap: 8px;
}

.footer-grid p,
.footer-grid a {
    margin: 0;
    color: var(--text);
}

.search-hero {
    grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
}

.search-page-form {
    display: grid;
    gap: 14px;
    padding: 28px;
    align-self: center;
}

.toolbar-form input,
.toolbar-form select,
.search-page-form input,
.search-page-form select,
.search-overlay-field select {
    min-height: 52px;
    background-color: rgba(255, 255, 255, 0.78);
}

.search-page-row-main {
    justify-content: stretch;
}

.search-page-row-main input {
    flex: 1 1 auto;
}

.search-hero-chips {
    margin-top: 22px;
}

.shortcut-card {
    padding: 24px;
}

.detail-breadcrumbs {
    padding-top: 28px;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.product-detail-layout {
    padding-top: 26px;
    align-items: start;
}

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

.detail-gallery-stage {
    position: relative;
    min-height: 760px;
    overflow: hidden;
    background: linear-gradient(180deg, #ede1ce 0%, #dfd0ba 100%);
}

.detail-gallery-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
    transition: opacity 260ms ease;
}

.detail-gallery-slide.is-active {
    opacity: 1;
    pointer-events: auto;
}

.detail-gallery-count {
    position: absolute;
    right: 18px;
    bottom: 18px;
    padding: 10px 12px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(29, 26, 23, 0.08);
    color: var(--text);
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.detail-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.detail-gallery-thumb {
    min-height: 120px;
    padding: 0;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.5);
    opacity: 0.6;
}

.detail-gallery-thumb.is-active,
.detail-gallery-thumb:hover {
    opacity: 1;
    border-color: var(--text);
}

.detail-gallery-control {
    position: absolute;
    top: 50%;
    min-width: 72px;
    min-height: 42px;
    padding: 0 16px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid var(--line-strong);
    color: var(--text);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transform: translateY(-50%);
}

.detail-gallery-control.is-prev {
    left: 18px;
}

.detail-gallery-control.is-next {
    right: 18px;
}

.detail-copy {
    padding-top: 10px;
}

.detail-head,
.detail-head-tags {
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-head {
    justify-content: space-between;
}

.detail-subtitle {
    margin: 10px 0 0;
    color: var(--text-soft);
    font-size: 1.02rem;
}

.detail-price-row {
    margin: 20px 0 18px;
}

.detail-price-row strong {
    font-size: 1.32rem;
}

.detail-actions {
    margin: 28px 0 24px;
}

.detail-assurance-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 24px;
}

.detail-tag-row {
    margin-bottom: 24px;
}

.detail-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
}

.detail-spec-grid strong {
    display: block;
    margin-top: 8px;
}

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

.about-story-card {
    padding: 30px;
}

.about-values {
    margin: 18px 0 0;
    padding-left: 18px;
    color: var(--text-soft);
    line-height: 1.9;
}

.empty-state {
    grid-column: 1 / -1;
    padding: 48px;
    text-align: center;
}

.empty-state h3 {
    margin: 12px 0;
    font-size: 2.2rem;
}

.search-overlay[hidden],
.confirm-modal[hidden] {
    display: none;
}

.search-overlay,
.confirm-modal {
    position: fixed;
    inset: 0;
    z-index: 80;
}

.search-overlay-backdrop,
.confirm-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(29, 26, 23, 0.48);
    backdrop-filter: blur(8px);
}

.search-overlay-panel,
.confirm-modal-card {
    position: relative;
    width: min(1080px, calc(100% - 28px));
    margin: 7vh auto 0;
    padding: 28px;
}

.search-overlay-close {
    padding: 0;
    background: transparent;
    color: var(--text-soft);
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.search-overlay-form {
    display: grid;
    gap: 20px;
    padding-top: 14px;
}

.search-overlay-input input {
    flex: 1 1 auto;
    min-height: 56px;
}

.search-overlay-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
}

.search-overlay-field {
    display: grid;
    gap: 8px;
}

.search-overlay-field span {
    color: var(--text-soft);
    font-size: 0.74rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.search-overlay-field select {
    background-color: rgba(255, 255, 255, 0.92);
}

.search-overlay-shortcuts {
    display: grid;
    gap: 18px;
}

.search-overlay-group {
    display: grid;
    gap: 12px;
}

.search-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.48);
    color: var(--text-soft);
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.search-chip:hover,
.search-chip.is-active {
    border-color: var(--text);
    color: var(--text);
}

.confirm-modal-card {
    width: min(460px, calc(100% - 28px));
}

.confirm-modal-card h2 {
    margin: 8px 0 12px;
    font-size: 2rem;
}

.confirm-modal-card p:last-of-type {
    color: var(--text-soft);
    line-height: 1.7;
}

.confirm-modal-actions {
    justify-content: flex-end;
    padding-top: 18px;
}

.admin-body {
    background:
        radial-gradient(circle at top left, rgba(181, 152, 102, 0.16), transparent 20%),
        radial-gradient(circle at top right, rgba(181, 152, 102, 0.1), transparent 18%),
        linear-gradient(180deg, #f8f4ec 0%, #efe6d9 100%);
    color: var(--text);
}

.admin-shell {
    display: grid;
    grid-template-columns: 276px minmax(0, 1fr);
    gap: 28px;
    padding: 28px 0 48px;
}

.admin-shell.admin-login-shell {
    grid-template-columns: 1fr;
    width: 100%;
    padding: 40px 0;
    place-items: center;
    min-height: 100vh;
}

.admin-login-card,
.admin-sidebar,
.admin-table-wrap,
.product-form,
.stat-card,
.admin-fieldset,
.admin-preview-card {
    background: rgba(255, 252, 247, 0.84);
    border: 1px solid rgba(29, 26, 23, 0.08);
    box-shadow: 0 26px 80px rgba(77, 57, 23, 0.08);
    backdrop-filter: blur(16px);
}

.admin-login-card {
    width: min(480px, calc(100% - 32px));
    padding: 40px;
    display: grid;
    gap: 20px;
    text-align: center;
}

.admin-login-card .admin-brand-logo,
.admin-login-card h1 {
    margin: 0 auto;
}

.admin-lead {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.admin-sidebar {
    display: grid;
    gap: 24px;
    padding: 28px 22px;
    height: fit-content;
    position: sticky;
    top: 24px;
}

.admin-sidebar-group {
    display: grid;
    gap: 6px;
}

.admin-sidebar-heading {
    color: rgba(29, 26, 23, 0.48);
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.admin-sidebar .sidebar-link,
.admin-sidebar .sidebar-button {
    display: flex;
    align-items: center;
    min-height: 46px;
    padding: 0 14px;
    border: 1px solid transparent;
    color: var(--text-soft);
    transition: background 160ms ease, color 160ms ease, border-color 160ms ease;
}

.admin-sidebar .sidebar-link:hover,
.admin-sidebar .sidebar-link.is-active,
.admin-sidebar .sidebar-button:hover {
    background: rgba(29, 26, 23, 0.04);
    border-color: rgba(29, 26, 23, 0.08);
    color: var(--text);
}

.sidebar-button {
    width: 100%;
    background: transparent;
    text-align: left;
}

.admin-main {
    min-width: 0;
    display: grid;
    gap: 24px;
}

.admin-header {
    justify-content: space-between;
    align-items: end;
    padding-top: 8px;
}

.admin-header h1 {
    margin: 8px 0 0;
    font-size: clamp(2.6rem, 5vw, 4rem);
    line-height: 0.96;
}

.admin-header-actions {
    display: flex;
    gap: 12px;
}

.admin-message {
    padding: 16px 18px;
    background: rgba(113, 150, 98, 0.12);
    border: 1px solid rgba(113, 150, 98, 0.2);
    color: #27411e;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 16px;
}

.stat-card {
    padding: 24px;
}

.stat-card strong {
    display: block;
    margin-top: 10px;
    font-size: 2.1rem;
    line-height: 1;
}

.admin-filters {
    margin-top: 6px;
    padding: 26px 28px 28px;
}

.admin-filter-form {
    display: grid;
    grid-template-columns: minmax(220px, 1.4fr) repeat(3, minmax(0, 1fr)) auto auto;
    gap: 12px;
    align-items: end;
}

.admin-table-wrap {
    overflow: visible;
}

.admin-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.admin-table th,
.admin-table td {
    padding: 18px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(29, 26, 23, 0.08);
    vertical-align: top;
    background: rgba(255, 255, 255, 0.2);
}

.admin-table th {
    color: rgba(29, 26, 23, 0.52);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.72rem;
    background: rgba(29, 26, 23, 0.03);
}

.admin-table tbody tr:hover td {
    background: rgba(255, 255, 255, 0.42);
}

.admin-table p {
    margin: 4px 0 0;
    color: var(--text-soft);
}

.admin-price-stack {
    display: grid;
    gap: 4px;
}

.admin-price-stack span {
    color: rgba(29, 26, 23, 0.42);
    font-size: 0.78rem;
    text-decoration: line-through;
}

.checkbox-cell {
    width: 44px;
}

.admin-bulk-form {
    display: grid;
    gap: 0;
}

.admin-bulk-bar {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    padding: 22px 24px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.2));
    border-bottom: 1px solid rgba(29, 26, 23, 0.08);
}

.admin-bulk-summary {
    display: grid;
    gap: 8px;
}

.admin-bulk-summary strong {
    font-size: 1rem;
}

.admin-bulk-summary span {
    color: var(--text-soft);
    line-height: 1.6;
}

.admin-bulk-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.admin-bulk-actions select {
    min-width: 220px;
}

.admin-product-cell {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.admin-product-thumb,
.admin-thumb-placeholder {
    width: 72px;
    height: 88px;
}

.admin-product-thumb {
    overflow: hidden;
    background: linear-gradient(180deg, #efe4d2 0%, #dfd2be 100%);
}

.admin-thumb-placeholder {
    display: grid;
    place-items: center;
    background: linear-gradient(180deg, #efe4d2 0%, #dfd2be 100%);
    color: rgba(29, 26, 23, 0.66);
    font-family: "Cormorant Garamond", serif;
    font-size: 2rem;
}

.admin-product-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 12px;
    margin-top: 10px;
}

.admin-product-meta span {
    color: rgba(29, 26, 23, 0.5);
    font-size: 0.76rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-chip-stack {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.admin-chip {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
    padding: 0 10px;
    background: rgba(29, 26, 23, 0.04);
    border: 1px solid rgba(29, 26, 23, 0.08);
    color: rgba(29, 26, 23, 0.56);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-chip.is-active {
    background: rgba(154, 123, 72, 0.12);
    border-color: rgba(154, 123, 72, 0.24);
    color: var(--accent-deep);
}

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

.actions-cell a,
.actions-cell button {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 12px;
    background: rgba(29, 26, 23, 0.03);
    border: 1px solid rgba(29, 26, 23, 0.08);
    color: var(--text);
}

.actions-cell form {
    display: inline-flex;
}

.actions-cell button {
    font: inherit;
}

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

.admin-fieldset {
    display: grid;
    gap: 18px;
    padding: 24px;
}

.admin-section-heading {
    align-items: start;
    margin: 0;
}

.product-form {
    padding: 30px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.full-span {
    grid-column: 1 / -1;
}

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

.admin-form span {
    color: rgba(29, 26, 23, 0.7);
}

.admin-body input,
.admin-body textarea,
.admin-body select {
    background: rgba(255, 255, 255, 0.74);
    border-color: rgba(29, 26, 23, 0.12);
    color: var(--text);
}

.admin-body input:focus,
.admin-body textarea:focus,
.admin-body select:focus {
    outline: none;
    border-color: rgba(154, 123, 72, 0.4);
    box-shadow: 0 0 0 4px rgba(154, 123, 72, 0.08);
}

.admin-body input::placeholder,
.admin-body textarea::placeholder {
    color: rgba(29, 26, 23, 0.4);
}

.admin-body select {
    background-image:
        linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0)),
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M3.5 5.75L8 10.25L12.5 5.75' stroke='%237d6237' stroke-width='1.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.admin-field-group {
    display: grid;
    gap: 12px;
}

.tag-checkbox-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.tag-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 16px;
    border: 1px solid rgba(29, 26, 23, 0.08);
    background: rgba(255, 255, 255, 0.6);
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.tag-checkbox:hover,
.checkbox-field:hover {
    border-color: rgba(154, 123, 72, 0.22);
    background: rgba(255, 255, 255, 0.78);
}

.checkbox-row {
    flex-wrap: wrap;
    gap: 14px;
    padding: 20px 0 4px;
}

.checkbox-field {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid rgba(29, 26, 23, 0.08);
    background: rgba(255, 255, 255, 0.56);
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.tag-checkbox input,
.checkbox-field input,
.checkbox-cell input,
input[type="checkbox"][data-select-all],
input[type="checkbox"][data-select-row] {
    width: 18px;
    min-width: 18px;
    height: 18px;
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(29, 26, 23, 0.22);
    background: rgba(255, 255, 255, 0.9);
    display: inline-grid;
    place-items: center;
    cursor: pointer;
    transition: border-color 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.tag-checkbox input::after,
.checkbox-field input::after,
.checkbox-cell input::after,
input[type="checkbox"][data-select-all]::after,
input[type="checkbox"][data-select-row]::after {
    content: "";
    width: 8px;
    height: 5px;
    border-left: 1.8px solid #fff;
    border-bottom: 1.8px solid #fff;
    transform: rotate(-45deg) translate(0, -1px) scale(0);
    transform-origin: center;
    transition: transform 140ms ease;
}

.tag-checkbox input:hover,
.checkbox-field input:hover,
.checkbox-cell input:hover,
input[type="checkbox"][data-select-all]:hover,
input[type="checkbox"][data-select-row]:hover {
    border-color: rgba(154, 123, 72, 0.42);
}

.tag-checkbox input:focus,
.checkbox-field input:focus,
.checkbox-cell input:focus,
input[type="checkbox"][data-select-all]:focus,
input[type="checkbox"][data-select-row]:focus {
    outline: none;
    box-shadow: 0 0 0 4px rgba(154, 123, 72, 0.12);
}

.tag-checkbox input:checked,
.checkbox-field input:checked,
.checkbox-cell input:checked,
input[type="checkbox"][data-select-all]:checked,
input[type="checkbox"][data-select-row]:checked {
    background: var(--accent-deep);
    border-color: var(--accent-deep);
}

.tag-checkbox input:checked::after,
.checkbox-field input:checked::after,
.checkbox-cell input:checked::after,
input[type="checkbox"][data-select-all]:checked::after,
input[type="checkbox"][data-select-row]:checked::after {
    transform: rotate(-45deg) translate(0, -1px) scale(1);
}

.tag-checkbox:has(input:checked),
.checkbox-field:has(input:checked) {
    border-color: rgba(154, 123, 72, 0.28);
    background: rgba(154, 123, 72, 0.08);
}

.admin-preview-strip {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.admin-preview-card {
    padding: 20px;
    display: grid;
    gap: 14px;
}

.admin-asset-preview {
    display: grid;
    place-items: center;
    min-height: 140px;
    padding: 20px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(245, 237, 224, 0.7));
    border: 1px solid rgba(29, 26, 23, 0.08);
}

.admin-asset-preview img {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

.favicon-card .admin-asset-preview img {
    max-height: 56px;
}

.form-error {
    padding: 14px 16px;
    background: rgba(201, 87, 87, 0.12);
    color: #7e2525;
    border: 1px solid rgba(201, 87, 87, 0.24);
}

.full-width {
    width: 100%;
}

@media (max-width: 1180px) {
    .home-hero,
    .page-hero,
    .about-hero,
    .editorial-split,
    .product-detail-layout,
    .about-story-grid,
    .search-hero,
    .wear-newsletter,
    .wear-story-card,
    .wear-story-card.is-reversed {
        grid-template-columns: 1fr;
    }

    .hero-meta-grid,
    .collection-summary-grid,
    .detail-assurance-grid,
    .clean-grid,
    .product-grid,
    .search-shortcuts,
    .stats-grid,
    .service-grid,
    .trust-band,
    .wear-service-band,
    .wear-collection-grid,
    .wear-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .toolbar-form,
    .search-page-row,
    .search-overlay-grid,
    .nav-dropdown-grid,
    .admin-filter-form,
    .admin-preview-strip {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 960px) {
    .header-nav {
        display: none;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .header-shell {
        min-height: 76px;
    }

    .admin-shell,
    .form-grid,
    .stats-grid,
    .admin-preview-strip {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: static;
    }

    .wear-hero-card,
    .wear-hero-media {
        min-height: 620px;
    }

    .wear-hero-overlay {
        left: 28px;
        right: 28px;
        bottom: 28px;
        width: auto;
    }

    .wear-story-card.is-reversed .wear-story-media,
    .wear-story-card.is-reversed .wear-story-copy {
        order: initial;
    }
}

@media (max-width: 720px) {
    .site-shell,
    .admin-shell {
        width: min(100% - 24px, 1360px);
    }

    .hero-actions,
    .hero-highlights,
    .section-head,
    .footer-shell,
    .footer-grid,
    .detail-breadcrumbs,
    .detail-price-row,
    .detail-actions,
    .confirm-modal-actions,
    .form-actions,
    .checkbox-row,
    .admin-header,
    .admin-header-actions,
    .search-overlay-header,
    .search-overlay-input,
    .active-filter-strip,
    .nav-dropdown-footer,
    .detail-head,
    .admin-bulk-bar,
    .admin-bulk-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-meta-grid,
    .collection-summary-grid,
    .detail-assurance-grid,
    .clean-grid,
    .product-grid,
    .search-shortcuts,
    .toolbar-form,
    .search-page-row,
    .search-overlay-grid,
    .detail-gallery-thumbs,
    .detail-spec-grid,
    .service-grid,
    .trust-band,
    .nav-dropdown-grid,
    .admin-filter-form,
    .admin-preview-strip,
    .wear-collection-grid,
    .wear-product-grid,
    .wear-service-band,
    .wear-newsletter-form {
        grid-template-columns: 1fr;
    }

    .home-hero-copy h1,
    .page-hero-copy h1,
    .about-hero-copy h1,
    .search-hero-copy h1,
    .detail-copy h1 {
        font-size: clamp(2.8rem, 15vw, 4.4rem);
    }

    .home-hero-media,
    .page-hero-media,
    .about-hero-media,
    .detail-gallery-stage {
        min-height: 400px;
    }

    .floating-product-card {
        position: static;
        width: 100%;
        margin-top: 16px;
    }

    .editorial-feature-card {
        grid-template-columns: 1fr;
    }

    .wear-hero-card,
    .wear-hero-media,
    .wear-story-media {
        min-height: 420px;
    }

    .wear-hero-media,
    .wear-story-media {
        padding: 22px;
    }

    .wear-hero-media img {
        transform: translateY(-24px);
    }

    .wear-hero-overlay,
    .wear-story-copy {
        padding: 22px;
    }

    .wear-hero-overlay {
        left: 18px;
        right: 18px;
        bottom: 18px;
    }

    .search-overlay-panel,
    .confirm-modal-card {
        margin-top: 4vh;
        padding: 22px;
    }

    .admin-table-wrap {
        overflow-x: auto;
        overflow-y: visible;
    }
}
