:root {
    --bg: #fbf8f4;
    --surface: #fffdf9;
    --surface-soft: #f3eee8;
    --ink: #171415;
    --muted: #6b6567;
    --line: rgba(23, 20, 21, 0.08);
    --line-strong: rgba(23, 20, 21, 0.14);
    --bordeaux: #6b1830;
    --royal: #244a8f;
    --gold: #b69346;
    --gold-soft: #dfcb95;
    --radius-xl: 26px;
    --radius-lg: 18px;
    --radius-md: 12px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--ink);
    background: var(--bg);
    min-height: 100vh;
}

body.page-home,
body.page-inner {
    padding-top: 92px;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    z-index: 1200;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    font-weight: 700;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

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

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

.site-shell {
    min-height: 100vh;
}

.flash-shell {
    padding-top: 0.8rem;
}

.page-home .flash-shell {
    padding-top: 0.8rem;
}

.brand-mark,
.section-title,
.product-card h3,
.editorial-card h3,
.lookbook-frame h3,
.product-title,
.auth-card h1,
.admin-brand h1,
.home-hero h1 {
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}

.brand-mark {
    font-size: 1.8rem;
    font-weight: 700;
}

.section-title {
    margin: 0;
    font-size: clamp(2rem, 3vw, 3.15rem);
    line-height: 1.08;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.72rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--bordeaux);
}

.eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--gold);
}

.text-gold {
    color: var(--gold);
}

.small-muted {
    color: var(--muted);
}

.section-block {
    padding: 5rem 0;
}

.section-alt {
    background: #f6f1ea;
}

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

.luxury-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1035;
    padding: 1rem 0;
    transition: background 0.28s ease, border-color 0.28s ease, color 0.28s ease;
    border-bottom: 1px solid transparent;
}

.luxury-nav.is-scrolled,
.page-home .luxury-nav,
.page-inner .luxury-nav {
    background: rgba(251, 248, 244, 0.96);
    border-bottom-color: var(--line);
    backdrop-filter: blur(12px);
}

.luxury-nav-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
}

.luxury-nav .navbar-toggler {
    padding: 0.3rem;
}

.luxury-nav .navbar-toggler-icon {
    filter: invert(1);
}

.page-home .luxury-nav .navbar-toggler-icon,
.page-inner .luxury-nav .navbar-toggler-icon,
.luxury-nav.is-scrolled .navbar-toggler-icon {
    filter: none;
}

.luxury-nav .navbar-brand,
.luxury-nav .nav-link,
.header-utility {
    color: #fff;
}

.page-home .luxury-nav .navbar-brand,
.page-home .luxury-nav .nav-link,
.page-home .header-utility,
.page-inner .luxury-nav .navbar-brand,
.page-inner .luxury-nav .nav-link,
.page-inner .header-utility,
.luxury-nav.is-scrolled .navbar-brand,
.luxury-nav.is-scrolled .nav-link,
.luxury-nav.is-scrolled .header-utility {
    color: var(--ink);
}

.nav-primary {
    gap: 0.75rem;
}

.nav-primary .nav-link {
    padding: 0.4rem 0;
    position: relative;
    font-size: 0.92rem;
    font-weight: 600;
    opacity: 0.84;
}

.nav-primary .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.3rem;
    height: 1px;
    transform: scaleX(0);
    background: var(--gold);
    transition: transform 0.2s ease;
}

.nav-primary .nav-link:hover,
.nav-primary .nav-link.active {
    opacity: 1;
}

.nav-primary .nav-link:hover::after,
.nav-primary .nav-link.active::after {
    transform: scaleX(1);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.55rem;
}

.header-utility {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    min-height: 40px;
    padding: 0.55rem 0.82rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    font-size: 0.82rem;
    font-weight: 600;
}

.page-home .header-utility,
.page-inner .header-utility,
.luxury-nav.is-scrolled .header-utility {
    border-color: var(--line);
    background: #fff;
}

.header-utility-icon,
.header-utility-icon svg {
    width: 18px;
    height: 18px;
}

