.coupon-fv-container {
    display: flex;
    justify-content: center;
    align-items: center;
}
.coupon-fv-container img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.coupon-content {
    margin: 0 -20px 40px -20px;
    background-color: #fff;
    padding: 5px 0;
}

.coupon-count-container{
    color: #333333;
    font-weight: bold;
    margin: 20px 0 20px -10px;

}

.coupon-ttl-container{
    display: flex;
    justify-content: space-between;
    justify-content: center;
}

.coupon-title {
    width: 60%;
    padding: 0 0px 0 10px;
    margin-bottom: 0px;
    font-size: 18px;
    margin-top: 0px;
}

.coupon-ttl-offer{
    width: 40%;
    font-size: 14px;
    color: #C3C3C3;
    text-align: center;
}

.provider-logo-container{
    width: 100%;
    
}

.provider-logo{
    max-width: 100px;
    object-fit: contain;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.image-slider-container {
    position: relative;
    overflow: hidden;
}

.image-slider {
    display: flex;
    scroll-snap-type: x mandatory;
    overflow-x: auto;
}

.slider-item {
    flex: 0 0 100%;
    scroll-snap-align: start;
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.slider-item.portrait {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f0f0f0;
}

.slider-item.portrait .background-blur {
    position: absolute;
    top: -5%;
    left: -5%;
    right: -5%;
    bottom: -5%;
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    transform: scale(1.1);
    opacity: 0.8;
}

.slider-item.portrait img {
    position: relative;
    height: auto;
    width: 100%;
    max-height: 100%;
    object-fit: contain;
    z-index: 1;
}

.slider-item.square img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.discount-overlay {
    position: absolute;
    left: 10px;
    bottom: 15px;
    background-color: #fff;
    padding: 10px;
    border-radius: 20px;
    box-shadow: 0 0 10px rgba(248, 221, 189, 0.8);
}

.discount-rate {
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    display: inline-block;
    margin-bottom: 5px;
    background-color: #FF8800;
    padding: 3px 8px;
    border-radius: 5px;
}

.price-info {
    display: flex;
    align-items: center;
    gap: 5px;
}

.original-price {
    text-decoration: line-through;
    color: #BEBEBE;
}

.sale-price {
    font-weight: bold;
    color: #FF1212;
    font-size: 20px;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding:0 20px  10px 20px;
}

.slider-dots {
    position: static;
    transform: none;
    display: flex;
    gap: 10px;
    align-items: center;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    cursor: pointer;
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
    display: inline-block;
    margin: 0;
    padding: 0;
}

.dot.active {
    width: 15px;
    height: 15px;
    background-color: #00D0FF;
}

.slider-icon {
    font-size: 35px;
    cursor: pointer;
}

.heart-icon {
    color: #FF6B6B;
    margin-top: 5px;
}

.heart-icon:hover {
    color: #FF4949;
}

.bookmark-icon {
    color: #FFB800;
    margin-top: 5px;
}

.bookmark-icon:hover {
    color: #FF9900;
}

.recommendation {
    padding: 10px 15px 5px 15px;
}


.product-link-ttl{
    max-width: 60%;
    background-color: #FF8800;
    border-radius: 30px;
    padding: 5px 10px;
    margin: 10px auto;
    color: #fff;
    font-weight: bold;
    text-align: center;
}

.product-link-btn{
    font-size: 18px;
    text-align: center;
    padding-bottom: 20px;
}

@media (max-width: 689px) {
    .provider-logo{
        width: 80%;
    }
}

.image-counter {
    position: absolute;
    top: 0px;
    right: 0px;
    background-color: #333333;
    color: white;
    padding: 5px 10px;
    opacity: 0.8;
    border-radius: 0 0 0 10px;
    z-index: 10;
    font-size: 14px;
}

/* 絞り込み関連の追加スタイル */
.filter-container {
    display: flex;
    gap: 10px;
    margin: 20px 0;
    padding: 0 10px;
}

.filter-button {
    background: white;
    padding: 8px 20px;
    border-radius: 20px;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: center;
    flex: 1;
}

.filter-button.active {
    background: #f0f0f0;
}

.filter-dropdown {
    position: absolute;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    margin-top: 10px;
    z-index: 100;
    width: 200px;
    left: 50%;
    transform: translateX(-50%);
}

.filter-option {
    padding: 15px 20px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
}

.filter-option:last-child {
    border-bottom: none;
}

.filter-option:hover {
    background: #f5f5f5;
}

.filter-option.active {
    background-color: #f0f0f0;
    font-weight: bold;
}

.coupon-count-container {
    cursor: pointer;
}

.coupon-count-container:hover {
    opacity: 0.8;
}

@media (max-width: 689px) {
    .filter-button {
        padding: 8px 10px;
        font-size: 14px;
    }
    
    .filter-dropdown {
        width: 90%;
        max-width: 200px;
    }
}

.active-filters {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: #fff;
    font-weight: bold;
}

.filter-label {
    background-color: #56E88E;
    color: #fff;
    padding: 5px 15px;
    border-radius: 100px;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.remove-filter {
    cursor: pointer;
    font-weight: bold;
    background-color: #fff;
    color: #000;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.expiry-countdown {
    text-align: center;
    color: #ff4444;
    font-weight: bold;
    margin: 10px 0 -10px 0;
}