@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;600;700&family=Manrope:wght@400;500;600;700;800&display=swap');

:root {
    --bg: #f6f1ea;
    --surface: #fffaf4;
    --surface-strong: #f0e3d0;
    --ink: #151210;
    --muted: #6a5f57;
    --line: rgba(31, 21, 15, 0.12);
    --brand: #6e141c;
    --brand-dark: #470910;
    --brand-soft: #b77e66;
    --accent: #cfb37c;
    --success: #1c6c48;
    --warning: #9b6d24;
    --danger: #962c33;
    --info: #355c9c;
    --radius: 24px;
    --radius-sm: 16px;
    --shadow: 0 18px 45px rgba(17, 10, 8, 0.12);
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at top right, rgba(207, 179, 124, 0.22), transparent 34%),
        linear-gradient(180deg, #fcfaf7 0%, var(--bg) 56%, #efe4d7 100%);
    color: var(--ink);
    line-height: 1.65;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.container {
    width: min(calc(100% - 2rem), var(--container));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    backdrop-filter: blur(12px);
}

.announcement-bar {
    background: linear-gradient(90deg, var(--brand-dark), var(--brand), #8f2b36);
    color: #fff7ef;
    text-align: center;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.announcement-bar p {
    margin: 0;
}

.header-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 0;
    background: rgba(250, 244, 236, 0.88);
    border-bottom: 1px solid rgba(31, 21, 15, 0.06);
}

.brand-mark {
    display: inline-flex;
    flex-direction: column;
    gap: 0.2rem;
}

.brand-mark strong,
.hero-content h1,
.section-heading h2,
.page-hero h1,
.admin-topbar h1,
.product-title {
    font-family: 'Cormorant Garamond', serif;
}

.brand-kicker,
.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--brand);
    font-weight: 700;
}

.brand-mark strong {
    font-size: clamp(1.7rem, 3vw, 2.2rem);
    letter-spacing: 0.03em;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.site-nav a,
.nav-dropdown button {
    color: var(--ink);
    font-weight: 600;
    background: transparent;
    border: 0;
    padding: 0.65rem 0.85rem;
    cursor: pointer;
}

.site-nav a:hover,
.nav-dropdown button:hover {
    color: var(--brand);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    min-width: 240px;
    background: rgba(255, 250, 244, 0.98);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    padding: 0.8rem;
    display: none;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: grid;
}

.nav-dropdown-menu a {
    padding: 0.6rem 0.7rem;
    border-radius: 12px;
}

.nav-dropdown-menu a:hover {
    background: rgba(110, 20, 28, 0.06);
}

.cart-link,
.button,
.button-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.cart-link {
    padding: 0.85rem 1.1rem;
    background: #201917;
    color: #fff7ef;
}

.cart-link span {
    display: inline-grid;
    place-items: center;
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 999px;
    background: var(--accent);
    color: #2c1c10;
}

.button,
.button-link {
    padding: 0.95rem 1.4rem;
    background: linear-gradient(135deg, var(--brand), #a63243);
    color: #fff9f2;
    box-shadow: 0 14px 30px rgba(110, 20, 28, 0.22);
}

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

.button-secondary {
    background: rgba(18, 14, 12, 0.06);
    color: var(--ink);
    box-shadow: none;
    border: 1px solid var(--line);
}

.button-ghost {
    background: transparent;
    color: var(--brand);
    box-shadow: none;
    border: 1px solid rgba(110, 20, 28, 0.22);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.75rem;
    background: transparent;
    border: 0;
}

.nav-toggle span {
    width: 1.5rem;
    height: 2px;
    background: var(--ink);
    border-radius: 4px;
}

.hero {
    padding: 3rem 0 4rem;
}

.hero-grid {
    display: grid;
    gap: 2rem;
    align-items: center;
}

.hero-card {
    position: relative;
    overflow: hidden;
    border-radius: 38px;
    padding: clamp(1.8rem, 4vw, 4rem);
    background:
        linear-gradient(135deg, rgba(25, 13, 14, 0.96), rgba(60, 11, 20, 0.88)),
        url('../images/hero-butcher.svg') center/cover no-repeat;
    color: #fff6ee;
    min-height: 560px;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 2rem;
    box-shadow: var(--shadow);
}

.hero-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(207, 179, 124, 0.25), transparent 35%),
        linear-gradient(180deg, transparent 0%, rgba(13, 8, 9, 0.18) 100%);
}

