/* Simple Promotions Frontend Styles */
.promo-primary-bg { background-color: var(--promo-primary-color, #ff6600); }
.promo-primary-color { color: var(--promo-primary-color, #ff6600); }
.promo-secondary-bg { background-color: var(--promo-secondary-color, #0099cc); }
.promo-secondary-color { color: var(--promo-secondary-color, #0099cc); }
.promo-dark-bg { background-color: var(--promo-dark-color, #333333); }
.promo-dark-color { color: var(--promo-dark-color, #333333); }
.promo-light-bg { background-color: var(--promo-light-color, #f5f5f5); }
.promo-light-color { color: var(--promo-light-color, #f5f5f5); }

.promo-background-full {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.promo-background-contain {
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.promo-background-pattern {
    background-repeat: repeat;
}

.promo-full-width { width: 100%; }
.promo-text-center { text-align: center; }
.promo-text-left { text-align: left; }
.promo-text-right { text-align: right; }
.promo-padding { padding: 20px; }
.promo-margin { margin: 20px; }

.promo-box {
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.promo-shadow { box-shadow: 0 4px 8px rgba(0,0,0,0.2); }

.promo-button {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.promo-flex {
    display: flex;
    flex-wrap: wrap;
}

.promo-flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-flex-between {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.promo-col {
    flex: 1;
    padding: 0 15px;
}

@media (max-width: 768px) {
    .promo-flex {
        flex-direction: column;
    }
    
    .promo-col {
        width: 100%;
        padding: 15px 0;
    }
}