* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f8f8f8;
    color: #333;
}

header {
    background-color: #ffd700;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo h1 {
    font-size: 24px;
    font-weight: bold;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
    padding: 10px 15px;
}

nav ul li a:hover {
    background: #222;
    color: #ffd700;
    border-radius: 5px;
}

.banner {
    background: url('BANER.png') center/cover no-repeat;
    text-align: center;
    color: rgb(0, 0, 0);
    padding: 80px 10%;
    font-size: 22px;
    font-weight: bold;
}

.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product {
    background: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}

.product:hover {
    transform: scale(1.05);
}

.product img {
    width: 100%;
    border-radius: 8px;
}

.product h2 a {
    color: #222;
}

.product .price {
    font-weight: bold;
    color: #d32f2f;
    display: block;
    margin: 10px 0;
}

button {
    background: #d32f2f;
    color: white;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
}

button:hover {
    background: #b71c1c;
}

.product-detail {
    text-align: center;
    padding: 40px;
}

.product-detail img {
    width: 300px;
    border-radius: 10px;
}

.buy-now {
    background: #ff5722;
}

.buy-now:hover {
    background: #e64a19;
}

footer {
    text-align: center;
    background-color: #222;
    color: white;
    padding: 15px;
    margin-top: 20px;

    
}
.buttoni {
    display: inline-block;
    padding: 10px 20px;
    margin-top: 20px;
    background-color: #ff6600;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
body {
    background-color: #f8f8f8;
    color: #333;
}

/* Nagłówek */
header {
    background-color: #ffd700;
    color: #222;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: bold;
    padding: 10px 15px;
}

nav ul li a:hover {
    background: #222;
    color: #ffd700;
    border-radius: 5px;
}

/* Produkty */
.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.product {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
}
.adopted {
    background: white;
    padding: px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease-in-out;
}

.product:hover {
    transform: scale(1.05);
}

.product img {
    width: 100%;
    border-radius: 8px;
}

.product .price {
    font-weight: bold;
    color: #d32f2f;
    display: block;
    margin: 10px 0;
}

button {
    background: #d32f2f;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    margin-top: 10px;
}

button:hover {
    background: #b71c1c;
}

/* Koszyk */
.cart {
    padding: 20px;
    text-align: center;
}

.cart-items {
    list-style: none;
    padding: 0;
}

.cart-items li {
    background: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.cart-items img {
    width: 50px;
    border-radius: 5px;
}

.total-price {
    font-size: 20px;
    font-weight: bold;
    margin-top: 15px;
}

.checkout {
    background: #ff5722;
}

.checkout:hover {
    background: #e64a19;
}

/* Kontakt */
.contact {
    padding: 20px;
}

.contact form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

.contact label {
    margin-top: 10px;
}

.contact input, .contact textarea {
    padding: 10px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: 100%;
}

.contact button {
    margin-top: 10px;
}

/* Stopka */
footer {
    text-align: center;
    background-color: #222;
    color: white;
    padding: 15px;
    margin-top: 20px;
}
/* Sekcja O nas */
.about-us {
    max-width: 900px;
    margin: 50px auto;
    padding: 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.about-us h2 {
    font-size: 28px;
    color: #d32f2f;
    margin-bottom: 15px;
}

.about-us p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
}

.about-us .team {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.about-us .team-member {
    background: #f8f8f8;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    width: 200px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.about-us .team-member img {
    width: 100px;
    border-radius: 50%;
    margin-bottom: 10px;
}

.about-us .team-member h3 {
    font-size: 18px;
    color: #222;
}

.about-us .team-member p {
    font-size: 14px;
    color: #666;
}
.privacy {
    text-align: center;
}
#saved-data {
    margin-top: 20px;
    padding: 10px;
    background: #e9ecef;
    border-radius: 5px;
}