:root {
    --bg: #fcf8f2;
    --bg-soft: #fffdf9;
    --surface: #fffdfa;
    --surface-strong: #ffffff;
    --surface-tint: #f7eddc;
    --ink: #4c4033;
    --muted: #857566;
    --accent: #c8a951;
    --accent-rgb: 200, 169, 81;
    --accent-deep: #9f8744;
    --accent-deep-rgb: 159, 135, 68;
    --accent-soft: #f0e5bd;
    --accent-soft-rgb: 240, 229, 189;
    --accent-clay: #b89d5d;
    --surface-dark: #f5ede0;
    --line: rgba(131, 103, 61, 0.12);
    --shadow: 0 24px 60px rgba(141, 117, 80, 0.1);
    --shadow-soft: 0 18px 36px rgba(141, 117, 80, 0.07);
    --radius-xl: 34px;
    --radius-lg: 24px;
    --radius-md: 18px;
    --container: min(1220px, calc(100vw - 2rem));
    --header-height: 5.4rem;
    --announcement-height: 2.6rem;
    --hero-offset: calc(var(--header-height) + var(--announcement-height));
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--ink);
    background:
        radial-gradient(circle at top left, rgba(var(--accent-soft-rgb), 0.26), transparent 22%),
        linear-gradient(180deg, #fffdf8 0%, var(--bg) 28%, #f4ebde 100%);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(var(--accent-rgb), 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-rgb), 0.03) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.36), transparent 86%);
}

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

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

button,
input {
    font: inherit;
}

.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;
}

.container {
    width: var(--container);
    margin-inline: auto;
}

.section {
    padding: 4.5rem 0;
}

.section--tight {
    padding-top: 3.3rem;
    padding-bottom: 3.8rem;
}

.section--soft {
    background: linear-gradient(180deg, rgba(255, 252, 247, 0.96), rgba(var(--accent-soft-rgb), 0.22));
    border-block: 1px solid rgba(var(--accent-deep-rgb), 0.08);
}

.announcement-bar {
    background: linear-gradient(90deg, #fbf5e7, #f5ebcf 55%, #eadcae);
    color: var(--accent-deep);
    border-bottom: 1px solid rgba(var(--accent-rgb), 0.16);
    font-size: 0.9rem;
}

.announcement-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 0.8rem 0;
    text-align: center;
}

.announcement-bar__inner p {
    margin: 0;
    text-align: center;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(14px);
    background: #2C2628;
    border-bottom: 1px solid rgba(var(--accent-deep-rgb), 0.08);
}

.site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    min-height: 5.4rem;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 0.85rem;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong,
.hero h1,
.section-heading h2,
.heritage-copy h2,
.editorial-feature h2,
.newsletter-band h2 {
    font-family: 'Cormorant Garamond', serif;
}

.brand strong {
    font-size: 1.72rem;
    line-height: 1;
}

.brand small {
    color: var(--muted);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.brand__mark {
    width: 2.85rem;
    height: 2.85rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f7edd1, #dcc57f);
    color: var(--accent-deep);
    font-weight: 800;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.brand__logo {
    height: 3.6rem;
    width: auto;
    display: block;
    object-fit: contain;
}

.desktop-nav,
.site-header__actions {
    display: flex;
    align-items: center;
    gap: 1.35rem;
}

.desktop-nav a,
.text-link {
    position: relative;
    color: var(--muted);
    font-size: 0.95rem;
}

.desktop-nav a::after,
.text-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.2rem;
    width: 100%;
    height: 1px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.text-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.text-link--light {
    color: rgba(255, 250, 244, 0.98);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.92rem 1.35rem;
    border: 1px solid rgba(var(--accent-rgb), 0.24);
    border-radius: 999px;
    background: linear-gradient(135deg, #faf1d8, #dec57d);
    color: var(--accent-deep);
    font-weight: 700;
    box-shadow: 0 12px 28px rgba(var(--accent-deep-rgb), 0.12);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background 0.25s ease;
}

.button:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(var(--accent-deep-rgb), 0.16);
}

.button--small {
    padding: 0.72rem 1.15rem;
    font-size: 0.92rem;
}

.button--soft {
    width: 100%;
    background: #fcf4e3;
    color: var(--accent-deep);
    border-color: rgba(var(--accent-rgb), 0.12);
    box-shadow: none;
}

.button--whatsapp {
    background: linear-gradient(135deg, #25D366, #1DA851);
    color: #ffffff;
    border-color: rgba(0, 0, 0, 0.08);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.12);
}

.button--whatsapp:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 30px rgba(29, 168, 81, 0.16);
}

.button--ghost-light {
    background: rgba(255, 251, 244, 0.82);
    border-color: rgba(255, 255, 255, 0.6);
    color: var(--accent-deep);
    box-shadow: none;
}

.mobile-menu {
    display: none;
    padding-bottom: 1rem;
    width: auto;
}

.mobile-menu summary {
    cursor: pointer;
    list-style: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.5rem 0.6rem;
    border-radius: 6px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    border: none;
    color: var(--muted);
    min-width: 2.4rem;
    min-height: 2.4rem;
}

.mobile-menu__icon {
    width: 1.4rem;
    height: 1rem;
    display: inline-block;
    color: var(--muted);
    flex-shrink: 0;
}

.mobile-menu summary:hover .mobile-menu__icon,
.mobile-menu summary:focus .mobile-menu__icon {
    color: var(--accent);
}

.mobile-menu__icon path {
    stroke: currentColor;
    stroke-width: 2;
    stroke-linecap: round;
    fill: none;
}

.mobile-menu summary::-webkit-details-marker {
    display: none;
}

.mobile-menu summary:focus {
    outline: 2px solid rgba(var(--accent-rgb), 0.14);
    outline-offset: 2px;
}

.mobile-menu__panel {
    margin-top: 0.8rem;
    display: none;
    gap: 0.8rem;
    padding: 1rem;
    background: rgba(255, 252, 247, 0.94);
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
}

.mobile-menu {
    position: relative;
}

.mobile-menu[open] .mobile-menu__panel {
    display: grid;
    position: absolute;
    top: calc(100% + 0.4rem);
    right: 0;
    width: min(16rem, 86vw);
    z-index: 50;
    box-shadow: 0 12px 30px rgba(79, 44, 19, 0.12);
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.eyebrow::before {
    content: '';
    width: 0.72rem;
    height: 0.72rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--accent-soft), var(--accent));
}

.eyebrow--light {
    color: #fffdf6;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.24);
}

