:root {
    --color-1: #e0e0e0;
    --color-2: #41448E;
    --color-3: #fff;
    --color-4: #000;
    --color-5: #9747FF;
    --color-6: #FAB702;
    --color-9: transparent;
}

.promotion-container {
    max-width: 600px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-1);
}

.promotion-image {
    position: relative;
    width: 100%;
    overflow: hidden;
   

}

.promotion-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
    aspect-ratio: 400.00/327.08;
}

.promotion-badge-box {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-2);
    padding: 5px 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    height: 40px;
}

.badge-text {
    font-size: 12px;
    font-weight: 700;
    color: var(--color-3);
    background: var(--color-5);
    padding: 5px 8px;
    border-radius: 30px;
    text-transform: capitalize;
}

.badge-keywords {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    align-items: center;
}

.badge-pricing {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.badge-actual-price {
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-3);
    text-decoration: line-through;
    opacity: 0.9;
}

.badge-price {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-3);
}

.promotion-content {
    padding:20px;
}

.promotion-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-2);
    line-height: 30px;
    margin:0;
    padding:0;
}

.promotion-subtitle {
    color: var(--color-6);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 24px;
    margin:0;
    padding:0;
}

.promotion-description {
    color: var(--color-2);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 21px; /* 21px */
    margin:0;
    padding:0;
}

.promotion-buttons {
    text-align: center;
}

.promo-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.promo-button.primary {
    background: var(--color-6);
    color: var(--color-4);
    border: 3px solid var(--color-6);
}

.promo-button.primary:hover {
    background: var(--color-6);
    border-color: var(--color-6);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(250, 183, 2, 0.4);
}

.promo-button.secondary {
    background: var(--color-5);
    color: var(--color-3);
    border: 3px solid var(--color-5);
}

.promo-button.secondary:hover {
    background: var(--color-5);
    border-color: var(--color-5);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(151, 71, 255, 0.4);
}

.promo-button.outline {
    background: var(--color-9);
    border: 3px solid var(--color-2);
    color: var(--color-2);
}

.promo-button.outline:hover {
    background: var(--color-2);
    color: var(--color-3);
}

/* Responsive */
@media (max-width: 768px) {
    .promotion-container {
        margin: 1rem;
    }

    .promotion-image {
        height: 300px;
    }

    .promotion-content {
        padding: 1.5rem;
    }

    .promotion-title {
        font-size: 1.5rem;
    }

    .badge-price {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .badge-text {
        font-size: 0.9rem;
        padding: 0.4rem 1rem;
    }

    .badge-pricing {
        gap: 0.75rem;
    }

    .badge-actual-price {
        font-size: 1rem;
    }

    .badge-price {
        font-size: 1.3rem;
    }
}
/* =========================================
   BUTTON ICON AND POSITION STYLES
   ========================================= */

/* Button with icon layout */
.promo-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

/* Icon sizing */
.button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.25rem;
    height: 1.25rem;
}

.button-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Icon position variants */
.button-icon-before {
    order: -1;
}

.button-icon-after {
    order: 1;
}

.button-text {
    order: 0;
}

/* Button positioning */
.promotion-container {
    position: relative;
    overflow: visible;
}

.promotion-buttons.button-inside {
    position: relative;
    margin-top: 76px;
    justify-content: center;
    align-items: center;
    color: var(--color-4);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

.promotion-buttons.button-outside {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 50%);
    bottom: 0;
    z-index: 10;
}

@media (max-width: 767px) {
    .button-icon {
        width: 1rem;
        height: 1rem;
    }
    
    .promotion-buttons.button-outside {
        transform: translate(-50%, 40%);
    }
}

/* Button container alignment */
.promotion-buttons.button-inside {
    display: flex;
    justify-content: center;
    width: 100%;
}

/* Button width: 100% if only one button, 50% if multiple */
.promotion-buttons.button-inside .promo-button {
    width: 50%;
}

.promotion-buttons.button-inside .promo-button:hover {
    box-shadow: none;
}



.promotion-buttons.button-inside .promo-button:only-child {
    width: 100%;
    color: white;
}

/* Promotion button container - Figma specs */
.promotion-buttons {
    display: flex;
    align-items: flex-start;
    align-self: stretch;
    flex-wrap: wrap;
    justify-content: center;
}

/* Card rounded borders */
.promotion-container {
    border-radius: 12px;
}

.owl-carousel {
    position: relative;
}

.owl-carousel .owl-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    z-index: 10;
}

.owl-carousel .owl-nav button.owl-prev, .owl-carousel .owl-nav button.owl-next{
    background-color: var(--color-2);
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    margin: 0;
    border: none;
    line-height: 52px;
    position: relative;
    pointer-events: all;
}

.owl-carousel .owl-nav button.owl-prev {
    margin-left: 10px;
}

.owl-carousel .owl-nav button.owl-next {
    margin-right: 10px;
}

.owl-carousel .owl-nav button.owl-next::before, .owl-carousel .owl-nav button.owl-prev::before{
    font-size: 20px;
    font-weight: 700;
    color: var(--color-3);
    line-height: 52px;
    display: block;
    margin: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.owl-carousel .owl-nav button.owl-prev.owl-prev{
    left: -50px;
}

.owl-carousel .owl-nav button.owl-next.owl-next{
    right: -50px;
}
