﻿:root {
    --bg: #fff7fa;
    --surface: #ffffff;
    --surface-soft: #ffeef6;
    --pink-100: #ffd6e9;
    --pink-200: #ffc3dd;
    --pink-300: #ffa4cc;
    --pink-400: #f98ab8;
    --pink-500: #ef6ea5;
    --pink-700: #be4b7e;
    --text-900: #181313;
    --text-700: #3c2f2f;
    --text-500: #665656;
    --line: #ead7de;
    --radius-xl: 32px;
    --radius-lg: 20px;
    --radius-md: 14px;
    --shadow-soft: 0 12px 32px rgba(197, 102, 145, 0.15);
    --shadow-card: 0 8px 18px rgba(41, 18, 28, 0.08);
    --container-max: 1560px;
    --container-pad: clamp(0.75rem, 2.4vw, 2rem);
    --section-space: clamp(2.1rem, 5vw, 4.6rem);
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-900);
    background: var(--bg);
    line-height: 1.45;
    -webkit-font-smoothing: antialiased;
}

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

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

.container {
    width: min(calc(100% - (var(--container-pad) * 2)), var(--container-max));
    margin-inline: auto;
}

.announcement-bar {
    background: #edc3de;
    color: #2f1f27;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: clamp(0.74rem, 1.2vw, 0.9rem);
    letter-spacing: 0.03em;
    text-transform: capitalize;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(255, 251, 253, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(223, 181, 199, 0.55);
}

.header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    align-items: center;
    min-height: 96px;
}

.logo {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.logo-mark {
    width: clamp(150px, 18vw, 245px);
    height: auto;
    display: block;
    max-width: min(245px, 42vw);
    filter: drop-shadow(0 10px 20px rgba(195, 80, 133, 0.14));
}

.main-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: clamp(0.7rem, 1.9vw, 1.45rem);
}

.main-nav a {
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-700);
    transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible {
    color: var(--pink-700);
}

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

.icon-btn {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #121212;
    display: grid;
    place-items: center;
    padding: 0;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.icon-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.icon-btn:hover,
.icon-btn:focus-visible {
    color: #7d455d;
    background: rgba(255, 255, 255, 0.88);
}

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

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid #dac0cd;
    border-radius: 10px;
    background: #fff;
    padding: 0.52rem 0.45rem;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    margin: 4px 0;
    background: #4a3842;
    transition: transform 0.2s ease;
}

body.search-open {
    overflow: hidden;
}

.search-modal {
    position: fixed;
    inset: 0;
    z-index: 120;
    display: grid;
    place-items: start center;
    padding: clamp(0.8rem, 3vw, 2.2rem);
}

.search-modal[hidden] {
    display: none !important;
}

.search-modal-backdrop {
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(23, 16, 20, 0.4);
    cursor: pointer;
}

.search-dialog {
    position: relative;
    width: min(940px, 100%);
    max-height: calc(100vh - clamp(1.6rem, 6vw, 4.4rem));
    background: #fff;
    border: 1px solid #d8d3d6;
    border-radius: 10px;
    box-shadow: 0 26px 45px rgba(25, 16, 20, 0.28);
    overflow: hidden;
}

.search-dialog-head {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 4.7rem 0.8rem 1rem;
    border-bottom: 1px solid #e5e2e4;
}

.search-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    min-width: 0;
}

.search-form-icon {
    width: 22px;
    height: 22px;
    color: #5f5a5d;
    flex-shrink: 0;
}

.search-form-icon svg,
.search-close-btn svg {
    width: 100%;
    height: 100%;
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    fill: none;
}

.search-form-input {
    width: 100%;
    min-height: 48px;
    border: 0;
    outline: 0;
    background: transparent;
    padding: 0;
    font: inherit;
    font-size: clamp(1.15rem, 2vw, 2rem);
    color: #232224;
}

.search-form-input::placeholder {
    color: #777;
}

.search-close-btn {
    position: absolute;
    top: 0.8rem;
    right: 1rem;
    z-index: 5;
    width: 40px;
    height: 40px;
    border: 1px solid #d9d1d5;
    border-radius: 8px;
    background: #fff;
    color: #1a1718;
    display: grid;
    place-items: center;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(36, 22, 28, 0.08);
    flex-shrink: 0;
}

.search-close-btn:hover,
.search-close-btn:focus-visible {
    background: #f8f4f6;
}

.search-dialog-body {
    padding: 0.9rem 1rem 1rem;
}

.search-dialog-title {
    margin: 0 0 0.7rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: #1c1618;
}

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.9rem;
    max-height: min(58vh, 520px);
    overflow-y: auto;
    padding-right: 0.2rem;
}

.search-card {
    min-width: 0;
}

.search-card-media {
    position: relative;
    aspect-ratio: 3 / 4;
    border-radius: 0;
    border: 1px solid #ded9dd;
    overflow: hidden;
    box-shadow: 0 8px 16px rgba(37, 20, 29, 0.08);
}

.search-card-media img,
.search-card-fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.search-card-fallback {
    display: grid;
    place-items: center;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.02rem, 2.5vw, 1.35rem);
    color: #5d3d4a;
    background:
        radial-gradient(circle at 25% 22%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 45%),
        linear-gradient(145deg, #f7d8e7, #f1c5d9);
    padding: 0.8rem;
}

.search-card h3 {
    margin: 0.45rem 0 0.15rem;
    font-size: 0.86rem;
    line-height: 1.3;
    text-transform: none;
}

.search-card .price {
    margin: 0;
    font-size: 0.72rem;
}

.search-empty-message {
    margin: 0.5rem 0 0;
    color: #5c4b51;
    font-size: 0.94rem;
}