.eyebrow--light::before {
    background: linear-gradient(135deg, #efd69f, #fff5e4);
}

.hero--slider {
    padding: 0 0 4.5rem;
}

.hero-slider {
    position: relative;
    min-height: calc(100svh - var(--hero-offset));
    overflow: hidden;
    background: #26180f;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.65s ease,
        visibility 0.65s ease;
}

.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.hero-slide__image,
.hero-slide__overlay {
    position: absolute;
    inset: 0;
}

.hero-slide__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide__overlay {
    background:
        linear-gradient(100deg, rgba(41, 24, 12, 0.86) 0%, rgba(41, 24, 12, 0.68) 42%, rgba(41, 24, 12, 0.3) 72%, rgba(41, 24, 12, 0.54) 100%),
        linear-gradient(180deg, rgba(15, 10, 7, 0.14), rgba(15, 10, 7, 0.56));
}

.hero-slide__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: calc(100svh - var(--hero-offset));
    padding-top: clamp(4.75rem, 10vh, 7.25rem);
    padding-bottom: clamp(5rem, 11vh, 7rem);
}

.hero-slide__content {
    display: grid;
    align-content: start;
    gap: 1rem;
    max-width: min(44rem, 100%);
    padding: clamp(1.25rem, 2vw, 2rem);
    border: 1px solid rgba(255, 245, 235, 0.12);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(34, 20, 11, 0.56), rgba(34, 20, 11, 0.22));
    backdrop-filter: blur(10px);
    color: #fff7f0;
    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.32);
}

.hero-slide__title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.4rem, 4.6vw, 4.2rem);
    letter-spacing: -0.04em;
    line-height: 0.96;
    color: #fffdf8;
}

.hero-slide__footer {
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    max-width: min(44rem, 100%);
    margin-top: auto;
    padding-top: 1.1rem;
}

.hero-slider__stats {
    margin-top: 1.25rem;
}

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

.hero-slider__stats .stat-card {
    border: 1px solid rgba(var(--accent-deep-rgb), 0.08);
    background: rgba(255, 252, 247, 0.84);
    backdrop-filter: blur(20px);
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.48fr) minmax(320px, 0.82fr);
    gap: 1rem;
    align-items: stretch;
}

.hero-card,
.promo-card,
.stat-card,
.collection-card,
.product-card,
.heritage-copy,
.service-card,
.editorial-feature,
.editorial-card,
.quote-card,
.newsletter-band {
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
}

.hero-card,
.promo-card,
.collection-card,
.heritage-tile,
.editorial-feature,
.footer-gallery__item {
    overflow: hidden;
}

.hero-card,
.promo-card,
.collection-card,
.heritage-tile,
.editorial-feature {
    position: relative;
}

.hero-card--primary {
    min-height: 38rem;
    border-radius: var(--radius-xl);
}

.hero-card__image,
.promo-card__image,
.collection-card__image,
.editorial-feature__image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card__overlay,
.promo-card__overlay,
.collection-card__overlay,
.editorial-feature__overlay {
    position: absolute;
    inset: 0;
}

.hero-card__overlay {
    background:
        linear-gradient(90deg, rgba(110, 93, 58, 0.62), rgba(110, 93, 58, 0.34) 50%, rgba(110, 93, 58, 0.12)),
        linear-gradient(180deg, rgba(var(--accent-soft-rgb), 0.16), transparent 60%);
}

.promo-card__overlay {
    background: linear-gradient(120deg, rgba(114, 97, 62, 0.54), rgba(114, 97, 62, 0.18));
}

.collection-card__overlay {
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.02), rgba(104, 87, 54, 0.68)),
        linear-gradient(120deg, rgba(var(--accent-soft-rgb), 0.18), transparent 55%);
}

.editorial-feature__overlay {
    background:
        linear-gradient(180deg, rgba(var(--accent-deep-rgb), 0.12), rgba(103, 86, 52, 0.7)),
        linear-gradient(90deg, rgba(116, 98, 63, 0.42), transparent 55%);
}

.hero-card__content,
.promo-card__content,
.collection-card__body,
.editorial-feature__content {
    position: relative;
    z-index: 1;
}

.hero-card__content {
    display: grid;
    align-content: start;
    gap: 1rem;
    max-width: 38rem;
    padding: 2rem;
    color: #fff7f0;
}

.hero-card__tag,
.product-card__badge,
.service-card__label {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    justify-content: center;
    padding: 0.45rem 0.75rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero-card__tag {
    background: rgba(255, 241, 232, 0.22);
    border: 1px solid rgba(255, 241, 232, 0.32);
    color: #fffdf6;
}

.hero h1,
.section-heading h2,
.heritage-copy h2,
.editorial-feature h2,
.newsletter-band h2 {
    margin: 0;
    letter-spacing: -0.04em;
    line-height: 0.96;
}

.hero h1 {
    font-size: clamp(2.4rem, 4.6vw, 4.2rem);
    color: #fffdf8;
    text-shadow: 0 4px 22px rgba(0, 0, 0, 0.34);
}

.hero-card__lead,
.hero-card__footer small,
.section-heading p,
.product-card__detail,
.heritage-copy p,
.service-card p,
.editorial-feature p,
.editorial-card p,
.quote-card p,
.newsletter-band p,
.site-footer__copy {
    color: var(--muted);
    line-height: 1.75;
}

.hero-card__lead {
    color: rgba(255, 248, 242, 0.96);
    margin: 0;
    max-width: 34rem;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.28);
}

.hero-card__footer {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    z-index: 1;
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.4rem;
    border-top: 1px solid rgba(255, 235, 221, 0.16);
    color: #fffdf8;
    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.3);
}

.hero-card__footer small,
.hero-card__footer strong {
    display: block;
}

.hero-card__footer small {
    margin-bottom: 0.3rem;
    color: rgba(255, 248, 242, 0.84);
}

.hero-stack {
    display: grid;
    gap: 1rem;
    grid-template-rows: repeat(2, minmax(0, 1fr)) auto;
}

.promo-card {
    min-height: 11.5rem;
    border-radius: var(--radius-lg);
}

.promo-card__content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: end;
    gap: 0.7rem;
    padding: 1.5rem;
    color: #fff7f0;
}

.promo-card h2,
.collection-card h3,
.product-card h3,
.service-card h3,
.editorial-card h3,
.site-footer h3 {
    margin: 0;
    font-size: 1.08rem;
    line-height: 1.35;
}

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

.stat-card {
    padding: 1.2rem;
    border-radius: var(--radius-md);
    background: rgba(255, 252, 247, 0.92);
    box-shadow: var(--shadow-soft);
}

.stat-card strong {
    display: block;
    font-size: 1.32rem;
}

.stat-card span {
    display: block;
    margin-top: 0.35rem;
    color: var(--muted);
    font-size: 0.9rem;
    line-height: 1.55;
}

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

.section-heading--compact {
    margin-bottom: 1.4rem;
}