.header-utility-icon svg {
    stroke: currentColor;
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.utility-badge {
    min-width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fff;
    color: var(--ink);
    font-size: 0.74rem;
    font-weight: 800;
}

.page-home .utility-badge,
.page-inner .utility-badge,
.luxury-nav.is-scrolled .utility-badge {
    background: var(--ink);
    color: #fff;
}

.nav-secondary {
    display: grid;
    gap: 0.9rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.nav-secondary a {
    font-weight: 600;
}

.btn {
    border-radius: 999px;
    padding: 0.9rem 1.4rem;
    font-weight: 700;
}

.btn-lg {
    padding: 1rem 1.6rem;
}

.btn-luxury {
    color: #201509;
    border: 1px solid rgba(182, 147, 70, 0.38);
    background: linear-gradient(135deg, #e8d8b0, #b69346);
}

.btn-luxury:hover,
.btn-luxury:focus {
    color: #201509;
}

.btn-dark {
    color: #fff;
    border: 1px solid rgba(107, 24, 48, 0.35);
    background: var(--bordeaux);
}

.btn-dark:hover,
.btn-dark:focus {
    color: #fff;
    background: #571428;
}

.btn-outline-dark {
    color: var(--ink);
    border: 1px solid var(--line-strong);
    background: transparent;
}

.btn-outline-dark:hover,
.btn-outline-dark:focus {
    color: var(--ink);
    background: rgba(23, 20, 21, 0.03);
}

.btn-outline-light {
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.65);
    background: transparent;
}

.btn-outline-light:hover,
.btn-outline-light:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.luxury-alert {
    border: 0;
    border-radius: var(--radius-md);
}

.home-hero {
    position: relative;
    min-height: calc(100vh - 92px);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.home-hero-media,
.home-hero-overlay {
    position: absolute;
    inset: 0;
}

.home-hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 24%;
    filter: saturate(0.92) contrast(1.04) brightness(0.72) sepia(0.06);
}

.home-hero-overlay {
    background:
        linear-gradient(90deg, rgba(18, 12, 14, 0.76) 0%, rgba(18, 12, 14, 0.48) 38%, rgba(18, 12, 14, 0.22) 100%),
        linear-gradient(180deg, rgba(80, 24, 42, 0.18) 0%, rgba(16, 13, 18, 0.24) 100%),
        radial-gradient(circle at 75% 18%, rgba(223, 203, 149, 0.18), transparent 22%);
}

.home-hero-shell {
    position: relative;
    z-index: 1;
    padding-top: 3.5rem;
    padding-bottom: 3rem;
}

.hero-structured-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.7fr;
    gap: 2rem;
    align-items: end;
}

.home-hero-content {
    max-width: 680px;
}

.home-hero h1 {
    margin: 0;
    font-size: clamp(3.8rem, 9vw, 6rem);
    line-height: 0.94;
    color: #fff;
}

.home-hero-tagline {
    margin: 0.8rem 0 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.45rem, 2.8vw, 1.9rem);
    color: rgba(255, 255, 255, 0.92);
}

.home-hero-copy {
    max-width: 520px;
    margin: 1.4rem 0 0;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.8;
}

.home-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.hero-side-panel {
    display: flex;
    justify-content: end;
}

.hero-side-panel-inner {
    width: 100%;
    max-width: 360px;
    padding: 1.4rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
}

.hero-side-panel-inner h3 {
    margin: 0.65rem 0 0.8rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.7rem;
    color: #fff;
}

.hero-side-panel-inner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.75;
}

.hero-side-link {
    display: inline-flex;
    margin-top: 1rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-soft);
}

.home-hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 2.2rem;
}

