/* ============================================================
   AnnaShop — Luxury Handmade redesign
   Rounded, premium, trust-building. All class names preserved.
   ============================================================ */

:root {
    /* Signature rosé + gold luxury palette */
    --pink: #c17a97;
    --pink-light: #f7ebf1;
    --pink-lighter: #fcf5f8;
    --pink-dark: #a35f7c;
    --gold: #c9a24b;
    --gold-light: #e9d9a8;
    --gold-soft: #f6efdb;
    --text: #3a2e33;
    --text-light: #8a7a80;
    --border: #efe2e9;
    --white: #fff;
    --cream: #fdfbf9;
    --bg: #fbf6f9;
    --ink: #2a2226;

    --radius-sm: 12px;
    --radius: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --pill: 999px;

    --shadow-sm: 0 2px 14px rgba(90,50,70,.06);
    --shadow: 0 10px 34px rgba(160,95,124,.13);
    --shadow-lg: 0 22px 60px rgba(160,95,124,.20);
    --shadow-gold: 0 8px 26px rgba(201,162,75,.28);

    --serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
    --sans: 'Lato', 'Segoe UI', system-ui, sans-serif;

    --ease: cubic-bezier(.22,.61,.36,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--sans);
    color: var(--text);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
::selection { background: var(--pink-light); color: var(--pink-dark); }

.container { max-width: 1240px; margin: 0 auto; padding: 0 22px; }
.container-narrow { max-width: 920px; margin: 0 auto; padding: 0 22px; }

/* ── Promo Bar ──────────────────────────────────────────── */
.promo-bar {
    background: linear-gradient(90deg, var(--pink-dark), var(--pink) 55%, var(--gold) 140%);
    color: #fff; text-align: center; padding: 9px 12px;
    font-size: .82rem; letter-spacing: .6px; font-weight: 500;
}

/* ── Header ─────────────────────────────────────────────── */
.header {
    background: rgba(255,255,255,.92);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    -webkit-backdrop-filter: saturate(180%) blur(10px);
    backdrop-filter: saturate(180%) blur(10px);
    border-bottom: 1px solid var(--border);
    padding: 15px 0; position: sticky; top: 0; z-index: 100;
    box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; }
.logo {
    font-family: var(--serif); font-size: 1.9rem; color: var(--pink);
    font-weight: 600; display: flex; align-items: center; letter-spacing: .5px;
    text-decoration: none;
}
.logo-text em { font-style: normal; color: var(--gold); }
.logo:hover .logo-text em { color: var(--gold-light); }
.logo-img { height: 54px; width: auto; display: block; }
.search-form {
    display: flex; flex: 1; max-width: 420px;
    border: 1.5px solid var(--border); border-radius: var(--pill);
    overflow: hidden; background: var(--white);
    transition: border-color .2s, box-shadow .2s;
}
.search-form:focus-within { border-color: var(--pink); box-shadow: 0 0 0 4px var(--pink-lighter); }
.search-form input { flex: 1; border: none; outline: none; padding: 10px 18px; font-size: .9rem; background: transparent; }
.search-form button {
    background: var(--pink); color: #fff; border: none;
    padding: 8px 18px; cursor: pointer; font-size: 1rem;
    border-radius: var(--pill); margin: 3px; transition: background .2s;
}
.search-form button:hover { background: var(--pink-dark); }
.cart-icon {
    font-size: 1.2rem; position: relative;
    width: 42px; height: 42px; border-radius: 50%;
    display: inline-flex; align-items: center; justify-content: center;
    transition: background .2s;
}
.cart-icon:hover { background: var(--pink-lighter); }
.cart-count {
    background: var(--pink); color: #fff; font-size: .68rem;
    padding: 2px 6px; border-radius: var(--pill); margin-left: -4px;
    position: relative; top: -8px; font-weight: 700; min-width: 18px;
    display: inline-block; text-align: center;
}
.header-icons { display: flex; gap: 8px; align-items: center; }

/* ── Navigation ─────────────────────────────────────────── */
.main-nav { background: var(--white); border-bottom: 1px solid var(--border); }
.nav-list { display: flex; list-style: none; gap: 0; }
.nav-list li { position: relative; }
.nav-list li > a {
    display: block; padding: 15px 22px; font-size: .88rem;
    color: var(--text); transition: color .2s; letter-spacing: .3px; font-weight: 500;
    position: relative;
}
.nav-list li > a::after {
    content: ''; position: absolute; left: 22px; right: 22px; bottom: 8px;
    height: 2px; background: var(--pink); border-radius: 2px;
    transform: scaleX(0); transform-origin: center; transition: transform .25s var(--ease);
}
.nav-list li > a:hover, .nav-list li > a.active { color: var(--pink); }
.nav-list li > a:hover::after, .nav-list li > a.active::after { transform: scaleX(1); }
.has-dropdown:hover .dropdown { display: flex; animation: dropIn .22s var(--ease); }
@keyframes dropIn { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: translateY(0); } }
.dropdown {
    display: none; position: absolute; top: 100%; left: 0;
    background: var(--white); border: 1px solid var(--border);
    border-radius: var(--radius); box-shadow: var(--shadow);
    padding: 24px; gap: 34px; min-width: 520px; z-index: 200;
}
.dropdown-col { display: flex; flex-direction: column; gap: 9px; }
.dropdown-title { font-weight: 700; color: var(--pink); font-size: .92rem; margin-bottom: 4px; font-family: var(--serif); }
.dropdown-col a { font-size: .85rem; color: var(--text-light); transition: color .15s, padding-left .15s; }
.dropdown-col a:hover { color: var(--pink); padding-left: 3px; }

