/* Product Scroller Styles */
.product-scroller-wrapper {
	background-image: url("https://bitzer-us.com/wp-content/uploads/2026/01/green-black-abstract-background-1430212360.jpg");
	background-color: #3c3c3c;
	background-size: cover;
    padding: 20px 60px;
    margin-bottom: 40px;
    overflow: visible;
    position: relative;
}
.scroller-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #3aaa36;
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    z-index: 10;
    transition: background 0.3s ease;
}

.scroller-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.scroller-nav.prev {
    left: 10px;
}

.scroller-nav.next {
    right: 10px;
}

.product-scroller {
    display: flex;
    gap: 15px;
    overflow-x: auto;
    padding: 10px 0px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    margin: 0;
}

.product-scroller::-webkit-scrollbar {
    display: none;
}

.scroller-item {
    flex: 0 0 auto;
    width: calc(25% - 10px);
    text-align: center;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: all 0.3s ease;
	height: 200px;
}

.scroller-item:hover {
/*    transform: translateY(-6px);*/
	transform: scale(1.03);
}

.scroller-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}


.scroller-item:hover{
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.scroller-image img {
/*    width: 100%;*/
/*    height: 100%;*/
/*    object-fit: contain;*/
	display: inline-block;
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #999;
}

.scroller-title {
    font-size: 13px;
    font-weight: 600;
    color: #22c022;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    padding: 0 5px;
}

/* Main Product Container */
.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.product-single {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.product-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    padding: 30px;
}

.product-title {
    margin: 0;
    font-size: 2.5rem;
    font-weight: 700;
}

.product-content {
    padding: 40px;
}

.product-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (max-width: 768px) {
    .product-main {
        grid-template-columns: 1fr;
    }
}

.product-image-wrapper {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f8f9fa;
}

.product-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.product-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-price {
    padding: 20px;
    background: #e7f3ff;
    border-radius: 8px;
    border-left: 4px solid #007bff;
}

.price-label {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-value {
    display: block;
    font-size: 32px;
    font-weight: 700;
    color: #007bff;
}

.product-description {
    padding: 20px;
    background: #f8f9fa;
    border-radius: 8px;
}

.product-description h2 {
    margin-top: 0;
    font-size: 20px;
    color: #212529;
    margin-bottom: 15px;
}

.product-sku,
.product-category {
    padding: 15px;
    border: 1px solid #e9ecef;
    border-radius: 6px;
}

.sku-label,
.category-label {
    display: inline-block;
    font-weight: 600;
    color: #495057;
    margin-right: 10px;
}

.sku-value,
.category-value {
    color: #212529;
}

.product-main-content {
    padding-top: 40px;
    border-top: 2px solid #e9ecef;
    line-height: 1.8;
    color: #495057;
}

.product-main-content h2,
.product-main-content h3 {
    color: #212529;
    margin-top: 30px;
    margin-bottom: 15px;
}

.product-main-content p {
    margin-bottom: 15px;
}

/* Related Products Section */
.related-products-section {
    margin-top: 60px;
    padding: 40px 0;
    background: #f5f5f5;
}

.related-products-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.related-products-carousel-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.related-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #4CAF50;
    border: none;
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    z-index: 10;
    transition: background 0.3s ease;
    font-weight: bold;
}

.related-nav:hover {
    background: #45a049;
}

.related-nav.prev {
    left: 0;
}

.related-nav.next {
    right: 0;
}

.related-products-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 20px 60px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.related-products-carousel::-webkit-scrollbar {
    display: none;
}

.related-product-item {
    flex: 0 0 auto;
    width: 300px;
    background: #fff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.related-product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.related-product-item a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.related-product-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

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

.related-product-info {
    padding: 20px;
    text-align: center;
    background: #fff;
}

.related-product-title {
    font-size: 1.2rem;
    color: #4CAF50;
    margin: 0 0 10px 0;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
}

.related-product-price {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .related-product-item {
        width: 250px;
    }
    
    .related-product-image {
        height: 220px;
    }
}
@media only screen and (max-width: 680px) {
       .scroller-item {
        width: 100% !important;
    }
	.product-scroller-wrapper {
		padding: 20px 0;
	}
}
@media only screen and (min-width: 681px) and (max-width: 991px) {
 .scroller-item {
        width: 50% !important;
    }
    .product-title {
        font-size: 1.8rem;
    }
    
    .product-content {
        padding: 20px;
    }
    
    .scroller-item {
        width: 50%;
    }
    
    .scroller-image {
        width: 120px;
        height: 120px;
    }
    
    .related-product-item {
        width: 200px;
    }
    
    .related-product-image {
        height: 180px;
    }
    
    .related-products-title {
        font-size: 1.5rem;
    }
    
    .related-nav {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .related-products-carousel {
        padding: 20px 50px;
    }
}

@media (max-width: 480px) {
    .related-product-item {
        width: 180px;
    }
    
    .related-product-image {
        height: 160px;
    }
    
    .related-products-carousel {
        padding: 20px 45px;
    }
}