<!DOCTYPE html>

<html lang="de">

<head>

  <meta charset="UTF-8" />

  <meta name="viewport" content="width=device-width, initial-scale=1.0"/>

  <title>SeccoResell</title>

  <style>

    body {

      margin: 0;

      font-family: 'Segoe UI', sans-serif;

      background: #f5f5f5;

      color: #333;

    }

    header {

      background: #111;

      color: white;

      padding: 1.5rem;

      text-align: center;

    }

    h1 {

      margin: 0;

      font-size: 2.5rem;

    }

    .container {

      padding: 2rem;

      max-width: 1200px;

      margin: auto;

    }

    .products {

      display: grid;

      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));

      gap: 2rem;

    }

    .product {

      background: white;

      padding: 1rem;

      border-radius: 8px;

      box-shadow: 0 2px 6px rgba(0,0,0,0.1);

      text-align: center;

    }

    .product img {

      max-width: 100%;

      border-radius: 4px;

    }

    .product h3 {

      margin: 1rem 0 0.5rem;

    }

    .price {

      color: #e91e63;

      font-weight: bold;

    }

    footer {

      text-align: center;

      padding: 2rem;

      background: #111;

      color: white;

    }

    .social a {

      margin: 0 0.5rem;

      color: white;

      text-decoration: none;

    }

    .contact {

      margin-top: 2rem;

      text-align: center;

    }

    .contact p {

      margin: 0.5rem 0;

    }

  </style>

</head>

<body>

  <header>

    <h1>SeccoResell</h1>

    <p>Style. Qualität. Dropshipping & Handmade Fashion</p>

  </header>


  <div class="container">

    <h2>Produkte</h2>

    <div class="products">

      <div class="product">

        <img src="https://via.placeholder.com/300x200?text=Hoodie+Design" alt="Produkt 1">

        <h3>Secco Hoodie</h3>

        <p class="price">€49,99</p>

      </div>

      <div class="product">

        <img src="https://via.placeholder.com/300x200?text=Sneaker+Drop" alt="Produkt 2">

        <h3>Limited Sneaker</h3>

        <p class="price">€89,00</p>

      </div>

    </div>


    <div class="contact">

      <h2>Kontakt & Bezahlung</h2>

      <p>📧 E-Mail: kontakt@seccoresell.de</p>

      <p>📱 Instagram: <a href="https://instagram.com/seccoresell" target="_blank">@seccoresell</a></p>

      <p>💳 Zahlungsmethoden: PayPal, Kreditkarte, Überweisung</p>

    </div>

  </div>


  <footer>

    <p>&copy; 2025 SeccoResell – Alle Rechte vorbehalten.</p>

    <div class="social">

      <a href="https://instagram.com/seccoresell" target="_blank">Instagram</a>

      <a href="mailto:kontakt@seccoresell.de">E-Mail</a>

    </div>

  </footer>

</body>

</html>