.hero-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(90% 90% at 10% 10%, rgba(255, 226, 240, 0.72), rgba(255, 226, 240, 0) 80%),
        repeating-linear-gradient(
            180deg,
            #fff5f9,
            #fff5f9 58px,
            #ffeaf3 58px,
            #ffeaf3 112px
        );
    border-bottom: 1px solid #f3dbe5;
}

.hero-shell {
    position: relative;
    min-height: clamp(300px, 44vw, 540px);
    display: grid;
    place-items: center;
    padding-block: clamp(2.2rem, 5vw, 4rem);
}

.hero-card {
    text-align: center;
    width: min(98%, 820px);
    background: linear-gradient(180deg, #fffdfd 0%, #fff6fb 100%);
    border: 1px solid #f0d9e6;
    border-radius: 999px;
    padding: clamp(1.3rem, 3.2vw, 2.5rem) clamp(1rem, 4vw, 2.8rem);
    position: relative;
    z-index: 2;
    box-shadow: var(--shadow-soft);
}

.hero-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: #fde2ef;
    border: 1px solid #f7cde2;
    color: #7b3c58;
    padding: 0.35rem 0.9rem;
    font-size: clamp(0.64rem, 1.3vw, 0.8rem);
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-weight: 800;
}

.hero-card h1 {
    margin: clamp(0.8rem, 2vw, 1.2rem) 0 0.25rem;
    line-height: 1;
}

.title-main {
    display: block;
    font-size: clamp(2rem, 7.1vw, 5.1rem);
    color: #ef3d88;
    letter-spacing: 0.05em;
    font-weight: 900;
}

.title-sub {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.55rem, 4vw, 3.2rem);
    color: #201516;
    margin-top: 0.15rem;
}

.hero-copy {
    margin: 0 0 1rem;
    font-size: clamp(1rem, 2.3vw, 1.6rem);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    color: #5b3545;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 0.67rem 1.6rem;
    border-radius: 999px;
    background: linear-gradient(160deg, #ef6ea5, #e64c91);
    color: #fff;
    border: 0;
    font-size: 0.72rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    font-weight: 800;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 8px 18px rgba(219, 66, 137, 0.28);
}

.cta-btn:hover,
.cta-btn:focus-visible {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(219, 66, 137, 0.35);
}

.deco {
    position: absolute;
    z-index: 1;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(226, 164, 194, 0.8);
    background: linear-gradient(160deg, #ffe5f0, #ffc0d8);
    box-shadow: var(--shadow-card);
}

.deco::after {
    content: '';
    position: absolute;
    inset: 10% 12%;
    border-radius: inherit;
    background: radial-gradient(circle at 50% 40%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.25) 70%);
    opacity: 0.6;
}

.deco-1 {
    width: clamp(52px, 8vw, 120px);
    height: clamp(80px, 14vw, 180px);
    left: 2%;
    top: 10%;
    transform: rotate(-26deg);
}

.deco-2 {
    width: clamp(52px, 8vw, 112px);
    height: clamp(84px, 13vw, 174px);
    right: 3%;
    top: 8%;
    transform: rotate(22deg);
}

.deco-3 {
    width: clamp(84px, 11vw, 150px);
    height: clamp(84px, 11vw, 150px);
    left: 13%;
    bottom: 8%;
    border-radius: 999px;
}

.deco-4 {
    width: clamp(74px, 10vw, 150px);
    height: clamp(74px, 10vw, 150px);
    right: 12%;
    bottom: 8%;
    border-radius: 999px;
}

.deco-5 {
    width: clamp(48px, 8vw, 110px);
    height: clamp(48px, 8vw, 110px);
    left: 24%;
    top: 20%;
    border-radius: 999px;
    transform: rotate(10deg);
}

.deco-6 {
    width: clamp(48px, 8vw, 110px);
    height: clamp(48px, 8vw, 110px);
    right: 25%;
    top: 18%;
    border-radius: 999px;
    transform: rotate(-10deg);
}

.deco-7 {
    width: clamp(56px, 9vw, 130px);
    height: clamp(56px, 9vw, 130px);
    left: 31%;
    bottom: 15%;
    border-radius: 999px;
}

.deco-8 {
    width: clamp(56px, 9vw, 130px);
    height: clamp(56px, 9vw, 130px);
    right: 31%;
    bottom: 17%;
    border-radius: 999px;
}

main section,
main .ticker,
main .stats-row {
    margin-top: var(--section-space);
}

.section-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 0.8rem;
    margin-bottom: clamp(0.9rem, 2.5vw, 1.5rem);
}

.section-head h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.45rem, 3.1vw, 2.35rem);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.view-all {
    text-transform: lowercase;
    color: var(--text-500);
    font-size: 0.9rem;
}

.collection-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(0.5rem, 1.3vw, 1rem);
}

.collection-card {
    min-width: 0;
}

.collection-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-md);
    border: 1px solid #ebd7df;
    box-shadow: var(--shadow-card);
    position: relative;
    display: grid;
    place-items: center;
    overflow: hidden;
    isolation: isolate;
}

.collection-image::before,
.collection-image::after {
    content: '';
    position: absolute;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.66);
    filter: blur(1px);
    z-index: -1;
}

.collection-image::before {
    width: 44%;
    height: 44%;
    left: -10%;
    bottom: -11%;
}

.collection-image::after {
    width: 35%;
    height: 35%;
    right: -5%;
    top: -6%;
}

.collection-badge {
    position: absolute;
    top: 0.56rem;
    left: 0.56rem;
    font-size: 0.64rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.95);
    border-radius: 999px;
    padding: 0.26rem 0.48rem;
    color: #6f3f53;
}

.collection-symbol {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: rgba(85, 34, 56, 0.58);
}

.collection-card h3 {
    margin: 0.45rem 0 0;
    font-size: 0.84rem;
    font-weight: 700;
    color: #2d2222;
}

