/* ============================================
   PROMOTIONS PAGE STYLES - ZOMZEM THEME
   Cloned from home.css & product.css
   ============================================ */

/* 0. IMPORTS & FONTS */


/* 1. LAYOUT & SCOPE */
.promotions-page {
    padding-bottom: 80px;
    background: #ffffff;
    box-sizing: border-box;
    overflow-x: hidden;
}

.promotions-page .breadcrumbs {
    margin-bottom: 1.5rem;
}

/* 2. PROMOTION GRID */
.promotions-page .promotion-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 40px;
}

.promotions-page .promotion-card {
    display: flex;
    align-items: center;
    gap: 60px;
}

.promotions-page .promotion-card.reverse {
    flex-direction: row-reverse;
}

.promotions-page .promotion-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 300px;
}

.promotions-page .promotion-image img {
    width: 100%;
    height: auto;
    display: block;

}

.promotions-page .promotion-content {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.promotions-page .promotion-title {
    font-family: 'Philosopher', sans-serif;
    font-size: 24px;
    color: var(--zz-blue);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.promotions-page .promotion-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.promotions-page .promotion-content .btn-explore {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--zz-blue);
    /* Gold border as per image */
    color: var(--zz-blue);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background: transparent;
}

.promotions-page .promotion-content .btn-explore:hover {
    background: var(--zz-blue);
    color: white;
}

/* Responsive */
/* ============================================
   PROMOTIONS PAGE STYLES - ZOMZEM THEME
   Cloned from home.css & product.css
   ============================================ */

/* 0. IMPORTS & FONTS */
@import url('https://fonts.googleapis.com/css2?family=Philosopher:wght@400;700&family=Roboto:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* 1. LAYOUT & SCOPE */
.promotions-page {
    padding-bottom: 80px;
    background: #ffffff;
    box-sizing: border-box;
    overflow-x: hidden;
}

.promotions-page .breadcrumbs {
    margin-bottom: 1.5rem;
}

/* 2. PROMOTION GRID */
.promotions-page .promotion-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 40px;
}

.promotions-page .promotion-card {
    display: flex;
    align-items: center;
    gap: 60px;
}

.promotions-page .promotion-card.reverse {
    flex-direction: row-reverse;
}

.promotions-page .promotion-image {
    flex: 1;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    height: 300px;
}

.promotions-page .promotion-image img {
    width: 100%;
    height: auto;
    display: block;

}

.promotions-page .promotion-content {
    flex: 1;
    text-align: center;
    padding: 20px;
}

.promotions-page .promotion-title {
    font-family: 'Philosopher', sans-serif;
    font-size: 24px;
    color: var(--zz-blue);
    text-transform: uppercase;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.promotions-page .promotion-desc {
    color: #555;
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 15px;
}

.promotions-page .promotion-content .btn-explore {
    display: inline-block;
    padding: 12px 30px;
    border: 1px solid var(--zz-blue);
    /* Gold border as per image */
    color: var(--zz-blue);
    text-transform: uppercase;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background: transparent;
}

.promotions-page .promotion-content .btn-explore:hover {
    background: var(--zz-blue);
    color: white;
}

/* Responsive */
@media (max-width: 1250px) {
    .promotions-page .breadcrumbs {
        margin-top: 120px;
    }
}

@media (max-width: 768px) {
    .promotions-page .promotion-grid {
        grid-template-columns: 1fr;
    }

    .promotions-page h2 {
        font-size: 24px;
    }

    .promotions-page h2::before,
    .promotions-page h2::after {
        max-width: 40px;
    }

    .promotions-page .promotion-card,
    .promotions-page .promotion-card.reverse {
        flex-direction: column;
        gap: 30px;
    }

    .promotions-page .promotion-image {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9;
    }

    .promotions-page .promotion-content {
        padding: 0;
    }

    .promotions-page .promotion-title {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .promotions-page .promotion-desc {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .promotions-page .promotion-list {
        gap: 50px;
        margin-top: 30px;
    }
}