/* --- Product Detail Page Styles --- */

/* Gallery Section */
.product-gallery {
    position: relative;
    margin-bottom: 30px;
}

.main-image-wrapper {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
    margin-bottom: 15px;
    cursor: zoom-in;
    background: #fff;
    aspect-ratio: 1/1; /* Square aspect ratio */
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.main-image-wrapper:hover img {
    transform: scale(1.05);
}

.zoom-icon {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.8);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    pointer-events: none;
}

/* Thumbnail Carousel */
.thumbnail-container {
    position: relative;
    display: flex;
    align-items: center;
}

.thumbnail-slider {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 10px;
    padding: 5px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none;  /* IE 10+ */
    margin: 0 35px; /* Space for arrows */
}

.thumbnail-slider::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.thumb-item {
    flex: 0 0 80px;
    height: 80px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    overflow: hidden;
    opacity: 0.6;
    transition: all 0.3s;
    padding: 2px;
}

.thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.thumb-item.active, .thumb-item:hover {
    opacity: 1;
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(255, 153, 51, 0.3);
}

.thumb-arrow {
    position: absolute;
    background: #fff;
    border: 1px solid #ddd;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    color: #555;
    transition: all 0.2s;
}

.thumb-arrow:hover {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}

.prev-thumb { left: 0; }
.next-thumb { right: 0; }

/* Product Info Section */
.product-info h1 {
    font-size: 1.75rem;
    line-height: 1.3;
}

.price-box {
    display: flex;
    align-items: baseline;
}

.quantity-control .form-control:focus {
    box-shadow: none;
    border-color: #6c757d;
}

.product-meta span.min-w-100 {
    min-width: 100px;
    display: inline-block;
}

/* Tabs */
.nav-tabs .nav-link {
    color: #555;
    border: none;
    border-bottom: 3px solid transparent;
    padding: 10px 20px;
}

.nav-tabs .nav-link:hover {
    border-color: #eee;
    color: var(--primary-color);
}

.nav-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom: 3px solid var(--primary-color);
    background: transparent;
}

/* Related Products */
.section-title:before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    background: #ddd;
    z-index: -1;
}

/* Modal Zoom */
#imageZoomModal .modal-content {
    background: transparent;
}

#imageZoomModal .btn-close-white {
    background-color: rgba(0,0,0,0.5);
    border-radius: 50%;
    padding: 10px;
    opacity: 1;
}
