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

    :root {
      --primary: #A16772;
      --dark:    #7C2F2E;
      --light:   rgba(233,182,185,0.25);
      --mid:     rgba(233,182,185,0.5);
      --text:    #333;
      --muted:   #666;
      --white:   #fff;
    }

    body {
      font-family: 'Karla', Helvetica, Arial, sans-serif;
      font-size: 16px;
      color: var(--text);
      line-height: 1.7;
    }

    a { color: var(--primary); text-decoration: none; }
    a:hover { color: var(--dark); text-decoration: underline; }

    h1, h2, h3, h4 {
      font-family: 'Poppins', Helvetica, Arial, sans-serif;
      font-weight: 300;
      line-height: 1.25;
    }
    h1 { font-size: 38px; color: var(--dark); }
    h2 { font-size: 28px; color: var(--dark); margin-bottom: 14px; }
    h3 { font-size: 20px; color: var(--primary); margin-bottom: 8px; }

    .container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
    .section    { padding: 56px 0; }
    .section-alt { background: var(--light); }

    /* ── BUTTONS ── */
    .btn {
      display: inline-block;
      padding: 10px 26px;
      border-radius: 10px;
      font-size: 15px;
      font-family: 'Karla', sans-serif;
      font-weight: 500;
      letter-spacing: 0.5px;
      transition: background 0.2s, color 0.2s;
      text-decoration: none !important;
    }
    .btn-primary { background: var(--primary); color: #fff !important; }
    .btn-primary:hover { background: var(--dark); }
    .btn-outline { border: 2px solid var(--primary); color: var(--primary) !important; }
    .btn-outline:hover { background: var(--primary); color: #fff !important; }
    .btn-wa { background: #25D366; color: #fff !important; }
    .btn-wa:hover { background: #1ebe5d; }

    /* ── HEADER ── */
    header {
      background: #fff;
      border-bottom: 1px solid #eee;
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 1px 6px rgba(0,0,0,0.07);
    }
    .header-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 24px;
      max-width: 1100px;
      margin: 0 auto;
      gap: 20px;
    }
    .header-brand { text-align: center; flex-shrink: 0; }
    .header-brand img { height: 52px; display: block; margin: 0 auto 3px; }
    .header-brand span {
      font-size: 11px;
      color: var(--muted);
      letter-spacing: 0.5px;
      font-family: 'Poppins', sans-serif;
      font-weight: 300;
    }

    /* Nav */
    nav { display: flex; align-items: center; gap: 4px; flex-wrap: wrap; }
    nav a {
      padding: 6px 11px;
      font-size: 14px;
      font-family: 'Poppins', sans-serif;
      font-weight: 300;
      color: var(--text) !important;
      border-radius: 6px;
      white-space: nowrap;
    }
    nav a:hover { background: var(--light); text-decoration: none; color: var(--dark) !important; }
    nav a.nav-shop {
      background: var(--primary);
      color: #fff !important;
      font-weight: 400;
    }
    nav a.nav-shop:hover { background: var(--dark); }

    /* Dropdown */
    .dropdown { position: relative; }
    .dropdown > a::after { content: ' ▾'; font-size: 11px; }
    .dropdown-menu {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      background: #fff;
      border: 1px solid #eee;
      border-radius: 8px;
      box-shadow: 0 4px 16px rgba(0,0,0,0.12);
      min-width: 200px;
      z-index: 200;
      padding: 12px 0 6px 0;
    }
    .dropdown-menu a {
      display: block;
      padding: 8px 16px;
      border-radius: 0;
      font-size: 14px;
    }
    .dropdown:hover .dropdown-menu { display: block; }

    /* Hamburger */
    .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--text); margin: 5px 0; transition: 0.3s; }

    @media (max-width: 820px) {
      .hamburger { display: block; }
      nav {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 10px 0;
        border-top: 1px solid #eee;
        margin-top: 8px;
      }
      nav.open { display: flex; }
      .dropdown-menu { position: static; box-shadow: none; border: none; padding-left: 12px; }
      .dropdown:hover .dropdown-menu { display: none; }
      .dropdown.open .dropdown-menu { display: block; }
      .header-inner { flex-wrap: wrap; }
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #fff8f9 0%, #fce8ea 100%);
      padding: 70px 0 60px;
    }
    .hero-inner { display: flex; gap: 48px; align-items: center; flex-wrap: wrap; }
    .hero-text { flex: 1 1 380px; }
    .hero-text h1 { margin-bottom: 18px; }
    .hero-text p { font-size: 17px; color: var(--muted); margin-bottom: 28px; max-width: 500px; }
    .hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
    .hero-image { flex: 0 0 320px; max-width: 320px; }
    .hero-image img { width: 100%; border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,0.12); }

    @media (max-width: 768px) {
      .hero-image { display: none; }
      h1 { font-size: 28px; }
    }

    /* ── ÜBER VEGAS ── */
    .vegas-facts {
      display: flex;
      gap: 20px;
      flex-wrap: wrap;
      margin-top: 28px;
    }
    .fact {
      flex: 1 1 160px;
      background: #fff;
      border: 1px solid var(--mid);
      border-radius: 10px;
      padding: 18px;
      text-align: center;
    }
    .fact-num { font-family: 'Poppins', sans-serif; font-size: 28px; font-weight: 600; color: var(--primary); }
    .fact-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

    /* ── KATEGORIEN ── */
    .cat-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
      gap: 24px;
      margin-top: 32px;
    }
    .cat-card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid #eee;
      box-shadow: 0 2px 12px rgba(0,0,0,0.06);
      transition: box-shadow 0.2s, transform 0.2s;
      display: flex;
      flex-direction: column;
    }
    .cat-card:hover { box-shadow: 0 6px 24px rgba(161,103,114,0.18); transform: translateY(-3px); }
    .cat-card-header { padding: 28px 22px 14px; }
    .cat-icon { font-size: 36px; margin-bottom: 10px; }
    .cat-card h3 { margin-bottom: 8px; font-size: 19px; }
    .cat-card p { font-size: 14px; color: var(--muted); line-height: 1.6; flex: 1; }
    .cat-card-footer { padding: 16px 22px 22px; }

    /* ── GARANTIE ── */
    .garantie-inner { display: flex; gap: 40px; align-items: center; flex-wrap: wrap; }
    .garantie-text { flex: 1 1 320px; }
    .garantie-badge { flex: 0 0 120px; text-align: center; }
    .garantie-badge img { width: 100px; }

    /* ── ÜBER BEATE ── */
    .beate-inner { display: flex; gap: 40px; align-items: flex-start; flex-wrap: wrap; }
    .beate-img { flex: 0 0 220px; }
    .beate-img img { width: 100%; border-radius: 12px; }
    .beate-text { flex: 1 1 320px; }
    .beate-text ul { margin: 14px 0 20px 18px; }
    .beate-text ul li { margin-bottom: 6px; font-size: 15px; }

    /* ── FAQ ── */
    .faq-list { margin-top: 28px; display: flex; flex-direction: column; gap: 12px; }
    details.faq-item {
      border: 1px solid var(--mid);
      border-radius: 10px;
      overflow: hidden;
      background: #fff;
    }
    details.faq-item summary {
      padding: 16px 20px;
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      font-size: 16px;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: var(--dark);
      user-select: none;
    }
    details.faq-item summary::-webkit-details-marker { display: none; }
    details.faq-item summary::after { content: '\25B8'; font-size: 16px; transition: transform 0.2s; }
    details.faq-item[open] summary::after { transform: rotate(90deg); }
    details.faq-item .faq-answer { padding: 0 20px 18px; font-size: 15px; color: var(--muted); line-height: 1.7; }

    /* ── BLOG ── */
    .blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; margin-top: 28px; }
    .blog-card {
      border: 1px solid #eee;
      border-radius: 10px;
      padding: 22px;
      background: #fff;
      transition: box-shadow 0.2s;
    }
    .blog-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); }
    .blog-card h3 { font-size: 17px; margin-bottom: 8px; }
    .blog-card p { font-size: 14px; color: var(--muted); margin-bottom: 14px; }

    /* ── KONTAKT ── */
    .kontakt-box {
      background: var(--mid);
      border-radius: 14px;
      padding: 40px;
      text-align: center;
      margin-top: 20px;
    }
    .kontakt-box h2 { color: var(--dark); margin-bottom: 12px; }
    .kontakt-box p { margin-bottom: 22px; color: #555; }
    .kontakt-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

    /* ── FOOTER ── */
    footer {
      background: #3a1a1a;
      color: #ccc;
      padding: 40px 0 24px;
      font-size: 14px;
    }
    .footer-inner {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 32px;
      margin-bottom: 32px;
    }
    footer h4 {
      font-family: 'Poppins', sans-serif;
      font-weight: 400;
      font-size: 15px;
      color: #fff;
      margin-bottom: 12px;
    }
    footer a { color: #bbb; }
    footer a:hover { color: #fff; }
    footer ul { list-style: none; }
    footer ul li { margin-bottom: 6px; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 20px;
      text-align: center;
      color: #888;
      font-size: 13px;
    }