/* Single Product Page Styles */

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f26522;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #333;
}

.product-tags .badge {
    font-size: 0.9rem;
    padding: 0.5rem 0.75rem;
    border-radius: 20px;
    background-color: #f8f9fa;
    color: #495057;
    border: 1px solid #dee2e6;
}

.thumbnail-image {
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.thumbnail-image:hover {
    border-color: #f26522;
    transform: scale(1.05);
    box-shadow: 0 4px 8px rgba(242, 101, 34, 0.3);
}

.manufacturer-card {
    transition: all 0.3s ease;
    background-color: #fff;
    border: 1px solid #dee2e6;
}

.manufacturer-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.manufacturer-logo {
    font-weight: 600;
    color: #333;
    margin-top: 0.5rem;
}

.spec-category {
    color: #f26522;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.technical-specifications ul li {
    padding: 0.25rem 0;
    border-bottom: 1px solid #f8f9fa;
}

.technical-specifications ul li:last-child {
    border-bottom: none;
}

.catalog-item {
    transition: all 0.3s ease;
    background-color: #fff;
}

.catalog-item:hover {
    background-color: #f8f9fa;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transform: translateY(-1px);
}

.catalog-name {
    font-weight: 500;
    color: #333;
}

.video-thumbnail {
    transition: all 0.3s ease;
    border-radius: 8px;
    overflow: hidden;
}

.video-thumbnail:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.video-thumbnail video {
    width: 100%;
    height: auto;
}

.quote-section .btn {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.quote-section .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.breadcrumb {
    background-color: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: #f26522;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #d55a1f;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: #6c757d;
}

/* Image Gallery Enhancements */
.main-image {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.main-image img {
    transition: transform 0.3s ease;
}

.main-image:hover img {
    transform: scale(1.02);
}

.image-thumbnails {
    margin-top: 1rem;
}

.image-thumbnails .thumbnail-image {
    border-radius: 6px;
    overflow: hidden;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-title {
        font-size: 1.5rem;
    }
    
    .manufacturer-card {
        margin-bottom: 1rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .main-image {
        height: 300px;
    }
    
    .main-image img {
        height: 300px;
    }
}

@media (max-width: 576px) {
    .product-title {
        font-size: 1.25rem;
    }
    
    .manufacturer-info .col-md-4 {
        margin-bottom: 1rem;
    }
    
    .technical-specifications .col-lg-6 {
        margin-bottom: 2rem;
    }
}

/* Loading States */
.placeholder-image {
    background: linear-gradient(45deg, #f8f9fa 25%, transparent 25%), 
                linear-gradient(-45deg, #f8f9fa 25%, transparent 25%), 
                linear-gradient(45deg, transparent 75%, #f8f9fa 75%), 
                linear-gradient(-45deg, transparent 75%, #f8f9fa 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    animation: loading 1s linear infinite;
}

@keyframes loading {
    0% { background-position: 0 0, 0 10px, 10px -10px, -10px 0px; }
    100% { background-position: 20px 20px, 20px 30px, 30px 10px, 10px 20px; }
}

/* Favorite Button Animation */
#addToFavorite {
    transition: all 0.3s ease;
}

#addToFavorite:hover {
    transform: scale(1.05);
}

#addToFavorite.btn-danger {
    background-color: #dc3545;
    border-color: #dc3545;
}

/* Video Gallery Enhancements */
.video-gallery .video-thumbnail {
    position: relative;
}

.video-gallery .video-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(242, 101, 34, 0.1) 50%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-gallery .video-thumbnail:hover::before {
    opacity: 1;
}

/* Catalog Download Enhancements */
.catalog-item .btn {
    transition: all 0.3s ease;
}

.catalog-item .btn:hover {
    transform: scale(1.05);
}

/* Technical Specifications Enhancements */
.technical-specifications {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.technical-specifications .spec-category {
    border-bottom: 2px solid #f26522;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
}

/* Product Description Enhancements */
.product-description {
    background-color: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.description-content {
    line-height: 1.6;
    color: #555;
}

/* Manufacturer Cards Enhancements */
.manufacturer-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1rem 0;
}

.manufacturer-card h6 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 0.5rem;
}