.section-heading h2 {
    margin-top: 0.7rem;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.section-heading p {
    max-width: 31rem;
    margin: 0;
}

.section-heading__side {
    display: grid;
    justify-items: start;
    gap: 0.7rem;
}

.collection-grid,
.product-grid,
.service-grid,
.footer-gallery,
.site-footer__grid {
    display: grid;
    gap: 1rem;
}

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

.collection-card {
    min-height: 19rem;
    border-radius: var(--radius-lg);
}

.collection-card__body {
    position: absolute;
    left: 1.35rem;
    right: 1.35rem;
    bottom: 1.35rem;
    display: grid;
    gap: 0.6rem;
    color: #fff6ec;
}

.collection-card p {
    margin: 0;
    color: rgba(255, 242, 232, 0.78);
    line-height: 1.7;
}

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

.occasion-card {
    display: block;
    text-align: center;
}

.occasion-card__thumb {
    width: min(100%, 8.8rem);
    margin: 0 auto 0.95rem;
    aspect-ratio: 1;
    padding: 0.35rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(var(--accent-rgb), 0.12), rgba(var(--accent-soft-rgb), 0.2));
    box-shadow: var(--shadow-soft);
}

.occasion-card__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.78);
}

.occasion-card h3 {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.5;
}

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

.product-card {
    display: flex;
    flex-direction: column;
    background: var(--surface-strong);
    border-radius: var(--radius-lg);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 54px rgba(79, 44, 19, 0.16);
}

.product-card__media {
    display: block;
    position: relative;
    aspect-ratio: 0.96;
    background: linear-gradient(180deg, #f8f1e7, #ecdfca);
}

.product-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__badge {
    position: absolute;
    top: 0.9rem;
    left: 0.9rem;
    z-index: 1;
    background: rgba(var(--accent-deep-rgb), 0.92);
    color: #fff5ea;
}

.product-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.1rem;
}

.product-card__category {
    margin: 0;
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.product-card h3 {
    margin-top: 0.5rem;
}

.product-card__detail {
    margin: 0.55rem 0 1rem;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: auto;
    margin-bottom: 1rem;
}

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

.price-row span {
    color: var(--muted);
    text-decoration: line-through;
}

.heritage-layout,
.editorial-layout {
    display: grid;
    gap: 1rem;
    align-items: stretch;
}

.heritage-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.heritage-gallery {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 12rem;
    gap: 1rem;
}

.heritage-tile {
    position: relative;
    border-radius: var(--radius-lg);
    min-height: 12rem;
}

.heritage-tile--large {
    grid-row: span 2;
}

.heritage-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.heritage-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 11, 9, 0.02), rgba(20, 11, 9, 0.8));
}

.heritage-tile span {
    position: absolute;
    left: 1rem;
    right: 1rem;
    bottom: 1rem;
    z-index: 1;
    color: #fff7ef;
    font-weight: 700;
    line-height: 1.45;
}

.heritage-copy,
.quote-card,
.newsletter-band {
    background: rgba(255, 252, 247, 0.94);
}

.heritage-copy {
    padding: 2rem;
    border-radius: var(--radius-xl);
}

.heritage-copy h2 {
    margin: 0.85rem 0 1rem;
    font-size: clamp(2.4rem, 4vw, 3.9rem);
}

.heritage-copy p {
    margin: 0 0 1rem;
}

.heritage-points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1.4rem;
}

.heritage-points span {
    padding: 0.7rem 0.95rem;
    border-radius: 999px;
    background: var(--surface-tint);
    border: 1px solid rgba(var(--accent-rgb), 0.12);
    color: #54362b;
}

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

.service-card {
    padding: 1.55rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 252, 247, 0.94);
}

.service-card__label {
    background: rgba(var(--accent-rgb), 0.1);
    color: var(--accent);
    border: 1px solid rgba(var(--accent-rgb), 0.14);
    margin-bottom: 1rem;
}

.service-card p {
    margin-bottom: 0;
}

.editorial-layout {
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
}

.editorial-feature {
    min-height: 33rem;
    border-radius: var(--radius-xl);
}

.editorial-feature__content {
    position: absolute;
    left: 2rem;
    right: 2rem;
    bottom: 2rem;
    max-width: 33rem;
    color: #fff7f0;
}

.editorial-feature h2 {
    margin-top: 0.9rem;
    font-size: clamp(2.5rem, 4vw, 4.1rem);
}

.editorial-feature p {
    margin: 0.9rem 0 0;
    color: rgba(255, 243, 232, 0.82);
}

.editorial-column {
    display: grid;
    gap: 1rem;
}

.editorial-card {
    display: grid;
    grid-template-columns: 12rem minmax(0, 1fr);
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(255, 252, 247, 0.94);
}

.editorial-card img {
    width: 100%;
    height: 100%;
    min-height: 13rem;
    object-fit: cover;
}

.editorial-card__body {
    padding: 1.25rem;
}

.editorial-card p,
.quote-card p {
    margin-bottom: 0;
}

.quote-card {
    padding: 1.6rem;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(255, 252, 247, 0.96), rgba(var(--accent-soft-rgb), 0.52));
    color: var(--ink);
}

.quote-card p {
    margin-top: 0;
    color: var(--muted);
}

.quote-card strong {
    display: block;
    margin-top: 1rem;
}

.newsletter-band {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    padding: 2rem;
    border-radius: var(--radius-xl);
    background:
        radial-gradient(circle at 92% 8%, rgba(var(--accent-soft-rgb), 0.22), transparent 16%),
        linear-gradient(145deg, rgba(255, 252, 247, 0.96), rgba(239, 225, 201, 0.82));
}

.newsletter-band__copy {
    max-width: 37rem;
}

