* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    font-family: 'Orbitron', sans-serif;
    color: white;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 15px;
  }
  
  header {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  header h1 a {
    font-size: 2.5rem;
    color: #00f0ff;
    text-decoration: none;
  }


  
  .shop-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* exakt 3 Spalten */
    gap: 1.5rem;
    padding: 2rem;
    flex: 1;
    justify-items: center;
  }
  
  .item-card {
    background: #0f3460;
    border-radius: 15px;
    padding: 0.8rem;
    text-align: center;
    box-shadow: 0 8px 18px rgba(0, 240, 255, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 400px;
    height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
  .item-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 24px rgba(0, 240, 255, 0.2);
  }
  
  .item-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
  }
  
  .item-card h2 {
    font-size: 1rem;
    margin: 0.4rem 0 0.2rem;
    color: #00f0ff;
  }
  
  .item-card p {
    color: white;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
  }
  
  .item-card button {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    background: #00f0ff;
    color: #000;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
  }
  
  .item-card button:hover {
    background: #00b8cc;
  }
  
  footer {
    margin-top: auto !important;
    text-align: center !important;
    padding: 1rem !important;
    font-size: 0.9rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
  }
  .product-detail {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 2rem auto;
    gap: 1.5rem;
    padding: 1rem;
  }
  
  .product-description {
    max-width: 600px;
    text-align: center;
    color: #ccc;
    font-size: 0.95rem;
  }
  a {
    text-decoration: none;
  }

  .thank-you-img {
    width: 50% !important;   /* Wichtig: Erzwingt die Anwendung dieses Werts */
    height: auto !important; /* Wichtig: Erzwingt die Höhe */
    display: block;
    margin: 0 auto;
  }



  .header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .nav-buttons {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
  }
  
  .nav-button {
    background: #00f0ff;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 240, 255, 0.3);
    transition: background 0.3s ease;
  }
  
  .nav-button:hover {
    background: #00b8cc;
  }

  .legal-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
  }
  
  .legal-link:hover {
    text-decoration: underline;
  }
  
  .soon-banner-centered {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255, 69, 0, 0.8); /* Kräftiges Orange mit Transparenz */
    color: white;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    padding: 1rem 2rem;
    border-radius: 10px;
    z-index: 10;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: pulse 1.5s infinite alternate; /* Pulsierende Animation */
  }
  
  @keyframes pulse {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.8;
    }
    100% {
      transform: translate(-50%, -50%) scale(1.05);
      opacity: 1;
    }
  }
  
  .item-card.pr-pack-soon {
    position: relative;
    overflow: hidden; /* Wichtig, damit das Banner im Kasten bleibt */
  }
  
  .item-card.pr-pack-soon img,
  .item-card.pr-pack-soon h2,
  .item-card.pr-pack-soon p,
  .item-card.pr-pack-soon button {
    filter: grayscale(80%);
    opacity: 0.6;
  }
  
  .item-card.pr-pack-soon button {
    pointer-events: none;
    cursor: not-allowed;
  }