/* ============= VARIABLES ============= */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f7edee;
  --color-bg-announcement: #e9c4cb;
  --color-text: #1d1d1d;
  --color-text-muted: #71706f;
  --color-border: #ebebeb;
  --color-border-pink: #e2b8b0;
  --color-btn: #1d1d1d;
  --color-btn-hover: #040404;
  --color-btn-text: #ffffff;
  --color-sale: #e27b6d;
  --color-yellow: #ffd711;
  --font-body: Helvetica, Arial, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-script: 'Dancing Script', cursive;
  --container: 1240px;
  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); font-size: 15px; line-height: 1.55; color: var(--color-text); background: #fff; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-text-muted); }
ul { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--font-body); color: var(--color-text); font-weight: 700; line-height: 1.2; }

.section-title { font-family: var(--font-display); font-size: clamp(1.85rem, 3.4vw, 2.5rem); font-weight: 700; text-align: center; margin-bottom: 56px; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* BUTTONS */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 38px; font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; border-radius: 999px; transition: all var(--transition); border: 2px solid transparent; white-space: nowrap; }
.btn-primary { background: var(--color-btn); color: var(--color-btn-text); }
.btn-primary:hover { background: var(--color-btn-hover); color: var(--color-btn-text); }

/* ANNOUNCEMENT */
.announcement { background: #e9cdcd; color: #3a3a3a; text-align: center; padding: 12px 22px; font-size: 0.95rem; font-weight: 700; position: sticky; top: 0; z-index: 101; }

/* HEADER */
.header { background: var(--color-bg); position: sticky; top: 44px; z-index: 100; border-bottom: 1px solid var(--color-border); }
.header-inner { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; padding: 16px 0; gap: 32px; }
.logo { font-family: var(--font-body); font-size: 1.25rem; font-weight: 400; letter-spacing: 0.16em; display: inline-flex; align-items: center; }
.logo img { width: 100%; max-width: 150px; height: auto; display: block; }
.logo-script { font-family: var(--font-script); font-size: 1.7rem; font-weight: 600; letter-spacing: 0; transform: translateY(4px); margin-left: -2px; }
.nav { display: flex; gap: 32px; justify-self: center; }
.nav a { font-size: 0.95rem; font-weight: 700; padding: 6px 0; position: relative; }
.nav a.active, .nav a:hover { color: var(--color-text); }
.nav a.active::after, .nav a:hover::after { content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 1px; background: var(--color-text); }
.header-icons { display: flex; gap: 4px; justify-self: end; align-items: center; }
.icon-btn { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: background var(--transition); position: relative; }
.icon-btn:hover { background: var(--color-bg-alt); }
.icon-btn svg { width: 18px; height: 18px; stroke: var(--color-text); stroke-width: 1.6; fill: none; }
.menu-toggle { display: none; }
.mobile-nav { display: none; flex-direction: column; padding: 16px 24px; background: #fff; border-top: 1px solid var(--color-border); }
.mobile-nav.open { display: flex; }
.mobile-nav a { padding: 12px 0; font-weight: 700; border-bottom: 1px solid var(--color-border); }
.mobile-icons { display: flex; gap: 12px; padding: 16px 0 4px; }
.mobile-icons .icon-btn { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; transition: background 0.25s; cursor: pointer; background: #f7edee; border: none; color: #1d1d1d; }
.mobile-icons .icon-btn:hover { background: #e9c4cb; }
.mobile-icons .icon-btn svg { width: 18px; height: 18px; stroke: #1d1d1d; stroke-width: 1.6; fill: none; }

/* PRODUCT GRID (genutzt auf Home + in Blog-Cross-Sell) */
.product-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card { display: flex; flex-direction: column; gap: 18px; }
.product-media { position: relative; aspect-ratio: 7/10; background: #fff; border-radius: 18px; display: flex; align-items: center; justify-content: center; padding: 0; overflow: hidden; box-shadow: 0 1px 3px rgba(29,29,29,0.04); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); }
.product-title { font-size: 0.95rem; font-weight: 700; line-height: 1.4; text-align: center; min-height: 64px; }
.product-price { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.price-old { font-size: 0.92rem; color: var(--color-text-muted); text-decoration: line-through; }
.price-current { font-size: 1.05rem; font-weight: 700; }
.kaufoptionen-label { font-size: 0.78rem; color: var(--color-text-muted); margin-bottom: 8px; }
.product-options { display: flex; flex-direction: column; gap: 6px; }
.product-option { display: flex; justify-content: space-between; align-items: center; padding: 10px 14px; border: 1px solid var(--color-border); border-radius: 8px; cursor: pointer; font-size: 0.85rem; transition: border-color var(--transition); }
.product-option.selected { border-color: var(--color-text); }
.product-option-label { display: inline-flex; align-items: center; gap: 8px; }
.product-option-price { font-weight: 700; }
.save-badge { background: var(--color-yellow); color: var(--color-text); font-size: 0.68rem; font-weight: 800; padding: 2px 6px; border-radius: 3px; margin-left: 4px; }

/* BLOG INDEX */
.blog-index { background: #fff; padding: 56px 0 96px; }
.blog-index h1.section-title { font-family: var(--font-body); font-weight: 700; margin-bottom: 48px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; max-width: 820px; margin: 0 auto; }
.blog-card { cursor: pointer; transition: transform var(--transition); display: block; }
.blog-card:hover { transform: translateY(-4px); }
.blog-card-image { aspect-ratio: 4/3; overflow: hidden; border-radius: 4px; margin-bottom: 18px; background: #f7edee; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card h3 { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; line-height: 1.3; margin-bottom: 12px; }
.blog-card p { font-size: 0.9rem; line-height: 1.55; margin-bottom: 16px; }
.blog-read-more { display: inline-block; padding: 8px 18px; border: 1px solid var(--color-text); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; transition: background var(--transition), color var(--transition); }
.blog-read-more:hover { background: var(--color-text); color: #fff; }

/* BLOG ARTICLE */
.blog-article { background: var(--color-bg-alt); }
.blog-hero { position: relative; width: 100%; height: 360px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.blog-hero img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.blog-hero::after { content: ''; position: absolute; inset: 0; background: rgba(29,29,29,0.15); }
.blog-hero h1 { position: relative; z-index: 1; color: #fff; font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 400; text-align: center; padding: 0 24px; text-shadow: 0 2px 12px rgba(0,0,0,0.3); }
.blog-content { padding: 56px 0 80px; }
.blog-content-inner { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.blog-content h2 { font-family: var(--font-display); font-size: clamp(1.5rem, 3vw, 2rem); font-weight: 700; text-align: center; margin-bottom: 28px; }
.blog-content p.intro { font-size: 0.95rem; line-height: 1.7; text-align: center; margin-bottom: 40px; }
.blog-section-card { background: #fff; border-radius: 6px; padding: 24px 28px; margin-bottom: 16px; }
.blog-section-card h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.blog-section-card p { font-size: 0.92rem; line-height: 1.6; }
.blog-illustration { margin: 48px auto; max-width: 540px; text-align: center; }
.blog-illustration img { width: 100%; border-radius: 4px; }
.blog-illustration-caption { font-family: var(--font-script); font-size: 1rem; margin-top: 12px; }
.blog-outro { font-size: 0.92rem; line-height: 1.7; text-align: center; margin: 40px 0; }
.blog-divider { width: 100%; height: 1px; background: var(--color-border-pink); margin: 40px 0; }
.blog-bullets { background: #fff; border-radius: 6px; padding: 30px 40px; margin-bottom: 24px; }
.blog-bullets ul { list-style: disc; padding-left: 20px; }
.blog-bullets li { font-size: 0.92rem; line-height: 1.7; margin-bottom: 16px; }
.blog-bullets li:last-child { margin-bottom: 0; }
.blog-bullets strong { font-weight: 700; }
.blog-journal { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; margin: 48px 0; }
.blog-journal-image { background: #fff; border-radius: 6px; padding: 32px 24px; text-align: center; }
.blog-journal-eyebrow { font-family: var(--font-display); font-style: italic; font-size: 0.85rem; letter-spacing: 0.2em; margin-bottom: 8px; }
.blog-journal-eyebrow::after { content: ''; display: block; width: 60px; height: 1px; background: var(--color-text); margin: 6px auto 0; }
.blog-journal-title { font-family: var(--font-display); font-weight: 900; font-size: 1.5rem; margin-bottom: 6px; }
.blog-journal-subtitle { font-family: var(--font-script); font-size: 0.9rem; color: var(--color-text-muted); margin-bottom: 18px; }
.blog-journal-preview { width: 100%; aspect-ratio: 4/3; background: var(--color-bg-alt); border-radius: 4px; display: flex; align-items: center; justify-content: center; overflow: hidden; margin-bottom: 18px; }
.blog-journal-preview img { width: 80%; height: auto; }
.blog-journal-caption { font-size: 0.78rem; color: var(--color-text-muted); margin-bottom: 14px; }
.journal-qty-row { margin-bottom: 16px; }
.journal-qty { display: inline-flex; align-items: center; border: 2px solid #f0d0c8; border-radius: 999px; padding: 4px; background: #fff; }
.journal-qty-btn { width: 36px; height: 36px; border-radius: 50%; background: transparent; color: #1d1d1d; font-size: 1.2rem; line-height: 1; display: flex; align-items: center; justify-content: center; cursor: pointer; border: none; }
.journal-qty-btn:hover { background: rgba(0,0,0,0.05); }
.journal-qty-input { width: 40px; text-align: center; border: none; outline: none; font-size: 0.95rem; font-weight: 600; background: transparent; }
.journal-add-cart { display: inline-block; background: #1d1d1d; color: #fff; padding: 14px 32px; border-radius: 999px; font-size: 0.95rem; font-weight: 700; cursor: pointer; border: none; transition: background 0.2s; }
.journal-add-cart:hover { background: #040404; color: #fff; }
.blog-journal-download { display: inline-block; background: var(--color-text); color: #fff; padding: 10px 24px; border-radius: 999px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; }
.blog-journal-content h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; margin-bottom: 8px; }
.blog-journal-price { font-size: 1.25rem; font-weight: 700; margin-bottom: 18px; }
.blog-journal-desc { font-size: 0.88rem; line-height: 1.6; margin-bottom: 14px; }
.blog-cross-sell { background: var(--color-bg-alt); padding: 64px 0; }
.blog-cross-sell .product-grid { grid-template-columns: repeat(3, 1fr); max-width: 900px; margin: 0 auto; }
.blog-newsletter { position: relative; padding: 100px 24px; background: var(--color-bg-alt); overflow: hidden; }
.blog-newsletter-bg { position: absolute; inset: 0; opacity: 0.5; z-index: 0; }
.blog-newsletter-bg img { width: 100%; height: 100%; object-fit: cover; }
.blog-newsletter-inner { position: relative; z-index: 1; max-width: 520px; margin: 0 auto; background: var(--color-bg-alt); padding: 48px 40px; text-align: center; border-radius: 4px; }
.blog-newsletter h2 { font-family: var(--font-display); font-size: 1.75rem; font-weight: 700; margin-bottom: 14px; line-height: 1.2; }
.blog-newsletter p { font-size: 0.92rem; margin-bottom: 28px; line-height: 1.6; }
.newsletter-form { display: flex; max-width: 420px; margin: 0 auto; border: 1px solid var(--color-text); background: #fff; }
.newsletter-form input { flex: 1; padding: 14px 16px; border: none; font: inherit; font-size: 0.88rem; background: transparent; }
.newsletter-form input:focus { outline: none; }
.newsletter-form button { padding: 14px 22px; background: transparent; border-left: 1px solid var(--color-text); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; transition: background var(--transition), color var(--transition); }
.newsletter-form button:hover { background: var(--color-text); color: #fff; }

/* FOOTER */
.footer { background: #fff; padding: 64px 0 24px; border-top: 1px solid var(--color-border); }
.footer-links-title { text-align: center; font-size: 1.05rem; font-weight: 700; margin-bottom: 22px; }
.footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 18px 32px; margin-bottom: 56px; }
.footer-links a { font-size: 0.92rem; color: var(--color-text); }
.footer-bottom { display: grid; grid-template-columns: auto 1fr auto; gap: 24px; align-items: center; padding-top: 32px; border-top: 1px solid var(--color-border); }
.country-selector { background: #fff; border: 1px solid var(--color-border); padding: 8px 14px; border-radius: 999px; font-size: 0.85rem; cursor: pointer; font-family: var(--font-body); }
.payment-methods { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; }
.pay-icon { height: 24px; width: 36px; border-radius: 4px; background: #fff; border: 1px solid var(--color-border); display: inline-flex; align-items: center; justify-content: center; font-size: 0.55rem; font-weight: 800; color: var(--color-text); overflow: hidden; }
.pay-icon.amex { background: #006FCF; color: #fff; }
.pay-icon.apple { background: #000; color: #fff; }
.pay-icon.eps { background: #fff; color: #c8036f; }
.pay-icon.gpay { background: #fff; color: #5F6368; }
.pay-icon.maestro { background: #fff; color: #006ac3; }
.pay-icon.mc { background: #FF5F00; color: #fff; }
.pay-icon.paypal { background: #fff; color: #003087; }
.pay-icon.shop { background: #5A31F4; color: #fff; }
.pay-icon.union { background: #E9292D; color: #fff; }
.pay-icon.visa { background: #1a1f71; color: #fff; }
.footer-social { display: flex; gap: 18px; justify-self: end; align-items: center; }
.footer-social a { width: 22px; height: 22px; display: inline-flex; align-items: center; justify-content: center; color: var(--color-text); transition: color var(--transition), transform var(--transition); }
.footer-social a:hover { color: var(--color-text-muted); transform: translateY(-2px); }
.footer-social svg { width: 20px; height: 20px; }
.footer-copy { text-align: center; font-size: 0.78rem; color: var(--color-text-muted); margin-top: 24px; grid-column: 1 / -1; }

/* RESPONSIVE */
@media (max-width: 960px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .menu-toggle { display: inline-flex; }
}
@media (max-width: 820px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-journal { grid-template-columns: 1fr; gap: 32px; }
  .blog-cross-sell .product-grid { grid-template-columns: 1fr; }
  .blog-hero { height: 260px; }
  .blog-bullets { padding: 22px 20px; }
  .footer-bottom { grid-template-columns: 1fr; justify-items: center; text-align: center; gap: 18px; }
  .footer-social { justify-self: center; }
}
@media (max-width: 640px) {
  .product-grid { grid-template-columns: 1fr; }
  .logo img { max-width: 120px; }
}

/* =================== CART BADGE =================== */
.cart-count { position: absolute; top: 4px; right: 4px; background: #1d1d1d; color: #fff; font-size: 0.62rem; font-weight: 700; width: 16px; height: 16px; border-radius: 50%; display: flex; align-items: center; justify-content: center; line-height: 1; }

/* =================== SHARED CART DRAWER =================== */
.bg-cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.45); opacity: 0; pointer-events: none; transition: opacity 0.3s ease; z-index: 200; }
.bg-cart-overlay.open { opacity: 1; pointer-events: auto; }
.bg-cart-drawer { position: fixed; top: 0; right: 0; bottom: 0; width: 420px; max-width: 100vw; background: #fff; box-shadow: -4px 0 24px rgba(0,0,0,0.12); transform: translateX(100%); transition: transform 0.35s ease; z-index: 201; display: flex; flex-direction: column; }
.bg-cart-drawer.open { transform: translateX(0); }
.bg-cart-header { display: flex; justify-content: space-between; align-items: center; padding: 20px 24px; border-bottom: 1px solid #ebebeb; }
.bg-cart-header h2 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 700; }
.bg-cart-close { width: 36px; height: 36px; border-radius: 50%; background: transparent; border: none; cursor: pointer; font-size: 1.6rem; line-height: 1; color: #1d1d1d; display: flex; align-items: center; justify-content: center; }
.bg-cart-close:hover { background: #f7edee; }
.bg-cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }
.bg-cart-empty { text-align: center; padding: 60px 20px; }
.bg-cart-empty p { margin-bottom: 18px; color: #71706f; }
.bg-cart-item { display: grid; grid-template-columns: 88px 1fr; gap: 14px; padding: 16px 0; border-bottom: 1px solid #ebebeb; }
.bg-cart-item:last-child { border-bottom: none; }
.bg-cart-item-image { width: 88px; height: 88px; background: #f7edee; border-radius: 6px; overflow: hidden; padding: 6px; display: flex; align-items: center; justify-content: center; }
.bg-cart-item-image img { max-width: 100%; max-height: 100%; object-fit: contain; }
.bg-cart-item-content { display: flex; flex-direction: column; gap: 6px; min-width: 0; }
.bg-cart-item-top { display: flex; justify-content: space-between; gap: 8px; }
.bg-cart-item-name { font-size: 0.88rem; font-weight: 700; line-height: 1.3; }
.bg-cart-item-sub { font-size: 0.75rem; color: #71706f; margin-top: 2px; }
.bg-cart-item-meta { display: inline-block; background: #ffd711; color: #1d1d1d; font-size: 0.65rem; font-weight: 800; padding: 2px 6px; border-radius: 3px; margin-top: 4px; letter-spacing: 0.04em; }
.bg-cart-item-line-total { font-weight: 700; font-size: 0.9rem; white-space: nowrap; }
.bg-cart-item-bottom { display: flex; justify-content: space-between; align-items: center; gap: 8px; }
.bg-cart-item-controls { display: inline-flex; align-items: center; border: 1px solid #ebebeb; border-radius: 999px; padding: 2px; }
.bg-cart-item-controls button { width: 26px; height: 26px; border-radius: 50%; background: transparent; border: none; cursor: pointer; font-size: 0.95rem; display: flex; align-items: center; justify-content: center; line-height: 1; }
.bg-cart-item-controls button:hover { background: #f7edee; }
.bg-cart-qty { padding: 0 8px; font-size: 0.85rem; font-weight: 600; min-width: 18px; text-align: center; }
.bg-cart-item-remove { background: transparent; border: none; color: #71706f; font-size: 0.78rem; text-decoration: underline; cursor: pointer; padding: 0; }
.bg-cart-item-remove:hover { color: #1d1d1d; }
.bg-cart-footer { padding: 18px 24px; border-top: 1px solid #ebebeb; display: flex; flex-direction: column; gap: 10px; }
.bg-cart-shipping { font-size: 0.82rem; color: #71706f; text-align: center; }
.bg-cart-shipping.complete { color: #2e7d32; font-weight: 700; }
.bg-cart-total { display: flex; justify-content: space-between; font-size: 1rem; font-weight: 700; padding: 4px 0; }
.bg-cart-checkout { width: 100%; text-align: center; }

@media (max-width: 480px) {
  .bg-cart-drawer { width: 100vw; }
}