:root {
    --ink: #22201d;
    --ink-soft: #5f594f;
    --ink-muted: #8e8577;
    --line: #e9e3d8;
    --line-strong: #d8cfbf;
    --canvas: #ffffff;
    --canvas-soft: #fdf8f1;
    --canvas-warm: #f6ecde;
    --accent: #b98234;
    --accent-deep: #8d5b19;
    --accent-soft: #f5e6cf;
    --accent-veil: rgba(185, 130, 52, .10);
    --danger: #bf4a3d;
    --success: #517645;
    --heading: 'Cormorant Garamond', Georgia, serif;
    --body: 'Raleway', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1280px;
    --ease: cubic-bezier(.22, .61, .36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--body);
    font-size: 14px;
    color: var(--ink);
    background: linear-gradient(180deg, #fffdfa 0%, var(--canvas) 220px);
    -webkit-font-smoothing: antialiased;
}

a {
    color: inherit;
    text-decoration: none;
    transition: color .22s var(--ease), opacity .22s var(--ease), border-color .22s var(--ease), background-color .22s var(--ease), transform .22s var(--ease);
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

input,
select,
textarea {
    font: inherit;
    color: inherit;
}

button {
    border: 0;
    background: transparent;
    cursor: pointer;
}

.container {
    width: min(100%, var(--max-width));
    margin: 0 auto;
    padding: 0 26px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 28px;
    border: 1px solid var(--line-strong);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--accent);
    border-color: var(--accent);
    color: #fff;
}

.btn-primary:hover {
    background: var(--accent-deep);
    border-color: var(--accent-deep);
}

.btn-outline {
    background: transparent;
    color: var(--ink);
}

.btn-outline:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.top-bar {
    border-bottom: 1px solid var(--line);
    background: linear-gradient(90deg, var(--accent-soft) 0%, #fbf3e7 100%);
    color: var(--accent-deep);
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.top-bar-inner,
.top-bar-left,
.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-inner {
    justify-content: space-between;
    gap: 24px;
    min-height: 38px;
}

.top-bar-left,
.top-bar-right {
    gap: 18px;
}

.top-bar a:hover {
    color: var(--accent-deep);
}

.top-bar-center {
    color: var(--accent-deep);
    white-space: nowrap;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 252, 247, .96);
    backdrop-filter: blur(10px);
    transition: box-shadow .25s var(--ease), background-color .25s var(--ease);
    border-bottom: 1px solid rgba(185, 130, 52, .12);
}

.site-header.scrolled {
    box-shadow: 0 10px 32px rgba(141, 91, 25, .08);
}

.header-main {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 118px;
}

.menu-toggle {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    display: none;
    font-size: 20px;
    color: var(--ink);
}

.logo {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

.logo-topline {
    display: inline-flex;
    align-items: center;
    gap: 14px;
}

.logo-symbol {
    width: 74px;
    height: auto;
    flex-shrink: 0;
}

.logo-mark,
.footer-wordmark {
    font-family: var(--heading);
    font-size: clamp(34px, 5vw, 52px);
    font-style: italic;
    font-weight: 500;
    line-height: .92;
    letter-spacing: .4px;
    color: var(--accent);
}

.logo-note {
    font-size: 11px;
    letter-spacing: 2.1px;
    text-transform: none;
    color: var(--accent-deep);
    margin-top: 2px;
}

.header-icons {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 18px;
}

.header-icon {
    position: relative;
    font-size: 15px;
    color: var(--accent-deep);
}

.header-icon:hover {
    color: var(--accent);
}

.cart-link {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -7px;
    right: -9px;
    display: none;
    align-items: center;
    justify-content: center;
    width: 17px;
    height: 17px;
    border-radius: 50%;
    background: var(--accent);
    color: #fff;
    font-size: 9px;
    font-weight: 700;
}

.search-bar {
    display: none;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, var(--accent-soft) 0%, var(--canvas-soft) 100%);
}

.search-bar.open {
    display: block;
}

.search-form {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 8px;
    align-items: center;
    padding: 14px 0;
}

.search-form input {
    min-width: 0;
    height: 44px;
    padding: 0 18px;
    border: 1px solid var(--line-strong);
    background: #fff;
    outline: none;
}

.search-form input:focus {
    border-color: var(--accent);
}

.search-form button {
    width: 44px;
    height: 44px;
    border: 1px solid var(--line-strong);
}

.search-form button:hover {
    border-color: var(--accent);
    color: var(--accent-deep);
}

.main-nav {
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background: rgba(255, 249, 240, .9);
}

.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.nav-list a {
    display: block;
    padding: 16px 12px 15px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-deep);
    border-bottom: 2px solid transparent;
}

.nav-list a.active,
.nav-list a:hover {
    color: var(--accent-deep);
    border-color: var(--accent-deep);
}

.hero-carousel {
    padding: 0;
}

.hero-carousel .container {
    max-width: none;
    padding: 0;
    width: 100%;
}

.hero-carousel-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    align-items: stretch;
    width: 100%;
    margin: 0;
}

.collection-kicker,
.section-kicker,
.category-eyebrow,
.landing-side-label,
.hero-slide-kicker,
.hero-feature-kicker {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.8px;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.hero-slide h1,
.collection-hero-copy h1,
.page-header h1,
.section-header h2,
.editorial-story-copy h2,
.about-preview-text h2,
.about-text h2,
.product-info-detail h1 {
    font-family: var(--heading);
    color: var(--ink);
    font-weight: 500;
    line-height: .98;
}

.hero-slide p,
.page-desc,
.editorial-story-copy p,
.about-preview-text p,
.about-text p,
.product-description,
.newsletter-desc,
.footer-brand p {
    font-size: 14px;
    color: var(--ink-soft);
}

.hero-carousel-stage {
    position: relative;
    min-height: 540px;
    overflow: hidden;
    background: var(--canvas-soft);
    border: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity .5s var(--ease);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-slide-media {
    position: absolute;
    inset: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.hero-slide-figure {
    position: relative;
    display: block;
    min-width: 0;
    height: 100%;
}

.hero-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide-titles {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
    gap: 14px;
    width: min(340px, 32vw);
    padding: 34px 22px 72px;
    background: linear-gradient(to left, rgba(21, 18, 15, .68) 0%, rgba(21, 18, 15, .28) 45%, rgba(21, 18, 15, 0) 100%);
}

.hero-slide-title-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 18px;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .18);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(8px);
    transition: transform .25s var(--ease), background .25s var(--ease), border-color .25s var(--ease);
}

.hero-slide-title-card:hover {
    transform: translateX(-4px);
    background: rgba(255, 255, 255, .18);
    border-color: rgba(255, 255, 255, .32);
}

.hero-slide-title-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
}

