.offers-minimal {
    background-image: url(../image/Heroimg.png);
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* Section header - clean and simple */
.section-header-minimal {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-badge-minimal {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: grey;
    font-weight: 500;
}

.section-title-minimal {
    font-size: 2rem;
    font-weight: 500;
    color: #2c241f;
    letter-spacing: -0.3px;
}

.vertical-slider-container {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    box-shadow: none;
    position: relative;
}

.offer-slide-content {
    display: flex;
    flex-wrap: wrap;
    min-height: 420px;
    background: #ffffff;
}

.offer-image-side {
    flex: 1.2;
    background-size: cover;
    background-position: center;
    min-height: 320px;
}

.offer-text-side {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.offer-label {
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: black;
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.offer-title {
    font-size: 1.8rem;
    font-weight: 500;
    color: #2c241f;
    margin-bottom: 0.5rem;
    letter-spacing: -0.2px;
}

.offer-discount {
    font-size: 1rem;
    font-weight: 600;
    color: grey;
    margin-bottom: 1rem;
}

.offer-description {
    font-size: 0.9rem;
    color: #6b5a4e;
    line-height: 1.5;
    margin-bottom: 1.2rem;
}

.offer-code {
    background: pink;
    font-family: monospace;
    font-weight: 600;
    font-size: 0.75rem;
    padding: 0.3rem 0.9rem;
    display: inline-block;
    color: black;
    margin-bottom: 0.8rem;
}

.offer-terms {
    font-size: 0.65rem;
    color: grey;
    border-top: 1px solid #f1e6df;
    padding-top: 0.8rem;
    margin-top: 0.5rem;
}

.offer-btn {
    background: transparent;
    border: 1px solid #e1cfc2;
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: black;
    transition: all 0.2s;
    display: inline-block;
    text-decoration: none;
    width: fit-content;
}

.offer-btn:hover {
    background: #fef6f0;
    border-color: pink;
    color: black;
}

.vertical-carousel {
    position: relative;
    overflow: hidden;
}

.vertical-carousel-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.vertical-carousel-item {
    position: relative;
    display: none;
    float: left;
    width: 100%;
    transition: transform 0.6s ease-in-out;
}

.vertical-carousel-item.active {
    display: block;
}

/* Custom navigation arrows - minimal */
.vertical-nav {
    position: absolute;
    right: 20px;
    bottom: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.vertical-nav-btn {
    width: 40px;
    height: 40px;
    background: white;
    border: 1px solid #e8dbd2;
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #8b6f5e;
}

.vertical-nav-btn:hover {
    background: #faf4ef;
    border-color: #c7a18b;
    color: black;
}

/* Dots indicator */
.vertical-dots {
    position: absolute;
    left: 20px;
    bottom: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}

.vertical-dot {
    width: 8px;
    height: 8px;
    background: rgb(255, 230, 234);
    cursor: pointer;
    transition: all 0.2s;
}

.vertical-dot.active {
    background: black;
    width: 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .offer-slide-content {
        flex-direction: column;
    }

    .offer-image-side {
        min-height: 220px;
        flex: none;
    }

    .offer-text-side {
        padding: 1.5rem;
    }

    .offer-title {
        font-size: 1.4rem;
    }

    .vertical-nav {
        right: 12px;
        bottom: 12px;
    }

    .vertical-dots {
        left: 12px;
        bottom: 12px;
    }
}