.newsletter-band h2 {
    margin-top: 0.8rem;
    font-size: clamp(2.4rem, 4vw, 3.8rem);
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    width: min(100%, 32rem);
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(91, 45, 20, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    color: var(--ink);
}

.mega-footer {
    position: relative;
    overflow: hidden;
    margin-top: 2rem;
    padding: 4.5rem 0 7.5rem;
    background: linear-gradient(180deg, #fbf6ed, #f2e6d3);
    color: var(--ink);
}

.mega-footer__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.1fr 1.1fr 1fr 1.1fr;
    gap: 2.75rem;
    align-items: start;
}

.mega-footer__column {
    position: relative;
    min-width: 0;
}

.mega-footer__brand {
    display: inline-flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.mega-footer__brand-mark {
    width: 3rem;
    height: 3rem;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #f8efd4, #dcc57f);
    color: var(--accent-deep);
    font-weight: 800;
}

.mega-footer__brand strong,
.mega-footer__brand small {
    display: block;
}

.mega-footer__brand strong {
    color: var(--ink);
    font-size: 1.35rem;
}

.mega-footer__brand small {
    color: rgba(76, 64, 51, 0.62);
    font-size: 0.78rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.mega-footer__intro {
    max-width: 18rem;
    margin: 0 0 1.6rem;
    color: rgba(76, 64, 51, 0.72);
    line-height: 1.8;
}

.mega-footer__column h3 {
    margin: 0 0 1.45rem;
    color: var(--accent);
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.mega-footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.mega-footer__links a,
.mega-footer__links li {
    color: rgba(76, 64, 51, 0.82);
    font-size: 1rem;
    line-height: 1.5;
}

.mega-footer__links a:hover {
    color: var(--accent-deep);
}

.mega-footer__column--connect {
    display: grid;
    gap: 1.15rem;
    align-content: start;
}

.mega-footer__contact-card {
    padding: 1.25rem 1.1rem;
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.7);
}

.mega-footer__flag,
.mega-footer__contact-card p,
.mega-footer__contact-card a {
    display: block;
}

.mega-footer__flag {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.75rem;
    color: var(--ink);
    font-size: 1.2rem;
    font-weight: 700;
}

.mega-footer__flag-mark {
    width: 1.6rem;
    height: 1rem;
    border-radius: 3px;
    background: linear-gradient(180deg, #ff9933 0 33%, #ffffff 33% 66%, #138808 66% 100%);
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
}

.mega-footer__contact-card p,
.mega-footer__contact-card a {
    margin: 0;
    color: rgba(76, 64, 51, 0.78);
    line-height: 1.7;
}

.mega-footer__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 3.2rem;
    padding: 0 1.35rem;
    border: 1px solid rgba(var(--accent-rgb), 0.26);
    border-radius: 999px;
    background: linear-gradient(135deg, #faf1d8, #dec57d);
    color: var(--accent-deep);
    font-weight: 700;
    transition:
        background 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.mega-footer__cta:hover {
    background: linear-gradient(135deg, #f5e9c6, #d6bd72);
    transform: translateY(-1px);
}

.mega-footer__socials {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.mega-footer__socials a {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    border: 1px solid rgba(var(--accent-rgb), 0.18);
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    transition:
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.mega-footer__socials a:hover {
    border-color: rgba(var(--accent-rgb), 0.42);
    color: var(--accent-deep);
    transform: translateY(-1px);
}

.mega-footer__bottom {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 3rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(var(--accent-deep-rgb), 0.08);
    color: rgba(76, 64, 51, 0.66);
    font-size: 0.95rem;
}

.mega-footer__legal {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.mega-footer__legal a {
    color: rgba(76, 64, 51, 0.74);
}

.mega-footer__watermark {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1.7rem;
    text-align: center;
    font-size: clamp(6rem, 21vw, 18rem);
    font-weight: 800;
    letter-spacing: -0.08em;
    line-height: 0.84;
    color: rgba(var(--accent-rgb), 0.08);
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
}

.site-footer {
    padding: 1rem 0 2rem;
    background: linear-gradient(180deg, #faf4e9, #f3e7d5);
    color: var(--ink);
}

.footer-gallery {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding-bottom: 2rem;
}

.footer-gallery__item {
    margin: 0;
    aspect-ratio: 1.08;
    border-radius: 22px;
}

.footer-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-footer__grid {
    grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
    align-items: start;
    padding: 2rem 0;
    border-top: 1px solid rgba(var(--accent-deep-rgb), 0.08);
}

.brand--footer strong,
.site-footer h3 {
    color: var(--accent-deep);
}

.brand--footer small,
.site-footer__copy,
.footer-links a,
.site-footer__bottom {
    color: rgba(76, 64, 51, 0.72);
}

.site-footer__copy {
    max-width: 24rem;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.8rem;
}

.site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    border-top: 1px solid rgba(var(--accent-deep-rgb), 0.08);
    font-size: 0.92rem;
}

.announcement-bar--catalog {
    background: linear-gradient(90deg, #fbf5e7, #f5ebcf 55%, #eadcae);
    color: var(--accent-deep);
}

.catalog-page {
    background:
        radial-gradient(circle at top left, rgba(var(--accent-soft-rgb), 0.12), transparent 18%),
        linear-gradient(180deg, #f9f6f0 0%, #f1ebdf 100%);
}

.catalog-header {
    background: rgba(255, 252, 246, 0.96);
    border-bottom: 1px solid rgba(var(--accent-deep-rgb), 0.08);
}

.catalog-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 5rem;
}

.catalog-header__copy {
    display: grid;
    gap: 0.45rem;
    min-width: 12rem;
}

.catalog-header__copy .eyebrow {
    margin: 0;
}

.catalog-header__copy p {
    margin: 0;
    color: #3d291b;
    font-size: 1.05rem;
    font-weight: 700;
}

.catalog-nav,
.catalog-actions,
.catalog-toolbar,
.catalog-toolbar__controls,
.catalog-price-filter,
.catalog-footer__form,
.catalog-footer__bottom,
.catalog-socials {
    display: flex;
    align-items: center;
}

.catalog-nav {
    flex: 1;
    flex-wrap: wrap;
    gap: 1.25rem;
}

.catalog-nav a {
    color: #4b3a2c;
    font-size: 0.92rem;
    font-weight: 500;
}

.catalog-nav a.is-active {
    color: var(--accent);
    font-weight: 700;
}

.catalog-actions {
    gap: 1rem;
    color: var(--muted);
    font-size: 0.86rem;
}

.catalog-breadcrumb {
    background: var(--accent-soft);
    color: #513a24;
    font-size: 0.86rem;
    font-weight: 600;
}

.catalog-breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 0;
}

.catalog-layout {
    display: grid;
    grid-template-columns: 17rem minmax(0, 1fr);
    gap: 2rem;
    align-items: start;
}

.catalog-sidebar {
    display: grid;
    gap: 1.35rem;
    align-self: start;
}

@media (min-width: 1181px) {
    .catalog-sidebar {
        position: sticky;
        top: 7rem;
    }
}

.catalog-filter,
.catalog-description,
.catalog-product,
.catalog-footer__form input {
    background: rgba(255, 255, 255, 0.92);
}

.catalog-filter,
.catalog-description {
    padding: 1.35rem;
    border: 1px solid rgba(69, 43, 22, 0.08);
    border-radius: 22px;
    box-shadow: 0 14px 34px rgba(78, 46, 21, 0.06);
}

.catalog-filter:first-child {
    padding-top: 1.35rem;
}

.catalog-filter h2,
.catalog-footer h3 {
    margin: 0 0 1rem;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #2a1a12;
}

.catalog-filter__list,
.catalog-footer__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 0.75rem;
}

.catalog-filter__list a {
    display: inline-flex;
    align-items: center;
    min-height: 2rem;
    color: #4b3a2c;
    font-size: 0.98rem;
}

.catalog-filter__list a.is-active {
    color: var(--accent);
    font-weight: 700;
}

.catalog-price-filter {
    display: grid;
    grid-template-columns: 6.5rem minmax(0, 1fr);
    gap: 0.65rem;
}

.catalog-currency,
.catalog-price-filter input,
.catalog-sort,
.catalog-view-switch button {
    height: 2.55rem;
    border: 1px solid rgba(94, 58, 32, 0.16);
    border-radius: 10px;
    background: #fff;
}

.catalog-currency {
    display: inline-flex;
    align-items: center;
    min-width: 4.4rem;
    justify-content: center;
    padding: 0 0.9rem;
    font-size: 0.88rem;
    font-weight: 700;
    color: #3e2a1b;
}

.catalog-price-filter input {
    width: 100%;
    padding: 0 0.85rem;
    color: #3e2a1b;
}

.catalog-check {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    color: #433225;
    font-size: 0.92rem;
}

.catalog-check input {
    accent-color: var(--accent);
}

.catalog-check + .catalog-check {
    margin-top: 0.7rem;
}

.catalog-check--muted {
    color: rgba(67, 50, 37, 0.6);
}

.catalog-toolbar {
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: 1.6rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(80, 48, 25, 0.08);
}

.catalog-toolbar h1 {
    margin: 0;
    font-size: clamp(2.15rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.catalog-toolbar__controls {
    gap: 0.8rem;
}

.catalog-sort {
    min-width: 11rem;
    padding: 0 0.85rem;
    color: #3d291b;
}

.catalog-view-switch {
    gap: 0.35rem;
}

.catalog-view-switch button {
    padding: 0 0.95rem;
    color: #5f4737;
    cursor: pointer;
}

.catalog-view-switch button.is-active {
    background: var(--accent-soft);
    border-color: var(--accent-soft);
    color: #4c321b;
    font-weight: 700;
}

.catalog-grid,
.catalog-footer__grid {
    display: grid;
    gap: 1.4rem;
}

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

.catalog-content {
    min-width: 0;
}

.catalog-product {
    border: 1px solid rgba(80, 48, 25, 0.1);
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(78, 46, 21, 0.05);
}

.catalog-product__media {
    position: relative;
    display: block;
    aspect-ratio: 0.84;
    background: #f8f4ee;
}

.catalog-product__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catalog-product__badge {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    z-index: 1;
    padding: 0.28rem 0.5rem;
    background: var(--accent-clay);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.catalog-product__body {
    padding: 0.95rem 0.65rem 1rem;
    text-align: center;
}

.catalog-product__body h2 {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1.45;
    text-transform: uppercase;
}

.catalog-product__prices {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    margin-top: 0.4rem;
    color: var(--accent-clay);
    font-size: 0.86rem;
}

.catalog-product__prices span {
    color: #655244;
    text-decoration: line-through;
}

.catalog-product__body p {
    margin: 0.45rem 0 0.85rem;
    color: #736050;
    font-size: 0.83rem;
    line-height: 1.6;
}

.catalog-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 7.4rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: var(--accent-soft);
    color: #533821;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.catalog-description {
    margin-top: 1.6rem;
    padding-top: 1.2rem;
}

.catalog-description p {
    margin: 0;
    max-width: 52rem;
    color: #5f4d40;
    font-size: 0.93rem;
    line-height: 1.9;
}

.catalog-footer {
    margin-top: 2rem;
    padding: 2.6rem 0 1.2rem;
    background: #ede4d6;
    color: #3f3127;
    border-top: 1px solid rgba(77, 50, 32, 0.08);
}

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

.catalog-footer__list li {
    color: #5c4c40;
    font-size: 0.9rem;
    line-height: 1.7;
}

.catalog-footer__list strong {
    color: #2f2019;
}

.catalog-footer__note {
    margin: 0 0 0.9rem;
    color: #655246;
    font-size: 0.9rem;
    line-height: 1.7;
}

.catalog-footer__form {
    gap: 0.55rem;
}

.catalog-footer__form input {
    flex: 1;
    min-width: 0;
    height: 2.6rem;
    padding: 0 0.85rem;
    border: 1px solid rgba(94, 58, 32, 0.14);
    border-radius: 0;
}

.catalog-footer__form button {
    height: 2.6rem;
    padding: 0 1rem;
    border: 0;
    border-radius: 0;
    background: var(--accent-soft);
    color: #4c321b;
    font-weight: 800;
    text-transform: uppercase;
    cursor: pointer;
}

.catalog-socials {
    gap: 0.6rem;
    margin-top: 1rem;
}

.catalog-socials a {
    display: grid;
    place-items: center;
    width: 2rem;
    height: 2rem;
    border: 1px solid rgba(89, 61, 41, 0.16);
    border-radius: 50%;
    color: #5f4737;
    font-size: 0.76rem;
    font-weight: 700;
}

.catalog-footer__bottom {
    justify-content: space-between;
    gap: 1rem;
    padding-top: 1.2rem;
    margin-top: 1.4rem;
    border-top: 1px solid rgba(77, 50, 32, 0.08);
    color: #776557;
    font-size: 0.88rem;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 1180px) {
    .hero-layout,
    .heritage-layout,
    .editorial-layout,
    .site-footer__grid,
    .catalog-layout {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

    .catalog-sidebar .catalog-filter:first-child {
        grid-column: 1 / -1;
    }

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

    .mega-footer__column--brand {
        grid-column: 1 / -1;
        max-width: 24rem;
    }
}

@media (max-width: 960px) {
    .desktop-nav,
    .site-header__actions {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .announcement-bar__inner,
    .section-heading,
    .newsletter-band,
    .site-footer__bottom {
        flex-direction: column;
        align-items: center;
    }

    .hero-slide__inner {
        padding-top: 4rem;
        padding-bottom: 6.5rem;
    }

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

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

    #occasions .section-heading {
        align-items: flex-start;
        text-align: left;
    }

    #occasions .section-heading h2 {
        max-width: 18ch;
        font-size: clamp(1.9rem, 5vw, 2.6rem);
    }

    .catalog-header__inner,
    .catalog-toolbar,
    .catalog-toolbar__controls,
    .catalog-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .catalog-nav {
        width: 100%;
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 0.35rem;
        scrollbar-width: thin;
    }

    .catalog-nav a {
        flex: 0 0 auto;
    }

    .catalog-actions {
        display: none;
    }

    .mega-footer__bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .mega-footer__legal {
        flex-wrap: wrap;
    }
}

@media (max-width: 760px) {
    .section {
        padding: 3.7rem 0;
    }

    .hero--slider {
        padding: 0 0 3rem;
    }

    .hero-slide__inner {
        padding-top: 3.6rem;
        padding-bottom: 6rem;
    }

    .hero-card__content,
    .hero-card__footer,
    .newsletter-band,
    .heritage-copy,
    .editorial-feature__content {
        padding-left: 1.4rem;
        padding-right: 1.4rem;
    }

    .hero-card--primary {
        min-height: 34rem;
    }

    .hero h1,
    .hero-slide__title {
        font-size: 3.6rem;
    }

    .collection-grid,
    .catalogue-section .product-grid,
    .service-grid,
    .footer-gallery,
    .catalog-grid,
    .catalog-footer__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .heritage-gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 13rem;
    }

    .heritage-tile--large {
        grid-row: span 1;
    }

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

    .newsletter-form {
        width: 100%;
        flex-direction: column;
    }

    .catalog-footer__form {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
    }

    .catalog-toolbar {
        align-items: stretch;
    }

    .catalog-toolbar__controls {
        width: 100%;
    }

    .catalog-sort {
        width: 100%;
    }

    .catalog-view-switch {
        width: 100%;
    }

    .catalog-view-switch button {
        flex: 1;
    }

    .mega-footer {
        padding-bottom: 4rem;
    }

    .mega-footer__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mega-footer__column--brand {
        max-width: none;
    }

    .mega-footer__watermark {
        font-size: clamp(4rem, 18vw, 8rem);
        bottom: -0.75rem;
    }

    .mega-footer__cta {
        width: 100%;
    }
}

@media (max-width: 560px) {
    :root {
        --header-height: 4.8rem;
        --announcement-height: 3.35rem;
    }

    .site-header__inner {
        min-height: 4.8rem;
    }

    .brand__logo {
        height: 5rem;
    }

    .hero--slider {
        padding-bottom: 2.6rem;
    }

    .hero-slide__inner {
        padding-top: 3rem;
        padding-bottom: 5rem;
    }

    .hero-slider__stats .stat-grid {
        grid-template-columns: 1fr;
    }

    .hero-stack,
    .stat-grid {
        grid-template-columns: 1fr;
    }

    .hero-stack {
        grid-template-rows: auto;
    }

    .collection-grid,
    .catalogue-section .product-grid,
    .footer-gallery,
    .catalog-grid,
    .catalog-footer__grid {
        grid-template-columns: 1fr;
    }

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

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

    .section-heading h2,
    .heritage-copy h2,
    .editorial-feature h2,
    .newsletter-band h2 {
        font-size: 2.9rem;
    }

    .hero h1,
    .hero-slide__title {
        font-size: clamp(2.35rem, 12vw, 3.25rem);
    }

    .occasion-card {
        padding: 0.95rem 0.65rem 1rem;
        border: 1px solid rgba(var(--accent-rgb), 0.12);
        border-radius: var(--radius-md);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(250, 241, 232, 0.92));
        box-shadow: 0 12px 26px rgba(79, 44, 19, 0.08);
    }

    .occasion-card__thumb {
        width: min(100%, 6.4rem);
        margin-bottom: 0.55rem;
    }

    .occasion-card h3 {
        max-width: 10ch;
        margin-inline: auto;
        font-size: 0.92rem;
        line-height: 1.35;
    }

    .catalog-sidebar,
    .catalog-grid,
    .catalog-footer__grid {
        grid-template-columns: 1fr;
    }

    .catalog-filter {
        padding: 1.15rem;
        border-radius: 18px;
    }

    .catalog-toolbar h1 {
        font-size: 1.9rem;
    }

    .catalog-product__body {
        padding-inline: 0.8rem;
    }

    .mega-footer__legal {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.6rem;
    }

    .mega-footer__intro {
        max-width: none;
    }

    .mega-footer__watermark {
        display: none;
    }
}

/* Preloader Styles - Brass/Handcrafted Theme */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 50%, #000000 100%);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', serif;
    overflow: hidden;
}

.preloader-bg {
    position: absolute;
    top: 0;

    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.sacred-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 215, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 215, 0, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%);
    animation: patternFloat 20s ease-in-out infinite;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.9), rgba(255, 215, 0, 0.3), transparent);
    border-radius: 50%;
    filter: blur(1px);
    box-shadow: 0 0 6px rgba(255, 215, 0, 0.6);
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation: particleFloat1 8s ease-in-out infinite;
}

.particle-2 {
    top: 30%;
    right: 15%;
    animation: particleFloat2 10s ease-in-out infinite;
}

.particle-3 {
    top: 60%;
    left: 20%;
    animation: particleFloat3 12s ease-in-out infinite;
}

.particle-4 {
    top: 70%;
    right: 25%;
    animation: particleFloat1 9s ease-in-out infinite;
}

.particle-5 {
    top: 40%;
    left: 50%;
    animation: particleFloat2 11s ease-in-out infinite;
}

.particle-6 {
    top: 80%;
    right: 10%;
    animation: particleFloat3 7s ease-in-out infinite;
}

.preloader-content {
    text-align: center;
    max-width: 400px;
    padding: 2rem;
}

.brand-symbol {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.divine-ring {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50%;
    background: radial-gradient(circle, transparent 60%, rgba(255, 215, 0, 0.08) 100%);
    animation: ringRotate 15s linear infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.2);
}


.krishna-logo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(255, 215, 0, 0.4));
    animation: krishnaGlow 2.5s ease-in-out infinite, krishnaDivine 4s ease-in-out infinite;
    z-index: 3;
    position: relative;
}

.loading-text {
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.letter {
    display: inline-block;
    animation: letterWave 1.5s ease-in-out infinite;
}

.letter:nth-child(1) { animation-delay: 0s; }
.letter:nth-child(2) { animation-delay: 0.1s; }
.letter:nth-child(3) { animation-delay: 0.2s; }
.letter:nth-child(4) { animation-delay: 0.3s; }
.letter:nth-child(5) { animation-delay: 0.4s; }
.letter:nth-child(6) { animation-delay: 0.5s; }
.letter:nth-child(7) { animation-delay: 0.6s; }
.letter:nth-child(8) { animation-delay: 0.7s; }
.letter:nth-child(9) { animation-delay: 0.8s; }

.loading-subtitle {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D2B067;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 0 0 15px rgba(255, 215, 0, 0.4);
}

.progress-container {
    position: relative;
    margin-top: 2rem;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 215, 0, 0.2);
    border-radius: 2px;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.3);
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #FFD700, #FFA500, #FFD700, #FF8C00);
    width: 0%;
    border-radius: 2px;
    animation: progressGrow 3s ease-out forwards;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmer 1.5s ease-in-out infinite;
}

.progress-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.progress-dots .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 215, 0, 0.4);
    transition: all 0.3s ease;
}