.hero-slide-title-name {
    font-family: var(--heading);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 500;
    line-height: .95;
    color: #fff;
}

.hero-carousel-dots {
    position: absolute;
    left: 34px;
    bottom: 20px;
    z-index: 3;
    display: flex;
    gap: 8px;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 0;
    background: rgba(255, 255, 255, .45);
}

.hero-dot.active {
    background: #fff;
}

.landing-notes strong,
.collection-meta span,
.reassurance-item strong {
    display: block;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--ink);
}

.reassurance-item span,
.value-card p,
.contact-card a,
.contact-card p {
    display: block;
    font-size: 12px;
    color: var(--ink-muted);
}

.collection-hero-media,
.about-preview-img,
.about-img,
.editorial-story-image {
    overflow: hidden;
    background: var(--canvas-soft);
}

.collection-hero-media img,
.about-preview-img img,
.about-img img,
.editorial-story-image img,
.product-img-wrap img,
.gallery-main img,
.thumb img,
.insta-item img,
.category-img img,
.cart-product img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.category-ribbon {
    padding: 10px 0 12px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.category-card {
    position: relative;
    display: block;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--canvas);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.category-card:hover {
    transform: translateY(-3px);
    border-color: var(--line-strong);
    box-shadow: 0 16px 34px rgba(20, 16, 12, .08);
}

.category-img {
    aspect-ratio: 1.16 / .88;
}

.category-info {
    position: absolute;
    inset: auto 0 0 0;
    padding: 14px 16px 16px;
    background: linear-gradient(to top, rgba(16, 14, 12, .94) 0%, rgba(16, 14, 12, .72) 44%, rgba(16, 14, 12, .22) 100%);
    color: #fff;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .35);
}

.category-info .category-eyebrow {
    color: rgba(255, 244, 230, .82);
}

.category-info h3 {
    font-family: var(--heading);
    font-size: 28px;
    font-weight: 500;
    line-height: .98;
    color: #fff;
}

.category-description {
    margin-top: 6px;
    max-width: 28ch;
    font-size: 12px;
    line-height: 1.45;
    color: rgba(255, 255, 255, .92);
}

.category-link {
    display: inline-block;
    margin-top: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
}

.section {
    padding: 62px 0;
}

.section-header {
    margin-bottom: 30px;
    text-align: center;
}

.section-header.narrow {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    margin-top: 10px;
    font-size: clamp(36px, 5vw, 58px);
    color: var(--accent-deep);
}

.section-header p {
    margin-top: 12px;
}

.collection-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.collection-pill {
    padding: 10px 14px;
    border: 1px solid var(--line);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent-deep);
    background: rgba(255, 249, 240, .72);
}

a.collection-pill:hover,
.collection-pill.active {
    border-color: var(--accent);
    color: #fff;
    background: var(--accent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.product-card {
    display: block;
    background: var(--canvas);
    border: 1px solid var(--line);
    box-shadow: 0 8px 24px rgba(185, 130, 52, .04);
    transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s var(--ease);
}

.product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(185, 130, 52, .34);
    box-shadow: 0 18px 38px rgba(141, 91, 25, .10);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: .82;
    background: var(--canvas-soft);
    overflow: hidden;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.02);
}

.product-img-wrap img {
    transition: transform .45s var(--ease);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 9px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #fff;
}

.badge-nouveau {
    background: var(--accent);
}

.badge-promo {
    background: var(--danger);
}

.badge-bestseller {
    background: var(--success);
}

