body{
    background-color: #fff;
}
img{
    max-width: 100%;
}
.social-icons {
    display: flex;
    gap: 6px;
}
.breadcrumb{
    width: 100%;
    overflow-x: auto;
}
.breadContainer{
    width: max-content;
}
.social-icons a {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    transition: transform 0.3s;
    font-size: 12px;
}

.social-icons a:hover {
    transform: scale(1.1);
}

.social-icons a:nth-child(1) { background-color: #3b5998; }
.social-icons a:nth-child(2) { background-color: #000; }
.social-icons a:nth-child(3) { background-color: #0077b5; }
.social-icons a:nth-child(4) { background-color: #25d366; }

.language-selector {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
    cursor: pointer;
    font-size: 12px;
    color: #666;
}

.language-selector img {
    width: 16px;
}

.search-box {
    display: flex;
}

.search-box input {
    width: 150px;
    padding: 6px 10px;
    border: 1px solid #ddd;
    border-right: none;
    border-radius: 3px 0 0 3px;
    font-size: 12px;
}

.search-box button {
    padding: 6px 12px;
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-box button:hover {
    background-color: #000;
}

/* Breadcrumb */
.breadcrumb {
    background-color: #f8f8f8;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb .container {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: #666;
    margin: 0;
}

.breadcrumb a {
    color: #2850a0;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb .separator {
    color: #999;
}

/* Detail Section */
.detail-section {
    padding: 60px 0 80px;
    background-color: #fff;
}

.detail-content {
    display: grid;
    grid-template-columns: 500px 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.detail-image {
    width: 100%;
}

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

.detail-info {
    display: flex;
    flex-direction: column;
}

.detail-title {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.3;
}

.detail-description {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.detail-description p {
    margin-bottom: 15px;
}

/* Navigation */
.detail-navigation {
    margin-bottom: 25px;
}

.nav-item {
    margin-bottom: 12px;
}

.nav-label {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.nav-item a {
    color: #2850a0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.nav-item a:hover {
    text-decoration: underline;
    color: #1e3f80;
}

/* Related Products Button */
.related-products-btn {
    margin-top: auto;
}

.btn-related {
    display: inline-block;
    padding: 12px 30px;
    background-color: #2850a0;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s;
    text-transform: uppercase;
}

.btn-related:hover {
    background-color: #1e3f80;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 80, 160, 0.3);
}

/* PDF Section */
.pdf-section {
    margin-bottom: 50px;
    background-color: #f8f8f8;
    border-radius: 8px;
    overflow: hidden;
}

.pdf-placeholder {
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #999;
    background-color: #5a5a5a;
}

.pdf-placeholder i {
    font-size: 80px;
    margin-bottom: 15px;
    color: #fff;
}

.pdf-placeholder p {
    font-size: 14px;
    color: #fff;
}

/* Content Section */
.content-section {
    max-width: 900px;
}

.content-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.4;
}

.content-section h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 25px;
    margin-bottom: 12px;
}

.content-section p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 15px;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.content-section ul li {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 12px;
}

.content-section ul li strong {
    color: #333;
    font-weight: 600;
}

.content-section a {
    color: #2850a0;
    text-decoration: none;
}

.content-section a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .breadcrumb{
        width: 100%;
        overflow-x: auto;
    }
    .breadContainer{
        width: max-content;
    }
    .detail-section{
        padding: 30px 0;
    }
    .detail-content {
        display: block;
    }
    .detail-title{
        font-size: 24px;
    }
}