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

    body {
      font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
      line-height: 1.6;
      color: #1f1f1f;
      background: #fef3f2;
    }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 1.5rem;
    }

    /* Header */
    header {
      background: linear-gradient(135deg, #ffffff 0%, #fff5f5 100%);
      padding: 1.5rem 0;
      box-shadow: 0 2px 12px rgba(244, 63, 94, 0.1);
      border-bottom: 2px solid #ffe4e6;
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 2rem;
      flex-wrap: wrap;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      text-decoration: none;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      gap: 0.125rem;
    }

    .brand h1 {
      font-size: 1.5rem;
      background: linear-gradient(135deg, #f43f5e, #fb7185);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      line-height: 1.2;
    }

    .brand-subtitle {
      font-size: 0.6875rem;
      color: #666;
      font-weight: 500;
      letter-spacing: 0.3px;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .amazon-logo {
      font-weight: 700;
      color: #ff9900;
    }

    .back-btn {
      padding: 0.625rem 1.25rem;
      background: linear-gradient(135deg, #f43f5e, #fb7185);
      color: white;
      border: none;
      border-radius: 999px;
      font-size: 0.875rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
      display: inline-block;
      box-shadow: 0 2px 8px rgba(244, 63, 94, 0.2);
    }

    .back-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(244, 63, 94, 0.3);
    }

    /* Main Content */
    main {
      padding: 3rem 0;
    }

    .page-title {
      font-size: 2.5rem;
      margin-bottom: 2rem;
      text-align: center;
      color: #1f1f1f;
    }

    .content-box {
      background: white;
      border-radius: 16px;
      padding: 2.5rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 2rem;
    }

    .content-box h2 {
      font-size: 1.5rem;
      color: #f43f5e;
      margin-bottom: 1rem;
      padding-bottom: 0.5rem;
      border-bottom: 2px solid #ffe4e6;
    }

    .content-box h3 {
      font-size: 1.125rem;
      color: #1f1f1f;
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }

    .content-box p {
      margin-bottom: 1rem;
      color: #525252;
    }

    .content-box ul {
      margin: 1rem 0 1rem 1.5rem;
      color: #525252;
    }

    .content-box li {
      margin-bottom: 0.5rem;
    }

    .content-box a {
      color: #f43f5e;
      text-decoration: none;
      font-weight: 600;
    }

    .content-box a:hover {
      text-decoration: underline;
    }

    .highlight-box {
      background: linear-gradient(135deg, #fff5f5, #fef3f2);
      border-left: 4px solid #f43f5e;
      padding: 1.25rem;
      border-radius: 8px;
      margin: 1.5rem 0;
    }

    .info-grid {
      display: grid;
      gap: 0.5rem;
      margin: 1rem 0;
    }

    .info-row {
      display: grid;
      grid-template-columns: 180px 1fr;
      gap: 1rem;
      padding: 0.5rem 0;
    }

    .info-label {
      font-weight: 600;
      color: #666;
    }

    .info-value {
      color: #1f1f1f;
    }

    @media (max-width: 768px) {
      .page-title {
        font-size: 2rem;
      }

      .content-box {
        padding: 1.5rem;
      }

      .info-row {
        grid-template-columns: 1fr;
        gap: 0.25rem;
      }

      .header-content {
        justify-content: center;
      }
    }

    /* Footer */
    footer {
      background: linear-gradient(135deg, #1a1a2e 0%, #2d1b3d 100%);
      color: #e0e0e0;
      padding: 4rem 0 2rem;
      margin-top: 4rem;
      position: relative;
    }

    footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: linear-gradient(90deg, #f43f5e, #fb7185, #fbbf24, #10b981, #38bdf8);
    }

    .footer-grid {
      display: grid;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
      }
    }

    .footer-section h3 {
      color: white;
      margin-bottom: 1rem;
      font-size: 1.125rem;
    }

    .footer-section p {
      font-size: 0.875rem;
      line-height: 1.7;
      color: #b0b0b0;
    }

    .footer-links {
      list-style: none;
    }

    .footer-links li {
      margin-bottom: 0.75rem;
    }

    .footer-links a {
      color: #b0b0b0;
      text-decoration: none;
      font-size: 0.875rem;
    }

    .footer-links a:hover {
      color: #fb7185;
    }

    .footer-divider {
      height: 1px;
      background: rgba(255,255,255,0.1);
      margin: 2rem 0;
    }

    .footer-bottom {
      text-align: center;
    }

    .footer-credits {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .footer-credits {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
      }
    }

    .copyright {
      font-size: 0.875rem;
      color: #9a9a9a;
    }

    .crafted-by {
      font-size: 0.875rem;
      color: #9a9a9a;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .heart {
      color: #a855f7;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      animation: heartbeat 1.5s ease-in-out infinite;
      font-size: 1.25rem;
      min-width: 1.25rem;
    }

    @keyframes heartbeat {
      0%, 100% { transform: scale(1); }
      10% { transform: scale(1.3); }
      20% { transform: scale(1); }
      30% { transform: scale(1.3); }
      40%, 100% { transform: scale(1); }
    }

    .crafted-by strong {
      color: white;
    }

    /* Event Pages */
    .event-hero {
      text-align: center;
      padding: 3rem 0 2rem;
    }
    .event-emoji-large {
      font-size: 4rem;
      display: block;
      margin-bottom: 1rem;
    }
    .event-page-title {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #1f1f1f;
    }
    .event-page-desc {
      color: #525252;
      max-width: 560px;
      margin: 0 auto 2rem;
      line-height: 1.7;
    }
    .search-form-box {
      background: white;
      border-radius: 16px;
      padding: 2rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.1);
      margin-bottom: 2rem;
    }
    .form-row {
      display: grid;
      gap: 1rem;
      grid-template-columns: 1fr 1fr;
      margin-bottom: 1.25rem;
    }
    @media (max-width: 640px) { .form-row { grid-template-columns: 1fr; } }
    .form-group { display: flex; flex-direction: column; gap: 0.375rem; }
    .form-group label { font-weight: 600; font-size: 0.8125rem; color: #525252; }
    .form-group select {
      padding: 0.625rem 0.75rem; border: 2px solid #e5e7eb;
      border-radius: 8px; font-size: 0.9375rem; background: white;
    }
    .form-group select:focus { outline: none; border-color: #f43f5e; }
    .quick-links { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }
    .quick-link {
      padding: 0.5rem 1.25rem;
      background: white; border: 2px solid #fecaca;
      border-radius: 999px; color: #f43f5e; font-weight: 600;
      font-size: 0.875rem; text-decoration: none; transition: all 0.2s;
    }
    .quick-link:hover { background: #f43f5e; color: white; border-color: #f43f5e; }
    .other-events { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.75rem; }
    .other-event-tag {
      display: inline-block; padding: 0.5rem 1rem;
      background: white; border: 2px solid #fecaca;
      border-radius: 8px; color: #1f1f1f; font-size: 0.9375rem;
      text-decoration: none; transition: all 0.2s;
    }
    .other-event-tag:hover { background: #fff5f5; border-color: #f43f5e; }
    .budget-item { display: flex; align-items: baseline; gap: 0.75rem; margin-bottom: 0.75rem; }
    .budget-key {
      font-weight: 700; color: #f43f5e; white-space: nowrap;
      min-width: 80px; flex-shrink: 0;
    }
    .budget-val { color: #525252; font-size: 0.9375rem; }
    .tip-row { display: flex; gap: 0.75rem; margin-bottom: 0.875rem; align-items: flex-start; }
    .tip-circle {
      width: 26px; height: 26px; flex-shrink: 0;
      background: linear-gradient(135deg, #f43f5e, #fb7185);
      color: white; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 0.75rem; font-weight: bold; margin-top: 1px;
    }
    .tip-text { color: #525252; font-size: 0.9375rem; line-height: 1.65; }

    /* ── Produkt-Grid ─────────────────────────────────────────────────────── */
    .suggestions-section {
      margin-bottom: 2rem;
    }
    .suggestions-section h2 {
      font-size: 1.75rem;
      margin-bottom: 0.5rem;
      color: #1f1f1f;
    }
    .suggestions-subtitle {
      color: #666;
      font-size: 0.9375rem;
      margin-bottom: 1.5rem;
    }
    .product-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
      gap: 1.25rem;
    }
    .product-card {
      background: white;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform 0.2s, box-shadow 0.2s;
      position: relative;
    }
    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.13);
    }
    .product-card-badge {
      position: absolute;
      top: 0.6rem;
      left: 0.6rem;
      background: linear-gradient(135deg, #f43f5e, #fb7185);
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 0.2rem 0.6rem;
      border-radius: 999px;
      letter-spacing: 0.03em;
    }
    .product-card-img {
      width: 100%;
      aspect-ratio: 1 / 1;
      object-fit: cover;
      background: #f9f9f9;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 4rem;
    }
    .product-card-body {
      padding: 1rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }
    .product-card-category {
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #f43f5e;
    }
    .product-card-title {
      font-weight: 700;
      font-size: 0.9375rem;
      color: #1f1f1f;
      line-height: 1.35;
      flex: 1;
    }
    .product-card-desc {
      font-size: 0.8125rem;
      color: #666;
      line-height: 1.5;
    }
    .product-card-cta {
      display: block;
      margin-top: 0.75rem;
      padding: 0.6rem 1rem;
      background: linear-gradient(135deg, #f43f5e, #fb7185);
      color: white;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.8125rem;
      text-align: center;
      text-decoration: none;
      transition: opacity 0.2s;
    }
    .product-card-cta:hover { opacity: 0.88; }
    .product-card-cta::after { content: ' *'; }

    /* ── Nice to Know ─────────────────────────────────────────────────────── */
    .ntk-box {
      background: linear-gradient(135deg, #fff5f5, #fef3f2);
      border: 2px solid #fecaca;
      border-radius: 16px;
      padding: 2rem 2.5rem;
      margin-bottom: 2rem;
    }
    .ntk-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1.25rem;
    }
    .ntk-icon { font-size: 1.75rem; }
    .ntk-title { font-size: 1.25rem; font-weight: 700; color: #1f1f1f; }
    .ntk-facts {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1rem;
      margin-bottom: 1.25rem;
    }
    .ntk-fact {
      background: white;
      border-radius: 10px;
      padding: 1rem 1.25rem;
      border-left: 4px solid #f43f5e;
    }
    .ntk-fact-label {
      font-size: 0.7rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #f43f5e;
      margin-bottom: 0.25rem;
    }
    .ntk-fact-value {
      font-size: 0.9375rem;
      color: #1f1f1f;
      font-weight: 500;
      line-height: 1.5;
    }
    .ntk-source {
      font-size: 0.75rem;
      color: #999;
      margin-top: 0.5rem;
    }
    .ntk-source a { color: #f43f5e; text-decoration: none; }
    .ntk-source a:hover { text-decoration: underline; }

    /* ── Filter Pills ─────────────────────────────────────────────────────── */
    .filter-pills {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      margin-bottom: 1.5rem;
    }
    .filter-pill {
      padding: 0.4rem 1rem;
      border: 2px solid #e5e7eb;
      border-radius: 999px;
      font-size: 0.8125rem;
      font-weight: 600;
      color: #525252;
      background: white;
      cursor: pointer;
      transition: all 0.15s;
    }
    .filter-pill:hover,
    .filter-pill.active {
      border-color: #f43f5e;
      color: #f43f5e;
      background: #fff5f5;
    }

    @media (max-width: 640px) {
      .product-grid { grid-template-columns: repeat(2, 1fr); gap: 0.875rem; }
      .ntk-box { padding: 1.25rem; }
      .ntk-facts { grid-template-columns: 1fr; }
    }
    @media (max-width: 400px) {
      .product-grid { grid-template-columns: 1fr; }
    }
