.custom-offer-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 16px;
}

.custom-slider-item {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    min-height: 600px;
}

.slider-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.554) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    z-index: 1;
}

.slider-content {
    position: relative;
    z-index: 2;
    padding: 40px 40px 40px 130px;
    width: 100%;
    color: #ffffff;
    max-width: 55%;
}

.slider-title {
    font-size: 48px;
    font-weight: 700;
    margin: 0 0 8px 0;
    line-height: 1.2;
    color: #ffffff;
}

.slider-subtitle {
    font-size: 18px;
    margin: 0 0 24px 0;
    color: #ffffff;
    opacity: 0.95;
}

.badges {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    font-size: 14px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
}

.badge i,
.badge svg {
    font-size: 14px;
    width: 14px;
    height: 14px;
    display: inline-block;
    line-height: 1;
    text-align: center;
}

/* Font Awesome icon support */
.badge i[class*="fa-"],
.badge i[class*="fas"],
.badge i[class*="far"],
.badge i[class*="fab"] {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Font Awesome solid icons */
.badge i.fas {
    font-weight: 900;
}

/* Font Awesome regular icons */
.badge i.far {
    font-weight: 400;
}

/* Font Awesome brands icons */
.badge i.fab {
    font-weight: 400;
}

/* Remix Icon support */
.badge i[class*="ri-"] {
    font-family: "remixicon" !important;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    vertical-align: middle;
    display: inline-block;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom icon-calendar mapping to Font Awesome */
.badge i.icon-calendar:before {
    content: "\f073";
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Pro", "Font Awesome 5 Free", "FontAwesome";
    font-weight: 900;
    display: inline-block;
}

.badge span {
    color: #ffffff;
}

.price-section {
    margin-bottom: 24px;
}

.original-price {
    font-size: 14px;
    text-decoration: line-through;
    opacity: 0.7;
    margin-bottom: 4px;
    color: #ffffff;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.discount-price {
    font-size: 40px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.price-badge {
    background: #ef4444;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    white-space: nowrap;
}

.slider-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background: #ef4444;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    width: auto;
    text-align: center;
    border: none;
    cursor: pointer;
}

.slider-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.swiper-pagination {
    position: absolute;
    bottom: 20px !important;
    left: 50% !important;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.4) !important;
    width: 8px !important;
    height: 8px !important;
    opacity: 1 !important;
    margin: 0 4px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #ffffff !important;
    width: 24px !important;
    border-radius: 4px !important;
}

.swiper-button-prev,
.swiper-button-next {
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.3) !important;
    width: 44px !important;
    height: 44px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.5) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px !important;
    font-weight: 700;
}

/* Mobil Uyumlu */
@media (max-width: 768px) {
    .custom-slider-item {
        min-height: 500px;
    }

    .slider-content {
        padding: 30px 20px 30px 30px;
        max-width: 100%;
    }

    .slider-title {
        font-size: 32px;
        margin-bottom: 6px;
    }

    .slider-subtitle {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .badges {
        gap: 8px;
        margin-bottom: 24px;
    }

    .badge {
        font-size: 12px;
        padding: 6px 12px;
        gap: 6px;
    }

    .badge i,
    .badge svg {
        font-size: 12px;
        width: 12px;
        height: 12px;
        display: inline-block;
        line-height: 1;
        text-align: center;
    }

    .price-section {
        margin-bottom: 20px;
    }

    .original-price {
        font-size: 12px;
    }

    .discount-price {
        font-size: 32px;
    }

    .price-badge {
        font-size: 12px;
        padding: 5px 10px;
    }

    .slider-button {
        padding: 10px 20px;
        font-size: 13px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 36px !important;
        height: 36px !important;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 14px !important;
    }

    .swiper-pagination {
        bottom: 15px !important;
    }
}

@media (max-width: 480px) {
    .custom-slider-item {
        min-height: 550px;
    }

    .slider-content {
        padding: 25px 16px 25px 20px;
        max-width: 100%;
    }

    .slider-title {
        font-size: 24px;
        margin-bottom: 4px;
    }

    .slider-subtitle {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .badges {
        gap: 6px;
        margin-bottom: 20px;
    }

    .badge {
        font-size: 11px;
        padding: 5px 10px;
        gap: 5px;
    }

    .badge i,
    .badge svg {
        font-size: 11px;
        width: 11px;
        height: 11px;
        display: inline-block;
        line-height: 1;
        text-align: center;
    }

    .price-section {
        margin-bottom: 16px;
    }

    .original-price {
        font-size: 11px;
    }

    .discount-price {
        font-size: 28px;
    }

    .price-badge {
        font-size: 11px;
        padding: 4px 8px;
    }

    .price-row {
        gap: 8px;
    }

    .slider-button {
        padding: 9px 18px;
        font-size: 13px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 32px !important;
        height: 32px !important;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 12px !important;
    }

    .swiper-pagination {
        bottom: 12px !important;
    }

    .swiper-pagination-bullet {
        width: 6px !important;
        height: 6px !important;
        margin: 0 3px !important;
    }

    .swiper-pagination-bullet-active {
        width: 20px !important;
    }
}