/* ── Alerts ─────────────────────────────────────────────── */
.alert { padding: 13px 20px; text-align: center; font-size: .9rem; }
.alert-success { background: #e5f5ea; color: #1d7a44; }
.alert-error { background: #fbe7e9; color: #a3283a; border-radius: var(--radius-sm); padding: 13px 18px; margin-bottom: 16px; }

/* ── Buttons ────────────────────────────────────────────── */
.btn-primary {
    display: inline-block; background: linear-gradient(135deg, var(--pink), var(--pink-dark));
    color: #fff; padding: 13px 32px; border-radius: var(--pill); border: none;
    cursor: pointer; font-size: .9rem; font-weight: 600; letter-spacing: .4px;
    transition: transform .2s var(--ease), box-shadow .2s; box-shadow: 0 6px 18px rgba(160,95,124,.28);
}
.btn-primary:hover { color: #fff; transform: translateY(-2px); box-shadow: 0 12px 28px rgba(160,95,124,.36); }
.btn-secondary {
    display: inline-block; background: transparent; color: var(--pink);
    border: 1.5px solid var(--pink); padding: 11px 28px; border-radius: var(--pill);
    font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .2s;
}
.btn-secondary:hover { background: var(--pink); color: #fff; }
.btn-cart {
    width: 100%; padding: 12px;
    background: var(--pink-lighter); color: var(--pink-dark);
    border: none; border-top: 1px solid var(--border);
    cursor: pointer; font-size: .84rem; font-weight: 700; letter-spacing: .3px;
    transition: all .2s;
}
.btn-cart:hover { background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: #fff; }
.btn-sm { padding: 5px 12px; background: var(--pink-light); color: var(--pink); border: none; border-radius: var(--pill); cursor: pointer; font-size: .85rem; }
.btn-block { display: block; width: 100%; text-align: center; margin-top: 10px; }
.btn-remove { background: none; border: none; color: #d9556a; font-size: 1.1rem; cursor: pointer; padding: 0 8px; }
.btn-link { background: none; border: none; color: var(--text-light); font-size: .85rem; cursor: pointer; text-decoration: underline; }
.btn-lg { padding: 15px 36px; font-size: 1rem; }

/* ── Section ────────────────────────────────────────────── */
.section { padding: 66px 0; }
.section-title { text-align: center; font-family: var(--serif); font-size: 2.1rem; color: var(--text); margin-bottom: 42px; letter-spacing: .3px; }
.section-title::after { content: ''; display: block; width: 54px; height: 3px; background: linear-gradient(90deg, var(--pink), var(--gold)); margin: 14px auto 0; border-radius: 3px; }

/* ── Trust Bar (handmade / luxury signals) ──────────────── */
.trust-bar {
    background: var(--white); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
    padding: 22px 0;
}
.trust-inner { display: flex; justify-content: center; gap: 46px; flex-wrap: wrap; text-align: center; }
.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item .t-ico {
    width: 46px; height: 46px; border-radius: 50%; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
    background: var(--gold-soft); color: var(--gold); border: 1.5px solid var(--gold-light);
}
.trust-item strong { display: block; font-size: .86rem; color: var(--text); font-weight: 700; }
.trust-item small { font-size: .76rem; color: var(--text-light); }

/* ── Home Hero Banner ───────────────────────────────────── */
.home-hero { background: radial-gradient(120% 130% at 50% 0%, var(--pink-light) 0%, var(--pink-lighter) 45%, var(--cream) 100%); padding: 64px 0 58px; text-align: center; border-bottom: 1px solid rgba(201,162,75,.14); }
.home-hero-inner { max-width: 720px; }
.home-hero-eyebrow { display: inline-block; font-family: var(--sans); letter-spacing: .18em; text-transform: uppercase; font-size: .72rem; font-weight: 700; color: var(--gold); background: var(--gold-soft); padding: 7px 18px; border-radius: var(--pill); margin-bottom: 22px; }
.home-hero-title { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 5vw, 3.2rem); line-height: 1.1; color: var(--text); margin: 0 0 18px; }
.home-hero-sub { color: var(--text-light); font-size: 1.02rem; line-height: 1.75; max-width: 560px; margin: 0 auto 30px; }
.home-hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Neuheiten Section ──────────────────────────────────── */
.neuheiten-section { padding: 46px 0 64px; }
.neuheiten-title { text-align: center; font-family: var(--serif); font-size: 1.7rem; color: var(--text); margin-bottom: 12px; }
.neuheiten-sub { text-align: center; color: var(--text-light); font-size: .94rem; max-width: 580px; margin: 0 auto 34px; line-height: 1.7; }

/* ── Hero Mosaic ────────────────────────────────────────── */
.hero-mosaic { display: grid; grid-template-columns: repeat(5, 1fr); grid-template-rows: auto auto; gap: 10px; max-width: 820px; margin: 0 auto; }
.hero-mosaic > a { display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .4s var(--ease), box-shadow .3s; }
.hero-mosaic > a:hover { transform: scale(1.05) rotate(-1deg); box-shadow: var(--shadow); }
.hero-mosaic img { width: 100%; height: 100%; aspect-ratio: 1; object-fit: cover; display: block; }
.hero-mosaic > a:nth-child(5) { grid-column: 5; grid-row: 1 / 3; border-radius: var(--radius-lg); }
.hero-mosaic > a:nth-child(5) img { aspect-ratio: auto; }

/* ── Für sie Section ────────────────────────────────────── */
.fuer-section { background: linear-gradient(180deg, var(--pink-lighter), var(--cream)); padding: 66px 0; }
.fuer-title { text-align: center; font-family: var(--serif); font-size: 1.8rem; color: var(--text); margin-bottom: 40px; }

/* ── Hero (legacy) ──────────────────────────────────────── */
.hero { background: linear-gradient(135deg, var(--pink-light) 0%, var(--gold-soft) 130%); padding: 90px 0; text-align: center; }
.hero h1 { font-family: var(--serif); font-size: 3.1rem; color: var(--text); margin-bottom: 16px; letter-spacing: .5px; }
.hero p { font-size: 1.12rem; color: var(--text-light); margin-bottom: 32px; }

/* ── Products Grid ──────────────────────────────────────── */
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(238px, 1fr)); gap: 30px; }

.product-card {
    background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
    box-shadow: var(--shadow-sm); transition: box-shadow .3s var(--ease), transform .3s var(--ease);
    display: flex; flex-direction: column; position: relative;
    border: 1px solid rgba(239,226,233,.7);
}
.product-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-6px); }

.product-image { position: relative; width: 100%; aspect-ratio: 1; overflow: hidden; background: var(--pink-lighter); flex-shrink: 0; }
.product-image img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; transition: transform .55s var(--ease); }
.product-card:hover .product-image img { transform: scale(1.08); }
.product-placeholder { display: flex; align-items: center; justify-content: center; height: 100%; font-size: 3.5rem; background: linear-gradient(135deg, var(--pink-light), var(--gold-soft)); }

