/**
 * Style dla podstrony pojedynczego pokazu fajerwerków
 * Styl w stylu WooCommerce
 */

.fw-single-product {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.fw-single-product__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.fw-single-product__gallery {
    position: sticky;
    top: 2rem;
    align-self: start;
}

.fw-single-product__image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.fw-single-product__image img {
    width: 100%;
    height: auto;
    display: block;
}

.fw-single-product__summary {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.fw-single-product__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.fw-single-product__price {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #ff8c00 0%, #ffa500 50%, #ffd700 100%);
    color: #1a1a2e;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-weight: 700;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(255, 140, 0, 0.5),
                0 0 30px rgba(255, 215, 0, 0.3);
    width: fit-content;
}

.fw-single-product__price-value {
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.fw-single-product__price-currency {
    font-size: 1.2rem;
    font-weight: 700;
    opacity: 0.9;
}

.fw-single-product__description {
    color: #b8b8c8;
    font-size: 1.1rem;
    line-height: 1.8;
}

.fw-single-product__description p {
    margin: 0 0 1rem 0;
}

.fw-single-product__description p:last-child {
    margin-bottom: 0;
}

.fw-single-product__video {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.fw-single-product__video h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 1.5rem 0;
}

.fw-single-product__video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.fw-single-product__video-wrapper iframe,
.fw-single-product__video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsywność */
@media (max-width: 768px) {
    .fw-single-product {
        padding: 1rem;
    }
    
    .fw-single-product__container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .fw-single-product__gallery {
        position: static;
    }
    
    .fw-single-product__title {
        font-size: 2rem;
    }
    
    .fw-single-product__price {
        padding: 0.75rem 1.5rem;
        font-size: 1.5rem;
    }
    
    .fw-single-product__price-value {
        font-size: 2rem;
    }
    
    .fw-single-product__description {
        font-size: 1rem;
    }
    
    .fw-single-product__video h2 {
        font-size: 1.5rem;
    }
}