.hero-brand-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.hero-pillars {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.home-hero-metrics div,
.brand-signature-grid div,
.home-note-stack div,
.rental-card,
.hero-pillar,
.hero-brand-stat {
    padding: 1rem 1.05rem;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: var(--radius-md);
}

.home-hero-metrics div,
.rental-card,
.hero-pillar,
.hero-brand-stat {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
}

.hero-brand-stat span {
    display: block;
    margin-bottom: 0.35rem;
    color: rgba(255, 255, 255, 0.74);
    font-size: 0.78rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-brand-stat strong {
    color: #fff;
    font-size: clamp(1.45rem, 2vw, 2rem);
}

.home-hero-metrics span,
.home-hero-metrics strong,
.brand-signature-grid span,
.brand-signature-grid strong,
.home-note-stack span,
.home-note-stack strong,
.rental-card span,
.rental-card strong,
.hero-pillar span,
.hero-pillar strong,
.hero-pillar p {
    display: block;
}

.home-hero-metrics span,
.rental-card span,
.hero-pillar span {
    color: var(--gold-soft);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.home-hero-metrics strong,
.rental-card strong,
.hero-pillar strong {
    margin-top: 0.45rem;
    color: #fff;
    line-height: 1.5;
}

.hero-pillar p {
    margin: 0.55rem 0 0;
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.6;
    font-size: 0.92rem;
}

.editorial-grid,
.product-grid,
.brand-universe,
.lookbook-grid,
.catalog-shell,
.catalog-hero-grid,
.product-stage-grid,
.product-story-grid,
.split-intro,
.split-story,
.rental-atelier {
    display: grid;
    gap: 1.5rem;
}

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

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

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

.brand-universe,
.split-story,
.product-stage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.split-intro {
    grid-template-columns: 1fr 0.95fr;
    align-items: center;
}

.catalog-hero-grid {
    grid-template-columns: 1fr 0.9fr;
    align-items: center;
}

.catalog-shell {
    grid-template-columns: 300px minmax(0, 1fr);
    align-items: start;
}

.rental-atelier {
    grid-template-columns: 0.9fr 1.1fr;
    align-items: center;
}

.editorial-card,
.quote-panel,
.collection-panel,
.filter-card,
.product-buy-card,
.product-editorial-note,
.summary-card,
.auth-card,
.universe-panel,
.category-shortcut,
.product-stage-gallery,
.split-intro-media,
.split-story-media,
.catalog-hero-media,
.rental-visual {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.editorial-card,
.product-card,
.lookbook-frame,
.category-shortcut {
    transition: transform 0.24s ease, border-color 0.24s ease;
}

.editorial-card:hover,
.product-card:hover,
.lookbook-frame:hover,
.category-shortcut:hover {
    transform: translateY(-4px);
    border-color: var(--line-strong);
}

.editorial-card {
    overflow: hidden;
    height: 100%;
}

.editorial-card-media,
.split-intro-media,
.split-story-media,
.catalog-hero-media,
.rental-visual,
.product-stage-gallery {
    padding: 1rem;
}

.editorial-card-media img,
.split-story-media img,
.catalog-hero-media img,
.rental-visual img,
.product-gallery-main img,
.universe-panel img,
.category-shortcut img,
.split-intro-media img {
    width: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 4px);
}

.editorial-photo-wedding {
    object-position: center 22%;
}

.editorial-photo-campaign {
    object-position: center 18%;
}

.editorial-card-media img {
    height: 360px;
}

.editorial-card-feature .editorial-card-media img {
    min-height: 500px;
    height: 100%;
}

.editorial-card-body,
.collection-panel,
.filter-card,
.product-buy-card,
.product-editorial-note,
.quote-panel,
.auth-card {
    padding: 1.4rem;
}

.editorial-card-body h3,
.product-card h3 {
    margin: 0.45rem 0 0.65rem;
}

.editorial-card p,
.product-card p,
.split-story-copy p,
.brand-universe-copy p,
.catalog-hero-copy-text,
.product-lead {
    color: var(--muted);
    line-height: 1.8;
}

.product-card {
    border-top: 0;
}

.product-card-media {
    position: relative;
    overflow: hidden;
    background: var(--surface-soft);
    border-radius: var(--radius-lg);
}

.product-card-media img {
    width: 100%;
    height: 430px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.product-chip,
.product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.28rem 0.7rem;
    min-height: 28px;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.product-chip {
    position: absolute;
    left: 1rem;
    top: 1rem;
    background: rgba(255, 255, 255, 0.92);
    color: var(--ink);
}

.product-badge {
    background: rgba(107, 24, 48, 0.08);
    color: var(--bordeaux);
}

.product-card-body {
    padding: 1.15rem 0 0;
}

.product-card-header,
.product-card-footer,
.summary-line,
.catalog-toolbar {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.product-card-header {
    align-items: start;
}

.product-meta {
    display: grid;
    gap: 0.28rem;
    margin-top: 0.8rem;
    font-size: 0.88rem;
    color: var(--muted);
}

.old-price {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.86rem;
    color: #90868b;
    text-decoration: line-through;
}

.product-card-footer {
    align-items: center;
    margin-top: 1rem;
}

.product-card-cta {
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-card-action {
    margin-top: 0.9rem;
}

.filter-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.filter-chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(107, 24, 48, 0.07);
    color: var(--bordeaux);
    font-size: 0.82rem;
    font-weight: 700;
    border: 1px solid rgba(107, 24, 48, 0.08);
}

.product-grid-compact .product-card-media img {
    height: 250px;
}

.split-story-media img,
.catalog-hero-media img,
.rental-visual img,
.split-intro-media img {
    height: 560px;
}

.story-list {
    list-style: none;
    padding: 0;
    margin: 1.4rem 0 0;
    display: grid;
    gap: 0.7rem;
}

.story-list li {
    position: relative;
    padding-left: 1.1rem;
    color: var(--muted);
}

.story-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.7rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.brand-signature-grid,
.home-note-stack,
.rental-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

.brand-signature-grid div,
.home-note-stack div {
    background: var(--surface);
    border: 1px solid var(--line);
}

.brand-signature-grid span,
.home-note-stack span {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--bordeaux);
}

.brand-signature-grid strong,
.home-note-stack strong {
    margin-top: 0.45rem;
    line-height: 1.5;
}

.brand-universe-panels {
    display: grid;
    gap: 1rem;
}

.universe-panel img {
    height: 280px;
}

.universe-panel div {
    padding: 1.2rem 1.3rem 1.3rem;
}

.universe-panel h3 {
    margin: 0.45rem 0 0;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
}

.lookbook-grid {
    grid-template-columns: 1.35fr 1fr 1fr;
}

.lookbook-frame {
    position: relative;
    overflow: hidden;
    min-height: 320px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.lookbook-frame img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
}

.lookbook-frame-large {
    grid-row: span 2;
}

.lookbook-frame-copy {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1.4rem;
    background: linear-gradient(180deg, transparent, rgba(17, 13, 14, 0.72));
}

.lookbook-frame-copy h3 {
    margin: 0.45rem 0 0;
    color: #fff;
    font-size: 1.6rem;
}

.quote-panel-dark,
.catalog-hero-shell,
.rental-atelier,
.footer-luxury {
    color: #fff;
    background: linear-gradient(135deg, #171214, #421324 52%, #21407c);
    border: 0;
}

.testimonial-list {
    display: grid;
    gap: 0.9rem;
}

.testimonial-list blockquote {
    margin: 0;
    padding: 1rem 1.05rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.62);
    color: var(--muted);
}

.testimonial-list cite {
    display: block;
    margin-top: 0.75rem;
    font-style: normal;
    font-weight: 800;
    color: var(--bordeaux);
}

.catalog-hero {
    padding: 2.5rem 0 1.8rem;
}

.catalog-hero-shell {
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.catalog-hero-copy-text {
    max-width: 560px;
}

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

.category-shortcut {
    overflow: hidden;
}

.category-shortcut img {
    height: 180px;
}

.category-shortcut span {
    display: block;
    padding: 0.95rem 1rem;
    font-weight: 700;
}

.category-shortcut.is-active {
    border-color: rgba(182, 147, 70, 0.4);
}

.catalog-filter-card {
    position: sticky;
    top: 110px;
}

.rental-atelier {
    padding: 1.6rem;
    border-radius: var(--radius-xl);
}

.rental-copy .home-hero-actions {
    margin-top: 1.4rem;
}

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

.product-stage {
    padding: 2.8rem 0 2rem;
}

.product-gallery-main {
    overflow: hidden;
    border-radius: calc(var(--radius-lg) - 4px);
}

.product-gallery-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.product-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.9rem;
}

.thumb-button {
    width: 88px;
    height: 88px;
    padding: 0.24rem;
    border: 1px solid transparent;
    border-radius: 12px;
    background: var(--surface-soft);
}

.thumb-button.is-active,
.thumb-button:hover {
    border-color: rgba(182, 147, 70, 0.55);
}

.thumb-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.product-title {
    margin-top: 0.45rem;
}

.product-lead {
    margin-top: 0.95rem;
}

.price-block {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.4rem;
    font-size: 1.9rem;
}

.product-meta-rail {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1.6rem;
}

.product-meta-rail div {
    padding: 0.95rem 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
}

.product-meta-rail span {
    display: block;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: var(--bordeaux);
}

.product-meta-rail strong {
    display: block;
    margin-top: 0.45rem;
}

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

.fashion-product-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.35fr) 320px;
    gap: 1.75rem;
    align-items: start;
}

.fashion-product-gallery,
.fashion-product-copy,
.fashion-product-aside {
    min-width: 0;
}

.fashion-product-main-frame {
    border: 1px solid var(--line);
    background: #fff;
    padding: 1.2rem;
    border-radius: var(--radius-lg);
}

.fashion-product-main-frame img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 18px;
}

.fashion-gallery-caption {
    margin-top: 0.8rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    text-align: center;
}

.fashion-gallery-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 0.8rem;
}

