/* Clean Shopglut Slider Styles */

.shopglut-slider {
    position: relative;
    width: 100%;
    margin: 20px 0;
    padding: 0 50px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.slider-track {
    display: flex;
    transition: transform 0.3s ease;
    width: 100%;
}

.slider-slide {
    flex: 0 0 auto;
    padding: 0 10px;
    box-sizing: border-box;
}

.product-item {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    height: 100%;
}

.product-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-image {
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
    width: 100%;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-item:hover .product-image img {
    transform: scale(1.05);
}

.product-info {
    padding: 15px;
}

.product-title {
    margin: 0 0 10px 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
}

.product-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-title a:hover {
    color: #0073aa;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #0073aa;
}

.product-price del {
    color: #999;
    font-weight: 400;
    margin-right: 8px;
}

.product-price ins {
    text-decoration: none;
    color: #0073aa;
}

/* Navigation Arrows */
.shopglut-slider .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6) !important;
    color: white !important;
    border: none !important;
    width: 35px !important;
    height: 35px !important;
    border-radius: 50% !important;
    font-size: 14px !important;
    cursor: pointer;
    z-index: 10;
    transition: background-color 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1 !important;
    padding: 0 !important;
    margin: 0 !important;
    font-family: inherit !important;
    font-weight: normal !important;
    box-shadow: none !important;
    border-top-width: 0 !important;
    border-right-width: 0 !important;
    border-left-width: 0 !important;
    border-bottom-width: 0 !important;
    vertical-align: baseline !important;
}

.shopglut-slider .slider-arrow:hover {
    background: rgba(0, 0, 0, 0.7) !important;
}

.shopglut-slider .slider-prev {
    left: 10px;
}

.shopglut-slider .slider-next {
    right: 10px;
}

/* Dots Navigation */
.shopglut-slider .slider-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 15px;
}

.shopglut-slider .slider-dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    border: none !important;
    background: #ddd !important;
    cursor: pointer;
    transition: background-color 0.3s ease !important;
    padding: 0 !important;
    margin: 0 !important;
    font-size: 0 !important;
    line-height: 0 !important;
    box-shadow: none !important;
    color: transparent !important;
    font-family: inherit !important;
    font-weight: normal !important;
    text-transform: none !important;
    border-style: none !important;
    border-width: 0 !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    outline: none !important;
    overflow: visible !important;
    vertical-align: baseline !important;
}

.shopglut-slider .slider-dot.active,
.shopglut-slider .slider-dot:hover {
    background: #0073aa !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .slider-slide {
        padding: 0 5px;
    }
    
    .product-info {
        padding: 10px;
    }
    
    .product-title {
        font-size: 14px;
    }
    
    .product-price {
        font-size: 16px;
    }
    
    .shopglut-slider .slider-arrow {
        width: 32px !important;
        height: 32px !important;
        font-size: 12px !important;
    }
    
    .shopglut-slider .slider-prev {
        left: 5px;
    }
    
    .shopglut-slider .slider-next {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .shopglut-slider .slider-arrow {
        width: 28px !important;
        height: 28px !important;
        font-size: 11px !important;
    }
    
    .shopglut-slider .slider-dot {
        width: 6px;
        height: 6px;
    }
}