/* Breadcrumb Styles */
.uk-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    margin-bottom: 20px;
}

.uk-breadcrumb li {
    display: flex;
    align-items: center;
    color: #6c757d;
    font-size: 14px;
    font-weight: 500;
}

.uk-breadcrumb li:not(:last-child)::after {
    content: "›";
    margin: 0 8px;
    color: #adb5bd;
    font-size: 16px;
}

.uk-breadcrumb li a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
}

.uk-breadcrumb li a:hover {
    color: #0056b3;
    text-decoration: none;
}

.uk-breadcrumb li a i {
    margin-right: 5px;
    font-size: 14px;
}

.uk-breadcrumb li:last-child {
    color: #495057;
    font-weight: 600;
}

/* Product Detail Page Styles */
#tabs a {
    color: black !important;
}

.product-detail-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    margin-bottom: 20px;
}

.product-image-container {
    text-align: center;
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.product-image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.product-detail-title h1 {
    color: #2c3e50;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.4;
}

.product-desc {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-intro {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-price {
    color: #e74c3c !important;
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
    display: inline-block;
}

.contact-price {
    color: #e74c3c !important;
    font-size: 18px;
    font-weight: 600;
    margin: 15px 0;
    display: inline-block;
}

.buynow {
    margin-top: 20px;
}

.buynow a {
    background: linear-gradient(135deg, #00b894, #00a085);
    color: white !important;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,184,148,0.3);
}

.buynow a:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,184,148,0.4);
    color: white !important;
    text-decoration: none;
}

.tabs-container {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    margin: 30px 0;
    overflow: hidden;
}

.ui-tabs .ui-tabs-nav {
    background: #f8f9fa;
    border: none;
    border-radius: 0;
}

.ui-tabs .ui-tabs-nav li {
    border: none;
    margin: 0;
}

.ui-tabs .ui-tabs-nav li a {
    background: transparent;
    border: none;
    color: #495057;
    padding: 15px 25px;
    font-weight: 500;
    border-radius: 0;
}

.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
    background: #007bff;
    color: white;
}

.ui-tabs .ui-tabs-panel {
    padding: 25px;
    border: none;
}

.related-products {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    padding: 20px;
    margin-top: 30px;
}

.sp-lienquan-title {
    font-size: 22px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    text-align: center;
    position: relative;
}

.sp-lienquan-title:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(135deg, #ff6b6b, #ee5a24);
    border-radius: 2px;
}

.thumb-product {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.thumb-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.thumb-product .item-img {
    overflow: hidden;
    position: relative;
}

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

.thumb-product:hover .item-img img {
    transform: scale(1.05);
}

.thumb-product .rightBox {
    padding: 15px;
}

.thumb-product .title {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.4;
}

.thumb-product .title:hover {
    color: #007bff;
}

.thumb-product .price {
    font-size: 16px;
    font-weight: 600;
    color: #e74c3c;
    margin-bottom: 15px;
}

.thumb-product .order {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,123,255,0.3);
}

.thumb-product .order:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,123,255,0.4);
    color: white !important;
    text-decoration: none;
}

.product-gallery img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-detail-title h1 {
        font-size: 20px;
    }

    .product-price, .contact-price {
        font-size: 16px;
        padding: 10px 18px;
    }

    .buynow a {
        font-size: 14px;
        padding: 10px 20px;
    }
}
