/* Product Slider Block Styles */
.product-slider-block {
    padding: 60px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    overflow: hidden;
}

.product-slider-block .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Section */
.slider-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.slider-titles {
    flex: 1;
}

.slider-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.slider-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    margin: 0;
    font-weight: 300;
}

.partner-logo {
    flex-shrink: 0;
}

.partner-logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

/* Swiper Container */
.product-swiper {
    padding-bottom: 50px;
    overflow: visible;
}

.product-swiper .swiper-slide {
    height: auto;
}

/* Product Card */
.product-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Product Image */
.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

/* Product Info */
.product-info {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-category {
    font-size: 0.9rem;
    color: #3498db;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.product-model {
    font-size: 1rem;
    color: #7f8c8d;
    margin-bottom: 20px;
    font-weight: 500;
}

/* Product Features */
.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.product-features li {
    padding: 8px 0;
    border-bottom: 1px solid #ecf0f1;
    color: #34495e;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}

.product-features li:before {
    content: "•";
    color: #3498db;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.product-features li:last-child {
    border-bottom: none;
}

/* Product Description */
.product-description {
    color: #7f8c8d;
    line-height: 1.6;
    margin: 0 0 25px 0;
    flex: 1;
}

/* Product Button */
.product-button {
    display: inline-block;
    background: linear-gradient(45deg, #3498db, #2980b9);
    color: white;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    margin-top: auto;
}

.product-button:hover {
    background: linear-gradient(45deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(52, 152, 219, 0.4);
    color: white;
    text-decoration: none;
}

/* Swiper Navigation */
.product-swiper .swiper-button-next,
.product-swiper .swiper-button-prev {
    color: #3498db;
    width: 50px;
    height: 50px;
    margin-top: -25px;
    background: white;
    border-radius: 50%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.product-swiper .swiper-button-next:after,
.product-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.product-swiper .swiper-button-next:hover,
.product-swiper .swiper-button-prev:hover {
    background: #3498db;
    color: white;
    transform: scale(1.1);
}

/* Swiper Pagination */
.product-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #bdc3c7;
    opacity: 1;
    transition: all 0.3s ease;
}

.product-swiper .swiper-pagination-bullet-active {
    background: #3498db;
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-slider-block {
        padding: 40px 0;
    }
    
    .slider-header {
        flex-direction: column;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .slider-title {
        font-size: 2rem;
    }
    
    .slider-subtitle {
        font-size: 1rem;
    }
    
    .product-info {
        padding: 20px;
    }
    
    .product-name {
        font-size: 1.2rem;
    }
    
    .product-swiper .swiper-button-next,
    .product-swiper .swiper-button-prev {
        display: none;
    }
}

@media (max-width: 480px) {
    .product-slider-block .container {
        padding: 0 15px;
    }
    
    .slider-title {
        font-size: 1.8rem;
    }
    
    .product-image {
        height: 200px;
    }
    
    .product-info {
        padding: 15px;
    }
}