.badge-sale { position: absolute; top: 12px; right: 12px; background: linear-gradient(135deg, var(--gold), #b58a2e); color: #fff; padding: 5px 12px; border-radius: var(--pill); font-size: .66rem; font-weight: 800; letter-spacing: .6px; text-transform: uppercase; box-shadow: var(--shadow-gold); }

.product-info { padding: 17px 18px 10px; flex: 1; display: flex; flex-direction: column; }
.product-info h3 { font-size: .9rem; color: var(--text); margin-bottom: 10px; line-height: 1.45; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; flex: 1; font-weight: 600; }
.product-price { display: flex; gap: 8px; align-items: baseline; margin-bottom: 12px; flex-wrap: wrap; }
.price { font-weight: 800; color: var(--pink-dark); font-size: 1.1rem; font-family: var(--serif); }
.old-price { color: #bba7b0; font-size: .82rem; text-decoration: line-through; }
.ship-note { display: block; font-size: .68rem; color: #b3a4ab; font-weight: 400; width: 100%; }

/* ── Category Cards ─────────────────────────────────────── */
.categories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.category-card {
    background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
    padding: 46px 22px; text-align: center; transition: all .3s var(--ease);
    display: block; text-decoration: none; color: inherit; position: relative; overflow: hidden;
}
.category-card::before {
    content: ''; position: absolute; inset: 0; opacity: 0;
    background: radial-gradient(circle at 50% 0%, var(--pink-lighter), transparent 70%);
    transition: opacity .3s;
}
.category-card:hover { box-shadow: var(--shadow); transform: translateY(-6px); color: inherit; border-color: var(--gold-light); }
.category-card:hover::before { opacity: 1; }
.category-image {
    font-size: 2.4rem; margin: 0 auto 18px; width: 84px; height: 84px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; position: relative;
    background: linear-gradient(135deg, var(--pink-light), var(--gold-soft));
    box-shadow: inset 0 0 0 6px rgba(255,255,255,.6);
}
.category-card h3 { font-family: var(--serif); font-size: 1.45rem; margin-bottom: 8px; position: relative; }
.category-card p { color: var(--text-light); font-size: .9rem; margin-bottom: 20px; position: relative; }

/* ── Info Bar ───────────────────────────────────────────── */
.info-bar { background: linear-gradient(180deg, var(--pink-lighter), var(--cream)); padding: 46px 0; }
.info-bar-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.info-item { display: flex; gap: 14px; align-items: flex-start; }
.info-icon { font-size: 1.5rem; width: 48px; height: 48px; border-radius: 50%; display: flex; align-items: center; justify-content: center; background: var(--white); box-shadow: var(--shadow-sm); flex-shrink: 0; }
.info-item strong { display: block; color: var(--text); font-size: .9rem; margin-bottom: 4px; }
.info-item p { color: var(--text-light); font-size: .85rem; }

/* ── Shop Layout ────────────────────────────────────────── */
.shop-layout { display: grid; grid-template-columns: 250px 1fr; gap: 32px; }
.sidebar { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; height: fit-content; box-shadow: var(--shadow-sm); }
.sidebar h3 { font-size: 1rem; color: var(--text); margin-bottom: 16px; padding-bottom: 8px; border-bottom: 1px solid var(--border); font-family: var(--serif); }
.sidebar-cat { margin-bottom: 16px; }
.sidebar-cat-title { font-weight: 700; color: var(--pink); font-size: .9rem; display: block; margin-bottom: 6px; }
.sidebar-sub { display: block; color: var(--text-light); font-size: .85rem; padding: 4px 0 4px 12px; transition: color .15s, padding-left .15s; border-radius: 8px; }
.sidebar-sub:hover { color: var(--pink); padding-left: 16px; }
.shop-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; flex-wrap: wrap; gap: 12px; }
.shop-header h1 { font-size: 1.7rem; font-family: var(--serif); }
.shop-header span { color: var(--text-light); font-size: .9rem; }

/* ── Breadcrumb ─────────────────────────────────────────── */
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--text-light); margin-bottom: 22px; flex-wrap: wrap; }
.breadcrumb a { color: var(--text-light); }
.breadcrumb a:hover { color: var(--pink); }
.breadcrumb span:not(:last-child) { color: #d7c7cf; }
.breadcrumb span:last-child { color: var(--pink); font-weight: 500; }

/* ── Subcategory Tabs ───────────────────────────────────── */
.subcategory-tabs { display: flex; gap: 9px; flex-wrap: wrap; margin-bottom: 32px; }
.tab { padding: 9px 20px; border: 1.5px solid var(--border); border-radius: var(--pill); font-size: .85rem; color: var(--text-light); cursor: pointer; transition: all .2s; background: var(--white); }
.tab:hover, .tab.active { background: var(--pink); color: #fff; border-color: var(--pink); box-shadow: 0 6px 16px rgba(160,95,124,.25); }

/* ── Product Detail ─────────────────────────────────────── */
.product-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; margin-bottom: 64px; }
.product-detail-image { position: relative; }
.product-detail-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow); }
.product-placeholder-lg { height: 440px; background: linear-gradient(135deg, var(--pink-light), var(--gold-soft)); border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 5rem; }
.product-detail-info h1 { font-family: var(--serif); font-size: 2.1rem; margin-bottom: 16px; line-height: 1.25; }
.product-price-lg { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.price-lg { font-size: 2.1rem; font-weight: 800; color: var(--pink-dark); font-family: var(--serif); }
.old-price-lg { font-size: 1.2rem; color: var(--text-light); text-decoration: line-through; }
.product-desc { color: var(--text-light); line-height: 1.8; margin: 20px 0; }
.product-desc p { margin: 0 0 12px; }
.product-desc h2, .product-desc h3 { font-family: var(--serif); color: var(--text); margin: 18px 0 8px; font-size: 1.1rem; }
.product-desc ul, .product-desc ol { margin: 0 0 12px 20px; }
.product-desc img { max-width: 100%; height: auto; border-radius: var(--radius-sm); }
.product-meta { margin: 16px 0; display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.in-stock { color: #2a9d5c; font-size: .9rem; font-weight: 600; }
.out-stock { color: #d9556a; font-size: .9rem; font-weight: 600; }
.art-nr { color: var(--text-light); font-size: .82rem; letter-spacing: .02em; }

/* Images embedded in generated content pages (size charts etc.) */
.content-images { display: flex; flex-wrap: wrap; gap: 16px; margin: 26px 0 8px; }
.content-images img { max-width: min(100%, 420px); height: auto; border-radius: var(--radius); box-shadow: var(--shadow-sm); }

/* IT-Recht Kanzlei attribution badge on legal pages */
.itk-attribution { display: flex; align-items: center; gap: 12px; margin-top: 44px; padding-top: 20px; border-top: 1px solid var(--border); font-size: .9rem; flex-wrap: wrap; }
.itk-attribution svg { flex-shrink: 0; }
.itk-attribution a { color: #f18700; text-decoration: none; font-weight: 600; }
.itk-attribution a:hover { text-decoration: underline; }
.itk-stand { margin-left: auto; color: var(--text-light); font-size: .78rem; }
.add-to-cart-form { margin: 22px 0; }
.qty-control { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.qty-control label { font-weight: 600; font-size: .9rem; }
.shipping-info { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--border); display: flex; flex-direction: column; gap: 10px; }
.shipping-item { display: flex; align-items: center; gap: 10px; font-size: .88rem; color: var(--text-light); }
.shipping-item span { color: var(--text); }
.related-products h2 { font-family: var(--serif); font-size: 1.7rem; margin-bottom: 26px; }

/* ── Cart ───────────────────────────────────────────────── */
.cart-layout { display: grid; grid-template-columns: 1fr 350px; gap: 32px; }
.cart-item { display: grid; grid-template-columns: 90px 1fr 120px 100px 40px; gap: 16px; align-items: center; padding: 18px 0; border-bottom: 1px solid var(--border); }
.cart-item-image img { width: 90px; height: 90px; object-fit: cover; border-radius: var(--radius-sm); }
.product-placeholder-sm { width: 90px; height: 90px; background: var(--pink-light); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; }
.cart-item-info h3 { font-size: .92rem; margin-bottom: 4px; }
.cart-item-price { color: var(--pink); font-size: .9rem; }
.cart-item-qty input { width: 62px; padding: 7px; border: 1.5px solid var(--border); border-radius: 10px; text-align: center; }
.cart-item-total { font-weight: 700; }
.cart-summary { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; height: fit-content; box-shadow: var(--shadow-sm); }
.cart-summary h3 { font-size: 1.15rem; margin-bottom: 20px; font-family: var(--serif); }
.summary-row { display: flex; justify-content: space-between; padding: 9px 0; color: var(--text); font-size: .9rem; }
.total-row { border-top: 2px solid var(--border); margin-top: 8px; padding-top: 13px; font-size: 1.15rem; }
.shipping-hint { background: var(--gold-soft); color: #9a7b28; padding: 9px 13px; border-radius: 10px; font-size: .8rem; margin: 8px 0; }

/* ── Contact / Forms ────────────────────────────────────── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; font-size: .95rem; align-items: center; }
.contact-item span { font-size: 1.3rem; width: 46px; height: 46px; border-radius: 50%; background: var(--pink-lighter); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-form .form-group { margin-bottom: 16px; }
.contact-form label { display: block; font-size: .85rem; color: var(--text-light); margin-bottom: 6px; }
.contact-form input, .contact-form textarea { width: 100%; padding: 12px 16px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .9rem; outline: none; font-family: inherit; transition: border-color .2s, box-shadow .2s; background: var(--white); }
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 4px var(--pink-lighter); }
.page-subtitle { color: var(--text-light); margin-bottom: 30px; font-size: 1rem; }

/* ── Pagination ─────────────────────────────────────────── */
.pagination-wrap { margin-top: 44px; display: flex; justify-content: center; }
.pagination-wrap nav { width: 100%; }
.pagination-wrap .d-flex { justify-content: center !important; }
.pagination-wrap .d-none { display: flex !important; justify-content: center !important; }
.pagination-wrap .d-sm-none { display: none !important; }
.pagination-wrap .align-items-sm-center { align-items: center; }
.pagination-wrap p { display: none; }
ul.pagination { display: flex; gap: 7px; list-style: none; padding: 0; margin: 0; flex-wrap: wrap; justify-content: center; }
ul.pagination .page-item .page-link, ul.pagination .page-item span.page-link {
    display: flex; align-items: center; justify-content: center; width: 40px; height: 40px;
    border-radius: 50%; border: 1.5px solid var(--border); background: var(--white); color: var(--text);
    font-size: .88rem; font-weight: 600; text-decoration: none; transition: all .2s; cursor: pointer;
}
ul.pagination .page-item .page-link:hover { border-color: var(--pink); color: var(--pink); background: var(--pink-lighter); }
ul.pagination .page-item.active .page-link, ul.pagination .page-item.active span.page-link {
    background: linear-gradient(135deg, var(--pink), var(--pink-dark)); border-color: var(--pink); color: #fff; box-shadow: 0 6px 16px rgba(160,95,124,.28);
}
ul.pagination .page-item.disabled .page-link, ul.pagination .page-item.disabled span.page-link { opacity: .35; cursor: default; pointer-events: none; }

/* ── Empty State ────────────────────────────────────────── */
.empty-state { text-align: center; padding: 66px 20px; color: var(--text-light); }
.empty-state p { font-size: 1.1rem; margin-bottom: 20px; }

/* ── Footer ─────────────────────────────────────────────── */
.footer { background: var(--ink); color: #c9bfc4; padding: 56px 0 0; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; }
.footer-col h3 { font-family: var(--serif); color: #fff; font-size: 1.5rem; margin-bottom: 16px; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 12px; }
.footer-col p, .footer-col a { font-size: .85rem; color: #9d919a; line-height: 1.9; display: block; transition: color .15s; }
.footer-col a:hover { color: var(--gold-light); }
.footer-pay span { display: inline-block; padding: 4px 11px; border: 1px solid rgba(255,255,255,.14); border-radius: var(--pill); background: rgba(255,255,255,.04); color: #cfc5ca; }
.footer-bottom { text-align: center; padding: 22px; border-top: 1px solid rgba(255,255,255,.09); margin-top: 40px; font-size: .8rem; color: #8a7f86; }
.footer-bottom a { color: #a99ea4; }
.footer-bottom a:hover { color: var(--gold-light); }

/* ── Sidebar toggle (mobile) ────────────────────────────── */
.sidebar-toggle { display: none; width: 100%; padding: 12px 18px; background: var(--pink-lighter); color: var(--pink); border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .88rem; font-weight: 600; cursor: pointer; margin-bottom: 12px; text-align: left; }

/* ── Sold Out / Badges ──────────────────────────────────── */
.badge-sold-out { position: absolute; top: 12px; left: 12px; background: rgba(58,46,51,.85); color: #fff; padding: 5px 12px; border-radius: var(--pill); font-size: .66rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.btn-cart-disabled { width: 100%; padding: 12px; background: #f3edf0; color: #b3a4ab; border: none; border-top: 1px solid var(--border); cursor: not-allowed; font-size: .78rem; font-weight: 600; }
.sold-out-overlay { position: absolute; inset: 0; background: rgba(42,34,38,.4); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.2rem; font-weight: 700; letter-spacing: 1px; }

/* ── Wishlist ───────────────────────────────────────────── */
.btn-wishlist { display: flex; align-items: center; gap: 8px; background: none; border: 1.5px solid var(--border); color: var(--text-light); padding: 11px 22px; border-radius: var(--pill); cursor: pointer; font-size: .9rem; margin-top: 12px; transition: all .2s; width: fit-content; }
.btn-wishlist:hover, .btn-wishlist.wishlisted { border-color: var(--pink); color: var(--pink); background: var(--pink-lighter); }

/* ── Save Badge ─────────────────────────────────────────── */
.save-badge { background: linear-gradient(135deg, var(--gold), #b58a2e); color: #fff; padding: 4px 10px; border-radius: var(--pill); font-size: .74rem; font-weight: 700; box-shadow: var(--shadow-gold); }
.product-image .save-badge { position: absolute; top: 12px; right: 12px; }

/* ── Qty Control ────────────────────────────────────────── */
.qty-input-wrap { display: flex; align-items: center; border: 1.5px solid var(--border); border-radius: var(--pill); overflow: hidden; width: fit-content; background: var(--white); }
.qty-btn { width: 40px; height: 42px; background: var(--pink-lighter); border: none; font-size: 1.2rem; cursor: pointer; color: var(--pink); font-weight: 700; transition: background .2s; }
.qty-btn:hover { background: var(--pink); color: #fff; }
.qty-input-wrap input[type=number] { width: 52px; height: 42px; border: none; text-align: center; font-size: 1rem; font-weight: 600; -moz-appearance: textfield; -webkit-appearance: none; appearance: textfield; background: transparent; }
.qty-input-wrap input[type=number]::-webkit-inner-spin-button { -webkit-appearance: none; }

/* ── Legal Pages ────────────────────────────────────────── */
.legal-content { max-width: 760px; }
.legal-content h1 { font-family: var(--serif); font-size: 2.3rem; margin-bottom: 32px; color: var(--text); }
.legal-content h2 { font-size: 1.2rem; color: var(--text); margin: 30px 0 10px; padding-bottom: 6px; border-bottom: 1px solid var(--border); font-family: var(--serif); }
.legal-content h3 { font-size: 1rem; color: var(--text); margin: 16px 0 6px; }
.legal-content p { color: var(--text-light); line-height: 1.8; margin-bottom: 10px; font-size: .93rem; }
.legal-content a { color: var(--pink); text-decoration: underline; }
.legal-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.legal-content th, .legal-content td { padding: 10px 14px; border: 1px solid var(--border); text-align: left; font-size: .9rem; }
.legal-content th { background: var(--pink-lighter); color: var(--text); }

/* ── Checkout ───────────────────────────────────────────── */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 30px; align-items: start; }
.checkout-left { display: flex; flex-direction: column; gap: 20px; }
.checkout-card { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.checkout-card h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--border); font-family: var(--serif); }
.checkout-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-field { display: flex; flex-direction: column; gap: 5px; }
.form-field label { font-size: .82rem; font-weight: 500; color: var(--text); }
.form-field input, .form-field select, .form-field textarea { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: .875rem; outline: none; transition: border-color .15s, box-shadow .2s; background: var(--white); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--pink); box-shadow: 0 0 0 4px var(--pink-lighter); }
.form-field textarea { resize: vertical; }
.payment-options { display: flex; flex-direction: column; gap: 10px; }
.payment-option { cursor: pointer; }
.payment-option input[type=radio] { accent-color: var(--pink); }
.payment-label { display: flex; align-items: center; gap: 12px; padding: 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); transition: border-color .15s, background .15s; }
.payment-option.is-selected .payment-label,
.payment-option:has(input:checked) .payment-label { border-color: var(--pink); background: var(--pink-lighter); }
.pay-icon { font-size: 1.5rem; width: 36px; text-align: center; }
.payment-label strong { display: block; font-size: .88rem; }
.payment-label small { color: var(--text-light); font-size: .78rem; }

/* Carrier selection (DHL / Hermes / Deutsche Post) */
.carrier-options { display: flex; flex-direction: column; gap: 10px; }
.carrier-option { cursor: pointer; }
.carrier-option input[type=radio] { position: absolute; opacity: 0; }
.carrier-label { display: flex; align-items: center; gap: 12px; padding: 13px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); transition: border-color .15s, background .15s, box-shadow .15s; }
.carrier-option.is-selected .carrier-label,
.carrier-option:has(input:checked) .carrier-label { border-color: var(--pink); background: var(--pink-lighter); box-shadow: 0 0 0 3px rgba(193,122,151,.12); }
.carrier-ico { font-size: 1.5rem; width: 36px; text-align: center; flex-shrink: 0; }
.carrier-info { flex: 1; min-width: 0; }
.carrier-info strong { display: block; font-size: .88rem; }
.carrier-info small { color: var(--text-light); font-size: .76rem; display: block; margin-top: 2px; }
.carrier-price { white-space: nowrap; font-size: .92rem; }
.carrier-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 5px; }
.cbadge { font-size: .64rem; font-weight: 700; padding: 2px 8px; border-radius: var(--pill); letter-spacing: .02em; }
.cbadge-green { background: #e5f5ec; color: #1f7a48; }
.cbadge-blue { background: #e7effc; color: #2456a5; }
.cbadge-gray { background: #f1edef; color: #8a7580; }
.checkout-right { position: sticky; top: 84px; }
.checkout-summary-card { display: flex; flex-direction: column; gap: 0; }
.checkout-summary-card h2 { font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; font-family: var(--serif); }
.checkout-item { display: flex; align-items: center; gap: 12px; padding: 11px 0; border-bottom: 1px solid #f6eef2; }
.checkout-item-img { position: relative; width: 54px; height: 54px; border-radius: var(--radius-sm); overflow: hidden; flex-shrink: 0; }
.checkout-item-img img { width: 100%; height: 100%; object-fit: cover; }
.checkout-item-qty { position: absolute; top: -6px; right: -6px; background: var(--pink); color: #fff; width: 19px; height: 19px; border-radius: 50%; font-size: .65rem; font-weight: 700; display: flex; align-items: center; justify-content: center; }
.checkout-item-info { display: flex; justify-content: space-between; align-items: center; flex: 1; font-size: .85rem; }
.checkout-divider { height: 1px; background: var(--border); margin: 12px 0; }
.checkout-totals { display: flex; flex-direction: column; gap: 8px; }
.checkout-total-row { display: flex; justify-content: space-between; font-size: .875rem; color: var(--text-light); }
.checkout-grand-total { font-size: 1.1rem; color: var(--text); padding-top: 8px; border-top: 2px solid var(--border); margin-top: 4px; font-family: var(--serif); font-weight: 700; }
.free-ship-hint { font-size: .78rem; color: #9a7b28; background: var(--gold-soft); padding: 7px 11px; border-radius: 10px; margin-top: 4px; }
.checkout-agree { margin: 14px 0; }
.btn-checkout { margin-top: 4px; padding: 15px; font-size: .95rem; font-weight: 700; justify-content: center; }

/* ── Mobile Bar ─────────────────────────────────────────── */
.mobile-bar { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: linear-gradient(90deg, var(--pink-dark), var(--pink)); color: #fff; z-index: 200; height: 52px; box-shadow: 0 -3px 14px rgba(0,0,0,.14); }
.mobile-bar-item { display: flex; flex-direction: column; align-items: center; justify-content: center; flex: 1; color: #fff; font-size: .7rem; gap: 2px; text-decoration: none; }
.mobile-bar-item span:first-child { font-size: 1rem; }
@media (max-width: 768px) { .mobile-bar { display: flex; } }

/* ── Back to Top ────────────────────────────────────────── */
#back-to-top { display: none; position: fixed; bottom: 72px; right: 20px; width: 46px; height: 46px; background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: #fff; border: none; border-radius: 50%; font-size: 1.1rem; cursor: pointer; box-shadow: 0 6px 18px rgba(160,95,124,.45); z-index: 150; align-items: center; justify-content: center; transition: transform .2s, box-shadow .2s; }
#back-to-top:hover { transform: translateY(-3px); box-shadow: 0 12px 26px rgba(160,95,124,.5); }

/* ── Cookie Banner ──────────────────────────────────────── */
#cookie-banner { position: fixed; bottom: 0; left: 0; right: 0; background: var(--ink); color: rgba(255,255,255,.9); z-index: 300; padding: 18px 20px; box-shadow: 0 -4px 18px rgba(0,0,0,.24); }
.cookie-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; justify-content: space-between; }
.cookie-inner p { font-size: .85rem; line-height: 1.5; flex: 1; min-width: 240px; }
.cookie-inner a { color: var(--gold-light); text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.btn-cookie-accept { background: linear-gradient(135deg, var(--pink), var(--pink-dark)); color: #fff; border: none; padding: 9px 22px; border-radius: var(--pill); font-size: .85rem; font-weight: 600; cursor: pointer; }
.btn-cookie-decline { background: transparent; color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.3); padding: 9px 18px; border-radius: var(--pill); font-size: .82rem; cursor: pointer; }

/* ── Price Filter ───────────────────────────────────────── */
.price-filter-form h3 { font-size: .88rem; font-weight: 700; color: var(--text); margin-bottom: 12px; }
.price-inputs { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.price-inputs label { display: block; font-size: .75rem; color: var(--text-light); margin-bottom: 4px; }
.price-inputs input { width: 100%; padding: 8px 11px; border: 1.5px solid var(--border); border-radius: 10px; font-size: .82rem; outline: none; }
.price-inputs input:focus { border-color: var(--pink); }
.btn-filter { width: 100%; padding: 10px; background: var(--pink); color: #fff; border: none; border-radius: var(--pill); font-size: .85rem; font-weight: 600; cursor: pointer; transition: background .2s; }
.btn-filter:hover { background: var(--pink-dark); }
.btn-filter-reset { display: block; text-align: center; margin-top: 6px; font-size: .78rem; color: var(--text-light); text-decoration: underline; cursor: pointer; }

/* ── Sort Select ────────────────────────────────────────── */
.sort-select { padding: 9px 30px 9px 14px; border: 1.5px solid var(--border); border-radius: var(--pill); font-size: .82rem; outline: none; background: var(--white); cursor: pointer; color: var(--text); -webkit-appearance: none; -moz-appearance: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23c17a97'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; }
.sort-select:focus { border-color: var(--pink); }

/* ── Recently Viewed ────────────────────────────────────── */
.recently-viewed { padding: 46px 0; background: linear-gradient(180deg, var(--pink-lighter), var(--cream)); }
.recently-viewed .section-title { font-size: 1.5rem; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 960px) {
    .categories-grid { grid-template-columns: 1fr 1fr; }
    .info-bar-inner { grid-template-columns: 1fr 1fr; }
    .footer-inner { grid-template-columns: 1fr 1fr; }
    .shop-layout { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .sidebar.open { display: block; }
    .sidebar-toggle { display: block; }
    .product-detail { grid-template-columns: 1fr; gap: 30px; }
    .cart-layout { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .checkout-layout { grid-template-columns: 1fr; }
    .checkout-right { position: static; }
    .checkout-grid { grid-template-columns: 1fr; }
    .dropdown { min-width: 300px; flex-wrap: wrap; }
    .trust-inner { gap: 24px; }
}
@media (max-width: 600px) {
    .hero h1 { font-size: 2.1rem; }
    .categories-grid { grid-template-columns: 1fr; }
    .info-bar-inner { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .product-card { border-radius: var(--radius); }
    .cart-item { grid-template-columns: 60px 1fr; gap: 8px; }
    .hero-mosaic { grid-template-columns: repeat(3, 1fr); }
    .hero-mosaic > a:nth-child(5) { grid-column: auto; grid-row: auto; }
    .hero-mosaic > a:nth-child(5) img { aspect-ratio: 1; }
    body { padding-bottom: 58px; }
    .section-title { font-size: 1.7rem; }
    .trust-item { flex-direction: column; text-align: center; gap: 6px; }
}

/* ── PWA-Toast (Update-Hinweis / Installation) ───────────── */
#pwa-toast {
    position: fixed;
    left: 50%;
    bottom: calc(18px + env(safe-area-inset-bottom));
    transform: translate(-50%, 140%);
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: min(92vw, 460px);
    padding: 13px 14px 13px 20px;
    background: #2e2532;
    color: #fff;
    border-radius: var(--pill);
    box-shadow: 0 10px 34px rgba(0, 0, 0, .3);
    font-size: .88rem;
    line-height: 1.4;
    opacity: 0;
    transition: transform .35s var(--ease), opacity .35s;
}
#pwa-toast.is-visible { transform: translate(-50%, 0); opacity: 1; }
#pwa-toast span { flex: 1; }
.pwa-toast-action {
    flex-shrink: 0;
    background: var(--pink);
    color: #fff;
    border: 0;
    border-radius: var(--pill);
    padding: 8px 18px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
}
.pwa-toast-action:active { transform: scale(.96); }
.pwa-toast-close {
    flex-shrink: 0;
    background: none;
    border: 0;
    color: rgba(255, 255, 255, .55);
    font-size: 1.4rem;
    line-height: 1;
    padding: 0 4px;
    cursor: pointer;
}
@media (max-width: 480px) {
    #pwa-toast { left: 12px; right: 12px; max-width: none; transform: translateY(140%); }
    #pwa-toast.is-visible { transform: translateY(0); }
}

/* ── Safe areas (iPhone Notch / Dynamic Island) ──────────── */
@supports (padding: max(0px)) {
    .header-inner,
    .container { padding-left: max(20px, env(safe-area-inset-left)); padding-right: max(20px, env(safe-area-inset-right)); }
    .mobile-bottom-nav { padding-bottom: env(safe-area-inset-bottom); }
}

/* Im installierten App-Modus die Browser-typischen Hinweise ausblenden */
@media (display-mode: standalone) {
    .promo-bar { position: sticky; top: 0; z-index: 60; }
}

/* Bewegung reduzieren, wenn das System es verlangt (Barrierefreiheit) */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important;
    }
}