.progress-dots .dot.active {
    background: #FFD700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.8);
    transform: scale(1.2);
}

.dot-1 { animation: dotPulse 3s ease-in-out infinite; }
.dot-2 { animation: dotPulse 3s ease-in-out infinite 1s; }
.dot-3 { animation: dotPulse 3s ease-in-out infinite 2s; }

/* Preloader Animations */
@keyframes krishnaGlow {
    0%, 100% { 
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.5)) drop-shadow(0 0 40px rgba(255, 215, 0, 0.3));
        opacity: 0.9;
    }
    25% { 
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.4));
        opacity: 1;
    }
    50% { 
        filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 80px rgba(255, 215, 0, 0.5));
        opacity: 1;
    }
    75% { 
        filter: drop-shadow(0 0 30px rgba(255, 215, 0, 0.7)) drop-shadow(0 0 60px rgba(255, 215, 0, 0.4));
        opacity: 1;
    }
}

@keyframes krishnaDivine {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
    }
    25% { 
        transform: scale(1.02) rotate(1deg);
    }
    50% { 
        transform: scale(1.05) rotate(0deg);
    }
    75% { 
        transform: scale(1.02) rotate(-1deg);
    }
}

@keyframes letterWave {
    0%, 100% { 
        transform: translateY(0);
        opacity: 0.7;
    }
    50% { 
        transform: translateY(-10px);
        opacity: 1;
    }
}

