/* Product Show Page Styles */

.filter-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.search-card,
.product-search-card {
    border: 1px solid #e9ecef;
}

.search-toggle-meta {
    font-size: .75rem;
    opacity: .9;
}

.search-toggle-button {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.9rem 1rem;
    font-weight: 600;
    border: 0;
    box-shadow: none !important;
}

.search-filter-form .form-label {
    margin-bottom: 0.35rem;
}

.image-gallery-card {
    width: 100%;
}

.image-gallery-body {
    padding: 0;
}

/* Image Slider Styles */
.product-image-container {
    max-width: 100%;
    width: auto;
    height: auto;
    border-radius: 1px;
    display: block;
    margin: 0 auto;
}

.slider-container {
    position: relative;
    overflow: visible;
    border-radius: 4px;
    min-height: 0;
    border: 1px solid #e9ecef;
    background: #fff;
    padding: 0;
}

.slider-wrapper {
    position: relative;
    width: 100%;
    min-height: auto;
}

.slide {
    display: none;
}

.slide.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    z-index: 10;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.slider-btn.prev {
    left: 10px;
}

.slider-btn.next {
    right: 10px;
}

.slider-dots {
    text-align: center;
    padding: 0.5rem 0;
}

.dot {
    display: inline-block;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active,
.dot:hover {
    background: #333;
}

.product-empty-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    height: 120px;
    background: #f8f9fa;
    border-radius: 4px;
    color: #ccc;
    font-size: 0.9rem;
    margin: 0 auto;
}

/* Specifications Styles */
.spec-row {
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.spec-row:last-child {
    border-bottom: none;
}

/* Seller Card Styles */
.seller-avatar {
    font-size: 3rem;
}

/* Price Card */
.product-price {
    font-size: 2rem;
    font-weight: bold;
}

/* Action Buttons */
.product-actions .btn {
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .image-gallery-card {
        max-width: 100%;
    }
}