.fashion-thumb-button {
    width: 92px;
    height: 120px;
    padding: 0.22rem;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
}

.fashion-thumb-button.is-active {
    border-color: var(--bordeaux);
    box-shadow: 0 0 0 2px rgba(107, 24, 48, 0.08);
}

.fashion-thumb-button img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.fashion-product-head,
.fashion-stock-meta,
.fashion-action-row,
.fashion-benefit-card,
.fashion-side-product {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.fashion-product-head {
    align-items: start;
}

.fashion-product-title {
    margin: 0.35rem 0 0;
    font-family: 'Manrope', sans-serif;
    font-size: clamp(2rem, 3vw, 3.2rem);
    line-height: 1.04;
    font-weight: 800;
}

.fashion-product-arrows {
    display: flex;
    gap: 0.85rem;
    font-size: 2.2rem;
    color: #6b6764;
}

.fashion-product-meta-line {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
    color: #a9a1a0;
    flex-wrap: wrap;
}

.fashion-review-stars {
    letter-spacing: 0.18em;
    color: var(--ink);
    font-size: 1rem;
}

.fashion-price-line {
    display: flex;
    align-items: baseline;
    gap: 0.8rem;
    margin-top: 1.4rem;
}

.fashion-price-line strong {
    font-size: 2.1rem;
}

.fashion-stock-meta {
    align-items: center;
    flex-wrap: wrap;
    margin-top: 1rem;
    color: var(--muted);
    font-size: 0.95rem;
}

.fashion-divider {
    height: 1px;
    background: var(--line);
    margin: 1.8rem 0 1.5rem;
}

.fashion-option-group {
    display: grid;
    gap: 0.85rem;
}

.fashion-option-title {
    display: inline-flex;
    gap: 0.35rem;
    font-weight: 700;
    margin-bottom: 0.35rem;
}

.fashion-option-title span {
    color: #cc3a4b;
}

.fashion-swatch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(52px, 1fr));
    gap: 0.75rem;
}