.hero-content,
.hero-media {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.hero-content p {
    max-width: 36rem;
    font-size: 1.1rem;
    color: rgba(255, 245, 236, 0.86);
}

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

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

.hero-point {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(255, 248, 240, 0.08);
    border: 1px solid rgba(255, 244, 233, 0.12);
}

.hero-media {
    display: grid;
    align-items: end;
}

.hero-spotlight {
    padding: 1.6rem;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(249, 240, 229, 0.08), rgba(249, 240, 229, 0.18));
    border: 1px solid rgba(255, 248, 240, 0.16);
}

.hero-spotlight img {
    border-radius: 22px;
    object-fit: cover;
    min-height: 280px;
}

.hero-spotlight strong {
    display: block;
    margin-top: 1rem;
    font-size: 1.1rem;
}

.hero-spotlight p {
    margin-bottom: 0;
    color: rgba(255, 245, 236, 0.8);
}

.section {
    padding: 4.5rem 0;
}

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

.section-heading h2 {
    margin: 0.25rem 0 0;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 0.95;
}

.section-heading p {
    max-width: 36rem;
    color: var(--muted);
    margin: 0;
}

.category-grid,
.product-grid,
.feature-grid,
.steps-grid,
.info-grid,
.footer-grid,
.admin-metrics {
    display: grid;
    gap: 1.4rem;
}

.category-grid {
    grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
}

.category-card,
.product-card,
.feature-card,
.step-card,
.info-card,
.metric-card,
.admin-card,
.auth-card,
.content-card {
    background: rgba(255, 250, 244, 0.82);
    border: 1px solid rgba(26, 16, 12, 0.08);
    border-radius: 28px;
    box-shadow: 0 16px 40px rgba(34, 21, 15, 0.08);
}

.category-card {
    padding: 1.3rem;
    display: grid;
    gap: 1rem;
    min-height: 240px;
}