.product-info {
    padding: 16px 16px 18px;
    text-align: left;
    background: linear-gradient(180deg, #fff 0%, rgba(245, 230, 207, .18) 100%);
}

.product-overline {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.product-name {
    margin-top: 8px;
    font-family: var(--heading);
    font-size: 28px;
    font-weight: 500;
    line-height: .98;
    color: var(--ink);
}

.product-price,
.product-price-detail {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    margin-top: 12px;
}

.product-link {
    display: inline-block;
    margin-top: 14px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.price-old {
    text-decoration: line-through;
    color: var(--ink-muted);
}

.price-current,
.cart-cell-total,
.summary-total {
    color: var(--ink);
    font-weight: 700;
}

.editorial-story {
    padding: 54px 0 88px;
    margin-top: 28px;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    background:
        radial-gradient(circle at top right, rgba(185, 130, 52, .12), transparent 28%),
        linear-gradient(180deg, #fffdfa 0%, var(--canvas-soft) 100%);
}

.editorial-story-grid {
    grid-template-columns: minmax(320px, 1.05fr) minmax(340px, .95fr);
    gap: 42px;
    align-items: stretch;
}

.editorial-story-grid,
.about-preview-inner,
.about-block,
.contact-grid,
.product-detail-grid,
.collection-hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
    align-items: start;
}

.editorial-story-copy,
.about-preview-text,
.about-text,
.collection-hero-copy {
    align-self: center;
}

.editorial-story-image {
    height: 100%;
    min-height: 560px;
    border-radius: 18px;
    box-shadow: 0 22px 44px rgba(31, 23, 14, .10);
}

.editorial-story-copy {
    max-width: none;
    padding: 36px 38px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(141, 91, 25, .12);
    border-radius: 18px;
    box-shadow: 0 18px 38px rgba(34, 32, 29, .05);
}

.editorial-story-copy .section-kicker {
    display: inline-block;
    margin-bottom: 6px;
}

.editorial-story-copy h2,
.about-preview-text h2,
.about-text h2,
.collection-hero-copy h1,
.page-header h1 {
    margin-top: 12px;
    font-size: clamp(40px, 5vw, 64px);
}

.editorial-story-copy h2 {
    max-width: 18ch;
    margin-top: 0;
    font-size: clamp(42px, 4.6vw, 62px);
    line-height: .92;
}

.editorial-story-lead {
    margin-top: 18px;
    font-family: var(--body);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.72;
    letter-spacing: .1px;
    color: var(--ink);
}

.editorial-story-copy p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-soft);
}

.editorial-story-copy p + p,
.about-preview-text p + p,
.about-text p + p {
    margin-top: 14px;
}

.editorial-story-copy .btn,
.about-preview-text .btn {
    margin-top: 28px;
}

.editorial-story-notes {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 24px;
}

.editorial-story-notes span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 12px 16px;
    border: 1px solid rgba(141, 91, 25, .18);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-align: center;
    color: var(--accent-deep);
    background: rgba(255, 255, 255, .75);
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.insta-item {
    position: relative;
    aspect-ratio: .88;
    overflow: hidden;
}

.insta-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .45s var(--ease), opacity .3s var(--ease);
}

.insta-item:hover img {
    transform: scale(1.04);
    opacity: .92;
}

.insta-caption {
    position: absolute;
    inset: auto 0 0 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    background: linear-gradient(to top, rgba(16, 14, 12, .82), rgba(16, 14, 12, .08));
    color: #fff;
}

.insta-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
}

.insta-caption strong {
    font-family: var(--heading);
    font-size: 26px;
    font-weight: 500;
    line-height: .98;
}

.instagram-handle {
    margin-top: 18px;
    text-align: center;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.instagram-handle a {
    color: var(--ink-soft);
}

.page-header,
.collection-hero {
    padding: 20px 0 16px;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(180deg, var(--canvas-soft) 0%, #fff 100%);
}

.collection-hero-copy h1 {
    margin-top: 8px;
    font-size: clamp(30px, 3.8vw, 44px);
}

.breadcrumb-minimal {
    font-size: 11px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.breadcrumb-minimal span {
    margin: 0 8px;
}

.page-desc {
    max-width: 66ch;
    margin-top: 10px;
    font-size: 13px;
    line-height: 1.45;
}

.collection-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 10px;
}

.collection-meta span {
    padding-top: 8px;
    border-top: 1px solid var(--line-strong);
}

.collection-hero-media {
    min-height: 220px;
}

.collection-hero.category-hero-compact {
    padding: 12px 0 10px;
}

.category-hero-compact .collection-hero-grid {
    gap: 14px;
    align-items: stretch;
}

.category-hero-compact .collection-hero-copy h1 {
    margin-top: 4px;
    font-size: clamp(34px, 3.8vw, 46px);
    font-weight: 500;
    line-height: .96;
    letter-spacing: .2px;
}

.category-hero-compact .breadcrumb-minimal,
.category-hero-compact .collection-kicker {
    font-size: 11px;
    letter-spacing: 2.2px;
}

.category-hero-compact .collection-kicker {
    font-family: var(--heading);
    font-size: 18px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: .4px;
    text-transform: none;
    color: var(--accent-deep);
}

.category-hero-compact .page-desc {
    max-width: 58ch;
    margin-top: 12px;
    font-family: var(--body);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.72;
    color: var(--ink-soft);
}

.category-hero-compact .collection-meta {
    gap: 12px;
    margin-top: 14px;
}

.category-hero-compact .collection-meta span {
    padding-top: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.category-hero-compact .collection-pills {
    justify-content: flex-start;
    gap: 8px;
    margin-top: 14px;
    margin-bottom: 0;
}

.category-hero-compact .collection-pill {
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 1.5px;
    background: rgba(185, 130, 52, .08);
}

.category-hero-compact .collection-hero-media {
    height: 380px;
    min-height: 380px;
    max-height: 380px;
    border-radius: 10px;
}

.shop-section,
.about-section,
.contact-section,
.cart-section,
.product-detail {
    padding: 38px 0 70px;
}

.shop-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-bottom: 18px;
    margin-bottom: 26px;
    border-bottom: 1px solid var(--line);
}

.result-count {
    font-size: 11px;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
}

.shop-sort select,
.form-group input,
.form-group select,
.form-group textarea,
.newsletter-form input,
.qty-input {
    border: 1px solid var(--line-strong);
    background: #fff;
    outline: none;
}

.shop-sort select {
    height: 38px;
    padding: 0 12px;
}

.empty-state {
    display: grid;
    place-items: center;
    gap: 18px;
    min-height: 260px;
    text-align: center;
    border: 1px solid var(--line);
    background: var(--canvas-soft);
}

.breadcrumb-bar {
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
    font-size: 11px;
    color: var(--ink-muted);
}

.breadcrumb-bar a:hover {
    color: var(--ink);
}

.breadcrumb-bar i {
    margin: 0 8px;
    font-size: 7px;
}

.gallery-main {
    aspect-ratio: .79;
    overflow: hidden;
    background: var(--canvas-soft);
}

.gallery-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}

.thumb {
    width: 72px;
    height: 72px;
    overflow: hidden;
    border: 1px solid transparent;
    opacity: .55;
}

.thumb.active,
.thumb:hover {
    border-color: var(--ink);
    opacity: 1;
}

.product-info-detail h1 {
    font-size: clamp(36px, 4vw, 56px);
}

.product-price-detail {
    justify-content: flex-start;
}

.product-price-detail .price-current {
    font-size: 24px;
}

.product-description {
    margin-top: 18px;
}

.product-actions {
    display: flex;
    gap: 12px;
    margin-top: 26px;
}

.qty-selector {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--line-strong);
}