@keyframes progressGrow {
    0% { width: 0%; }
    100% { width: 100%; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

@keyframes patternFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-10px, -10px) rotate(0.5deg); }
    66% { transform: translate(10px, -5px) rotate(-0.5deg); }
}

@keyframes particleFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
    25% { transform: translate(20px, -30px) scale(1.2); opacity: 1; }
    50% { transform: translate(40px, -60px) scale(0.8); opacity: 0.6; }
    75% { transform: translate(60px, -30px) scale(1); opacity: 0.3; }
}

@keyframes particleFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
    25% { transform: translate(-30px, 20px) scale(0.8); opacity: 1; }
    50% { transform: translate(-60px, 40px) scale(1.2); opacity: 0.6; }
    75% { transform: translate(-30px, 60px) scale(0.9); opacity: 0.3; }
}

@keyframes particleFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0; }
    25% { transform: translate(15px, 25px) scale(1.1); opacity: 1; }
    50% { transform: translate(-25px, 50px) scale(0.9); opacity: 0.6; }
    75% { transform: translate(-40px, 25px) scale(1.2); opacity: 0.3; }
}

@keyframes ringRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes dotPulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.4;
        background: rgba(255, 215, 0, 0.4);
    }
    50% { 
        transform: scale(1.5);
        opacity: 1;
        background: #FFD700;
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.9);
    }
}