.fashion-swatch {
    position: relative;
    cursor: pointer;
}

.fashion-swatch input {
    position: absolute;
    opacity: 0;
    inset: 0;
}

.fashion-swatch-silk {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    border: 1px solid rgba(17, 20, 21, 0.08);
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.15);
}

.fashion-swatch input:checked + .fashion-swatch-silk {
    outline: 3px solid #c11c38;
    outline-offset: 2px;
}

.fashion-select {
    min-height: 56px;
    border-radius: 0;
    background: #fff;
}

.fashion-action-row {
    align-items: center;
    margin-top: 1.8rem;
    flex-wrap: wrap;
}

.fashion-qty-box {
    display: inline-grid;
    grid-template-columns: 52px 70px 52px;
    border: 1px solid var(--line);
    background: #fff;
}

.fashion-qty-btn,
.fashion-qty-input,
.fashion-icon-btn {
    min-height: 54px;
    border: 0;
    background: #fff;
}

.fashion-qty-btn {
    font-size: 1.55rem;
    color: #9d9b9a;
}

.fashion-qty-input {
    text-align: center;
    border-left: 1px solid var(--line);
    border-right: 1px solid var(--line);
    width: 70px;
}

.fashion-cart-btn {
    min-height: 54px;
    border-radius: 0;
    padding-inline: 1.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.fashion-icon-btn {
    min-width: 54px;
    border: 1px solid var(--line);
    font-size: 1.45rem;
}

.fashion-product-note {
    margin-top: 1.5rem;
    color: var(--muted);
    line-height: 1.8;
}

.fashion-discount-pill {
    display: inline-flex;
    margin-top: 0.8rem;
    padding: 0.5rem 0.85rem;
    border-radius: 999px;
    background: rgba(107, 24, 48, 0.08);
    color: var(--bordeaux);
    font-weight: 800;
}

.fashion-product-aside {
    display: grid;
    gap: 1rem;
}

.fashion-benefit-card,
.fashion-promo-panel,
.fashion-side-products {
    padding: 1.2rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
}

.fashion-benefit-card {
    align-items: center;
}

.fashion-benefit-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--line);
    font-size: 1.7rem;
}

.fashion-benefit-card strong,
.fashion-benefit-card span {
    display: block;
}

.fashion-benefit-card span {
    color: var(--muted);
}