.qty-btn,
.qty-input {
    width: 42px;
    height: 42px;
}

.qty-btn {
    background: var(--canvas-soft);
}

.qty-input {
    text-align: center;
    border-left: 1px solid var(--line-strong);
    border-right: 1px solid var(--line-strong);
}

.btn-add-cart {
    flex: 1;
}

.product-details-text,
.product-meta-icons {
    margin-top: 26px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.product-details-text h3,
.value-card h3,
.contact-card h3,
.footer-col h4 {
    color: var(--ink);
}

.product-details-text h3,
.value-card h3 {
    font-family: var(--heading);
    font-size: 22px;
    font-weight: 500;
}

.product-meta-icons {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.product-meta-icons div {
    display: flex;
    gap: 10px;
    font-size: 12px;
}

.product-meta-icons i,
.value-card i,
.contact-card i,
.reassurance-item i {
    color: var(--accent);
}

.about-block {
    margin-bottom: 64px;
    padding: 24px;
    background: linear-gradient(180deg, rgba(255, 253, 250, .98) 0%, rgba(253, 248, 241, .92) 100%);
    border: 1px solid rgba(141, 91, 25, .10);
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(31, 23, 14, .05);
}

.about-header .container {
    max-width: 900px;
}

.about-section {
    padding-top: 52px;
}

.about-header .collection-kicker {
    font-family: var(--heading);
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: .4px;
    text-transform: none;
    color: var(--accent-deep);
}

.about-header .page-desc {
    max-width: 44ch;
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.about-text {
    max-width: 60ch;
}

.about-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.about-text h2 {
    margin-top: 8px;
    font-size: clamp(38px, 4.2vw, 56px);
    line-height: .96;
}

.about-lead {
    margin-top: 18px;
    font-family: var(--heading);
    font-size: 30px;
    font-weight: 500;
    line-height: 1.18;
    color: var(--ink);
}

.about-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--ink-soft);
}

.about-text p + p {
    margin-top: 14px;
}

.about-block.reverse {
    direction: rtl;
}

.about-block.reverse > * {
    direction: ltr;
}

.about-img {
    min-height: 520px;
    border-radius: 16px;
    box-shadow: 0 20px 42px rgba(31, 23, 14, .10);
}

.about-img img {
    object-position: center;
}

.about-values,
.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.value-card,
.contact-card,
.cart-summary {
    padding: 26px;
    background: var(--canvas-soft);
}

.value-card {
    text-align: center;
    border: 1px solid rgba(141, 91, 25, .10);
    border-radius: 18px;
    box-shadow: 0 16px 30px rgba(31, 23, 14, .04);
}

.value-card h3 {
    margin-top: 8px;
    font-family: var(--heading);
    font-size: 28px;
    font-weight: 500;
    line-height: 1;
    color: var(--ink);
}

.value-card p {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.6;
}

.value-card i,
.contact-card i {
    display: block;
    margin-bottom: 12px;
    font-size: 24px;
}

.contact-grid {
    grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
}

.contact-header .container {
    max-width: 900px;
}

.contact-header .collection-kicker {
    font-family: var(--heading);
    font-size: 20px;
    font-style: italic;
    font-weight: 500;
    letter-spacing: .4px;
    text-transform: none;
    color: var(--accent-deep);
}

.contact-header .page-desc {
    max-width: 46ch;
    margin-top: 16px;
    font-size: 17px;
    line-height: 1.7;
}

.contact-panel {
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 253, 250, .98) 0%, rgba(253, 248, 241, .94) 100%);
    border: 1px solid rgba(141, 91, 25, .10);
    border-radius: 20px;
    box-shadow: 0 18px 36px rgba(31, 23, 14, .05);
}

.contact-intro {
    max-width: 60ch;
    margin-bottom: 22px;
}

.contact-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.contact-intro h2 {
    margin-top: 8px;
    font-family: var(--heading);
    font-size: clamp(34px, 4vw, 50px);
    font-weight: 500;
    line-height: .96;
    color: var(--ink);
}