/* Preloader Fade Out */
.preloader.fade-out {
    animation: fadeOut 0.8s ease-out forwards;
}

@keyframes fadeOut {
    0% { 
        opacity: 1;
        transform: scale(1);
    }
    100% { 
        opacity: 0;
        transform: scale(0.95);
        visibility: hidden;
    }
}

/* Mobile Preloader */
@media (max-width: 768px) {
    .brand-symbol {
        width: 120px;
        height: 120px;
        margin-bottom: 2rem;
    }
    
    .loading-text {
        font-size: 1.8rem;
        gap: 0.2rem;
    }
    
    .loading-subtitle {
        font-size: 0.75rem;
    }
}

/* Modern Slider - Completely Different Theme */
/* CSS Reset for Slider to Prevent Conflicts */
.modern-slider,
.modern-slider *,
.modern-slider *::before,
.modern-slider *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.modern-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background: #000;
    overflow: hidden;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(0.8);
    transition: all 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    pointer-events: auto;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    overflow: hidden;
}

.slide-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
}

.slide-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: patternMove 20s ease-in-out infinite;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    pointer-events: none;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-20px, -20px) rotate(1deg); }
    66% { transform: translate(20px, -10px) rotate(-1deg); }
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 15%;
    transform: translateY(-50%);
    z-index: 3;
    color: white;
    max-width: 600px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-align: left;
}

.slide-number {
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    margin-bottom: 2rem;
    display: block;
    margin: 0 0 2rem 0;
    padding: 0;
    box-sizing: border-box;
}

.slide-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.4s both;
    margin: 0 0 1.5rem 0;
    padding: 0;
    box-sizing: border-box;
}

.slide-subtitle {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    line-height: 1.4;
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease-out 0.6s both;
    margin: 0 0 3rem 0;
    padding: 0;
    box-sizing: border-box;
}

.slide-cta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    align-items: center;
}

.cta-primary {
    padding: 1.2rem 2.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin: 0;
    padding: 1.2rem 2.5rem;
    box-sizing: border-box;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
    line-height: 1;
    white-space: nowrap;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-secondary {
    padding: 1.2rem 2.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0;
    padding: 1.2rem 2.5rem;
    box-sizing: border-box;
    text-decoration: none;
    display: inline-block;
    font-family: inherit;
    line-height: 1;
    white-space: nowrap;
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.slide-visual {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    z-index: 2;
}

.floating-elements {
    position: relative;
    width: 100%;
    height: 100%;
}

.element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.element-1 {
    width: 120px;
    height: 120px;
    top: 20%;
    left: 10%;
    animation: float1 6s ease-in-out infinite;
}

.element-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 30%;
    animation: float2 8s ease-in-out infinite;
}

.element-3 {
    width: 60px;
    height: 60px;
    top: 30%;
    right: 20%;
    animation: float3 7s ease-in-out infinite;
}

.element-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 20%;
    animation: float1 5s ease-in-out infinite;
}

.element-5 {
    width: 140px;
    height: 140px;
    top: 50%;
    right: 10%;
    animation: float2 9s ease-in-out infinite;
}

.element-6 {
    width: 70px;
    height: 70px;
    bottom: 20%;
    left: 40%;
    animation: float3 6s ease-in-out infinite;
}

.element-7 {
    width: 90px;
    height: 90px;
    top: 30%;
    right: 30%;
    animation: float1 7s ease-in-out infinite;
}

.element-8 {
    width: 110px;
    height: 110px;
    bottom: 30%;
    right: 20%;
    animation: float2 8s ease-in-out infinite;
}

.element-9 {
    width: 50px;
    height: 50px;
    top: 70%;
    left: 20%;
    animation: float3 5s ease-in-out infinite;
}

@keyframes float1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(30px, -30px) rotate(180deg); }
}

@keyframes float2 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(-20px, 40px) rotate(-180deg); }
}

@keyframes float3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50% { transform: translate(40px, 20px) rotate(360deg); }
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 3rem;
    z-index: 4;
    pointer-events: none;
}

.nav-btn {
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: auto;
    color: white;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: inherit;
    font-size: inherit;
    line-height: 1;
}

.nav-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.nav-btn svg {
    width: 24px;
    height: 24px;
}