.fashion-promo-panel {
    min-height: 260px;
    background:
        radial-gradient(circle at 25% 18%, rgba(0, 123, 255, 0.18), transparent 20%),
        linear-gradient(180deg, #fff, #f6efe7);
}

.fashion-promo-badge {
    width: 110px;
    height: 110px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #1f8de0;
    color: #fff;
    font-weight: 800;
    font-size: 1.5rem;
}

.fashion-promo-panel h3 {
    margin: 1rem 0 0.55rem;
    font-family: 'Playfair Display', serif;
}

.fashion-side-products h3 {
    margin: 0 0 1rem;
    font-size: 1.1rem;
    text-transform: uppercase;
}

.fashion-side-products {
    display: grid;
    gap: 1rem;
}

.fashion-side-product {
    align-items: start;
}

.fashion-side-product img {
    width: 88px;
    height: 110px;
    object-fit: cover;
    border-radius: 12px;
}

.fashion-side-product strong,
.fashion-side-product span {
    display: block;
}

.fashion-side-product span {
    color: #d62c2c;
    font-weight: 800;
    margin-top: 0.3rem;
}

.admin-category-preview-frame {
    aspect-ratio: 4 / 3;
}

.form-control,
.form-select {
    min-height: 52px;
    padding: 0.9rem 1rem;
    border: 1px solid var(--line-strong);
    border-radius: var(--radius-md);
    background: #fff;
}

.form-control:focus,
.form-select:focus {
    border-color: rgba(107, 24, 48, 0.26);
    box-shadow: 0 0 0 0.14rem rgba(107, 24, 48, 0.06);
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.newsletter-form .form-control {
    flex: 1 1 260px;
}

.summary-card,
.filter-card,
.glass-panel {
    background: var(--surface);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
}

.summary-card,
.filter-card,
.glass-panel,
.auth-card {
    padding: 1.4rem;
}

.pagination .page-link {
    border: 1px solid var(--line);
    margin: 0 0.2rem;
    border-radius: 999px;
    min-width: 40px;
    color: var(--ink);
    background: #fff;
}

.pagination .page-item.active .page-link {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}

.summary-line {
    align-items: center;
    padding: 0.65rem 0;
}

.total-line {
    margin-top: 0.4rem;
    padding-top: 0.8rem;
    border-top: 1px solid var(--line);
}

.cart-thumb {
    width: 82px;
    height: 96px;
    object-fit: cover;
    border-radius: 12px;
}

.cart-table th,
.cart-table td {
    vertical-align: middle;
}

.auth-section {
    min-height: calc(100vh - 180px);
    display: flex;
    align-items: center;
    padding: 3rem 0;
}

.auth-card {
    max-width: 560px;
    margin: 0 auto;
}

.auth-card-wide {
    max-width: 820px;
}

.footer-luxury {
    margin-top: 5rem;
    padding: 3rem 0 2rem;
}

.footer-newsletter {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 2rem;
    padding-bottom: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
    gap: 1.6rem;
}

.footer-brand h3 {
    margin: 0;
    color: #fff;
}

.footer-copy,
.footer-links a,
.footer-links span,
.social-row a {
    color: rgba(255, 255, 255, 0.72);
}

.footer-copy {
    max-width: 340px;
    margin-top: 0.9rem;
    line-height: 1.8;
}

.footer-grid h6 {
    margin-bottom: 0.9rem;
    color: #fff;
    font-weight: 700;
}

.footer-links,
.social-row {
    display: grid;
    gap: 0.68rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.9rem;
}

.admin-body,
.admin-login-body {
    background: var(--bg);
}

.admin-layout {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    padding: 2rem 1.4rem;
    background: linear-gradient(180deg, #171214, #501529 44%, #21407b);
    color: #fff;
}

.admin-brand {
    margin-bottom: 2rem;
}

.admin-nav {
    display: grid;
    gap: 0.5rem;
}

.admin-nav a {
    padding: 0.9rem 1rem;
    border-radius: 14px;
    color: rgba(255, 255, 255, 0.84);
    font-weight: 600;
}

.admin-nav a:hover,
.admin-nav a.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.admin-main {
    padding: 2rem;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.admin-hero-panel {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 1.2rem;
    padding: 1.45rem 1.5rem;
    margin-bottom: 1.4rem;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(107, 24, 48, 0.08), rgba(36, 74, 143, 0.08) 62%, rgba(182, 147, 70, 0.08));
    border: 1px solid rgba(23, 20, 21, 0.08);
}

.admin-page-title {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 3vw, 2.75rem);
    line-height: 1.06;
}

.admin-page-subtitle {
    max-width: 760px;
    margin: 0.7rem 0 0;
    color: var(--muted);
    line-height: 1.8;
}

.admin-page-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.admin-page-meta span {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(23, 20, 21, 0.06);
    color: var(--ink);
    font-size: 0.82rem;
    font-weight: 700;
}

.admin-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: end;
}

.admin-stat-card {
    height: 100%;
    padding: 1.3rem 1.35rem;
    border-radius: 20px;
    border: 1px solid var(--line);
    background: var(--surface);
}

.admin-stat-card-royal {
    background: linear-gradient(135deg, rgba(36, 74, 143, 0.08), rgba(255, 255, 255, 0.96));
}

.admin-stat-card-gold {
    background: linear-gradient(135deg, rgba(182, 147, 70, 0.08), rgba(255, 255, 255, 0.96));
}

.admin-stat-label {
    display: block;
    margin-bottom: 0.45rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--bordeaux);
}

.admin-stat-value {
    display: block;
    font-size: clamp(1.8rem, 2vw, 2.4rem);
    line-height: 1.05;
}

.admin-stat-note {
    margin: 0.55rem 0 0;
    color: var(--muted);
    line-height: 1.6;
}

.admin-media-panel {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: var(--surface-soft);
}

.admin-home-preview-frame,
.admin-selection-thumb {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
}

