/* Styl strony produktu JRS */
.product-page {
    padding-top: 50px;
    padding-bottom: 80px;
}

.product-hero {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 60px;
}

/* Lewa kolumna - Obrazek */
.product-image {
    flex: 1;
    max-width: 500px;
    background: var(--bg-card);
    border: 1px solid var(--border-dark);
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 30px rgba(0,0,0,0.5);
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Prawa kolumna - Info */
.product-info {
    flex: 1;
}

.product-info h1 {
    font-family: 'Rajdhani', sans-serif;
    font-size: 3rem;
    color: var(--text-white);
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.product-info .price {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2rem;
    color: var(--accent-red);
    font-weight: 700;
    margin-bottom: 10px;
}

.product-short-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #bbb;
    margin: 20px 0 30px 0;
    border-left: 3px solid var(--accent-red);
    padding-left: 20px;
}

/* Sekcja opisu pod przyciskiem */
.product-description {
    margin-top: 50px;
    border-top: 1px solid var(--border-dark);
    padding-top: 30px;
}

.product-description h2 {
    font-family: 'Rajdhani', sans-serif;
    text-transform: uppercase;
    color: var(--text-white);
    margin-bottom: 20px;
}

.product-desc {
    line-height: 1.8;
    color: var(--text-main);
}

.product-desc p {
    margin-bottom: 20px;
}

/* Sekcja kontaktowa na dole */
.product-cta {
    background: var(--bg-card);
    padding: 50px;
    text-align: center;
    border-radius: 10px;
    border: 1px solid var(--border-dark);
    margin-top: 40px;
}

.product-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

/* Responsywność */
@media (max-width: 992px) {
    .product-hero {
        flex-direction: column;
        align-items: center;
    }
    .product-image {
        max-width: 100%;
        margin-bottom: 40px;
    }
}
