body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

header {
    background-color: #333;
    color: white;
    padding: 80px 0;
    text-align: center;
    box-shadow: 0 4px 2px -2px gray;
}

header h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 70px;
    color: #ff6666;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin: 0;
    animation: fadeIn 6s ease-in forwards;
    opacity: 0;
}

@keyframes fadeIn {
    from { opacity: 0.1; }
    to { opacity: 1; }
}

/* Menu główne */
.nav-menu {
    background-color: #444;
    text-align: center;
}

.nav-menu a {
    display: inline-block;
    padding: 14px 20px;
    color: white;
    text-decoration: none;
    font-size: 1.1em;
}

.nav-menu a:hover {
    background-color: #555;
}

/* Menu kategorii */
.categories-menu ul {
    list-style: none;
    display: flex;
    justify-content: center;
    background-color: #333;
    height: 50px;
    align-items: center;
    margin: 0;
    padding: 0;
}

.categories-menu li {
    margin: 0 20px;
}

.categories-menu a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    text-transform: uppercase;
    transition: color 0.2s ease;
}

.categories-menu a:hover {
    color: #ff6347;
}

/* Separator */
.space {
    height: 4px;
    background: linear-gradient(to right, #ff6666, #ff8c8c);
}

/* ===== SKLEP ===== */

.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding: 30px;
}

.product {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.product:hover {
    transform: translateY(-5px);
}

.product img {
    max-width: 200px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product h3 {
    font-size: 18px;
    margin: 10px 0;
}

.product .price {
    font-size: 20px;
    font-weight: bold;
    color: #ff6347;
}

/* ===== BESTSELLER ===== */

.product-presentation {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 60px auto;
    max-width: 1000px;
    background-color: #fffbe6;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.product-image {
    max-width: 420px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.product-info {
    margin-left: 40px;
    max-width: 340px;
}

.product-info h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #333;
    line-height: 1.3;
}

.product-info h2::before {
    content: "🔥 ";
}

.product-info .price {
    font-size: 22px;
    font-weight: bold;
    color: #ff6347;
}

.product-info p {
    font-size: 16px;
    color: #555;
    margin: 10px 0 20px;
}

.cta-button {
    display: inline-block;
    background-color: #ff6347;
    color: white;
    padding: 14px 26px;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 20px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.cta-button:hover {
    background-color: #e54b3c;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

/* ===== STOPKA ===== */

.contact {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 30px 0;
    margin-top: 40px;
}

.social-media {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.social-icon {
    width: 60px;
    transition: transform 0.3s ease;
}

.social-icon:hover {
    transform: scale(1.2);
}

@media (max-width: 768px) {

header h1 {
font-size: 40px;
letter-spacing: 2px;
}

.categories-menu ul {
flex-wrap: wrap;
height: auto;
padding: 10px 0;
}

.categories-menu li {
margin: 5px 10px;
}

.products {
grid-template-columns: 1fr;
gap: 20px;
padding: 20px;
}

.product img {
max-width: 100%;
}

.product-presentation {
flex-direction: column;
text-align: center;
padding: 20px;
}

.product-info {
margin-left: 0;
margin-top: 20px;
}

.product-image {
max-width: 100%;
}

.social-media {
flex-wrap: wrap;
gap: 15px;
}

}