   /* Clean Product Detail Styles */
   .product-detail-page {
    background: #f8f9fa;
    padding: 2rem 0;
}

/* Simple Clean Breadcrumb */
.product-breadcrumb {
    background: var(--primary-color);
    padding: 1.5rem 0;
    margin-bottom: 0;
}

.product-breadcrumb .breadcrumb {
    background: transparent;
    margin: 0;
    padding: 0;
}

.product-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.product-breadcrumb .breadcrumb-item a:hover {
    color: white;
}

.product-breadcrumb .breadcrumb-item.active {
    color: white;
    font-weight: 600;
}

.product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "/";
    color: rgba(255, 255, 255, 0.6);
    margin: 0 0.5rem;
}

/* Clean Product Gallery */
.product-gallery {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.main-image {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 1rem;
    position: relative;
    cursor: zoom-in;
    background: #f8f9fa;
}

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

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

.thumbnail-gallery {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: var(--primary-color);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail:hover {
    border-color: var(--primary-color);
    opacity: 0.8;
}

/* Clean Product Info */
.product-info {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.product-title {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

/* Simple Product Badges */
.product-badges {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.badge {
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.badge-hot {
    background: #fff3cd;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.badge-quality {
    background: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
}

/* Simple Product Description */
.product-info .mb-3 p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 6px;
    border-left: 3px solid var(--primary-color);
}

/* Clean Description Section */
.product-description {
    padding: 3rem 0;
    background: white;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 2rem;
}

.description-content {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.description-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.description-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.description-content li {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.description-content h3 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Simple Related Products */
.related-products {
    padding: 2rem 0;
    background: var(--secondary-color);
}

.related-products .section-title {
    margin-bottom: 2rem;
}

.related-product-card {
    background: white;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.related-product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.related-product-body {
    padding: 0 1rem 1rem 1rem;
}
.related-product-body p {
    font-size: 0.9rem;
    line-height: 1.4;
    margin-bottom: 0;
    min-height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    margin-bottom: 1rem;
}

.related-product-img {
    height: 250px;
    overflow: hidden;
}

.related-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-product-card:hover .related-product-img img {
    transform: scale(1.05);
}

.related-product-info {
    padding: 1rem;
}

.related-product-title {
    font-weight: 500;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.4;
    transition: color 0.3s ease;
    min-height: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-product-title:hover {
    color: var(--primary-color);
}


/* Responsive Design */
@media (max-width: 768px) {
    .product-breadcrumb {
        padding: 2rem 0;
    }

    .product-breadcrumb .breadcrumb-item a,
    .product-breadcrumb .breadcrumb-item.active {
        font-size: 0.9rem;
    }

    .product-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
        margin: 0 0.4rem;
    }

    .product-gallery,
    .product-info {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .main-image {
        height: 300px;
    }

    .thumbnail {
        width: 60px;
        height: 60px;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .description-content {
        padding: 1.5rem;
    }
}

/* Simple Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 9999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.lightbox img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.lightbox .close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: white;
    font-size: 2rem;
    cursor: pointer;
}