.contact-intro p {
    margin-top: 14px;
    font-size: 16px;
    line-height: 1.75;
    color: var(--ink-soft);
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.form-group {
    margin-bottom: 14px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
}

.form-group input[type="file"] {
    padding: 10px 12px;
    border: 1px dashed rgba(141, 91, 25, .24);
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
}

.field-hint {
    margin-top: 8px;
    font-size: 12px;
    line-height: 1.6;
    color: var(--ink-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.newsletter-form input:focus,
.shop-sort select:focus {
    border-color: var(--ink);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-visual {
    overflow: hidden;
    min-height: 260px;
    border-radius: 18px;
    box-shadow: 0 18px 34px rgba(31, 23, 14, .08);
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-card {
    text-align: center;
    border: 1px solid rgba(141, 91, 25, .10);
    border-radius: 18px;
    box-shadow: 0 14px 28px rgba(31, 23, 14, .04);
}

.contact-card h3,
.footer-col h4 {
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-card a,
.contact-card p {
    font-size: 14px;
    line-height: 1.65;
    color: var(--ink-soft);
}

.status-banner {
    margin-bottom: 20px;
    padding: 14px 16px;
    border-radius: 14px;
    border: 1px solid rgba(141, 91, 25, .14);
    background: rgba(255, 252, 247, .9);
    font-size: 14px;
    line-height: 1.6;
}

.status-success {
    color: var(--success);
    border-color: rgba(81, 118, 69, .24);
    background: rgba(81, 118, 69, .08);
}

.status-error {
    color: var(--danger);
    border-color: rgba(191, 74, 61, .24);
    background: rgba(191, 74, 61, .08);
}

.auth-section,
.dashboard-section,
.account-section {
    padding: 26px 0 78px;
}

.auth-section {
    min-height: calc(100vh - 260px);
    display: flex;
    align-items: center;
}

.auth-shell {
    width: 100%;
    max-width: 520px;
}

.auth-branding {
    display: flex;
    justify-content: center;
    margin-bottom: 26px;
}

.auth-logo {
    align-items: center;
}

.auth-single-panel {
    max-width: none;
    justify-self: stretch;
    width: 100%;
    padding: 30px;
}

.auth-panel-head h1 {
    font-family: var(--heading);
    font-size: clamp(38px, 5vw, 52px);
    font-weight: 500;
    line-height: .96;
}

.auth-panel-head p {
    margin-top: 12px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.auth-tabs {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin: 22px 0 20px;
}

.auth-tab {
    min-height: 46px;
    padding: 0 18px;
    border: 1px solid var(--line-strong);
    border-radius: 14px;
    background: rgba(255, 255, 255, .68);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: var(--ink-soft);
}

.auth-tab.active {
    border-color: var(--accent);
    background: var(--accent);
    color: #fff;
}

.auth-tab-panel {
    display: none;
}

.auth-tab-panel.active {
    display: block;
}

.auth-grid,
.account-grid,
.dashboard-grid {
    display: grid;
    gap: 24px;
}

.auth-grid,
.account-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
}

.auth-panel {
    padding: 28px;
    background: linear-gradient(180deg, rgba(255, 253, 249, .98) 0%, rgba(251, 245, 236, .9) 100%);
    border: 1px solid rgba(141, 91, 25, .10);
    border-radius: 22px;
    box-shadow: 0 18px 38px rgba(31, 23, 14, .05);
}

.auth-copy h2,
.account-card-main h2,
.dashboard-list-head h2,
.ai-panel h3 {
    margin-top: 8px;
    font-family: var(--heading);
    font-size: clamp(32px, 4vw, 46px);
    font-weight: 500;
    line-height: .98;
}

.auth-copy p,
.account-card-main p,
.dashboard-header .page-desc,
.ai-panel p,
.dashboard-list-head p {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ink-soft);
}

.auth-notes {
    margin-top: 24px;
}

.auth-form-panel {
    max-width: 520px;
    justify-self: end;
    width: 100%;
}

.auth-form {
    margin-top: 6px;
}

.auth-submit {
    width: 100%;
    margin-top: 6px;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 24px;
}

.stat-card {
    padding: 20px 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(255, 253, 249, .98) 0%, rgba(245, 230, 207, .72) 100%);
    border: 1px solid rgba(141, 91, 25, .10);
}

.stat-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.stat-card strong {
    display: block;
    margin-top: 12px;
    font-family: var(--heading);
    font-size: 42px;
    font-weight: 500;
    line-height: 1;
}

.dashboard-grid {
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    align-items: start;
}

.dashboard-list-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 20px;
}

.product-table {
    display: grid;
    gap: 14px;
}

.product-row-admin {
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr) auto;
    gap: 16px;
    align-items: center;
    padding: 14px;
    border: 1px solid rgba(141, 91, 25, .10);
    border-radius: 18px;
    background: rgba(255, 255, 255, .74);
}

.product-row-admin.active {
    border-color: rgba(185, 130, 52, .38);
    box-shadow: 0 14px 30px rgba(185, 130, 52, .10);
}

.product-row-media img {
    width: 88px;
    height: 88px;
    object-fit: cover;
    border-radius: 14px;
}

.product-row-copy {
    display: grid;
    gap: 6px;
}

.product-row-copy strong {
    font-size: 16px;
    line-height: 1.3;
}

.product-row-copy span {
    font-size: 13px;
    line-height: 1.5;
    color: var(--ink-soft);
}

.product-row-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: flex-end;
}

.inline-form {
    display: inline-flex;
}

.ai-panel {
    margin-bottom: 24px;
    padding: 22px;
    border-radius: 18px;
    background: linear-gradient(180deg, rgba(245, 230, 207, .54) 0%, rgba(255, 252, 247, .94) 100%);
    border: 1px solid rgba(185, 130, 52, .18);
}

.ai-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.ai-status {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.admin-product-form,
.account-links {
    display: grid;
    gap: 16px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-group-checkbox {
    display: flex;
    align-items: end;
}

.form-group-checkbox label {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 48px;
    margin-bottom: 0;
    font-size: 12px;
    letter-spacing: 0;
    text-transform: none;
}

.form-group-checkbox input {
    width: auto;
}

.admin-form-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.is-disabled {
    pointer-events: none;
    opacity: .45;
}

.empty-hint {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.no-margin {
    margin-bottom: 0;
}

.admin-grid-full {
    grid-column: 1 / -1;
}

.admin-body {
    background: linear-gradient(180deg, #f8f2e8 0%, #fffdf9 240px);
}

.admin-shell {
    display: grid;
    grid-template-columns: 290px minmax(0, 1fr);
    min-height: 100vh;
}

.admin-sidebar {
    position: sticky;
    top: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100vh;
    padding: 24px 20px;
    background: #211a14;
    color: rgba(255, 255, 255, .82);
}

.admin-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 10px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
}

.admin-brand img {
    width: 48px;
}

.admin-brand strong,
.admin-brand span {
    display: block;
}

.admin-brand strong {
    font-family: var(--heading);
    font-size: 28px;
    font-weight: 500;
    line-height: .9;
    color: #fff;
}

.admin-brand span {
    margin-top: 4px;
    font-size: 11px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .58);
}

.admin-nav {
    display: grid;
    gap: 8px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 14px;
    color: rgba(255, 255, 255, .74);
}

.admin-nav a.active,
.admin-nav a:hover {
    background: rgba(255, 255, 255, .10);
    color: #fff;
}

.admin-sidebar-foot {
    margin-top: auto;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .05);
}

.admin-sidebar-foot span {
    font-size: 13px;
    color: #fff;
}

.admin-sidebar-foot a {
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .72);
}

.admin-main {
    padding: 28px;
}

.admin-topbar {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 24px;
}

.admin-topbar h1 {
    font-family: var(--heading);
    font-size: clamp(40px, 5vw, 58px);
    font-weight: 500;
    line-height: .94;
}

.admin-topbar p {
    margin-top: 10px;
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.admin-content {
    display: grid;
    gap: 24px;
}

.admin-card {
    padding: 24px;
    border-radius: 24px;
    background: rgba(255, 255, 255, .82);
    border: 1px solid rgba(141, 91, 25, .10);
    box-shadow: 0 18px 36px rgba(31, 23, 14, .06);
}

.admin-card-wide {
    min-width: 0;
}

.admin-card-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 18px;
}

.admin-card-head h2 {
    font-family: var(--heading);
    font-size: clamp(28px, 3vw, 38px);
    font-weight: 500;
    line-height: .96;
}

.admin-card-head p,
.admin-card-head a {
    font-size: 14px;
    line-height: 1.6;
    color: var(--ink-soft);
}

.admin-dashboard-grid,
.admin-editor-grid,
.ticketing-grid {
    display: grid;
    gap: 24px;
}

.admin-dashboard-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-editor-grid,
.ticketing-grid {
    grid-template-columns: 360px minmax(0, 1fr);
    align-items: start;
}

.admin-editor-grid-categories {
    grid-template-columns: 440px minmax(0, 1fr);
}

.admin-dashboard-stats {
    margin-bottom: 0;
}

.admin-quick-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.activity-list,
.client-list,
.ticket-summary-list {
    display: grid;
    gap: 12px;
}

.activity-item,
.client-item,
.ticket-summary-item {
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border: 1px solid rgba(141, 91, 25, .10);
    border-radius: 16px;
    background: rgba(255, 255, 255, .72);
}

.activity-item strong,
.client-item strong,
.ticket-summary-item strong {
    font-size: 15px;
    line-height: 1.4;
}

.activity-item p,
.client-item span,
.ticket-summary-item p,
.ticket-summary-item span {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-soft);
}

