/* Offers Section Styles */
.offers-container {
    border-radius: 12px;
    width: 100%;
}

.offer-type-badge {
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-shrink: 0;
    --extracted-r6o4lv: rgb(229, 165, 0);
    transform: none;
}

.offer-type-text {
    font-size: 14.46px;
    font-weight: 700;
    letter-spacing: 0px;
    line-height: 26.03px;
    color: var(--extracted-r6o4lv, rgb(229, 165, 0));
}

.offer-title-container {
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-shrink: 0;
    --extracted-2gxw0f: rgb(250, 250, 250);
    --extracted-r6o4lv: rgb(250, 250, 250);
    transform: none;
    height: 45px;
}

.offer-brand-container {
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-shrink: 0;
    --extracted-r6o4lv: rgb(250, 250, 250);
    transform: none;
}

.offer-brand-text {
    font-size: 18px;
    font-weight: 700;
    line-height: 28.92px;
    color: var(--extracted-r6o4lv, rgb(250, 250, 250));
}

.offer-code-container {
    outline: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex-shrink: 0;
    --extracted-r6o4lv: rgba(250, 250, 250, 0.72);
    transform: none;
}

.offer-code-text {
    line-height: 26.03px;
    color: var(--extracted-r6o4lv, rgba(250, 250, 250, 0.72));
    text-transform: uppercase;
}

/* No Offers Message */
.no-offers-message {
    font-size: 1.2rem;
    color: #666;
}

/* Image Container */
.skeleton.imagecontainer {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background-color: #f0f0f0;
    overflow: hidden;
}

.skeleton.imagecontainer img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.skeleton.imagecontainer.skeleton-loading img {
    opacity: 0;
}

.skeleton.imagecontainer:not(.skeleton-loading) img {
    opacity: 1;
}