.category-card img {
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.category-card h3,
.product-card h3,
.metric-card h3,
.admin-card h3,
.info-card h3 {
    margin: 0;
}

.product-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-card {
    overflow: hidden;
}

.product-card-media {
    position: relative;
    aspect-ratio: 5 / 4;
    overflow: hidden;
}

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

.product-card-body {
    padding: 1.4rem;
    display: grid;
    gap: 0.85rem;
}

.product-card-body p {
    color: var(--muted);
    margin: 0;
}

.product-meta-row,
.summary-row,
.cart-row,
.meta-list,
.form-grid,
.admin-table td,
.admin-table th,
.footer-grid a,
.page-hero p,
.static-page p {
    font-size: 0.98rem;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-weight: 700;
}

.price-note {
    color: var(--muted);
    font-size: 0.85rem;
}

.feature-grid {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.feature-card,
.step-card,
.info-card {
    padding: 1.5rem;
}

.feature-card strong,
.step-card strong {
    font-size: 1.05rem;
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.step-index {
    display: inline-grid;
    place-items: center;
    width: 3rem;
    height: 3rem;
    border-radius: 16px;
    background: rgba(110, 20, 28, 0.08);
    color: var(--brand);
    font-weight: 800;
}

.page-hero {
    padding: 3rem 0 1.5rem;
}

.page-hero-panel {
    padding: 2rem;
    border-radius: 30px;
    background: linear-gradient(135deg, rgba(29, 20, 18, 0.95), rgba(86, 16, 25, 0.88));
    color: #fff7ef;
    box-shadow: var(--shadow);
}

.page-hero h1 {
    margin: 0;
    font-size: clamp(2.4rem, 5vw, 4rem);
}

.page-hero p {
    max-width: 44rem;
    color: rgba(255, 245, 236, 0.82);
    margin-bottom: 0;
}

.filter-bar,
.cart-layout,
.checkout-layout,
.product-layout,
.admin-grid,
.admin-flex {
    display: grid;
    gap: 1.5rem;
}

.filter-bar {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    margin-bottom: 2rem;
}

.field,
.textarea,
.select {
    width: 100%;
    border: 1px solid rgba(31, 21, 15, 0.14);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.75);
    padding: 0.95rem 1rem;
    color: var(--ink);
}

.field:focus,
.textarea:focus,
.select:focus {
    outline: 2px solid rgba(110, 20, 28, 0.18);
    border-color: rgba(110, 20, 28, 0.34);
}

.textarea {
    min-height: 130px;
    resize: vertical;
}

.helper-text,
.muted-text {
    color: var(--muted);
}

.product-layout {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
}

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

.product-gallery-main img,
.product-gallery-thumbs img {
    border-radius: 24px;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.8rem;
}

.product-panel {
    padding: 2rem;
    border-radius: 28px;
    background: rgba(255, 250, 244, 0.84);
    border: 1px solid rgba(26, 16, 12, 0.08);
    box-shadow: var(--shadow);
}

.product-title {
    margin: 0;
    font-size: clamp(2.2rem, 4vw, 3.6rem);
    line-height: 0.95;
}

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

.product-keyfacts div,
.summary-card,
.cart-card,
.form-card,
.admin-form-card {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    background: rgba(240, 227, 208, 0.35);
}

.quantity-row {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.quantity-input {
    width: 100px;
}

.cart-layout,
.checkout-layout {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
}

.cart-card,
.summary-card,
.form-card,
.admin-card,
.content-card {
    padding: 1.5rem;
}

.cart-item {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--line);
}

.cart-item img {
    border-radius: 18px;
    aspect-ratio: 1 / 1;
    object-fit: cover;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
}

.summary-row.total {
    font-size: 1.15rem;
    font-weight: 800;
    border-bottom: 0;
}

.message,
.alert {
    padding: 1rem 1.1rem;
    border-radius: 18px;
    margin-bottom: 1rem;
}

.message.success,
.alert.success {
    background: rgba(28, 108, 72, 0.1);
    color: var(--success);
}

.message.error,
.alert.error {
    background: rgba(150, 44, 51, 0.1);
    color: var(--danger);
}

.message.info,
.alert.info {
    background: rgba(53, 92, 156, 0.1);
    color: var(--info);
}

.footer-grid {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    padding: 4rem 0 2rem;
}

.footer-grid h4 {
    margin-top: 0;
}

.footer-grid a {
    display: block;
    margin-bottom: 0.7rem;
    color: rgba(255, 245, 236, 0.8);
}

.site-footer {
    background: linear-gradient(180deg, #221715 0%, #120d0c 100%);
    color: #fff8f0;
    margin-top: 4rem;
}

.footer-bottom {
    padding: 1rem 0 2rem;
    color: rgba(255, 245, 236, 0.6);
}

.static-page {
    padding: 1rem 0 3rem;
}

.static-page article {
    max-width: 860px;
}

.static-page p {
    color: var(--muted);
}

.admin-body {
    background: linear-gradient(180deg, #f3ebe1 0%, #eadcc8 100%);
}

.admin-shell {
    display: grid;
    grid-template-columns: 290px 1fr;
    min-height: 100vh;
}

.admin-sidebar {
    background: #1b1715;
    color: #fff8ef;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 2rem;
}

.admin-brand {
    display: inline-block;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    margin-bottom: 0.4rem;
}

.admin-subtitle {
    color: rgba(255, 245, 236, 0.68);
    margin: 0;
}

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

.admin-nav a {
    padding: 0.9rem 1rem;
    border-radius: 16px;
    color: rgba(255, 245, 236, 0.82);
}

.admin-nav a.active,
.admin-nav a:hover {
    background: rgba(255, 245, 236, 0.1);
    color: #ffffff;
}

.admin-user-card {
    display: grid;
    gap: 0.35rem;
    padding: 1rem;
    border-radius: 18px;
    background: rgba(255, 245, 236, 0.08);
}

.admin-user-card span {
    color: rgba(255, 245, 236, 0.65);
}

.admin-main {
    padding: 1.5rem;
}

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

.admin-topbar h1 {
    margin: 0.25rem 0 0;
    font-size: clamp(2rem, 4vw, 3rem);
}

.admin-metrics {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    margin-bottom: 1.5rem;
}

.metric-card {
    padding: 1.3rem;
}

.metric-card .value {
    font-size: 2rem;
    font-weight: 800;
    margin: 0.4rem 0 0;
}

.admin-card,
.content-card {
    overflow: auto;
}

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

.admin-table th,
.admin-table td {
    padding: 0.95rem;
    border-bottom: 1px solid var(--line);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--muted);
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.7rem;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 700;
}

.badge.success {
    background: rgba(28, 108, 72, 0.12);
    color: var(--success);
}

.badge.warning {
    background: rgba(155, 109, 36, 0.14);
    color: var(--warning);
}

.badge.danger {
    background: rgba(150, 44, 51, 0.12);
    color: var(--danger);
}

.badge.info {
    background: rgba(53, 92, 156, 0.12);
    color: var(--info);
}

.badge.muted {
    background: rgba(20, 18, 16, 0.08);
    color: var(--muted);
}

.auth-wrap {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 1.5rem;
}

.auth-card {
    width: min(100%, 460px);
    padding: 2rem;
}

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

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

.hidden {
    display: none !important;
}

.admin-actions,
.stack {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.table-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem;
}

.table-actions a,
.table-actions button {
    font-size: 0.88rem;
}

.admin-media-grid {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 1rem;
    align-items: start;
}

.admin-image-preview {
    padding: 0.85rem;
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    background: rgba(255, 250, 244, 0.72);
}

.admin-image-preview img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 14px;
    background: #fff;
}

.admin-image-preview small {
    display: block;
    margin-top: 0.7rem;
    color: var(--muted);
    word-break: break-word;
}

.admin-inline-help {
    margin: 0.35rem 0 0;
    color: var(--muted);
    font-size: 0.92rem;
}

.admin-thumb {
    width: 72px;
    height: 72px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid var(--line);
    background: #fff;
}

.empty-state {
    padding: 2rem;
    text-align: center;
    color: var(--muted);
}

@media (max-width: 1024px) {
    .hero-card,
    .product-layout,
    .cart-layout,
    .checkout-layout,
    .admin-shell {
        grid-template-columns: 1fr;
    }

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

    .admin-sidebar {
        position: sticky;
        top: 0;
        z-index: 5;
    }

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

@media (max-width: 860px) {
    .nav-toggle {
        display: flex;
    }

    .site-nav {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 1rem;
        right: 1rem;
        background: rgba(255, 250, 244, 0.98);
        border: 1px solid var(--line);
        border-radius: 24px;
        box-shadow: var(--shadow);
        padding: 1rem;
        display: none;
        flex-direction: column;
        align-items: stretch;
    }

    .site-nav.is-open {
        display: flex;
    }

    .nav-dropdown-menu {
        position: static;
        display: grid;
        margin-top: 0.6rem;
        box-shadow: none;
    }

    .header-main {
        flex-wrap: wrap;
    }

    .cart-link {
        margin-left: auto;
    }

    .hero-points,
    .product-keyfacts,
    .form-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-card,
    .page-hero-panel,
    .product-panel,
    .cart-card,
    .summary-card,
    .form-card,
    .feature-card,
    .step-card,
    .info-card {
        border-radius: 22px;
    }

    .hero {
        padding-top: 1.5rem;
    }

    .section {
        padding: 3.5rem 0;
    }

    .product-gallery-thumbs {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

.header-main {
    margin-top: 0.65rem;
    padding: 1rem 1.15rem;
    border-radius: 0 0 28px 28px;
    box-shadow: 0 16px 38px rgba(27, 16, 13, 0.08);
}

.brand-mark {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.brand-logo,
.footer-logo {
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(207, 179, 124, 0.32), rgba(110, 20, 28, 0.12));
    border: 1px solid rgba(110, 20, 28, 0.14);
    box-shadow: 0 16px 30px rgba(24, 11, 8, 0.12);
}

.brand-logo {
    width: 72px;
    height: 72px;
}

.brand-logo img,
.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
}

.brand-copy small {
    color: var(--muted);
    max-width: 30rem;
    line-height: 1.35;
}

.hero-card-premium {
    background:
        radial-gradient(circle at top right, rgba(207, 179, 124, 0.25), transparent 28%),
        linear-gradient(135deg, rgba(27, 10, 12, 0.98), rgba(90, 24, 28, 0.92));
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 0.9rem;
    border-radius: 999px;
    background: rgba(255, 247, 239, 0.08);
    border: 1px solid rgba(255, 241, 226, 0.14);
    color: rgba(255, 247, 239, 0.92);
    font-size: 0.88rem;
    font-weight: 700;
}

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

.hero-stat {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 248, 240, 0.08);
    border: 1px solid rgba(255, 244, 233, 0.12);
}

.hero-stat strong,
.shipping-item strong,
.editorial-point strong {
    display: block;
    margin-bottom: 0.35rem;
}

.hero-stat span,
.shipping-item span {
    color: rgba(255, 245, 236, 0.82);
}

.hero-visual-card {
    position: relative;
    min-height: 100%;
    display: grid;
    align-items: stretch;
}

.hero-main-image {
    width: 100%;
    min-height: 100%;
    border-radius: 28px;
    object-fit: cover;
    box-shadow: 0 24px 40px rgba(9, 6, 5, 0.28);
}

.hero-floating-chip {
    position: absolute;
    display: flex;
    gap: 0.85rem;
    border-radius: 24px;
    padding: 1rem;
    background: rgba(17, 9, 10, 0.76);
    border: 1px solid rgba(255, 243, 231, 0.16);
    box-shadow: 0 20px 38px rgba(7, 4, 4, 0.28);
    backdrop-filter: blur(10px);
    color: #fff7ef;
}

.hero-logo-chip {
    top: 1.15rem;
    left: 1.15rem;
    align-items: center;
    max-width: 310px;
}

.hero-logo-chip img {
    width: 62px;
    height: 62px;
    object-fit: cover;
    border-radius: 18px;
}

.hero-logo-chip span,
.hero-product-chip span {
    display: block;
    color: rgba(255, 243, 231, 0.82);
}

.hero-product-chip {
    right: 1.15rem;
    bottom: 1.15rem;
    width: min(280px, calc(100% - 2.3rem));
    flex-direction: column;
    color: #fff8f1;
}

.section-shell {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 34px;
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.84), rgba(248, 240, 230, 0.74));
    border: 1px solid rgba(26, 16, 12, 0.08);
    box-shadow: 0 18px 42px rgba(28, 17, 12, 0.07);
}

.category-card-rich {
    padding: 0;
    overflow: hidden;
    min-height: 100%;
}

.category-card-rich img {
    aspect-ratio: 1.15 / 0.9;
}

.category-card-copy {
    display: grid;
    gap: 0.8rem;
    padding: 1.3rem;
}

.category-card-copy h3 {
    margin: 0;
    font-size: 1.35rem;
    font-family: 'Cormorant Garamond', serif;
}

.editorial-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: stretch;
}

.editorial-card {
    padding: clamp(1.5rem, 3vw, 2rem);
    border-radius: 32px;
    border: 1px solid rgba(26, 16, 12, 0.08);
    box-shadow: 0 18px 42px rgba(28, 17, 12, 0.08);
}

.editorial-card-dark {
    color: #fff7ef;
    background:
        radial-gradient(circle at top right, rgba(207, 179, 124, 0.18), transparent 35%),
        linear-gradient(135deg, #210d10, #5e1a22);
}

.editorial-card-dark h2,
.cta-banner h2 {
    margin: 0.25rem 0 1rem;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.3rem);
    line-height: 0.94;
}

.editorial-card-dark p {
    color: rgba(255, 244, 233, 0.82);
}

.editorial-list,
.shipping-list {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

.editorial-point,
.shipping-item {
    padding: 1rem 1.05rem;
    border-radius: 18px;
    background: rgba(255, 248, 240, 0.08);
    border: 1px solid rgba(255, 244, 233, 0.12);
}

.editorial-card-light {
    display: grid;
    gap: 0.9rem;
    align-content: start;
    background: linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(240, 227, 208, 0.82));
}

.editorial-card-light h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
}

.editorial-card-light p,
.footer-tagline {
    color: var(--muted);
}

.shipping-item {
    background: rgba(110, 20, 28, 0.05);
    border-color: rgba(110, 20, 28, 0.1);
}