.ticket-summary-item.active {
    border-color: rgba(185, 130, 52, .36);
    box-shadow: 0 16px 28px rgba(185, 130, 52, .10);
}

.ticket-thread-card,
.ticket-sidebar {
    min-height: 520px;
}

.ticket-thread {
    display: grid;
    gap: 12px;
    margin-bottom: 18px;
    max-height: 560px;
    overflow-y: auto;
}

.ticket-message {
    max-width: 86%;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(141, 91, 25, .10);
}

.ticket-message-client,
.ticket-message-guest {
    justify-self: start;
}

.ticket-message-admin {
    justify-self: end;
    background: rgba(245, 230, 207, .72);
}

.ticket-message-meta {
    display: block;
    margin-bottom: 8px;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.ticket-message p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--ink);
}

.ticket-reply-form {
    display: grid;
    gap: 14px;
}

.site-ticketing-grid {
    grid-template-columns: 320px minmax(0, 1fr);
}

.support-widget {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 1400;
    display: grid;
    justify-items: end;
    gap: 12px;
}

.support-widget-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 54px;
    padding: 0 18px;
    border-radius: 999px;
    background: var(--ink);
    color: #fff;
    box-shadow: 0 16px 30px rgba(24, 20, 16, .24);
}

.support-widget-panel {
    width: min(380px, calc(100vw - 24px));
    padding: 18px;
    border-radius: 22px;
    background: rgba(255, 253, 249, .98);
    border: 1px solid rgba(141, 91, 25, .10);
    box-shadow: 0 18px 40px rgba(24, 20, 16, .16);
}

.support-widget-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.support-widget-head strong {
    font-family: var(--heading);
    font-size: 28px;
    font-weight: 500;
}

.support-widget-copy,
.support-widget-status {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-soft);
}

.support-widget-copy {
    margin-bottom: 12px;
}

.support-widget-form {
    display: grid;
    gap: 12px;
}

.media-manager {
    display: grid;
    gap: 18px;
}

.media-dropzone {
    display: grid;
    place-items: center;
    gap: 8px;
    min-height: 180px;
    padding: 24px;
    border: 2px dashed rgba(141, 91, 25, .26);
    border-radius: 22px;
    background: rgba(255, 251, 245, .85);
    text-align: center;
    transition: border-color .22s var(--ease), background-color .22s var(--ease), transform .22s var(--ease);
}

.media-dropzone i {
    font-size: 28px;
    color: var(--accent-deep);
}

.media-dropzone strong {
    font-size: 18px;
    line-height: 1.3;
}

.media-dropzone span,
.media-preview-head span,
.media-preview-meta span {
    font-size: 13px;
    line-height: 1.6;
    color: var(--ink-soft);
}

.media-dropzone.is-dragover {
    border-color: var(--accent);
    background: rgba(245, 230, 207, .64);
    transform: translateY(-1px);
}

.media-preview-board,
.media-library,
.category-preview-card {
    padding: 18px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(141, 91, 25, .10);
}

.media-preview-head {
    display: grid;
    gap: 4px;
    margin-bottom: 12px;
}

.media-preview-head strong,
.category-preview-card h3 {
    font-family: var(--heading);
    font-size: 28px;
    font-weight: 500;
    line-height: .98;
}

.media-preview-grid,
.media-library-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 14px;
}

.media-preview-item,
.media-library-item {
    display: grid;
    gap: 10px;
    align-content: start;
    padding: 10px;
    border-radius: 16px;
    border: 1px solid rgba(141, 91, 25, .10);
    background: rgba(255, 255, 255, .9);
    overflow: hidden;
    box-shadow: 0 12px 24px rgba(58, 37, 18, .05);
}

