/* Product Detail Page Styles */
.tranDetail {
    font-weight: 350;
    color: #337ab7;
}

.modal_detail {
    overflow-x: auto;
}

/* Modern VT Product Detail Page */
body.theme__color {
    background: #f8f8f8;
}

.modern-product-detail {
    padding: 30px 0;
    background: #f8f8f8;
}

.modern-breadcrumb {
    background: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 20px;
}

.modern-breadcrumb .breadcrumb {
    margin-bottom: 0;
    background: none;
    padding: 0;
}

.modern-breadcrumb .breadcrumb-item {
    font-size: 14px;
    color: #666;
}

.modern-breadcrumb .breadcrumb-item a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

.modern-breadcrumb .breadcrumb-item a:hover {
    color: var(--theme-color);
}

.modern-breadcrumb .breadcrumb-item.active {
    color: #999;
}

.product-detail-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.product-main-image {
    border-radius: 16px;
    overflow: hidden;
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 15px;
    margin-bottom: 0;
    text-align: center;
}

.product-main-image img {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
}

.product-info-section {
    padding-left: 20px;
}

.product-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-price-box {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 20px;
    border: 2px solid #e0e0e0;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--theme-color);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    max-width: 100%;
    position: initial !important;
}

.product-price-box .col-6:last-child {
    display: flex;
    justify-content: flex-end; 
    align-items: center;
}

.product-price .uom-badge {
    font-size: 16px;
    font-weight: 600;
    background: var(--theme-color);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    text-transform: uppercase;
    flex-shrink: 0;
}

.stock-indicator {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 4px;
}

.stock-indicator.in-stock {
    color: #28a745;
}

.stock-indicator.out-of-stock {
    color: #dc3545;
}

.stock-indicator i {
    font-size: 16px;
}

.product-details-grid {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.product-details-title {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #e8e8e8;
}

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

.detail-label {
    font-weight: 600;
    color: #666;
    font-size: 14px;
}

.detail-value {
    font-weight: 500;
    color: #1a1a1a;
    font-size: 14px;
    text-align: right;
}

.add-to-cart-section {
    background: #fff;
    border-radius: 12px;
    padding: 0;
    border: none;
    margin-bottom: 20px;
}

.modern-add-to-cart-btn {
    width: 100%;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--theme-color), var(--theme-color1));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.modern-add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
}

.modern-add-to-cart-btn.added {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.modern-add-to-cart-btn i {
    font-size: 20px;
}

.trust-badges {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e8e8e8;
}

.trust-badge {
    text-align: center;
    flex: 1;
}

.trust-badge i {
    font-size: 32px;
    color: var(--theme-color);
    margin-bottom: 8px;
}

.trust-badge p {
    font-size: 13px;
    color: #666;
    margin: 0;
    font-weight: 600;
}

.product-badge {
    display: inline-block;
    background: var(--theme-color);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-meta-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.meta-tag {
    background: #f0f0f0;
    color: #666;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
}

@media (max-width: 992px) {
    .product-info-section {
        padding-left: 0;
        margin-top: 30px;
    }

    .product-title {
        font-size: 24px;
    }

    .product-price {
        font-size: 28px;
    }

    .product-detail-card {
        padding: 24px;
    }
}

@media (max-width: 576px) {
    .trust-badges {
        flex-direction: column;
        gap: 20px;
    }

    .modern-product-detail {
        padding: 30px 0;
    }
}


.product-main-1 .slider-image {
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-main-1 .slider-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}
.bottom-slider-image .sidebar-image {
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bottom-slider-image .sidebar-image img {
    height: 100%;
    width: 100%;
    object-fit: contain;
}

.product-left-box {
    position: sticky;
    top: 100px;
}