/* style3.css dla product.html */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff8e8;
    color: #fff;
    box-sizing: border-box;
}

.page-header {
    background-color: #585858;
    padding: 20px;
    text-align: center;
}

.back-button {
    color: #fff;
    text-decoration: none;
    font-size: 1.2em;
    transition: color 0.3s, transform 0.3s;
}

.back-button:hover {
    color: #0099cc;
    transform: scale(1.1);
}

.beta-alert {
    background-color: #ff4040;
    color: white;
    text-align: center;
    padding: 5px;
    font-weight: bold;
    font-size: 14px;
}

.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 30px;
}

.product-card {
    background-color: #444;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    padding: 10px;
    width: 100%;
    height: 100%;
    max-width: 300px; /* Można zostawić szerokość */
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.product-card:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

.product-card2:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

.product-card3:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(255, 255, 255, 0.3);
}

.product-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
}

.product-title {
    font-size: 1.5em;
    margin: 15px 0;
}

.product-description {
    font-size: 1em;
    margin: 10px 0;
}

.product-price {
    font-size: 1.2em;
    color: #00ff00;
    margin: 15px 0;
}

.product-buy-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1em;
    color: #fff;
    background-color: #0099cc;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s, transform 0.2s;
}

.product-buy-button:hover {
    background-color: #0056b3;
    transform: scale(1.1);
}
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-thumb {
    background-color: #333;
    border-radius: 10px;
}

::-webkit-scrollbar-track {
    background-color: #111;
}