.admin-home-preview-frame img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.admin-selection-list {
    display: grid;
    gap: 1rem;
}

.admin-selection-card {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem;
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--surface-soft);
}

.admin-selection-thumb {
    width: 100%;
    height: 160px;
    object-fit: cover;
}

.admin-selection-copy h4 {
    margin: 0.25rem 0 0;
    font-size: 1.1rem;
}

.admin-selection-copy p {
    margin: 0;
    color: var(--muted);
    line-height: 1.7;
}

.admin-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 0.9rem;
}

.admin-chip-row span {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    background: rgba(17, 13, 14, 0.04);
    border: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.85rem;
    font-weight: 700;
}

.admin-media-preview-wrap {
    display: grid;
    gap: 0.75rem;
}

.admin-media-preview-frame {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 18px;
    background: #ece4da;
}

.admin-media-preview-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-media-target {
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--bordeaux);
}

.admin-media-controls {
    display: grid;
    gap: 0.75rem;
    align-content: start;
}

.admin-slider-label {
    display: block;
    min-height: 2.5rem;
    line-height: 1.35;
    word-break: break-word;
}

.admin-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 0.9rem;
}

.admin-gallery-card {
    display: grid;
    gap: 0.45rem;
}

.admin-gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
}

.admin-gallery-card span {
    font-size: 0.76rem;
    color: var(--muted);
}

.admin-gallery-remove {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.78rem;
    color: var(--ink);
}

.admin-gallery-order {
    display: grid;
    gap: 0.35rem;
    font-size: 0.78rem;
    color: var(--ink);
}

.admin-gallery-card.is-new span {
    color: var(--bordeaux);
    font-weight: 700;
}

.admin-product-listing {
    display: flex;
    align-items: center;
    gap: 0.9rem;
}

.admin-product-listing img {
    width: 64px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    border: 1px solid var(--line);
    background: var(--surface-soft);
}

.notification-list {
    display: grid;
    gap: 1rem;
}

.notification-card {
    padding: 1rem 1.1rem;
    border: 1px solid rgba(38, 28, 30, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.76);
}

.notification-card.is-unread {
    border-color: rgba(130, 28, 52, 0.18);
    box-shadow: 0 12px 30px rgba(111, 34, 52, 0.08);
}

.notification-card-head {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 0.45rem;
    font-size: 0.9rem;
}

.notification-card p {
    margin-bottom: 0.35rem;
    color: var(--muted);
}

.mobile-money-card {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    background: linear-gradient(180deg, #171719 0%, #1f2025 100%);
    color: #fff;
    overflow: hidden;
}

.mobile-money-card-head {
    padding: 1.35rem 1.35rem 0.8rem;
}

.mobile-money-card-head h3 {
    margin: 0 0 0.45rem;
    font-size: 1.45rem;
    color: #fff;
}

.mobile-money-card-head p {
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
}

.mobile-money-card-body {
    padding: 1rem 1.35rem 1.35rem;
}

.mobile-money-card .form-label {
    color: #fff;
}

.mobile-money-select,
.mobile-money-phone-input {
    min-height: 58px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #fff;
}

.mobile-money-select:focus,
.mobile-money-phone-input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.24);
    color: #fff;
    box-shadow: none;
}

.mobile-money-phone-input::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.mobile-money-hint,
.mobile-money-status-note {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.6;
}

.mobile-money-hint {
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.88);
}

.mobile-money-status-note {
    background: rgba(148, 32, 54, 0.22);
    color: #fff;
}

.fashion-share-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.85rem;
    margin: 1rem 0 1.35rem;
    color: var(--muted);
}

.fashion-share-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border: 1px solid rgba(38, 28, 30, 0.12);
    border-radius: 999px;
    color: var(--ink);
    text-decoration: none;
    transition: all 0.25s ease;
}

.fashion-share-link:hover {
    border-color: rgba(111, 34, 52, 0.35);
    color: var(--bordeaux);
}

.assistant-widget {
    position: fixed;
    right: 1.25rem;
    bottom: 1.25rem;
    z-index: 1050;
    display: grid;
    justify-items: end;
    gap: 0.9rem;
}