.tone-rose .collection-image,
.collection-preview-card.tone-rose,
.collection-swatch.tone-rose,
.product-image.tone-rose {
    background: linear-gradient(150deg, #ffd8e8, #ffc4d8);
}

.tone-peach .collection-image,
.collection-preview-card.tone-peach,
.collection-swatch.tone-peach,
.product-image.tone-peach {
    background: linear-gradient(160deg, #ffe2d4, #ffd0cc);
}

.tone-sand .collection-image,
.collection-preview-card.tone-sand,
.collection-swatch.tone-sand,
.product-image.tone-sand {
    background: linear-gradient(160deg, #f7e2c6, #f5d4b3);
}

.tone-mist .collection-image,
.collection-preview-card.tone-mist,
.collection-swatch.tone-mist,
.product-image.tone-mist {
    background: linear-gradient(160deg, #dce8f6, #d0e0ef);
}

.tone-mint .collection-image,
.collection-preview-card.tone-mint,
.collection-swatch.tone-mint,
.product-image.tone-mint {
    background: linear-gradient(160deg, #d8f2eb, #c8e8de);
}

.product-section {
    width: min(calc(100% - (var(--container-pad) * 2)), var(--container-max));
    margin-inline: auto;
}

.collections,
.promo-block {
    width: 100%;
}

.product-slider-wrap {
    position: relative;
}

.product-slider {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(170px, 1fr);
    gap: clamp(0.45rem, 1.2vw, 0.85rem);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: #dfa9c2 transparent;
    padding-bottom: 0.55rem;
}

.product-slider::-webkit-scrollbar {
    height: 8px;
}

.product-slider::-webkit-scrollbar-thumb {
    background: #e6b6ce;
    border-radius: 999px;
}

.product-card {
    min-width: 0;
    scroll-snap-align: start;
}

.product-image {
    position: relative;
    display: grid;
    place-items: end start;
    min-height: clamp(130px, 18vw, 182px);
    border-radius: 12px;
    border: 1px solid #ead7df;
    box-shadow: var(--shadow-card);
    overflow: hidden;
    padding: 0.56rem;
    margin-bottom: 0.6rem;
}

.product-image::before {
    content: '';
    position: absolute;
    width: 62%;
    aspect-ratio: 1;
    right: -18%;
    top: -26%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.45);
}

.image-tag {
    position: absolute;
    top: 0.55rem;
    left: 0.55rem;
    padding: 0.18rem 0.43rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.75);
    background: rgba(255, 255, 255, 0.75);
    color: #714a59;
    font-size: 0.55rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.image-title {
    position: relative;
    z-index: 2;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: rgba(42, 18, 26, 0.78);
}

.product-card h3 {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.3;
}

.product-card h3 a:hover,
.product-card h3 a:focus-visible {
    color: var(--pink-700);
}

.price {
    margin: 0.24rem 0 0;
    color: #2f2227;
    font-size: 0.82rem;
    font-weight: 800;
}

.slider-btn {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid #dfbdcf;
    background: rgba(255, 255, 255, 0.93);
    color: #5b3a48;
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: 5;
    box-shadow: 0 6px 14px rgba(63, 23, 40, 0.12);
}

.slider-btn-prev {
    left: -14px;
}

.slider-btn-next {
    right: -14px;
}

.ticker {
    overflow: hidden;
    border-block: 1px solid #efc8d9;
    background: #f5cae1;
    white-space: nowrap;
}

.ticker-track {
    display: inline-flex;
    gap: 2rem;
    min-width: 100%;
    animation: ticker 30s linear infinite;
    padding: 0.6rem 0;
}

.ticker-track span {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.35rem, 2.8vw, 2.1rem);
    font-weight: 700;
    text-transform: capitalize;
}

.ticker-alt .ticker-track span {
    font-size: clamp(1.18rem, 2.6vw, 1.8rem);
}

@keyframes ticker {
    from {
        transform: translateX(0%);
    }
    to {
        transform: translateX(-33.333%);
    }
}

.promo-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: clamp(1rem, 2.8vw, 2.5rem);
    align-items: center;
}

.promo-image {
    min-height: clamp(260px, 34vw, 420px);
    border-radius: var(--radius-lg);
    background: linear-gradient(160deg, #f9dce8, #f2c6d7);
    position: relative;
    display: grid;
    place-items: center;
    border: 1px solid #ebd2de;
}

.promo-face {
    width: clamp(140px, 22vw, 260px);
    aspect-ratio: 1;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 30%, #ffd6e4, #f496b9 72%);
    position: relative;
    box-shadow: 0 18px 34px rgba(192, 93, 140, 0.2);
}

.promo-face::before,
.promo-face::after {
    content: '';
    position: absolute;
    width: 34%;
    aspect-ratio: 1;
    border-radius: 999px;
    background: #f5abc9;
    top: -12%;
}

.promo-face::before {
    left: 8%;
}

.promo-face::after {
    right: 8%;
}

.promo-content h2 {
    font-family: 'Cormorant Garamond', serif;
    margin: 0 0 0.35rem;
    font-size: clamp(1.8rem, 4vw, 3rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.promo-content p {
    margin: 0;
    max-width: 46ch;
    color: #58484d;
    font-size: clamp(0.95rem, 1.55vw, 1.12rem);
}

.cta-btn-small {
    margin-top: 1.1rem;
}

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

.stat-item {
    background: #fff;
    border: 1px solid #ebd8e1;
    border-radius: var(--radius-md);
    text-align: center;
    padding: clamp(1rem, 2.2vw, 1.7rem);
}

.stat-icon {
    width: 28px;
    height: 28px;
    margin-inline: auto;
    border-radius: 999px;
    border: 1px solid #dfb8cb;
    display: grid;
    place-items: center;
    color: #81485f;
    font-size: 0.76rem;
}

.stat-item h3 {
    margin: 0.56rem 0 0.25rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    line-height: 1;
}

.stat-item p {
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-size: clamp(0.66rem, 1.1vw, 0.86rem);
    color: #5f4d53;
}

.faq-section .faq-list {
    background: #fff;
    border: 1px solid #ead6df;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-item + .faq-item {
    border-top: 1px solid #eddde4;
}

.faq-trigger {
    width: 100%;
    background: #fff;
    border: 0;
    padding: 1rem 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    text-align: left;
    font-size: 0.88rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    cursor: pointer;
}

.faq-trigger .plus {
    font-size: 1.16rem;
    color: #8a5a6d;
    transition: transform 0.2s ease;
}

.faq-trigger[aria-expanded='true'] .plus {
    transform: rotate(45deg);
}

.faq-panel {
    padding: 0 1rem 1rem;
}

.faq-panel p {
    margin: 0;
    color: #544146;
    max-width: 70ch;
    font-size: 0.95rem;
}

.site-footer {
    margin-top: var(--section-space);
    background: #efc3dd;
    border-top: 1px solid #e6b5d2;
}

.footer-inner {
    padding: clamp(2rem, 4.4vw, 4rem) 0;
}

.footer-inner h2 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    font-size: clamp(2.35rem, 7vw, 5.5rem);
    line-height: 1;
}

.footer-inner ul {
    margin: 1rem 0 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem 1.2rem;
}

.footer-inner li a {
    text-transform: lowercase;
    color: #402f36;
}

.footer-inner p {
    margin: 1.2rem 0 0;
    color: #5f4952;
    font-size: 0.86rem;
}

@media (max-width: 1180px) {
    :root {
        --container-max: 1120px;
    }

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

    .product-slider {
        grid-auto-columns: minmax(160px, 1fr);
    }

    .slider-btn {
        display: none;
    }

    .promo-grid {
        grid-template-columns: 1fr;
    }

    .promo-content p {
        max-width: 62ch;
    }
}

@media (max-width: 980px) {
    .header-inner {
        grid-template-columns: minmax(0, 1fr) auto auto;
        gap: 0.55rem;
        min-height: 84px;
    }

    .menu-toggle {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        order: 3;
        justify-self: end;
        width: 54px;
        height: 54px;
        padding: 0;
        border-radius: 18px;
        border-color: #e4cad6;
        background: linear-gradient(180deg, #fffdfd 0%, #fff3f8 100%);
        box-shadow: 0 12px 24px rgba(92, 46, 67, 0.1);
    }

    .menu-toggle span {
        width: 22px;
        height: 2.5px;
        margin: 3px 0;
        border-radius: 999px;
        background: #59414a;
    }

    .logo {
        order: 1;
    }

    .logo-mark {
        width: clamp(118px, 22vw, 160px);
        max-width: 100%;
    }

    .main-nav {
        order: 4;
        grid-column: 1 / -1;
        width: 100%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.25s ease;
        border-top: 0;
        margin-top: 0.35rem;
    }

    .main-nav.is-open {
        max-height: 360px;
    }

    .main-nav ul {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.55rem;
        padding: 0.85rem;
        justify-content: stretch;
        background: linear-gradient(180deg, #fffdfd 0%, #fff4f9 100%);
        border: 1px solid #ead8e1;
        border-radius: 22px;
        box-shadow: 0 18px 34px rgba(88, 42, 63, 0.08);
    }

    .main-nav a {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 44px;
        padding: 0.72rem 0.9rem;
        border: 1px solid #eddce4;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.95);
    }

    .header-actions {
        order: 2;
        justify-self: end;
        gap: 0.3rem;
    }

    .header-actions .icon-btn {
        width: 38px;
        height: 38px;
        border-radius: 12px;
        border: 1px solid #ead8e0;
        background: rgba(255, 255, 255, 0.95);
        box-shadow: 0 10px 20px rgba(94, 48, 68, 0.08);
    }

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

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

    .deco-7,
    .deco-8 {
        display: none;
    }
}

@media (max-width: 720px) {
    .announcement-bar {
        font-size: 0.68rem;
    }

    .header-inner {
        min-height: 74px;
    }

    .logo-mark {
        width: clamp(98px, 28vw, 132px);
    }

    .icon-btn {
        width: 34px;
        height: 34px;
    }

    .icon-btn svg {
        width: 20px;
        height: 20px;
    }

    .header-actions {
        gap: 0.2rem;
    }

    .header-actions .icon-btn {
        width: 34px;
        height: 34px;
        border-radius: 11px;
    }

    .menu-toggle {
        width: 48px;
        height: 48px;
        border-radius: 16px;
    }

    .main-nav ul {
        grid-template-columns: 1fr;
        padding: 0.72rem;
    }

    .search-modal {
        padding: 0.6rem;
    }

    .search-dialog-head {
        padding: 0.58rem 3.9rem 0.58rem 0.66rem;
    }

    .search-close-btn {
        top: 0.58rem;
        right: 0.66rem;
    }

    .search-dialog-body {
        padding: 0.62rem 0.66rem 0.7rem;
    }

    .search-form-input {
        min-height: 44px;
        font-size: 1.04rem;
    }

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

    .hero-shell {
        min-height: 340px;
        padding-block: 1.8rem;
    }

    .hero-card {
        border-radius: 24px;
        width: 100%;
    }

    .deco {
        opacity: 0.8;
    }

    .deco-1,
    .deco-2,
    .deco-5,
    .deco-6 {
        display: none;
    }

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

    .collection-card h3 {
        font-size: 0.8rem;
    }

    .product-slider {
        grid-auto-columns: minmax(138px, 44vw);
    }

    .ticker-track {
        animation-duration: 24s;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .faq-trigger {
        font-size: 0.78rem;
        padding: 0.85rem;
    }

    .faq-panel {
        padding: 0 0.85rem 0.85rem;
    }

    .footer-inner ul {
        flex-direction: column;
        gap: 0.3rem;
    }
}

@media (max-width: 390px) {
    :root {
        --container-pad: 0.6rem;
    }

    .logo-mark {
        width: clamp(124px, 38vw, 170px);
        max-width: 46vw;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
    }

    .collection-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0.45rem;
    }

    .product-slider {
        grid-auto-columns: minmax(130px, 76vw);
    }

    .ticker-track span {
        font-size: 1.1rem;
    }
}

@media (min-width: 1700px) {
    :root {
        --container-max: 1680px;
    }

    body {
        font-size: 1.06rem;
    }

    .product-slider {
        grid-auto-columns: minmax(220px, 1fr);
    }

    .product-image {
        min-height: 210px;
    }

    .logo-mark {
        width: 150px;
        max-width: 52vw;
    }
}

@media (min-width: 2200px) {
    :root {
        --container-max: 2080px;
        --section-space: clamp(3.8rem, 4vw, 6rem);
    }

    body {
        font-size: 1.18rem;
    }

    .header-inner {
        min-height: 92px;
    }

    .main-nav a {
        font-size: 0.9rem;
    }

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

    .product-slider {
        grid-auto-columns: minmax(250px, 1fr);
        gap: 1rem;
    }

    .product-image {
        min-height: 240px;
    }

    .slider-btn {
        width: 44px;
        height: 44px;
    }
}

@media (min-width: 3000px) {
    :root {
        --container-max: 2740px;
    }

    html {
        font-size: 22px;
    }

    .hero-shell {
        min-height: 720px;
    }

    .product-slider {
        grid-auto-columns: minmax(290px, 1fr);
    }

    .product-image {
        min-height: 290px;
    }
}

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

.main-nav a.active {
    color: var(--pink-700);
}

.catalog-page {
    background: #f1f1f1;
}

.catalog-page .site-header {
    background: #f7f7f7;
}

.catalog-main {
    min-height: 52vh;
    padding-bottom: clamp(2.2rem, 4vw, 4rem);
}

.page-shell {
    margin-top: clamp(1.8rem, 4.2vw, 3.4rem);
}

.page-shell.compact-top {
    margin-top: clamp(1rem, 2.3vw, 1.8rem);
}

.page-title {
    margin: 0 0 clamp(1rem, 2.8vw, 1.8rem);
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 5.8vw, 4.2rem);
    line-height: 1;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    color: #111;
}

.narrow-container {
    width: min(calc(100% - (var(--container-pad) * 2)), 980px);
}

.category-filter-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(0.7rem, 1.4vw, 1rem);
}

.category-filter-card {
    border: 1px solid #e5d7de;
    border-radius: 12px;
    background: #fff;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-filter-card:hover,
.category-filter-card:focus-within {
    transform: translateY(-2px);
    box-shadow: var(--shadow-card);
}

.category-filter-card.is-active {
    border-color: #ce88af;
    box-shadow: 0 0 0 2px rgba(224, 142, 181, 0.35);
}

.category-filter-link {
    display: block;
    padding: 0.38rem;
}

.category-filter-media {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 1px solid #e8dbe1;
    background: #f9eef3;
}

.category-filter-card.tone-rose .category-filter-media,
.catalog-product-card.tone-rose .catalog-product-media,
.explore-card.tone-rose .explore-image {
    background: linear-gradient(150deg, #ffd8e8, #ffc4d8);
}

.category-filter-card.tone-peach .category-filter-media,
.catalog-product-card.tone-peach .catalog-product-media,
.explore-card.tone-peach .explore-image {
    background: linear-gradient(160deg, #ffe2d4, #ffd0cc);
}

.category-filter-card.tone-sand .category-filter-media,
.catalog-product-card.tone-sand .catalog-product-media,
.explore-card.tone-sand .explore-image {
    background: linear-gradient(160deg, #f7e2c6, #f5d4b3);
}

.category-filter-card.tone-mist .category-filter-media,
.catalog-product-card.tone-mist .catalog-product-media,
.explore-card.tone-mist .explore-image {
    background: linear-gradient(160deg, #dce8f6, #d0e0ef);
}

.category-filter-card.tone-mint .category-filter-media,
.catalog-product-card.tone-mint .catalog-product-media,
.explore-card.tone-mint .explore-image {
    background: linear-gradient(160deg, #d8f2eb, #c8e8de);
}

.category-filter-card h2 {
    margin: 0.55rem 0 0.12rem;
    text-align: center;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(0.95rem, 1.9vw, 1.35rem);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.category-filter-card p {
    margin: 0 0 0.48rem;
    text-align: center;
    color: #6a555e;
    font-size: 0.76rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.catalog-products-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(0.7rem, 1.4vw, 1rem);
}

.catalog-product-card,
.explore-card {
    min-width: 0;
}

.catalog-product-media,
.explore-image {
    display: block;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    border: 1px solid #e6d8df;
    background: #fff;
    box-shadow: 0 6px 16px rgba(42, 20, 29, 0.08);
}

.catalog-product-media {
    aspect-ratio: 1 / 1;
}

.explore-image {
    aspect-ratio: 3 / 4;
}

.catalog-product-media img,
.category-filter-media img,
.explore-image img,
.table-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.media-fallback {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 0.8rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.02rem, 2.5vw, 1.35rem);
    color: #5d3d4a;
    background:
        radial-gradient(circle at 25% 22%, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0) 45%),
        linear-gradient(145deg, #f7d8e7, #f1c5d9);
}

.product-meta {
    margin: 0.25rem 0 0;
    font-size: 0.75rem;
    color: #66545d;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.compare-price {
    margin-left: 0.42rem;
    color: #6f5962;
    text-decoration: line-through;
    font-weight: 600;
    font-size: 0.8em;
}

.sold-out {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    border-radius: 999px;
    background: #ffe8f1;
    color: #904c66;
    border: 1px solid #f3bfd3;
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 900;
    padding: 0.2rem 0.46rem;
    z-index: 3;
}

.empty-state {
    border: 1px dashed #d8becb;
    border-radius: 14px;
    background: #fff;
    padding: clamp(1.1rem, 3vw, 2rem);
    text-align: center;
}

.empty-state h3 {
    margin: 0 0 0.35rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.55rem, 3.6vw, 2.3rem);
}

.empty-state p {
    margin: 0 0 1rem;
    color: #5c4a51;
}

.explore-head {
    align-items: center;
}

.explore-count {
    margin: 0;
    color: #5e4952;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.78rem;
    font-weight: 700;
}

.explore-search {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 1rem;
}

.explore-search input {
    flex: 1;
    min-height: 44px;
    padding: 0.65rem 0.9rem;
    border: 1px solid #dcc8d1;
    border-radius: 10px;
    background: #fff;
    font: inherit;
}

.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(0.7rem, 1.4vw, 1rem);
}

.explore-card h2,
.catalog-product-card h3 {
    margin: 0.45rem 0 0;
    font-size: 0.88rem;
    line-height: 1.3;
    text-transform: uppercase;
}

.dashboard-head .cta-btn {
    min-height: 38px;
}

.dashboard-page {
    background:
        radial-gradient(circle at top left, rgba(255, 222, 236, 0.75), rgba(255, 222, 236, 0) 38%),
        linear-gradient(180deg, #fff8fb 0%, #f7f0f4 100%);
}

.flash {
    margin-bottom: 1rem;
    padding: 0.7rem 0.9rem;
    border-radius: 10px;
    border: 1px solid #e0d1d8;
    background: #fff;
    font-weight: 700;
    font-size: 0.9rem;
}

.flash-success {
    border-color: #b8dfc5;
    background: #f0fff4;
    color: #26573c;
}

.flash-error {
    border-color: #ebc4cf;
    background: #fff3f7;
    color: #7a2f46;
}

.dashboard-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) auto;
    gap: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0) 34%),
        linear-gradient(135deg, #fff7fb 0%, #ffeaf4 46%, #fffdfd 100%);
}

.dashboard-hero::after {
    content: '';
    position: absolute;
    right: -3rem;
    top: -2rem;
    width: 12rem;
    aspect-ratio: 1;
    border-radius: 999px;
    background: rgba(244, 169, 202, 0.2);
}

.dashboard-hero-copy,
.dashboard-hero-actions {
    position: relative;
    z-index: 1;
}

.dashboard-kicker {
    margin: 0 0 0.5rem;
    color: #8c4767;
    font-size: 0.74rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.dashboard-intro {
    margin: 0;
    max-width: 62ch;
    color: #5f4b54;
}

.dashboard-hero h2 {
    margin: 0 0 0.65rem;
}

.dashboard-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    align-self: start;
    justify-content: flex-end;
}

.dashboard-layout {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 1rem;
    align-items: start;
}

.dashboard-layout-admin {
    gap: 1.15rem;
}

.admin-card {
    border: 1px solid #e2d4dc;
    border-radius: 14px;
    background: #fff;
    padding: clamp(0.9rem, 2.2vw, 1.3rem);
    box-shadow: 0 18px 38px rgba(95, 53, 73, 0.08);
}

.admin-card h2 {
    margin: 0 0 0.8rem;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-size: clamp(1.5rem, 3.4vw, 2.1rem);
}

.section-head-tight {
    align-items: center;
    margin-bottom: 0.85rem;
}

.section-head-tight h2 {
    margin: 0;
}

.admin-section-copy {
    margin: 0 0 1rem;
    color: #5f4b54;
    max-width: 62ch;
}

.admin-form {
    display: grid;
    gap: 0.75rem;
}

.admin-form label {
    display: grid;
    gap: 0.35rem;
}

.admin-form label > span {
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.67rem;
    font-weight: 800;
    color: #5e4953;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    border: 1px solid #dcc7d1;
    border-radius: 10px;
    min-height: 42px;
    padding: 0.56rem 0.75rem;
    font: inherit;
    background: #fff;
}

.admin-form textarea {
    resize: vertical;
    min-height: 94px;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus,
.admin-filters input:focus,
.admin-filters select:focus {
    outline: 0;
    border-color: #d882ab;
    box-shadow: 0 0 0 3px rgba(229, 138, 181, 0.18);
}

.admin-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}

.checkbox-row {
    display: inline-flex !important;
    align-items: center;
    gap: 0.45rem;
}

.checkbox-row input {
    width: 16px;
    min-height: 16px;
    margin: 0;
}

.table-card {
    margin-top: 1rem;
}

.table-empty {
    margin: 0;
    color: #5f4a54;
    text-align: center;
}

.admin-table-wrap {
    width: 100%;
    overflow-x: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 700px;
}

.admin-table th,
.admin-table td {
    border-top: 1px solid #efdee6;
    text-align: left;
    padding: 0.66rem 0.46rem;
    font-size: 0.85rem;
    vertical-align: middle;
}

.admin-table th {
    text-transform: uppercase;
    font-size: 0.66rem;
    letter-spacing: 0.09em;
    color: #6d5660;
}

.table-thumb {
    width: 60px;
    aspect-ratio: 1;
    border-radius: 8px;
    border: 1px solid #e2d2da;
    overflow: hidden;
}

.status-chip {
    display: inline-flex;
    align-items: center;
    padding: 0.2rem 0.48rem;
    border-radius: 999px;
    font-size: 0.66rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-weight: 800;
}

.status-live {
    background: #e7f8ef;
    color: #217547;
}

.status-out {
    background: #ffe9f1;
    color: #8e4762;
}

.status-wait {
    background: #fff2d9;
    color: #9a6716;
}

.table-delete {
    border: 1px solid #e8b7ca;
    background: #fff;
    color: #9a3158;
    border-radius: 999px;
    padding: 0.33rem 0.66rem;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 800;
    cursor: pointer;
}

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

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

.contact-grid label {
    display: grid;
    gap: 0.35rem;
}

.contact-grid .full-width {
    grid-column: 1 / -1;
}

.contact-grid label > span {
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.68rem;
    font-weight: 800;
    color: #5c4b51;
}

.contact-grid input,
.contact-grid textarea {
    border: 1px solid #d9c4ce;
    border-radius: 10px;
    min-height: 46px;
    padding: 0.68rem 0.8rem;
    font: inherit;
    background: #f7f7f7;
}

.about-copy {
    max-width: 75ch;
    font-size: clamp(1rem, 1.9vw, 1.1rem);
    color: #1f1618;
}

.about-copy p {
    margin: 0 0 0.85rem;
}

.icon-btn-cart {
    position: relative;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--pink-500);
    color: #fff;
    font-size: 0.58rem;
    font-weight: 800;
    line-height: 1;
    border: 1px solid #fffdfd;
    padding: 0 0.16rem;
}

.inline-form {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
}

.mini-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 0.32rem 0.68rem;
    border-radius: 999px;
    border: 1px solid #e1c6d2;
    background: #fff;
    color: #7b3c58;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    cursor: pointer;
}

.mini-link:hover,
.mini-link:focus-visible {
    border-color: #d98cb2;
    color: #6e2f4d;
}

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

.admin-item-copy {
    display: grid;
    gap: 0.18rem;
}

.admin-item-copy strong {
    font-size: 0.92rem;
}

.admin-item-copy span {
    color: #69545d;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.admin-tone {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0.24rem 0.58rem;
    border-radius: 999px;
    border: 1px solid #ebd1dd;
    background: #fff6fb;
    color: #794458;
    font-size: 0.66rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.collection-preview-card {
    position: relative;
    min-height: 168px;
    border-radius: 18px;
    border: 1px solid #ead6df;
    overflow: hidden;
    display: grid;
    place-items: center;
    text-align: center;
    gap: 0.4rem;
    padding: 1.1rem;
    box-shadow: 0 14px 30px rgba(100, 56, 76, 0.08);
}

.collection-preview-card strong {
    position: relative;
    z-index: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.35rem, 3vw, 2rem);
    color: #4a2a37;
}

.collection-preview-badge {
    position: absolute;
    top: 0.85rem;
    left: 0.85rem;
    z-index: 1;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.85);
    background: rgba(255, 255, 255, 0.82);
    color: #7e4760;
    font-size: 0.66rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.28rem 0.52rem;
}

.collection-preview-symbol {
    position: relative;
    z-index: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3.1rem, 6vw, 4.8rem);
    line-height: 1;
    color: rgba(73, 31, 49, 0.52);
}

.collection-preview-card::before,
.collection-swatch::before {
    content: '';
    position: absolute;
    inset: 12% 18%;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.38);
    filter: blur(2px);
}

.collection-swatch {
    position: relative;
    width: 72px;
    aspect-ratio: 1;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.68);
    overflow: hidden;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(79, 38, 55, 0.12);
}

