/* bedots_offers UI block */
.bedots-offers {
    position: relative;
    overflow: hidden;
    padding: 72px 0 80px;
    background: #0a0a0a;
}

.bedots-offers::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: var(--bedots-offers-bg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.35;
    pointer-events: none;
}

.bedots-offers::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.75) 100%);
    pointer-events: none;
}

.bedots-offers .container {
    position: relative;
    z-index: 2;
}

.bedots-offers__header {
    max-width: 760px;
    margin: 0 auto 40px;
    text-align: center;
}

.bedots-offers__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 22px;
    padding: 8px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.bedots-offers__label i {
    color: #f5c518;
    font-size: 14px;
}

.bedots-offers__title {
    margin: 0 0 14px;
    color: #fff;
    font-family: "Playfair Display", Georgia, "Times New Roman", serif;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    line-height: 1.15;
}

.bedots-offers__subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.82);
    font-size: 15px;
    line-height: 1.6;
}

.bedots-offers__timer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 34px 0 48px;
}

.bedots-offers__timer-box {
    min-width: 92px;
    padding: 18px 16px 14px;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
}

.bedots-offers__timer-value {
    display: block;
    color: #fff;
    font-size: 2rem;
    font-weight: 600;
    line-height: 1;
}

.bedots-offers__timer-label {
    display: block;
    margin-top: 8px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 12px;
    line-height: 1.2;
}

.bedots-offers__carousel.owl-carousel .owl-stage-outer {
    overflow: visible;
}

.bedots-offers__carousel .owl-nav {
    position: absolute;
    top: 42%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
}

.bedots-offers__carousel .owl-nav button {
    position: absolute;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 0 !important;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.14) !important;
    color: #fff !important;
    pointer-events: auto;
}

.bedots-offers__carousel .owl-nav .owl-prev { left: -8px; }
.bedots-offers__carousel .owl-nav .owl-next { right: -8px; }

.bedots-offers__product {
    height: 100%;
    border-radius: 16px;
    background: #fff;
    overflow: hidden;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.bedots-offers__product-media {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f3f3f3;
}

.bedots-offers__product-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bedots-offers__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    padding: 6px 12px;
    border-radius: 999px;
    background: #ff3b30;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.bedots-offers__wishlist {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #fff;
    color: #666;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
    text-decoration: none;
}

.bedots-offers__product-body {
    padding: 18px 18px 22px;
}

.bedots-offers__product-title {
    margin: 0 0 10px;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.bedots-offers__product-title a {
    color: #111;
    text-decoration: none;
}

.bedots-offers__price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 0;
}

.bedots-offers__price-current {
    color: #111;
    font-size: 16px;
    font-weight: 700;
}

.bedots-offers__price-old {
    color: #999;
    font-size: 14px;
    text-decoration: line-through;
}

@media screen and (max-width: 767px) {
    .bedots-offers {
        padding: 56px 0 64px;
    }

    .bedots-offers__timer {
        gap: 10px;
    }

    .bedots-offers__timer-box {
        min-width: 78px;
        padding: 14px 10px 12px;
    }

    .bedots-offers__timer-value {
        font-size: 1.5rem;
    }
}
