/* ========================================
   OFFER SUBPAGE — Bułkę Przez Bibułkę
   ======================================== */

/* --- HERO BANNER --- */
.offer-hero {
    position: relative;
    width: 100%;
    height: 45vh;
    min-height: 320px;
    overflow: hidden;
}

.offer-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.offer-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.35);
}

.offer-hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
}

.offer-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 6px;
    margin-bottom: 10px;
}

.offer-hero-content p {
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 300;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 4px;
    opacity: 0.85;
}

/* --- BREADCRUMB --- */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    font-size: 0.8rem;
    color: #999;
}

.breadcrumb a {
    color: #7FB3C2;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #A8CCD7;
}

.breadcrumb span {
    margin: 0 6px;
}

.breadcrumb .current {
    color: #555;
}

/* --- OFFER INTRO --- */
.offer-intro {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 30px 10px;
    border-bottom: 1px solid #eee;
}

.offer-sizes {
    font-size: 0.95rem;
    color: #555;
    letter-spacing: 0.5px;
}

.offer-sizes strong {
    color: #7FB3C2;
}

/* --- PRODUCT CARDS --- */
.offer-products {
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.product-card {
    display: flex;
    min-height: 400px;
}

.product-card:nth-child(even) {
    flex-direction: row-reverse;
}

.product-image {
    width: 50%;
    flex-shrink: 0;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.03);
}

.product-info {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: #fff;
}

.product-card:nth-child(even) .product-info {
    background: #F0F6F8;
}

.product-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.product-desc {
    font-size: 0.9rem;
    color: #777;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ========================================
   RESPONSIVE — OFFER PAGE
   ======================================== */

@media (max-width: 768px) {
    .offer-hero-content h1 {
        font-size: 2rem;
        letter-spacing: 3px;
    }

    .product-card,
    .product-card:nth-child(even) {
        flex-direction: column;
    }

    .product-image {
        width: 100%;
        height: 280px;
    }

    .product-info {
        width: 100%;
        padding: 40px 25px;
    }
}

@media (max-width: 480px) {
    .offer-hero {
        height: 35vh;
    }

    .offer-hero-content h1 {
        font-size: 1.6rem;
    }

    .product-image {
        height: 180px;
    }
}
