.product-gallery {
        position: relative;
        margin-bottom: 30px;
    }
    
    .gallery-carousel {
        position: relative;
        overflow: hidden;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    }
    
    .gallery-slides {
        display: flex;
        transition: transform 0.5s ease;
        height: auto;
    }
    
    .gallery-slide {
        min-width: 100%;
        position: relative;
    }
    
    .gallery-slide img {
        max-width: 100%;
        height: auto;
        object-fit: cover;
        display: block;
    }
    
    .gallery-nav {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: rgba(255,255,255,0.9);
        border: none;
        border-radius: 50%;
        width: 50px;
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 10;
        transition: all 0.3s ease;
        font-size: 20px;
        color: #333;
    }
    
    .gallery-nav:hover {
        background: rgba(255,255,255,1);
        transform: translateY(-50%) scale(1.1);
    }
    
    .gallery-prev {
        left: 20px;
    }
    
    .gallery-next {
        right: 20px;
    }
    
    .gallery-indicators {
        display: flex;
        justify-content: center;
        gap: 10px;
        margin-top: 20px;
    }
    
    .gallery-indicator {
        width: 80px;
        height: 60px;
        border: 3px solid transparent;
        border-radius: 8px;
        overflow: hidden;
        cursor: pointer;
        transition: all 0.3s ease;
        opacity: 0.7;
    }
    
    .gallery-indicator.active {
        border-color: #007bff;
        opacity: 1;
        transform: scale(1.05);
    }
    
    .gallery-indicator img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .gallery-counter {
        position: absolute;
        bottom: 20px;
        right: 20px;
        background: rgba(0,0,0,0.7);
        color: white;
        padding: 8px 15px;
        border-radius: 20px;
        font-size: 14px;
        z-index: 10;
    }
    
    .product-features {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 12px;
        margin-bottom: 30px;
    }
    
    .feature-item {
        display: flex;
        align-items: center;
        margin-bottom: 15px;
        padding: 10px;
        background: white;
        border-radius: 8px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    }
    
    .feature-icon {
        width: 30px;
        height: 30px;
        background: #007bff;
        color: white;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
        font-size: 16px;
    }
    
    .product-info-tabs {
        margin-top: 30px;
    }
    
    .downloads-section {
        background: #f8f9fa;
        padding: 30px;
        border-radius: 12px;
        margin-top: 30px;
    }
    
    .download-item, .link-item {
        background: white;
        padding: 15px;
        border-radius: 8px;
        margin-bottom: 10px;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        transition: all 0.3s ease;
    }
    
    .download-item:hover, .link-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }