:root {
    --bg: #f8f3ed;
    --bg-soft: #fffaf5;
    --card: #ffffff;
    --text: #161412;
    --muted: #756e66;
    --accent: #8aa86b;
    --accent-dark: #5f7d48;
    --rose: #d9aa9e;
    --gold: #c59b5d;
    --border: #e9ded2;
    --shadow: 0 22px 70px rgba(52, 39, 27, .10);
    --radius: 28px;
    --container: 1200px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: radial-gradient(circle at 15% 0%, rgba(217, 170, 158, .20), transparent 32%), var(--bg);
    min-height: 100vh;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
.container { width: min(var(--container), calc(100% - 40px)); margin: 0 auto; }
.site-shell { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

.topbar {
    background: #11100f;
    color: #fff;
    text-align: center;
    font-size: 13px;
    padding: 10px 18px;
    letter-spacing: .2px;
}
.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(248, 243, 237, .88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(233, 222, 210, .9);
}
.header-grid {
    min-height: 78px;
    display: grid;
    grid-template-columns: auto 1fr minmax(240px, 340px) auto;
    align-items: center;
    gap: 22px;
}
.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 850;
    letter-spacing: -.5px;
    white-space: nowrap;
}
.brand-mark {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: inline-grid;
    place-items: center;
    background: #11100f;
    color: #fff;
    font-size: 12px;
    letter-spacing: .8px;
}
.main-nav { display: flex; justify-content: center; gap: 24px; color: #3c3936; font-size: 14px; }
.main-nav a:hover, .site-footer a:hover, .product-card-title:hover { color: var(--accent-dark); }
.header-search {
    display: grid;
    grid-template-columns: 1fr auto;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 4px;
    box-shadow: 0 8px 30px rgba(0,0,0,.04);
}
.header-search input {
    border: 0;
    outline: 0;
    padding: 0 12px;
    min-width: 0;
    background: transparent;
}
.header-search button {
    border: 0;
    border-radius: 999px;
    background: #11100f;
    color: #fff;
    padding: 10px 16px;
    cursor: pointer;
}
.header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.icon-link, .pill-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: #fff;
    padding: 0 14px;
    font-weight: 700;
    font-size: 14px;
}
.cart-link { position: relative; min-width: 48px; padding: 0 12px; }
.cart-link strong {
    position: absolute;
    top: -7px;
    right: -4px;
    min-width: 21px;
    height: 21px;
    border-radius: 999px;
    background: var(--accent-dark);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 12px;
}

.flash {
    margin-top: 18px;
    padding: 14px 18px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: #fff;
}
.flash ul { margin: 8px 0 0 18px; }
.flash-success { border-color: rgba(95,125,72,.3); background: rgba(138,168,107,.12); }
.flash-error { border-color: rgba(180,70,55,.3); background: rgba(180,70,55,.08); }
.flash.compact { margin: 18px 0; }

.button, .small-button {
    border: 1px solid transparent;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 800;
    cursor: pointer;
    transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.button { padding: 14px 22px; }
.small-button { padding: 10px 15px; font-size: 13px; }
.button:hover, .small-button:hover { transform: translateY(-2px); }
.button-dark, .small-button { background: #11100f; color: #fff; }
.button-light { background: #fff; color: #11100f; border-color: var(--border); }
.button[disabled] { opacity: .55; cursor: not-allowed; transform: none; }
.full-width { width: 100%; }
.text-button { border: 0; background: transparent; color: #9d3b30; cursor: pointer; font-weight: 800; padding: 0; }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; }

.eyebrow {
    display: inline-block;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.hero-section { padding: 70px 0 40px; }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(420px, .95fr);
    align-items: center;
    gap: 52px;
}
.hero-copy h1, .page-hero h1 {
    margin: 0;
    font-size: clamp(44px, 7vw, 86px);
    line-height: .92;
    letter-spacing: -3px;
}
.hero-copy h1 span, .page-hero h1 span { color: var(--accent-dark); }
.hero-copy p, .page-hero p, .section-head p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
    max-width: 620px;
}
.hero-search {
    width: min(100%, 610px);
    display: grid;
    grid-template-columns: 1fr auto;
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 999px;
    padding: 7px;
    box-shadow: var(--shadow);
    margin: 30px 0 18px;
}
.hero-search input { border: 0; outline: 0; min-width: 0; padding: 0 18px; background: transparent; }
.hero-search button { border: 0; border-radius: 999px; padding: 14px 24px; background: #11100f; color: #fff; font-weight: 800; cursor: pointer; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-visual {
    min-height: 560px;
    border-radius: 42px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.75);
    box-shadow: var(--shadow);
    background:
        radial-gradient(circle at 70% 18%, rgba(255,255,255,.85) 0 15%, transparent 16%),
        linear-gradient(135deg, #efe0d0 0%, #fff7f0 48%, #cbd8ba 100%);
}
.hero-visual::after {
    content: "BEAUTY";
    position: absolute;
    left: 28px;
    bottom: 18px;
    font-size: clamp(54px, 7vw, 96px);
    font-weight: 950;
    letter-spacing: -7px;
    color: rgba(255,255,255,.74);
}
.hero-orb {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 999px;
    right: -80px;
    top: 95px;
    background: rgba(255,255,255,.45);
}
.floating-card {
    position: absolute;
    z-index: 2;
    width: 220px;
    border-radius: 28px;
    padding: 18px;
    background: rgba(255,255,255,.88);
    border: 1px solid rgba(255,255,255,.9);
    box-shadow: 0 22px 50px rgba(0,0,0,.10);
}
.floating-card strong, .floating-card span { display: block; }
.floating-card span { color: var(--muted); font-size: 13px; margin-top: 5px; }
.floating-card-one { top: 70px; left: 42px; }
.floating-card-two { right: 42px; bottom: 78px; }
.mini-product {
    height: 142px;
    border-radius: 22px;
    margin-bottom: 14px;
    background: linear-gradient(180deg, #fff, #dfcdbd);
    position: relative;
    overflow: hidden;
}
.mini-product::after {
    content: "";
    position: absolute;
    width: 48px;
    height: 106px;
    border-radius: 999px 999px 16px 16px;
    background: #11100f;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}
.mini-product-set::after { width: 86px; height: 86px; border-radius: 28px; background: var(--accent-dark); bottom: 18px; }

.setup-banner {
    margin-top: 28px;
    background: #11100f;
    color: #fff;
    border-radius: 30px;
    padding: 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}
.setup-banner p { color: rgba(255,255,255,.72); margin: 0; max-width: 680px; }
.setup-banner h1 { margin: 0 0 8px; }
.setup-banner .button { background: #fff; color: #11100f; }

.service-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    padding: 28px 0 42px;
}
.service-card, .content-card, .filter-card, .summary-card, .auth-card, .admin-card {
    background: rgba(255,255,255,.78);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    box-shadow: 0 12px 40px rgba(0,0,0,.04);
}
.service-card { padding: 24px; }
.service-card span { font-size: 26px; display: inline-block; margin-bottom: 14px; }
.service-card strong { display: block; margin-bottom: 8px; }
.service-card p { color: var(--muted); margin: 0; line-height: 1.55; }

.section-block { padding: 34px 0 62px; }
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
    margin-bottom: 24px;
}
.section-head h2 { margin: 0; font-size: clamp(30px, 4vw, 48px); letter-spacing: -1.4px; }
.section-head a { font-weight: 800; color: var(--accent-dark); }
.product-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 20px; }
.product-grid-compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0,0,0,.05);
    display: flex;
    flex-direction: column;
}
.product-card-media {
    min-height: 255px;
    background: linear-gradient(135deg, #f1e4d8, #fffaf5);
    display: grid;
    place-items: center;
    position: relative;
    overflow: hidden;
}
.product-card-media img { width: 100%; height: 255px; object-fit: cover; }
.badge {
    position: absolute;
    left: 16px;
    top: 16px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    border-radius: 999px;
    padding: 0 12px;
    background: #11100f;
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}
.badge.standalone { position: static; width: fit-content; margin-bottom: 14px; }
.product-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 38px;
    background: linear-gradient(145deg, #fff, #e5d1c1);
    display: grid;
    place-items: center;
    color: rgba(17,16,15,.52);
    font-size: 38px;
    font-weight: 950;
    letter-spacing: -2px;
}
.product-placeholder-large { width: 100%; height: 100%; min-height: 560px; border-radius: 0; }
.product-card-body { padding: 20px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.product-card-meta { display: flex; justify-content: space-between; color: var(--muted); font-size: 12px; gap: 10px; }
.product-card-title { font-size: 18px; font-weight: 850; line-height: 1.25; }
.product-card-body p { color: var(--muted); line-height: 1.55; margin: 0; flex: 1; }
.product-card-bottom { display: flex; justify-content: space-between; align-items: center; gap: 14px; margin-top: 4px; }
.product-card-bottom strong { display: block; font-size: 18px; }
del { color: var(--muted); font-weight: 600; font-size: 13px; }
.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.category-card {
    min-height: 250px;
    border-radius: 32px;
    background: #fff;
    border: 1px solid var(--border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
}
.category-card::before {
    content: "";
    width: 220px;
    height: 220px;
    border-radius: 999px;
    background: rgba(138,168,107,.22);
    position: absolute;
    right: -54px;
    top: -58px;
}
.category-card span, .category-card h3, .category-card p { position: relative; }
.category-card span { color: var(--accent-dark); font-weight: 900; }
.category-card h3 { margin: 10px 0 8px; font-size: 28px; letter-spacing: -.8px; }
.category-card p { color: var(--muted); line-height: 1.55; margin: 0; }
.empty-state {
    background: rgba(255,255,255,.82);
    border: 1px dashed var(--border);
    border-radius: var(--radius);
    padding: 42px;
    text-align: center;
}
.empty-state h2, .empty-state h3 { margin-top: 0; }
.empty-state p { color: var(--muted); }

.page-hero { padding: 58px 0 28px; }
.page-hero.slim { padding-top: 50px; }
.page-hero.slim h1 { font-size: clamp(38px, 5vw, 64px); }
.shop-layout { display: grid; grid-template-columns: 285px 1fr; gap: 24px; padding: 10px 0 72px; align-items: start; }
.filter-card, .summary-card { padding: 24px; position: sticky; top: 100px; }
.filter-card h2, .summary-card h2 { margin-top: 0; }
.filter-form, .stack-form { display: grid; gap: 16px; }
label { display: grid; gap: 8px; font-weight: 800; font-size: 14px; }
label span { color: var(--muted); font-weight: 600; font-size: 12px; }
input, select, textarea {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: #fff;
    padding: 13px 14px;
    outline: none;
}
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--accent-dark); box-shadow: 0 0 0 4px rgba(138,168,107,.16); }
.shop-toolbar {
    margin-bottom: 18px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
    color: var(--muted);
}
.shop-toolbar strong { color: var(--text); }
.pagination-wrap { margin-top: 26px; }
.pagination-wrap nav { display: flex; justify-content: center; }

.product-detail {
    padding: 54px 0 70px;
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .85fr) 360px;
    gap: 28px;
    align-items: start;
}
.gallery-main {
    min-height: 560px;
    border-radius: 36px;
    overflow: hidden;
    border: 1px solid var(--border);
    background: #fff;
    box-shadow: var(--shadow);
}
.gallery-main img { width: 100%; height: 560px; object-fit: cover; }
.gallery-thumbs { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 14px; }
.gallery-thumbs button {
    width: 82px;
    height: 82px;
    border-radius: 20px;
    border: 2px solid transparent;
    overflow: hidden;
    background: #fff;
    padding: 0;
    cursor: pointer;
}
.gallery-thumbs button.active { border-color: var(--accent-dark); }
.gallery-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.product-category { color: var(--accent-dark); font-weight: 900; }
.product-info h1 { font-size: clamp(34px, 4vw, 58px); line-height: 1; letter-spacing: -2px; margin: 12px 0 18px; }
.lead { color: var(--muted); font-size: 18px; line-height: 1.65; }
.prose { color: #333; line-height: 1.72; }
.prose ul { padding-left: 20px; }
.share-row {
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid var(--border);
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
}
.share-row span { color: var(--muted); }
.share-row a {
    border: 1px solid var(--border);
    background: #fff;
    border-radius: 999px;
    padding: 9px 13px;
    font-weight: 800;
    font-size: 13px;
}
.buy-box {
    position: sticky;
    top: 104px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 30px;
    padding: 24px;
    box-shadow: var(--shadow);
}
.price-row { display: flex; align-items: baseline; gap: 10px; }
.price-row strong { font-size: 34px; letter-spacing: -1px; }
.tax-note { color: var(--muted); line-height: 1.5; font-size: 13px; }
.add-cart-form { display: grid; gap: 16px; margin-top: 20px; }
.stock-line { display: flex; justify-content: space-between; gap: 12px; padding: 13px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.stock-line span { color: var(--muted); }
.buy-box-benefits { margin-top: 20px; display: grid; gap: 10px; color: var(--muted); }
.buy-box-benefits span { color: var(--accent-dark); font-weight: 900; margin-right: 6px; }

.content-card { padding: 30px; }
.legal-content { margin-bottom: 70px; }
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 24px; padding-bottom: 80px; align-items: start; }
.cart-items { display: grid; gap: 16px; }
.cart-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 18px;
    display: grid;
    grid-template-columns: 110px 1fr 160px auto;
    gap: 18px;
    align-items: center;
}
.cart-image { width: 110px; height: 110px; border-radius: 20px; overflow: hidden; background: #f1e4d8; }
.cart-image img, .cart-image .product-placeholder { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; font-size: 22px; }
.cart-item h2 { margin: 0 0 6px; font-size: 18px; }
.cart-item p { color: var(--muted); margin: 0 0 8px; }
.quantity-form { display: grid; gap: 8px; }
.quantity-form button { border: 0; background: transparent; color: var(--accent-dark); font-weight: 900; cursor: pointer; }
.summary-card { display: grid; gap: 14px; }
.summary-line, .summary-total { display: flex; justify-content: space-between; gap: 12px; }
.summary-total { border-top: 1px solid var(--border); padding-top: 14px; font-size: 20px; }
.summary-card p { color: var(--muted); line-height: 1.55; margin: 0; }

.auth-page { min-height: 68vh; display: grid; place-items: center; padding: 52px 0 80px; }
.auth-card { width: min(100%, 520px); padding: 34px; }
.auth-card.wide { width: min(100%, 760px); }
.auth-card h1 { font-size: 44px; margin: 0 0 12px; letter-spacing: -1.5px; }
.auth-card p { color: var(--muted); line-height: 1.65; }
.check-row { display: flex; align-items: center; gap: 10px; font-weight: 700; }
.check-row input { width: auto; }
.form-grid { display: grid; gap: 16px; }
.form-grid.two { grid-template-columns: repeat(2, 1fr); }
.form-grid.three { grid-template-columns: repeat(3, 1fr); }
.setup-note { margin-top: 22px; color: var(--muted); line-height: 1.55; }
.dashboard-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; padding-bottom: 80px; }

.site-footer {
    margin-top: auto;
    background: #11100f;
    color: #fff;
    padding: 48px 0;
}
.footer-grid { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr); gap: 32px; }
.footer-brand .brand-mark { background: #fff; color: #11100f; }
.site-footer p, .site-footer a { color: rgba(255,255,255,.72); }
.site-footer h3 { margin: 0 0 14px; }
.site-footer a { display: block; margin: 9px 0; }

.admin-body { background: #f3eee8; }
.admin-shell { min-height: 100vh; display: grid; grid-template-columns: 280px 1fr; }
.admin-sidebar {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 24px;
    background: #11100f;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 26px;
}
.admin-sidebar .brand-mark { background: #fff; color: #11100f; }
.admin-sidebar nav { display: grid; gap: 8px; }
.admin-sidebar nav a {
    padding: 12px 14px;
    border-radius: 16px;
    color: rgba(255,255,255,.78);
    font-weight: 750;
}
.admin-sidebar nav a:hover { background: rgba(255,255,255,.10); color: #fff; }
.admin-main { padding: 30px; min-width: 0; }
.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 22px;
}
.admin-topbar h1 { margin: 0; font-size: clamp(30px, 4vw, 48px); letter-spacing: -1.5px; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 20px; }
.admin-stat { background: #fff; border: 1px solid var(--border); border-radius: 24px; padding: 22px; }
.admin-stat span { display: block; color: var(--muted); margin-bottom: 10px; }
.admin-stat strong { font-size: 38px; line-height: 1; }
.admin-card { padding: 24px; margin-bottom: 20px; }
.admin-card h2 { margin-top: 0; }
.admin-card-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 20px; }
.admin-card-head.compact { align-items: flex-start; }
.admin-card-head h2 { margin: 0 0 6px; }
.admin-card-head p { color: var(--muted); margin: 0; }
.quick-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.admin-table-wrap { width: 100%; overflow-x: auto; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { text-align: left; padding: 14px 12px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.admin-table th { color: var(--muted); font-size: 13px; }
.admin-table td span { color: var(--muted); font-size: 13px; }
.table-actions { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.table-actions a, .table-actions button { border: 0; background: transparent; color: var(--accent-dark); padding: 0; font-weight: 850; cursor: pointer; }
.table-actions form { margin: 0; }
.admin-filter-row { display: grid; grid-template-columns: 1fr auto; gap: 12px; margin-bottom: 18px; }
.admin-form-grid { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 20px; align-items: start; }
.form-main { grid-column: 1; }
.form-side { grid-column: 2; grid-row: 1 / span 2; position: sticky; top: 30px; display: grid; gap: 16px; }
.form-actions { grid-column: 1 / -1; display: flex; gap: 12px; flex-wrap: wrap; }
.admin-gallery { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 18px; }
.admin-gallery label { width: 120px; font-size: 12px; font-weight: 700; }
.admin-gallery img { width: 120px; height: 120px; object-fit: cover; border-radius: 18px; border: 1px solid var(--border); }
.variant-list { display: grid; gap: 10px; }
.variant-row { display: grid; grid-template-columns: 1fr 1fr 140px 120px 42px; gap: 10px; align-items: center; }
.variant-row button { height: 42px; border: 0; border-radius: 14px; background: #f4ded7; color: #8c3026; font-size: 22px; cursor: pointer; }

@media (max-width: 1120px) {
    .header-grid { grid-template-columns: auto 1fr auto; }
    .main-nav { display: none; }
    .header-search { grid-column: 1 / -1; order: 4; margin-bottom: 14px; }
    .hero-grid, .product-detail, .cart-layout { grid-template-columns: 1fr; }
    .hero-visual { min-height: 430px; }
    .buy-box, .filter-card, .summary-card { position: static; }
    .shop-layout { grid-template-columns: 1fr; }
    .product-grid { grid-template-columns: repeat(3, 1fr); }
    .admin-form-grid { grid-template-columns: 1fr; }
    .form-side, .form-main, .form-actions { grid-column: 1; grid-row: auto; position: static; }
}

@media (max-width: 880px) {
    .service-grid, .product-grid, .product-grid-compact, .category-grid, .footer-grid, .dashboard-grid, .admin-stat-grid { grid-template-columns: repeat(2, 1fr); }
    .section-head, .setup-banner, .admin-topbar, .admin-card-head { align-items: flex-start; flex-direction: column; }
    .admin-shell { grid-template-columns: 1fr; }
    .admin-sidebar { position: static; height: auto; }
    .admin-sidebar nav { grid-template-columns: repeat(2, 1fr); }
    .cart-item { grid-template-columns: 90px 1fr; }
    .cart-item form { grid-column: 2; }
    .variant-row { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
    .container { width: min(100% - 28px, var(--container)); }
    .header-grid { gap: 12px; }
    .brand span:last-child { display: none; }
    .pill-link { padding: 0 11px; }
    .hero-section { padding-top: 42px; }
    .hero-copy h1 { letter-spacing: -2px; }
    .hero-search { grid-template-columns: 1fr; border-radius: 24px; }
    .hero-search button { border-radius: 18px; }
    .floating-card { width: 185px; }
    .floating-card-one { left: 18px; top: 40px; }
    .floating-card-two { right: 18px; bottom: 50px; }
    .service-grid, .product-grid, .product-grid-compact, .category-grid, .footer-grid, .dashboard-grid, .admin-stat-grid, .form-grid.two, .form-grid.three { grid-template-columns: 1fr; }
    .product-card-media, .product-card-media img { min-height: 230px; height: 230px; }
    .gallery-main, .gallery-main img, .product-placeholder-large { min-height: 380px; height: 380px; }
    .price-row strong { font-size: 28px; }
    .auth-card { padding: 24px; }
    .admin-main { padding: 18px; }
    .admin-sidebar nav { grid-template-columns: 1fr; }
}

/* Variante 1: Premium Beauty Store - eigene, helle Store-Optik */
:root {
    --bg: #fbf8f5;
    --bg-soft: #fffdfb;
    --card: #ffffff;
    --text: #1f1b18;
    --muted: #746c64;
    --accent: #b97863;
    --accent-dark: #9d5f4d;
    --rose: #e8cfc6;
    --gold: #c89f6a;
    --border: #eadfd7;
    --shadow: 0 24px 70px rgba(80, 49, 34, .10);
    --radius: 24px;
    --container: 1320px;
}

body {
    background: linear-gradient(180deg, #fffaf7 0%, #fbf8f5 42%, #ffffff 100%);
    color: var(--text);
}

.topbar-premium {
    background: #f4ece6;
    color: #5a4a42;
    padding: 9px 0;
    border-bottom: 1px solid rgba(185, 120, 99, .12);
}
.topbar-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    font-size: 13px;
}
.topbar-grid span:nth-child(2) { text-align: center; }
.topbar-grid span:last-child { text-align: right; }

.premium-header {
    background: rgba(255, 253, 251, .92);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(234, 223, 215, .86);
}
.premium-header-grid {
    min-height: 88px;
    grid-template-columns: 260px minmax(280px, 520px) 260px;
    justify-content: space-between;
}
.premium-brand {
    gap: 0;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
}
.brand-script {
    color: #a46450;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 3vw, 43px);
    font-weight: 500;
    letter-spacing: -.05em;
}
.brand-subline {
    margin-top: 6px;
    color: #594b44;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: .45em;
    text-transform: uppercase;
}
.premium-search {
    height: 52px;
    border-radius: 999px;
    background: rgba(255,255,255,.94);
    border: 1px solid #dfd4ce;
    box-shadow: 0 12px 34px rgba(74, 47, 34, .06);
}
.premium-search input { padding-left: 20px; color: var(--text); }
.premium-search button {
    width: 44px;
    height: 44px;
    padding: 0;
    display: grid;
    place-items: center;
    background: #fff;
    border: 1px solid transparent;
    color: #1f1b18;
    font-size: 26px;
    line-height: 1;
}
.premium-search button:hover { border-color: var(--border); color: var(--accent-dark); }
.premium-actions { gap: 18px; }
.icon-action {
    position: relative;
    display: grid;
    place-items: center;
    gap: 5px;
    min-width: 74px;
    color: #221d1a;
    font-weight: 700;
}
.icon-action span { font-size: 25px; line-height: 1; }
.icon-action small { font-size: 12px; }
.icon-action.cart-link { border: 0; background: transparent; padding: 0; min-height: auto; min-width: 80px; }
.icon-action.cart-link strong {
    top: -8px;
    right: 17px;
    background: var(--accent);
}
.nav-row { padding-bottom: 18px; }
.premium-nav {
    justify-content: flex-start;
    gap: clamp(18px, 3vw, 54px);
    color: #29231f;
    font-weight: 720;
}
.premium-nav a { position: relative; }
.premium-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .22s ease;
}
.premium-nav a:hover { color: var(--accent-dark); }
.premium-nav a:hover::after { transform: scaleX(1); }

.button-dark, .small-button {
    background: #a66b58;
    border-color: #a66b58;
    color: #fff;
    box-shadow: 0 12px 24px rgba(166, 107, 88, .18);
}
.button-light {
    background: rgba(255,255,255,.82);
    color: #2b231f;
    border-color: #e3d7ce;
}
.eyebrow { color: #a66b58; letter-spacing: 2.5px; }

.apple-hero {
    margin-top: 26px;
    min-height: 430px;
    border-radius: 28px;
    background:
        linear-gradient(90deg, rgba(255, 252, 249, .98) 0%, rgba(255, 248, 242, .93) 40%, rgba(244, 224, 215, .76) 100%),
        radial-gradient(circle at 82% 28%, rgba(255,255,255,.92), transparent 26%);
    border: 1px solid #eadfd7;
    box-shadow: 0 24px 80px rgba(74, 47, 34, .08);
    display: grid;
    grid-template-columns: minmax(0, .88fr) minmax(360px, 1.12fr);
    align-items: stretch;
    overflow: hidden;
    position: relative;
    padding: 54px clamp(28px, 5vw, 72px);
}
.apple-hero-copy { max-width: 575px; z-index: 2; }
.apple-hero-copy h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(42px, 5.4vw, 78px);
    font-weight: 500;
    line-height: .99;
    letter-spacing: -.055em;
}
.apple-hero-copy h1 span { display: block; color: #24201d; }
.apple-hero-copy p {
    color: #665a53;
    line-height: 1.65;
    font-size: 18px;
    max-width: 480px;
}
.apple-hero-search {
    margin: 22px 0 16px;
    width: min(100%, 520px);
    box-shadow: 0 16px 50px rgba(72, 49, 35, .08);
}
.apple-hero-search button { background: #a66b58; }
.hero-dots { display: flex; gap: 10px; margin-top: 24px; }
.hero-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #d8c6bb;
}
.hero-dots span:first-child { background: #a66b58; }
.hero-arrow {
    position: absolute;
    left: 16px;
    top: 50%;
    z-index: 3;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(224, 211, 202, .9);
    background: rgba(255,255,255,.86);
    box-shadow: 0 12px 30px rgba(64, 42, 32, .10);
    font-size: 30px;
    color: #6f5e55;
}
.hero-arrow-right { left: auto; right: 16px; }
.apple-showcase {
    position: relative;
    min-height: 330px;
    isolation: isolate;
}
.apple-showcase::before {
    content: "";
    position: absolute;
    inset: auto 5% 0 3%;
    height: 44px;
    border-radius: 50%;
    background: radial-gradient(ellipse, rgba(122, 80, 62, .16), transparent 68%);
    filter: blur(2px);
    z-index: 0;
}
.beauty-bloom {
    position: absolute;
    border-radius: 46% 54% 42% 58% / 48% 46% 54% 52%;
    background: radial-gradient(circle at 30% 30%, #fff, #f2d3ca 54%, rgba(232,207,198,.42) 70%, transparent 72%);
    opacity: .68;
    filter: blur(.2px);
}
.bloom-one { width: 230px; height: 210px; right: 22px; top: 24px; }
.bloom-two { width: 180px; height: 170px; left: 128px; bottom: 26px; opacity: .42; }
.cosmetic-bottle, .cosmetic-jar, .cosmetic-lipstick {
    position: absolute;
    z-index: 1;
    box-shadow: 0 18px 44px rgba(96, 57, 42, .16);
    display: grid;
    place-items: end center;
    color: rgba(91, 62, 52, .78);
    font-family: Georgia, "Times New Roman", serif;
    text-transform: uppercase;
    letter-spacing: .13em;
    font-size: 13px;
}
.cosmetic-bottle::before, .cosmetic-bottle::after, .cosmetic-jar::before, .cosmetic-lipstick::before { content: ""; position: absolute; }
.bottle-one {
    width: 130px;
    height: 230px;
    right: 295px;
    bottom: 35px;
    border-radius: 18px 18px 28px 28px;
    background: linear-gradient(90deg, rgba(255,255,255,.62), rgba(232, 173, 155, .62), rgba(255,255,255,.42));
    border: 1px solid rgba(172, 119, 98, .25);
    padding-bottom: 38px;
}
.bottle-one::before {
    width: 76px;
    height: 32px;
    border-radius: 10px 10px 4px 4px;
    background: linear-gradient(90deg, #d2a879, #fff0d7, #b77d55);
    top: -30px;
}
.bottle-one::after {
    width: 52px;
    height: 48px;
    border-radius: 14px 14px 4px 4px;
    background: linear-gradient(90deg, #e4bc8d, #fff2dd, #bf815c);
    top: -70px;
}
.bottle-two {
    width: 105px;
    height: 292px;
    right: 122px;
    bottom: 36px;
    border-radius: 18px 18px 24px 24px;
    background: linear-gradient(90deg, rgba(255,255,255,.60), rgba(229, 183, 169, .70), rgba(255,255,255,.38));
    border: 1px solid rgba(172, 119, 98, .25);
    padding-bottom: 52px;
}
.bottle-two::before {
    width: 82px;
    height: 42px;
    border-radius: 12px 12px 5px 5px;
    background: linear-gradient(90deg, #c99463, #fff1d6, #a76a43);
    top: -42px;
}
.bottle-two::after {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    border: 2px solid rgba(166, 107, 88, .22);
    top: 88px;
}
.cosmetic-jar {
    width: 170px;
    height: 108px;
    right: 205px;
    bottom: 34px;
    border-radius: 26px 26px 34px 34px;
    background: linear-gradient(90deg, #c28c67, #f3c5a5, #a66b58);
    color: rgba(255,255,255,.86);
    padding-bottom: 32px;
}
.cosmetic-jar::before {
    width: 182px;
    height: 40px;
    top: -28px;
    border-radius: 28px 28px 10px 10px;
    background: linear-gradient(90deg, #fff6e7, #d1a374, #8f5a3d);
}
.cosmetic-lipstick {
    width: 55px;
    height: 172px;
    right: 45px;
    bottom: 34px;
    border-radius: 16px 16px 8px 8px;
    background: linear-gradient(90deg, #b37a4e, #f5d8a5, #9f6441);
}
.cosmetic-lipstick::before {
    width: 38px;
    height: 92px;
    border-radius: 28px 28px 8px 8px;
    background: linear-gradient(135deg, #b56a57, #d89883);
    top: -78px;
    transform: rotate(7deg);
}

.service-strip {
    margin-top: 20px;
    background: rgba(255,255,255,.88);
    border: 1px solid var(--border);
    border-radius: 20px;
    box-shadow: 0 14px 44px rgba(69, 43, 31, .06);
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
}
.service-strip div {
    display: grid;
    grid-template-columns: auto 1fr;
    column-gap: 13px;
    row-gap: 4px;
    align-items: center;
    padding: 22px 26px;
    border-right: 1px solid var(--border);
}
.service-strip div:last-child { border-right: 0; }
.service-strip span { grid-row: 1 / span 2; font-size: 26px; }
.service-strip strong { font-size: 14px; }
.service-strip small { color: var(--muted); }

.premium-section { padding-top: 46px; }
.section-head h2 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -.045em;
}
.section-head a { color: #6c574c; }
.product-grid { gap: 18px; }
.apple-product-row { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.premium-product-card {
    border-radius: 14px;
    border-color: #ece3dd;
    box-shadow: none;
    transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.premium-product-card:hover {
    transform: translateY(-4px);
    border-color: #e1d0c7;
    box-shadow: 0 18px 50px rgba(72, 49, 35, .08);
}
.premium-product-media {
    min-height: 240px;
    background: linear-gradient(145deg, #fff, #fbf0eb);
}
.premium-product-media img {
    height: 240px;
    object-fit: contain;
    padding: 28px;
    background: linear-gradient(145deg, #fff, #fbf0eb);
}
.wishlist-heart {
    position: absolute;
    right: 15px;
    top: 13px;
    z-index: 3;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: rgba(255,255,255,.82);
    border: 1px solid rgba(232, 218, 210, .88);
    color: #6d5b52;
    font-size: 19px;
}
.premium-placeholder {
    width: 128px;
    height: 170px;
    border-radius: 20px 20px 30px 30px;
    background: linear-gradient(90deg, #fff, #edd6cc, #fff7f2);
    border: 1px solid #eadbd3;
    color: #a66b58;
    font-size: 28px;
    box-shadow: 0 18px 42px rgba(109, 72, 55, .10);
}
.premium-placeholder::before {
    content: "";
    position: absolute;
    width: 70px;
    height: 22px;
    border-radius: 12px 12px 4px 4px;
    background: #c79b73;
    top: 29px;
    left: 50%;
    transform: translateX(-50%);
}
.premium-product-body { padding: 17px 18px 19px; gap: 9px; }
.product-card-meta {
    text-transform: uppercase;
    letter-spacing: .08em;
    font-size: 10px;
}
.product-card-title { font-size: 16px; letter-spacing: -.01em; }
.premium-product-body p { font-size: 13px; line-height: 1.45; }
.product-card-bottom strong { color: #1f1b18; }
.small-button { padding: 9px 13px; }
.badge { background: #b97863; }

.split-home-section {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
    gap: 28px;
    padding: 22px 0 42px;
}
.home-panel {
    background: rgba(255,255,255,.75);
    border: 1px solid var(--border);
    border-radius: 26px;
    padding: 26px;
}
.compact-head { align-items: flex-start; margin-bottom: 18px; }
.compact-head h2 { font-size: clamp(28px, 3.2vw, 38px); }
.mini-product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mini-product-grid .premium-product-media { min-height: 205px; }
.mini-product-grid .premium-product-media img { height: 205px; }
.special-panel p { color: var(--muted); line-height: 1.6; margin-top: -4px; }
.special-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
}
.special-card {
    min-height: 150px;
    border-radius: 18px;
    background: linear-gradient(145deg, #fff, #fbf1ed);
    border: 1px solid var(--border);
    padding: 19px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap: 5px;
}
.special-card span { color: var(--accent); font-size: 24px; }
.special-card small { color: var(--muted); }
.premium-category-card { min-height: 218px; border-radius: 22px; background: #fff; }
.premium-category-card::before { background: rgba(232, 207, 198, .42); }
.premium-category-card h3 { font-family: Georgia, "Times New Roman", serif; font-weight: 500; }

.premium-page-hero h1, .premium-product-info h1 {
    font-family: Georgia, "Times New Roman", serif;
    font-weight: 500;
    letter-spacing: -.05em;
}
.premium-shop-layout { grid-template-columns: 280px 1fr; gap: 28px; }
.premium-filter-card, .premium-shop-toolbar, .premium-buy-box, .premium-gallery-main {
    background: rgba(255,255,255,.88);
    border-color: var(--border);
}
.premium-shop-toolbar {
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 16px 18px;
}
.premium-shop-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.premium-product-detail {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .85fr) 370px;
    gap: 34px;
}
.premium-gallery-main {
    background: linear-gradient(145deg, #fff, #fcf0eb);
}
.premium-gallery-main img {
    object-fit: contain;
    padding: 42px;
    background: linear-gradient(145deg, #fff, #fcf0eb);
}
.premium-placeholder-large {
    background: linear-gradient(145deg, #fff, #f2d8ce);
    color: #a66b58;
}
.premium-product-info .lead { color: #645750; }
.premium-buy-box { border-radius: 24px; }
.price-row strong { color: #1f1b18; }
.buy-box-benefits span { color: var(--accent-dark); }
.share-row a:hover { border-color: var(--accent); color: var(--accent-dark); }

.premium-footer { background: #211b18; }
.premium-footer .brand-script { color: #f2d5c9; }
.premium-footer .brand-subline { color: rgba(255,255,255,.7); }
.footer-brand .brand-mark { display: none; }

@media (max-width: 1180px) {
    .premium-header-grid { grid-template-columns: 1fr auto; }
    .premium-brand { grid-column: 1; }
    .premium-search { grid-column: 1 / -1; order: 3; }
    .premium-actions { grid-column: 2; grid-row: 1; }
    .apple-hero, .split-home-section { grid-template-columns: 1fr; }
    .apple-showcase { min-height: 330px; }
    .apple-product-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .premium-product-detail { grid-template-columns: 1fr; }
}

@media (max-width: 880px) {
    .topbar-grid { grid-template-columns: 1fr; text-align: center; }
    .topbar-grid span:last-child { text-align: center; }
    .premium-nav { overflow-x: auto; padding-bottom: 4px; }
    .apple-hero { padding: 36px 22px; }
    .service-strip { grid-template-columns: repeat(2, 1fr); }
    .service-strip div:nth-child(2) { border-right: 0; }
    .service-strip div { border-bottom: 1px solid var(--border); }
    .apple-product-row, .premium-shop-grid, .mini-product-grid, .special-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 620px) {
    .premium-header-grid { grid-template-columns: 1fr; }
    .premium-actions { grid-column: 1; grid-row: auto; justify-content: space-between; width: 100%; }
    .brand-script { font-size: 34px; }
    .apple-hero-copy h1 { font-size: 42px; }
    .hero-arrow { display: none; }
    .apple-showcase { min-height: 260px; transform: scale(.82); transform-origin: center; }
    .service-strip, .apple-product-row, .premium-shop-grid, .mini-product-grid, .special-grid { grid-template-columns: 1fr; }
}

/* Update: Kunden-Dashboard, Angebotsseite und Admin-Übersicht */
.account-dashboard-grid {
    display: grid;
    grid-template-columns: 280px minmax(0, 1fr);
    gap: 24px;
    align-items: start;
    padding-bottom: 80px;
}
.account-sidebar {
    position: sticky;
    top: 24px;
    display: grid;
    gap: 12px;
}
.account-sidebar h2 { margin: 0 0 8px; }
.account-sidebar a {
    padding: 12px 14px;
    border-radius: 15px;
    background: #fff8f4;
    border: 1px solid var(--border);
    color: var(--accent-dark);
    font-weight: 800;
}
.account-sidebar form { margin-top: 8px; }
.account-main-stack { display: grid; gap: 22px; }
.account-card-large { border-radius: 28px; background: rgba(255,255,255,.9); border: 1px solid var(--border); }
.customer-form { display: grid; gap: 18px; }
.form-grid.two-cols { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-section-title {
    margin-top: 8px;
    padding-top: 14px;
    border-top: 1px solid var(--border);
    font-weight: 900;
    color: var(--accent-dark);
}
.notice-card {
    border: 1px solid #ead2c7;
    background: #fff8f5;
    border-radius: 18px;
    padding: 16px 18px;
    color: #6f5b50;
    line-height: 1.55;
}
.admin-section-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}
.admin-overview-card { min-height: 100%; }
.compact-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-bottom: 0;
}
.compact-stats .admin-stat strong { font-size: 30px; }
.compact-admin-form { display: grid; gap: 14px; }
.check-line {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff8f4;
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 12px 14px;
    color: var(--text);
}
.check-line input { width: auto; }
.link-button {
    border: 0;
    background: transparent;
    color: var(--accent-dark);
    font-weight: 900;
    cursor: pointer;
    padding: 0;
}
.danger-link { color: #9b2e25; }
.inline-admin-form {
    display: grid;
    gap: 8px;
    min-width: 210px;
}
.inline-admin-form textarea { min-height: 56px; }
.admin-sidebar nav a[href*="coupons"],
.admin-sidebar nav a[href*="newsletter"],
.admin-sidebar nav a[href*="support"] {
    border: 1px solid rgba(255,255,255,.08);
}

@media (max-width: 1100px) {
    .account-dashboard-grid, .admin-section-grid { grid-template-columns: 1fr; }
    .account-sidebar { position: static; }
}

@media (max-width: 700px) {
    .form-grid.two-cols, .compact-stats { grid-template-columns: 1fr; }
}

/* Verkauf, CRM und Admin V2 */
.checkout-grid { display: grid; grid-template-columns: minmax(0, 1fr) 390px; gap: 28px; align-items: start; padding-bottom: 80px; }
.checkout-summary { position: sticky; top: 190px; }
.checkout-summary .summary-line small { display: block; color: var(--muted); }
.payment-options, .preference-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
.coupon-form { display: grid; gap: 8px; margin-bottom: 18px; }
.summary-line.discount { color: #28734f; }
.order-confirmation { margin-bottom: 80px; }
.order-total-list { margin-left: auto; width: min(100%, 340px); text-align: right; }
.gold-status { border-radius: 20px; padding: 20px; background: linear-gradient(135deg, #f1dfb9, #fff7e8); border: 1px solid #dcc28b; }
.inline-filters { display: flex; flex-wrap: wrap; gap: 10px; align-items: end; }
.inline-filters label { display: grid; gap: 6px; }
.task-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.task-tabs a { padding: 10px 14px; border-radius: 999px; background: #f7f0e8; border: 1px solid var(--border); font-weight: 800; }
.task-tabs a.active { color: #fff; background: #2e2722; }
.care-rule-row { display: grid; grid-template-columns: 1.1fr 80px 110px 110px 2fr 100px 80px auto auto; gap: 8px; padding: 12px 0; border-bottom: 1px solid var(--border); align-items: center; }
.care-rule-row input, .care-rule-row select { min-width: 0; }
.form-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.tag { display: inline-block; margin: 2px; padding: 4px 8px; border-radius: 999px; background: #f0e5d4; font-size: 12px; font-weight: 800; }
.dashboard-priority-stats .admin-stat { color: inherit; }
.variant-row { grid-template-columns: repeat(4, minmax(100px, 1fr)); }
.variant-row button { grid-column: -2 / -1; }
.stock-request-form { display: grid; gap: 10px; margin-top: 16px; }
.auth-links { display: flex; justify-content: space-between; gap: 14px; margin-top: 16px; font-weight: 750; }

@media (max-width: 1100px) {
    .checkout-grid { grid-template-columns: 1fr; }
    .checkout-summary { position: static; }
    .care-rule-row { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .payment-options, .preference-grid, .form-grid.four, .care-rule-row { grid-template-columns: 1fr; }
}

/* Mari Can Hair V2 – ruhiges Premium-System */
:root {
    --bg: #f8f4ee;
    --bg-soft: #fffdf9;
    --text: #201b18;
    --muted: #746a62;
    --accent: #b8924f;
    --accent-dark: #806426;
    --rose: #d7aaa8;
    --gold: #b8924f;
    --border: #e7ddd1;
    --shadow: 0 24px 72px rgba(48, 35, 25, .11);
}

body { background: linear-gradient(180deg, #fbf8f3 0, #f6f0e8 52%, #fbf8f3 100%); }
.site-header { background: rgba(255, 253, 249, .94); }
.button-gold { color: #fff; background: linear-gradient(135deg, #947029, #c5a363); box-shadow: 0 12px 32px rgba(148, 112, 41, .24); }
.button:focus-visible, .small-button:focus-visible, a:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
    outline: 3px solid rgba(184, 146, 79, .38);
    outline-offset: 3px;
}
.nav-row { display: flex; justify-content: space-between; align-items: center; gap: 22px; }
.locale-switcher button {
    border: 1px solid var(--border); border-radius: 999px; background: #fff; color: var(--text);
    min-width: 42px; height: 36px; cursor: pointer; font-weight: 800; font-size: 12px;
}
.hair-hero {
    display: grid; grid-template-columns: minmax(0, 1fr) minmax(380px, .82fr); min-height: 650px;
    margin-top: 34px; overflow: hidden; border-radius: 38px; background: #efe4d7;
    border: 1px solid rgba(139, 104, 54, .12); box-shadow: var(--shadow);
}
.hair-hero-copy { padding: clamp(42px, 7vw, 92px); align-self: center; position: relative; z-index: 2; }
.hair-hero-copy h1 { margin: 0; font-family: Georgia, "Times New Roman", serif; font-size: clamp(48px, 6.3vw, 88px); line-height: .96; letter-spacing: -.055em; font-weight: 500; }
.hair-hero-copy h1 em { display: block; margin-top: 10px; color: var(--accent-dark); font-weight: 400; }
.hair-hero-copy > p { color: #665b52; font-size: 18px; line-height: 1.75; max-width: 650px; margin: 28px 0; }
.hair-hero-media { min-height: 650px; position: relative; overflow: hidden; background: linear-gradient(145deg, #d8bcb3, #9a7452); }
.hair-hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 52%, rgba(29, 20, 13, .38)); pointer-events: none; }
.hair-hero-media > img { width: 100%; height: 100%; min-height: 650px; object-fit: cover; }
.hair-hero-placeholder { height: 100%; min-height: 650px; display: grid; place-content: center; text-align: center; color: #fff; }
.hair-hero-placeholder span { font: italic 44px Georgia, serif; }
.hair-hero-placeholder strong { font: 500 72px/.9 Georgia, serif; }
.hair-hero-placeholder small { margin-top: 20px; letter-spacing: .24em; text-transform: uppercase; }
.hero-product-label { position: absolute; z-index: 2; left: 28px; right: 28px; bottom: 28px; padding: 19px 22px; border-radius: 18px; color: #fff; background: rgba(31, 23, 18, .66); backdrop-filter: blur(16px); display: grid; gap: 4px; }
.hero-product-label span { color: #ecd6a8; font-size: 11px; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.hero-product-label strong { font-size: 20px; }
.hero-product-label small { opacity: .86; }
.hero-trust { display: flex; gap: 18px; margin-top: 32px; flex-wrap: wrap; color: var(--muted); font-size: 13px; }
.hero-trust span { padding-right: 18px; border-right: 1px solid rgba(91, 72, 55, .18); }
.hero-trust span:last-child { border: 0; }
.hero-trust strong { display: block; color: var(--text); }
.refined-services span { color: var(--gold); }
.hair-category-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.hair-category-card { min-height: 300px; overflow: hidden; justify-content: flex-end; background: linear-gradient(145deg, #fff, #f1e4d8); }
.hair-category-card > img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: .5; transition: transform .45s ease, opacity .45s ease; }
.hair-category-card:hover > img { transform: scale(1.045); opacity: .62; }
.hair-category-card::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 22%, rgba(255, 251, 246, .94)); }
.hair-category-card h3, .hair-category-card p, .hair-category-card > span { position: relative; z-index: 2; }
.audience-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 24px; margin-bottom: 82px; }
.audience-card { min-height: 370px; padding: clamp(34px, 5vw, 64px); border-radius: 30px; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; box-shadow: var(--shadow); }
.audience-card h2 { margin: 0; font: 500 clamp(34px, 4vw, 52px)/1 Georgia, serif; }
.audience-card p { max-width: 520px; line-height: 1.7; }
.salon-card { color: #fff; background: linear-gradient(145deg, #2e2722, #554637); }
.salon-card .eyebrow { color: #e7c985; }
.salon-card .button-light { background: #fff; }
.gold-card { background: linear-gradient(145deg, #ead9ba, #f9eee1 60%, #e5bcc0); }
.whatsapp-fab { position: fixed; z-index: 60; right: 22px; bottom: 22px; padding: 13px 18px; border-radius: 999px; background: #1e7d50; color: #fff; box-shadow: 0 14px 35px rgba(20, 87, 54, .28); font-weight: 850; }
.premium-product-card { transition: transform .24s ease, box-shadow .24s ease; }
.premium-product-card:hover { transform: translateY(-5px); box-shadow: 0 22px 60px rgba(53, 39, 27, .12); }

@media (max-width: 980px) {
    .hair-hero { grid-template-columns: 1fr; }
    .hair-hero-media, .hair-hero-media > img, .hair-hero-placeholder { min-height: 420px; }
    .hair-category-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 700px) {
    .nav-row { align-items: flex-start; }
    .hair-hero { border-radius: 24px; min-height: 0; }
    .hair-hero-copy { padding: 38px 26px; }
    .hair-hero-copy h1 { font-size: 46px; }
    .hair-hero-media, .hair-hero-media > img, .hair-hero-placeholder { min-height: 330px; }
    .hero-trust, .audience-grid { grid-template-columns: 1fr; }
    .hair-category-grid, .audience-grid { grid-template-columns: 1fr; }
    .audience-card { min-height: 320px; }
}
