/* Product Single Page Styles */

:root {
    --primary-color: #8e44ad;
    --bg-light: #f8f9fa;
    --text-dark: #333;
    --purple-light: #f4eef9;
}

.product-page {
    background: var(--bg-light);
}

/* Breadcrumbs */
.breadcrumb-item+.breadcrumb-item::before {
    content: "\f104";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    font-size: 0.7rem;
    color: #ccc;
}

/* Gallery */
.product-gallery-container {
    border: 1px solid #eee;
}

.active-thumb {
    border-color: var(--primary-color) !important;
}

.product-thumb-slider .item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.product-thumb-slider .item:hover {
    border-color: var(--primary-color);
}

/* Info Section */
.feature-item-small {
    background: var(--purple-light);
    padding: 10px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: bold;
    color: var(--text-dark);
}

.feature-item-small i {
    font-size: 1.1rem;
}

/* Buy Box */
.buy-section {
    border: 1px dashed #d1c4e9;
}

.qty-selector {
    border: 1px solid #ddd;
}

.btn-qty {
    color: var(--primary-color);
    padding: 5px 10px;
}

.qty-selector input.qty {
    width: 40px;
}

.buy-btn {
    transition: all 0.3s;
    font-size: 0.9rem !important;
    padding: 10px 18px !important;
    white-space: nowrap;
}

.buy-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 12px rgba(142, 68, 173, 0.2) !important;
}

/* Trust Items */
.trust-item i {
    font-size: 1.5rem;
    color: #aaa;
    margin-bottom: 5px;
    transition: color 0.3s;
}

.trust-item:hover i {
    color: var(--primary-color);
}

/* Tabs */
.product-nav-pills .nav-link {
    color: #666;
    background: transparent;
    transition: all 0.3s;
}

.product-nav-pills .nav-link.active {
    background: var(--primary-color) !important;
    color: #fff !important;
    box-shadow: 0 5px 15px rgba(142, 68, 173, 0.3);
}

.tab-content {
    border: 1px solid #eee;
}

.review-item p {
    line-height: 1.7;
}

/* Related Products Grid Fix */
.shop-product-card {
    transition: all 0.3s ease;
}

.shop-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1) !important;
}

.prod-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #f9f9f9;
    border-radius: 15px;
}

.prod-img img {
    max-height: 100%;
    width: auto;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.shop-product-card:hover .prod-img img {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 991px) {
    .product-main-info {
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .buy-section .current-price {
        font-size: 1.5rem;
    }

    .product-nav-pills {
        gap: 5px;
        flex-wrap: wrap;
    }

    .product-nav-pills .nav-link {
        font-size: 0.8rem;
        padding: 8px 15px !important;
    }
}