.shipping-item span {
    color: var(--muted);
}

.cta-banner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: clamp(1.6rem, 4vw, 2.4rem);
    border-radius: 34px;
    background:
        radial-gradient(circle at top right, rgba(207, 179, 124, 0.2), transparent 28%),
        linear-gradient(135deg, rgba(26, 9, 12, 0.96), rgba(94, 26, 34, 0.9));
    color: #fff7ef;
    box-shadow: 0 22px 48px rgba(16, 8, 8, 0.16);
}

.cta-banner p {
    max-width: 44rem;
    color: rgba(255, 244, 233, 0.82);
}

.cta-banner-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.9rem;
}

.footer-brand {
    display: grid;
    grid-template-columns: 92px 1fr;
    gap: 1rem;
    align-items: start;
}

.footer-logo {
    width: 92px;
    height: 92px;
}

@media (max-width: 1024px) {
    .editorial-grid,
    .cta-banner,
    .hero-stat-grid {
        grid-template-columns: 1fr;
    }

    .cta-banner {
        align-items: flex-start;
    }
}

@media (max-width: 860px) {
    .brand-copy small {
        display: none;
    }

    .hero-logo-chip,
    .hero-product-chip {
        position: static;
        width: 100%;
        margin-top: 1rem;
    }

    .hero-visual-card {
        gap: 1rem;
    }
}

@media (max-width: 640px) {
    .brand-logo {
        width: 58px;
        height: 58px;
        border-radius: 18px;
    }

    .header-main {
        padding: 0.9rem;
        border-radius: 0 0 22px 22px;
    }

    .footer-brand {
        grid-template-columns: 1fr;
    }
}
