/* css/product-details.css */

/* --- Header Overlay --- */
.header-overlay {
    background: linear-gradient(135deg, #000 0%, #333 100%);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255,255,255,0.5);
}

/* --- Product Gallery --- */
.product-gallery {
    position: relative;
    background: #f8f9fa;
}

.zoom-btn {
    width: 45px;
    height: 45px;
    transition: 0.3s;
    cursor: pointer;
}
.zoom-btn:hover {
    background-color: var(--primary-red) !important;
    color: #fff !important;
}

/* Thumbnails */
.thumb-item {
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 4px;
    overflow: hidden;
    transition: 0.3s;
}

.thumb-item img {
    transition: 0.3s;
    filter: brightness(0.9);
}

.thumb-item:hover img, 
.thumb-item.active img {
    filter: brightness(1);
}

.thumb-item.active {
    border-color: var(--primary-red);
}

/* --- Info Section --- */
.x-small { font-size: 11px; margin-top: 5px; }

.feature-icon-box {
    transition: 0.3s;
}

.feature-icon-box:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red) !important;
    background: #fff !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

/* --- Tabs --- */
.nav-tabs .nav-link {
    border: none;
    border-bottom: 3px solid transparent;
    color: #666;
    transition: 0.3s;
    padding: 15px 25px;
}

.nav-tabs .nav-link.active {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: transparent;
}

.nav-tabs .nav-link:hover {
    color: var(--primary-red);
}

/* Table */
.table th {
    background-color: #f8f9fa;
    color: #333;
    font-weight: 600;
}
.contact-buttons a{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    height: 41px;
    color: #000;
    text-align: center;
    padding: 0;
    margin: 0;
}

/* 360 viewer */
.product-360-viewer-wrapper {
    box-shadow: none !important;
}

.product-360-image-container {
    background: #fff !important;
    box-shadow: none;

}

@media (max-width: 950px) {
    .product-360-image-container {

        height: 300px !important;
    }
    
}