.media-preview-item {
    cursor: move;
    grid-template-rows: auto auto auto;
}

.media-preview-item img,
.media-library-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    object-position: center top;
    border-radius: 12px;
    background: linear-gradient(180deg, rgba(245, 239, 229, .95), rgba(234, 223, 208, .92));
}

.media-preview-meta {
    display: grid;
    gap: 4px;
    min-width: 0;
}

.media-preview-meta strong,
.media-library-item span,
.category-preview-kicker {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    color: var(--accent-deep);
}

.media-remove-btn {
    min-height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    border: 1px solid rgba(191, 74, 61, .18);
    background: rgba(191, 74, 61, .08);
    color: var(--danger);
    font-size: 12px;
    font-weight: 700;
}

.media-library-item {
    grid-template-rows: auto auto;
    text-align: left;
}

.media-library-item span,
.media-preview-meta span {
    display: block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.media-library-item:hover {
    border-color: rgba(185, 130, 52, .30);
    box-shadow: 0 10px 20px rgba(185, 130, 52, .08);
    transform: translateY(-2px);
}

.category-preview-card {
    display: grid;
    gap: 10px;
}

.category-preview-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--ink-soft);
}

.cart-empty {
    display: grid;
    place-items: center;
    gap: 14px;
    min-height: 280px;
    color: var(--ink-muted);
}

.cart-empty i {
    font-size: 44px;
}

.cart-table-head,
.cart-row {
    display: grid;
    grid-template-columns: 2.4fr .9fr .9fr .9fr 36px;
    gap: 16px;
    align-items: center;
}

.cart-table-head {
    padding: 12px 0;
    border-bottom: 1px solid var(--line-strong);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--ink-muted);
}

.cart-row {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.cart-product {
    display: flex;
    align-items: center;
    gap: 16px;
}

.cart-product img {
    width: 72px;
    height: 72px;
}

.cart-remove {
    color: var(--ink-muted);
}

.cart-remove:hover {
    color: var(--danger);
}

.cart-summary {
    width: min(100%, 360px);
    margin: 30px 0 0 auto;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
}

.summary-total {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--line-strong);
}

.summary-note {
    margin-top: 6px;
    font-size: 11px;
    color: var(--accent-deep);
}

.btn-checkout,
.btn-continue {
    width: 100%;
    margin-top: 14px;
}

.reassurance {
    padding: 28px 0;
    border-top: 1px solid var(--line);
}

.reassurance-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reassurance-item {
    display: flex;
    gap: 12px;
}

.reassurance-item i {
    margin-top: 2px;
    font-size: 18px;
}

.site-footer {
    padding-top: 52px;
    background: var(--canvas-soft);
    border-top: 1px solid var(--line);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr .9fr .9fr 1.2fr;
    gap: 28px;
}

.footer-wordmark {
    font-size: 42px;
}

.footer-brand p {
    margin-top: 18px;
    max-width: 40ch;
}

.footer-col ul li + li {
    margin-top: 10px;
}

.footer-col ul a:hover,
.footer-social a:hover,
.breadcrumb-minimal a:hover,
.section-header a:hover {
    color: var(--ink);
}

.newsletter-desc {
    margin-bottom: 14px;
}

.newsletter-form {
    display: flex;
}

.newsletter-form input {
    flex: 1;
    height: 42px;
    padding: 0 14px;
}

