body {
    font-family: Arial, sans-serif;
    background: #f5f6fa;
    margin: 0;
    padding: 0;
    color: #222;
}

h1 {
    text-align: center;
    margin-top: 30px;
}

/* layout */
.webshop-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* product card */
.product {
    background: white;
    border-radius: 12px;
    padding: 20px;
    width: 300px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: 0.3s;
}

.product:hover {
    transform: translateY(-5px);
}

/* image */
.product img {
    max-width: 100%;
    border-radius: 10px;
}

/* price */
.product strong {
    display: block;
    margin: 10px 0;
    font-size: 18px;
    color: #27ae60;
}

/* button */
.product a button {
    background: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
}

.product a button:hover {
    background: #0056b3;
}
.page-intro {
    text-align: center;
    font-size: 18px;
    color: #555;
    margin: 10px auto 30px;
    max-width: 600px;
    line-height: 1.6;
}
.cart-button {
    position: fixed;
    top: 20px;
    right: 20px;

    background: #000;
    color: #fff;

    padding: 10px 15px;
    border-radius: 25px;

    text-decoration: none;
    font-weight: bold;

    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cart-button:hover {
    background: #333;
}