.collection-swatch span {
    position: relative;
    z-index: 1;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.9rem;
    color: rgba(76, 37, 54, 0.72);
}

.card-actions {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-top: 0.55rem;
}

.hint-text {
    margin: 0.8rem 0 0;
    color: #5f4d54;
    font-size: 0.9rem;
}

.hint-text a {
    color: #8d3f62;
    font-weight: 700;
}

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

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(1rem, 2.4vw, 2rem);
    align-items: start;
}

.product-detail-media {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    border: 1px solid #e4d0da;
    overflow: hidden;
    background: #fff;
    box-shadow: var(--shadow-card);
}

.product-detail-media img,
.cart-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-detail-content h1 {
    margin: 0.2rem 0 0.45rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 4.6vw, 3.1rem);
    line-height: 1;
    text-transform: uppercase;
}

.product-breadcrumb {
    margin: 0;
    color: #6f5862;
    font-size: 0.82rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.product-breadcrumb a {
    color: #7b3f59;
    font-weight: 700;
}

.product-status {
    margin: 0.45rem 0 0.7rem;
    display: inline-flex;
}

.product-description {
    margin: 0.75rem 0;
    color: #45363d;
    max-width: 62ch;
}

.product-cart-form {
    display: flex;
    align-items: end;
    gap: 0.7rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.product-cart-form label {
    display: grid;
    gap: 0.3rem;
}

.product-cart-form label > span {
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.67rem;
    font-weight: 800;
    color: #5e4953;
}

.product-cart-form input[type='number'] {
    width: 110px;
    min-height: 40px;
    border: 1px solid #dcc8d1;
    border-radius: 10px;
    padding: 0.5rem 0.7rem;
    font: inherit;
}

.cart-layout {
    grid-template-columns: 1.15fr 0.85fr;
}

.cart-item {
    display: grid;
    grid-template-columns: 95px minmax(0, 1fr) auto auto;
    gap: 0.75rem;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #efdee6;
}

.cart-item:last-child {
    border-bottom: 0;
}

.cart-thumb {
    display: block;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    border: 1px solid #e4d4dc;
    overflow: hidden;
    box-shadow: var(--shadow-card);
}

.cart-meta h3 {
    margin: 0;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.cart-meta h3 a:hover,
.cart-meta h3 a:focus-visible {
    color: var(--pink-700);
}

.cart-actions {
    display: inline-flex;
    gap: 0.4rem;
    align-items: center;
}

.cart-actions input[type='number'] {
    width: 74px;
    min-height: 34px;
    border: 1px solid #dbc7d0;
    border-radius: 10px;
    padding: 0.2rem 0.46rem;
    font: inherit;
}

.cart-summary {
    position: sticky;
    top: 92px;
}

.summary-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.7rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #efdfe6;
    font-size: 0.92rem;
}

.summary-row:last-child {
    border-bottom: 0;
}

.summary-total {
    font-size: 1.02rem;
    font-weight: 800;
}

.dashboard-head-actions {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
}

.admin-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    border: 1px solid #e4c8d5;
    background: #fff;
    color: #6a4b59;
    font-size: 0.76rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.admin-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.admin-tabs a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0.35rem 0.8rem;
    border-radius: 999px;
    border: 1px solid #e1c7d3;
    background: #fff;
    color: #74435a;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.7rem;
    font-weight: 800;
}

.admin-tabs a.is-active,
.admin-tabs a:hover,
.admin-tabs a:focus-visible {
    border-color: #d789b0;
    background: #ffeef6;
    color: #6b2b4a;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.admin-stats-grid-wide {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-stat-card {
    border: 1px solid #e7d4dd;
    border-radius: 12px;
    background: linear-gradient(180deg, #fffdfd 0%, #fff7fb 100%);
    padding: 0.9rem;
}

.admin-stat-card h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    line-height: 1;
}

.admin-stat-card p {
    margin: 0.34rem 0 0;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #604c55;
}

.admin-filters {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 0.6rem;
    margin-bottom: 0.85rem;
    align-items: end;
}

.admin-filters label {
    display: grid;
    gap: 0.25rem;
}

.admin-filters label > span {
    text-transform: uppercase;
    letter-spacing: 0.07em;
    font-size: 0.64rem;
    font-weight: 800;
    color: #5d4a54;
}

.admin-filters input,
.admin-filters select {
    min-height: 40px;
    border: 1px solid #dcc7d1;
    border-radius: 10px;
    padding: 0.4rem 0.65rem;
    font: inherit;
    background: #fff;
}

.admin-table td .inline-form select {
    min-height: 34px;
    border: 1px solid #dbc7d1;
    border-radius: 8px;
    padding: 0.22rem 0.4rem;
    font: inherit;
    font-size: 0.78rem;
}

.order-page .dashboard-layout {
    grid-template-columns: 1fr 1fr;
}

@media (max-width: 1200px) {
    .category-filter-grid,
    .catalog-products-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

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

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

@media (max-width: 980px) {
    .dashboard-hero {
        grid-template-columns: 1fr;
    }

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

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

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

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

    .cart-summary {
        position: static;
    }

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

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

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

@media (max-width: 720px) {
    .page-title {
        font-size: clamp(1.8rem, 9.2vw, 3rem);
    }

    .category-filter-grid,
    .catalog-products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .explore-grid {
        grid-template-columns: 1fr 1fr;
    }

    .explore-search {
        flex-direction: column;
        align-items: stretch;
    }

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

    .cart-item {
        grid-template-columns: 82px minmax(0, 1fr);
        gap: 0.65rem;
    }

    .cart-actions {
        grid-column: 1 / -1;
    }

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

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

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

    .dashboard-head-actions {
        width: 100%;
        justify-content: flex-start;
    }

    .admin-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 0.2rem;
    }

    .admin-tabs a {
        white-space: nowrap;
    }

    .admin-table-responsive {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0;
    }

    .admin-table-responsive thead {
        display: none;
    }

    .admin-table-responsive tbody {
        display: grid;
        gap: 0.85rem;
    }

    .admin-table-responsive tr {
        display: block;
        border: 1px solid #ead8e1;
        border-radius: 16px;
        background: #fff;
        padding: 0.85rem;
        box-shadow: 0 14px 28px rgba(84, 47, 65, 0.06);
    }

    .admin-table-responsive td {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 0.85rem;
        width: 100%;
        padding: 0.62rem 0;
        border-top: 1px solid #f1e4eb;
    }

    .admin-table-responsive td:first-child {
        border-top: 0;
        padding-top: 0;
    }

    .admin-table-responsive td:last-child {
        padding-bottom: 0;
    }

    .admin-table-responsive td[data-label]::before {
        content: attr(data-label);
        flex: 0 0 88px;
        color: #775765;
        font-size: 0.64rem;
        font-weight: 800;
        letter-spacing: 0.09em;
        text-transform: uppercase;
    }

    .admin-table-responsive td[colspan] {
        display: block;
        border-top: 0;
        padding: 0;
    }

    .admin-table-responsive td[colspan]::before {
        display: none;
    }

    .admin-table-responsive .inline-form,
    .admin-table-responsive .table-actions {
        justify-content: flex-end;
    }
}

@media (max-width: 460px) {
    .search-results-grid {
        grid-template-columns: 1fr;
    }

    .search-dialog-title {
        font-size: 1.7rem;
    }

    .category-filter-grid,
    .catalog-products-grid,
    .explore-grid {
        grid-template-columns: 1fr;
    }

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

    .product-cart-form {
        flex-direction: column;
        align-items: stretch;
    }

    .product-cart-form input[type='number'] {
        width: 100%;
    }

    .dashboard-hero-actions {
        width: 100%;
    }

    .admin-table-responsive td {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-table-responsive td[data-label]::before {
        flex: 0 0 auto;
    }

    .admin-table-responsive .inline-form,
    .admin-table-responsive .table-actions {
        justify-content: flex-start;
    }
}