.newsletter-form button {
    min-width: 66px;
    height: 42px;
    background: var(--ink);
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.newsletter-form button:hover {
    background: var(--accent-deep);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1px solid var(--line-strong);
}

.footer-bottom {
    margin-top: 42px;
    padding: 18px 0;
    border-top: 1px solid var(--line);
    font-size: 11px;
    color: var(--ink-muted);
    text-align: center;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.cart-toast {
    position: fixed;
    left: 50%;
    bottom: 26px;
    transform: translateX(-50%) translateY(80px);
    z-index: 9999;
    padding: 12px 22px;
    background: var(--ink);
    color: #fff;
    font-size: 13px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
    transition: transform .3s var(--ease);
}

.cart-toast.show {
    transform: translateX(-50%) translateY(0);
}

.related-section {
    background: var(--canvas-soft);
}

@media (max-width: 1100px) {
    .contact-panel {
        padding: 22px;
    }

    .contact-visual {
        min-height: 220px;
    }

    .about-block {
        padding: 20px;
    }

    .about-img {
        min-height: 420px;
    }

    .editorial-story {
        padding: 42px 0 72px;
    }

    .editorial-story-grid {
        gap: 28px;
    }

    .editorial-story-image {
        min-height: 440px;
    }

    .auth-grid,
    .account-grid,
    .dashboard-grid {
        grid-template-columns: 1fr;
    }

    .auth-form-panel {
        max-width: none;
        justify-self: stretch;
    }

    .dashboard-stats {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .admin-shell,
    .admin-dashboard-grid,
    .admin-editor-grid,
    .admin-editor-grid-categories,
    .ticketing-grid,
    .site-ticketing-grid {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
        height: auto;
    }

    .admin-main {
        padding: 20px;
    }

    .auth-shell {
        max-width: 100%;
    }

    .editorial-story-copy {
        padding: 28px 26px;
    }

    .editorial-story-notes {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-carousel-grid,
    .collection-hero-grid,
    .editorial-story-grid,
    .about-preview-inner,
    .about-block,
    .product-detail-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid,
    .reassurance-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-panel {
        padding: 18px;
    }

    .support-widget {
        right: 14px;
        bottom: 14px;
    }

    .auth-single-panel {
        padding: 22px;
    }

    .dashboard-stats,
    .admin-form-grid,
    .product-row-admin {
        grid-template-columns: 1fr;
    }

    .media-preview-grid,
    .media-library-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .category-row-admin .product-row-actions {
        grid-column: auto;
        grid-template-columns: 1fr;
    }

    .product-row-media img {
        width: 100%;
        max-width: 140px;
        height: 140px;
    }

    .product-row-actions,
    .dashboard-list-head,
    .admin-form-actions,
    .ai-actions {
        flex-direction: column;
        align-items: stretch;

    .category-table {
        gap: 12px;
    }

    .category-row-admin {
        grid-template-columns: 72px minmax(0, 1fr);
        align-items: start;
    }

    .category-row-admin .product-row-media img {
        width: 72px;
        height: 72px;
    }

    .category-row-admin .product-row-copy {
        margin-bottom: 10px;
    }

    .category-row-admin .product-row-actions {
        grid-column: 2;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        justify-content: flex-start;
    }

    .category-row-admin .product-row-actions .btn,
    .category-row-admin .product-row-actions .inline-form,
    .category-row-admin .product-row-actions .inline-form .btn {
        width: 100%;
    }
    }

    .contact-intro h2 {
        font-size: clamp(30px, 8vw, 42px);
    }

    .admin-topbar,
    .admin-card-head,
    .admin-quick-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .contact-visual {
        min-height: 260px;
    }

    .about-section {
        padding-top: 38px;
    }

    .about-block {
        padding: 16px;
        margin-bottom: 34px;
    }

    .about-img {
        min-height: 300px;
    }

    .about-lead {
        font-size: 24px;
    }

    .editorial-story {
        padding: 34px 0 54px;
    }

    .editorial-story-image {
        min-height: 320px;
    }

    .editorial-story-copy {
        padding: 24px 20px;
    }

    .editorial-story-copy h2 {
        max-width: none;
        font-size: clamp(34px, 9vw, 48px);
    }

    .editorial-story-lead {
        font-size: 24px;
    }

    .editorial-story-copy p {
        font-size: 15px;
        line-height: 1.72;
    }

    .editorial-story-notes {
        grid-template-columns: 1fr;
    }

    .container {
        padding: 0 18px;
    }

    .top-bar-left,
    .top-bar-right {
        display: none;
    }

    .top-bar-inner {
        justify-content: center;
    }

    .header-main {
        min-height: 88px;
    }

    .menu-toggle {
        display: block;
        left: 18px;
    }

    .header-icons {
        right: 18px;
    }

    .logo-mark,
    .footer-wordmark {
        font-size: 36px;
    }

    .logo-topline {
        gap: 10px;
    }

    .logo-symbol {
        width: 56px;
    }

    .logo-note {
        letter-spacing: 1.2px;
        font-size: 9px;
        margin-top: 4px;
    }

    .main-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, .99);
        box-shadow: 0 14px 30px rgba(0, 0, 0, .08);
    }

    .main-nav.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }

    .nav-list a {
        padding: 15px 18px;
        border-bottom: 1px solid var(--line);
    }

    .hero-carousel-grid {
        width: 100%;
    }

    .hero-slide h1,
    .collection-hero-copy h1,
    .editorial-story-copy h2,
    .about-preview-text h2,
    .about-text h2,
    .product-info-detail h1,
    .section-header h2,
    .auth-copy h2,
    .account-card-main h2,
    .dashboard-list-head h2,
    .ai-panel h3 {
        font-size: 42px;
    }

    .product-actions,
    .contact-form .form-row,
    .shop-toolbar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-form {
        grid-template-columns: 1fr auto auto;
    }

    .hero-carousel-stage,
    .collection-hero-media {
        min-height: 320px;
    }

    .category-hero-compact .collection-hero-media {
        height: 340px;
        min-height: 340px;
        max-height: 340px;
    }

    .hero-slide-media {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-slide-titles {
        width: min(280px, 42vw);
        padding: 18px 16px 64px;
    }

    .hero-carousel-dots {
        left: 22px;
        bottom: 16px;
    }

    .categories-grid,
    .about-values,
    .products-grid,
    .instagram-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cart-table-head {
        display: none;
    }

    .cart-row {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px;
        background: var(--canvas-soft);
        border: 0;
    }
}

@media (max-width: 540px) {
    .contact-visual {
        min-height: 220px;
    }

    .about-img {
        min-height: 240px;
    }

    .editorial-story-image {
        min-height: 260px;
    }

    .editorial-story-copy {
        padding: 20px 16px;
    }

    .editorial-story-lead {
        font-size: 21px;
    }

    .editorial-story-notes span {
        min-height: 48px;
        padding: 10px 12px;
    }

    .logo-mark,
    .footer-wordmark {
        font-size: 31px;
    }

    .logo-symbol {
        width: 46px;
    }

    .hero-slide h1,
    .collection-hero-copy h1,
    .editorial-story-copy h2,
    .about-preview-text h2,
    .about-text h2,
    .product-info-detail h1,
    .section-header h2 {
        font-size: 34px;
    }

    .hero-slide-media {
        grid-template-columns: 1fr 1fr;
    }

    .category-hero-compact .collection-hero-media {
        height: 300px;
        min-height: 300px;
        max-height: 300px;
    }

    .hero-slide-titles {
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        padding: 0 10px 56px;
        gap: 8px;
        background: linear-gradient(to top, rgba(21, 18, 15, .74) 0%, rgba(21, 18, 15, .18) 58%, rgba(21, 18, 15, 0) 100%);
    }

    .hero-slide-title-card {
        padding: 12px 14px;
    }

    .hero-slide-title-name {
        font-size: 24px;
    }

    .btn,
    .btn-add-cart {
        width: 100%;
    }

    .product-actions {
        flex-direction: column;
    }


    .categories-grid,
    .products-grid,
    .instagram-grid,
    .footer-grid,
    .reassurance-grid {
        grid-template-columns: 1fr;
    }

    .product-name,
    .insta-caption strong {
        font-size: 24px;
    }

    .product-meta-icons {
        grid-template-columns: 1fr;
    }

    .shop-toolbar {
        gap: 12px;
    }
}
