/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0a0a0a;
    color: white;
}

/* Header Styles */
header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: #1f1f1f;
    padding: 15px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #00ffcc;
}

.menu {
    display: flex;
    gap: 20px;
}

.menu li {
    list-style: none;
}

.menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.menu a:hover {
    color: #00ffcc;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #141414, #0f0f0f);
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    color: #00ffcc;
}

.hero p {
    margin-top: 15px;
    font-size: 20px;
    color: #dddddd;
}

.cta-btn {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #00ffcc;
    color: #0a0a0a;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #00ccaa;
}

/* Categories Section */
.categories-section {
    padding: 60px 20px;
    text-align: center;
}

.category-list {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.category-list li a {
    padding: 10px 20px;
    background-color: #1f1f1f;
    border-radius: 5px;
    color: #00ffcc;
    text-decoration: none;
}

.category-list li a:hover {
    background-color: #00ffcc;
    color: #1f1f1f;
}

/* Products Section */
.products-section {
    padding: 20px;
}

.product-category {
    margin: 40px 0;
}

.product-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto; /* Ermöglicht horizontales Scrollen */
}

.product-card {
    background-color: #1f1f1f;
    border-radius: 5px;
    padding: 15px;
    text-align: center;
    min-width: 200px; /* Mindestbreite für die Produktkarten */
}

.product-card img {
    max-width: 100%;
    border-radius: 5px;
}

.product-card h3 {
    margin: 10px 0;
    font-size: 18px;
}

.product-card p {
    margin: 10px 0;
    font-size: 16px;
}

.buy-btn {
    background-color: #00ffcc;
    color: #0a0a0a;
    border: none;
    padding: 10px 15px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buy-btn:hover {
    background-color: #00ccaa;
}

/* Cart Section */
.cart-section {
    padding: 20px;
}

/* Modal Styles */
.modal {
    display: none; /* Modal versteckt */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #1f1f1f;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #00ffcc;
    width: 80%;
    max-width: 400px;
}

.close-btn {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.close-btn:hover,
.close-btn:focus {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
}
