/* 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: linear-gradient(181deg,rgba(255, 0, 255, 1) 0%, rgba(147, 82, 204, 1) 0%, rgba(237, 221, 83, 1) 100%);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.2);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.product-image {
    max-width: 100%;
    border-radius: 8px;
}

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

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

.product-price {
    font-size: 1.2em;
    color: #000000;
    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;
}

a {
  text-decoration: none;
  color: inherit; /* zachowuje kolor tekstu, jeśli nie chcesz domyślnego niebieskiego */
}