.assistant-toggle,
.assistant-whatsapp-link,
.assistant-quick-actions button {
    border: 0;
    border-radius: 999px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.assistant-toggle {
    padding: 0.95rem 1.2rem;
    background: linear-gradient(135deg, #1d0f14, #7a1738 55%, #0f2d68);
    color: #fff;
    box-shadow: 0 18px 40px rgba(17, 13, 14, 0.28);
}

.assistant-toggle:hover,
.assistant-whatsapp-link:hover,
.assistant-quick-actions button:hover {
    transform: translateY(-2px);
}

.assistant-panel {
    width: min(360px, calc(100vw - 2rem));
    padding: 1.15rem;
    border-radius: 24px;
    background: rgba(255, 251, 247, 0.98);
    border: 1px solid rgba(38, 28, 30, 0.08);
    box-shadow: 0 24px 60px rgba(24, 17, 19, 0.18);
}

.assistant-panel-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.assistant-panel-head strong,
.assistant-panel-head span {
    display: block;
}

.assistant-panel-head span,
.assistant-contact-meta {
    color: var(--muted);
    font-size: 0.92rem;
}

.assistant-close {
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(38, 28, 30, 0.06);
}

.assistant-message {
    padding: 0.95rem 1rem;
    border-radius: 18px;
    background: rgba(122, 23, 56, 0.07);
    color: var(--ink);
    margin-bottom: 1rem;
}

.assistant-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 1rem;
}

.assistant-quick-actions button {
    padding: 0.65rem 0.9rem;
    background: #fff;
    border: 1px solid rgba(38, 28, 30, 0.08);
    color: var(--ink);
}

.assistant-whatsapp-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.9rem 1rem;
    background: #1a7f49;
    color: #fff;
    text-decoration: none;
    margin-bottom: 0.9rem;
}

.assistant-contact-meta {
    display: grid;
    gap: 0.2rem;
}

.reveal-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199px) {
    .luxury-nav .collapse {
        margin-top: 1rem;
        padding: 1.2rem;
        border-radius: var(--radius-lg);
        background: rgba(17, 13, 14, 0.94);
    }

    .page-home .luxury-nav .collapse,
    .page-inner .luxury-nav .collapse,
    .luxury-nav.is-scrolled .collapse {
        background: rgba(251, 248, 244, 0.98);
    }

    .catalog-filter-card {
        position: static;
    }

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

    .assistant-widget {
        right: 1rem;
        left: 1rem;
        justify-items: stretch;
    }

    .assistant-panel {
        width: 100%;
    }

    .admin-hero-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .admin-hero-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 991px) {
    body.page-home,
    body.page-inner {
        padding-top: 84px;
    }

    .section-block {
        padding: 4rem 0;
    }

    .home-hero-shell {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }

    .home-hero-metrics,
    .hero-brand-stats,
    .hero-structured-grid,
    .hero-pillars,
    .editorial-grid,
    .product-grid,
    .product-grid-compact,
    .split-intro,
    .split-story,
    .brand-universe,
    .brand-signature-grid,
    .lookbook-grid,
    .catalog-shell,
    .catalog-hero-grid,
    .fashion-product-layout,
    .product-stage-grid,
    .product-story-grid,
    .rental-atelier,
    .rental-grid,
    .footer-grid,
    .footer-newsletter {
        grid-template-columns: 1fr;
    }

    .product-card-media img {
        height: 380px;
    }

    .split-story-media img,
    .catalog-hero-media img,
    .rental-visual img,
    .split-intro-media img {
        height: 420px;
    }

    .product-gallery-main img {
        height: 500px;
    }

    .fashion-product-main-frame img {
        height: 520px;
    }

    .product-meta-rail,
    .home-hero-metrics {
        grid-template-columns: 1fr;
    }

    .section-heading,
    .catalog-toolbar,
    .admin-topbar,
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .admin-selection-card {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 575px) {
    .admin-gallery-grid {
        grid-template-columns: 1fr 1fr;
    }

    .admin-media-preview-frame {
        max-width: 320px;
    }

    .admin-product-listing {
        align-items: flex-start;
    }

    .admin-product-listing img {
        width: 56px;
        height: 72px;
    }
}

@media (max-width: 767px) {
    .page-home .flash-shell {
        padding-top: 0.8rem;
    }

    .home-hero {
        min-height: auto;
    }

    .home-hero h1 {
        font-size: 3rem;
    }

    .home-hero-tagline {
        font-size: 1.3rem;
    }

    .editorial-card-media img,
    .product-card-media img,
    .category-shortcut img,
    .lookbook-frame img {
        height: 280px;
    }

    .editorial-card-feature .editorial-card-media img,
    .split-story-media img,
    .catalog-hero-media img,
    .rental-visual img,
    .product-gallery-main img,
    .split-intro-media img,
    .fashion-product-main-frame img {
        height: 320px;
        min-height: 0;
    }

    .editorial-card-body,
    .quote-panel,
    .collection-panel,
    .filter-card,
    .product-buy-card,
    .product-editorial-note,
    .auth-card {
        padding: 1.2rem;
    }

    .footer-luxury {
        padding-top: 2.6rem;
    }

    .admin-main {
        padding: 1.2rem;
    }
}
