.sovrn-product-slider-container {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    padding: 20px;
    overflow: hidden;
}

.sovrn-slider-track {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
}

.sovrn-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 10px;
}

.sovrn-product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    padding: 20px;
    /*box-shadow: 0 4px 8px rgba(0,0,0,0.1);*/
}

.merchant-logo-container {
    /*margin-bottom: 15px;*/
}

.merchant-logo {
    max-width: 150px;
    max-height: 50px;
    margin: 0 auto;
}

.product-image-container {
    margin: 0 auto;
    /*margin: 0 auto 15px;*/
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image {
    max-width: 100%;
    max-height: 200px;
    object-fit: contain;
}

.product-info {
    padding: 0 15px;
}

.product-title {
    font-size: .8em;
    margin: 0 0 10px;
    color: #333;
    line-height: 1.3;
}

.product-price {
    font-size: 20px;
    font-weight: bold;
    color: #B12704;
    /*margin-bottom: 15px;*/
}

.view-product-button {
    display: inline-block;
    padding: 10px 20px;
    background: #0066c0;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.3s;
}

.view-product-button:hover {
    background: #0066c0;
	color: white;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.slider-prev, .slider-next {
    background: #f0f0f0;
    border: none;
    padding: 7px 15px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    transition: background 0.3s;
}

.slider-prev:hover, .slider-next:hover {
    background: #ddd;
}

.slider-dots {
    display: flex;
    justify-content: center;
    margin-top: 15px;
    gap: 8px;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
}

.slider-dot.active {
    background: #0066c0;
}

.sovrn-no-products {
    text-align: center;
    padding: 40px;
    font-size: 18px;
    color: #666;
}