.slider-progress {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.progress-bar {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 1px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: white;
    width: 33.33%;
    transition: width 1s ease;
}

.progress-dots {
    display: flex;
    gap: 1rem;
}

.dot {
    width: 8px;
    height: 8px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: inherit;
    font-size: 0;
    line-height: 1;
    text-indent: -9999px;
}

.dot.active {
    width: 24px;
    border-radius: 4px;
    background: white;
}

.dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.slider-info {
    position: absolute;
    top: 3rem;
    right: 3rem;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: white;
    font-family: 'Courier New', monospace;
    font-size: 0.875rem;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.75rem;
    opacity: 0.6;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.info-value {
    font-size: 1.25rem;
    font-weight: 700;
}

.info-divider {
    opacity: 0.4;
    font-size: 1.5rem;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .modern-slider {
        min-height: 600px;
    }
    
    .slide-content {
        left: 10%;
        right: 10%;
        text-align: center;
    }
    
    .slide-visual {
        display: none;
    }
    
    .slider-nav {
        padding: 0 1rem;
    }
    
    .nav-btn {
        width: 50px;
        height: 50px;
    }
    
    .slider-progress {
        bottom: 2rem;
    }
    
    .slider-info {
        top: 2rem;
        right: 2rem;
    }
    
    .slide-cta {
        justify-content: center;
    }
    
    .cta-primary,
    .cta-secondary {
        padding: 1rem 2rem;
        font-size: 0.875rem;
    }
}

.cms-image-placeholder {
    display: grid;
    min-height: 100%;
    width: 100%;
    place-items: center;
    padding: 1.5rem;
    border: 1px dashed rgba(255, 255, 255, 0.35);
    background: linear-gradient(135deg, rgba(60, 42, 18, 0.12), rgba(255, 255, 255, 0.12));
    color: rgba(33, 24, 12, 0.82);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.cms-image-placeholder--hero {
    min-height: 100vh;
    color: rgba(255, 255, 255, 0.88);
}

.site-inline-form {
    margin: 0;
}

.button--ghost {
    color: #2d2315;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(66, 46, 17, 0.14);
}

.button--ghost:hover {
    background: #fff;
}

.button--disabled {
    opacity: 0.55;
    pointer-events: none;
}

.site-header__actions--inner {
    gap: 0.85rem;
}

.mobile-menu__button {
    padding: 0;
    border: none;
    background: transparent;
    color: inherit;
    text-align: left;
}

.section--alerts {
    padding-top: 1rem;
    padding-bottom: 0;
}

.store-shell {
    display: grid;
    gap: 1rem;
}

.store-flash,
.store-error {
    padding: 1rem 1.1rem;
    border-radius: 1.25rem;
}

.store-flash {
    border: 1px solid rgba(58, 122, 66, 0.18);
    background: rgba(237, 248, 234, 0.92);
    color: #264b24;
}

.store-error {
    border: 1px solid rgba(153, 69, 42, 0.16);
    background: rgba(254, 239, 235, 0.92);
    color: #742d1d;
}

.store-error ul {
    margin: 0.75rem 0 0;
    padding-left: 1.2rem;
}

.auth-shell,
.store-empty-state {
    max-width: 42rem;
    margin: 0 auto;
}

.auth-card,
.store-panel,
.store-empty-state {
    border: 1px solid rgba(72, 49, 17, 0.1);
    border-radius: 1.6rem;
    background: rgba(255, 252, 247, 0.96);
    box-shadow: 0 28px 70px rgba(58, 37, 14, 0.08);
}

.auth-card,
.store-empty-state {
    padding: 2rem;
}

.auth-card h1,
.commerce-heading h1 {
    margin: 0.4rem 0 0.8rem;
}

.auth-card p {
    margin: 0 0 1rem;
}

.auth-form,
.checkout-form {
    display: grid;
    gap: 1rem;
}

.store-field,
.store-check {
    display: grid;
    gap: 0.55rem;
}

.store-field input,
.store-field textarea {
    width: 100%;
    padding: 0.95rem 1rem;
    border: 1px solid rgba(71, 49, 16, 0.13);
    border-radius: 1rem;
    background: #fff;
    color: #2d2315;
}

.store-field textarea {
    resize: vertical;
}

.store-check {
    grid-auto-flow: column;
    justify-content: start;
    align-items: center;
    gap: 0.75rem;
}

.auth-switch {
    margin-top: 1.25rem;
}

.auth-switch a {
    color: #8a5c24;
    font-weight: 700;
}

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

.commerce-heading p {
    max-width: 32rem;
}

.store-grid {
    display: grid;
    gap: 1.25rem;
}

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

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

.store-grid--cart,
.store-grid--checkout {
    grid-template-columns: minmax(0, 1.6fr) minmax(18rem, 0.9fr);
    align-items: start;
}

.store-panel {
    padding: 1.5rem;
}

.store-empty-state {
    text-align: center;
}

.store-empty-state p {
    max-width: 28rem;
    margin: 0.75rem auto 1.5rem;
}

.cart-item,
.order-detail-item {
    display: grid;
    grid-template-columns: 7rem minmax(0, 1fr);
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(71, 49, 16, 0.08);
}

.cart-item:first-of-type,
.order-detail-item:first-of-type {
    padding-top: 0;
}

.cart-item:last-of-type,
.order-detail-item:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.cart-item__media,
.order-detail-item__media {
    overflow: hidden;
    border-radius: 1rem;
    background: rgba(141, 92, 38, 0.08);
}

.cart-item__media img,
.order-detail-item__media img {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.cart-item__content {
    display: grid;
    gap: 1rem;
}

.cart-item__meta p,
.order-detail-item p {
    margin: 0;
    color: #7a6141;
}

.cart-item__meta h2,
.order-detail-item h3 {
    margin: 0.25rem 0;
}

.cart-item__meta span,
.order-detail-item span {
    color: #7a6141;
}

.cart-item__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 1rem;
    align-items: end;
}

.cart-item__actions .store-field {
    min-width: 7rem;
}

.cart-item__price {
    display: grid;
    gap: 0.15rem;
}

.cart-item__price span {
    color: #7a6141;
}

.cart-update-form {
    margin-top: 1rem;
}

.text-link--danger {
    color: #9a3d28;
}

.order-card {
    display: grid;
    gap: 1rem;
}

.order-card h2 {
    margin: 0;
}

.order-card__items,
.order-card__totals,
.order-card__address,
.order-card__note {
    display: grid;
    gap: 0.75rem;
}

.order-card__item,
.order-card__totals div {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.order-card__totals dt,
.order-card__totals dd {
    margin: 0;
}

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

.order-list-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 1rem;
}

.order-list-card h2 {
    margin: 0.25rem 0;
}

.order-list-card p {
    margin: 0;
    color: #7a6141;
}

.order-list-card__meta {
    display: grid;
    gap: 0.2rem;
    justify-items: end;
}

.order-detail-items {
    display: grid;
    gap: 1rem;
}

.product-card__form,
.catalog-cart-form {
    margin: 0;
}

.catalog-cart-form button,
.catalog-cart--disabled {
    width: 100%;
}

.catalog-cart--disabled {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    opacity: 0.55;
}

.catalog-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.catalog-actions a,
.catalog-actions button {
    color: inherit;
    font: inherit;
}

.catalog-actions button {
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

@media (max-width: 1100px) {
    .store-grid--cart,
    .store-grid--checkout,
    .store-grid--two,
    .store-grid--three,
    .order-list-card {
        grid-template-columns: 1fr;
    }

    .order-list-card__meta {
        justify-items: start;
    }
}

@media (max-width: 960px) {
    .site-header__actions--inner {
        display: none;
    }

    .commerce-heading {
        flex-direction: column;
        align-items: start;
    }
}

@media (max-width: 640px) {
    .auth-card,
    .store-panel,
    .store-empty-state {
        padding: 1.25rem;
    }

    .cart-item,
    .order-detail-item {
        grid-template-columns: 1fr;
    }

    .cart-item__media,
    .order-detail-item__media {
        max-width: 11rem;
    }
}
