/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    color: #333;
    background: #f9f9f9;
    scroll-behavior: smooth;
    background-color: #f8f9fa;
    text-align: center;
    padding: 50px;
}


.counter {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    display: inline-block;
}

h1 {
    color: #cccc00;
}

p {
    font-size: 18px;
    color: #555;
}


header {
    text-align: center;
    padding: 1em 0;
    background: #222;
    color: #fff;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 1em;
    padding: 0;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    padding: 0.5em 1em;
    border-radius: 5px;
    transition: background 0.3s;
}

nav ul li a:hover {
    background: #555;
}

.products, .social {
    padding: 2em;
    text-align: center;
}

.contact {
    text-align: center;
    padding: 40px 20px;
    background-color: #f9f9f9;
}

.contact h2 {
    font-size: 2em;
    margin-bottom: 20px;
}

.contact p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.filters button {
    margin: 0.5em;
    padding: 10px 20px;
    font-size: 16px;
    background: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

button {
    padding: 10px 20px;
    font-size: 16px;

}

.filters button:hover {
    background: #0056b3;
}

.gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1em;
    margin-top: 1em;
}

.product {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1em;
    text-align: center;
    width: 200px;
}

.product img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    transition: transform 0.3s;
}

.product img:hover {
    transform: scale(1.1);
}

.social-links a {
    display: inline-block;
    margin: 0.5em;
    padding: 0.5em 1em;
    text-decoration: none;
    color: #fff;
    background: #007bff;
    border-radius: 5px;
    transition: background 0.3s;
}

.social {
    text-align: center;
}

.social-links {
    margin-top: 20px;
}

.social-button {
    display: inline-block;
    width: 50px;
    height: 50px;
    border-radius: 50%; /* Zaokrąglony kształt */
    background-color: #333; /* Tło przycisku */
    color: white;
    text-align: center;
    line-height: 50px; /* Wyrównanie ikony */
    font-size: 24px;
    margin: 0 10px;
    transition: background-color 0.3s ease;
}

.social-button:hover {
    background-color: #555; /* Zmiana koloru przy hover */
}

.social-button.instagram {
    background-color: #E4405F; /* Kolor tła Instagram */
}

.social-button.ebay {
    background-color: #E53238; /* Kolor tła eBay */
}

.social-button.facebook {
    background-color: #1877F2; /* Kolor tła Facebook */
}

.social-button i {
    margin-right: 8px; /* Dystans między ikoną a tekstem */
}

.social-links a:hover {
    background: #0056b3;
}


footer {
    text-align: center;
    padding: 1em 0;
    background: #222;
    color: #fff;
}

#cookie-banner {
    position: fixed;
    bottom: 0;
    width: 100%;
    background-color: #333;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 16px;
    z-index: 1000;
}

#cookie-banner a {
    color: #fff;
    text-decoration: underline;
}

#cookie-banner button {
    background-color: #E4405F;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#cookie-banner button:hover {
    background-color: #c53446;
}

