.mt-10 {
    margin-top: 20px;
}

.relatedProducts {
    padding: 60px 0;
    background: #f9f9f9;
}

.relatedProducts .productCard {
    display: block;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.relatedProducts .productCard:hover {
    transform: translateY(-5px);
}

.relatedProducts .imgArea {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.relatedProducts .imgArea img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.relatedProducts .relatedTitle {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    margin-top: 10px;
}

/* Premium Empty State */
.premiumEmptyState {
    border-radius: 20px;
    padding: 80px 40px;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.premiumEmptyState .iconWrapper {
    width: 120px;
    height: 120px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    box-shadow: 0 15px 35px rgba(0, 74, 153, 0.1);
    position: relative;
}

.premiumEmptyState .iconWrapper::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed #009fe3;
    animation: spin 15s linear infinite;
    opacity: 0.2;
}

.premiumEmptyState .iconWrapper img {
    width: 60px;
    opacity: 0.8;
}

.premiumEmptyState .title {
    font-size: 28px;
    font-weight: 700;
    color: #0B3A52;
    margin-bottom: 15px;
}

.premiumEmptyState .text {
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 40px;
    line-height: 1.6;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* Product Detail Styles */
.productDescription {
    line-height: 1.8;
    color: #444;
    font-size: 16px;
    margin-bottom: 30px;
}

.productDescription p {
    margin-bottom: 1.5em;
}

/* Product Specs Tab Layout - Match latest image style */
.productSpecsTabContent {
    padding: 20px 0;
    color: #444;
}

.specsMainTitle {
    font-size: 20px;
    color: #009fe3;
    font-weight: 700;
    margin-bottom: 12px;
}

.specsIntroArea {
    line-height: 1.6;
    font-size: 15px;
    color: #009fe3; /* Intro text is also blue in the image */
    margin-bottom: 25px;
}

.specsListItems {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.specListItem {
    line-height: 1.6;
    font-size: 14px;
}

/* Headers with bullets on the left */
.specListItem h1, 
.specListItem h2, 
.specListItem h3 {
    position: relative;
    padding-left: 25px;
    color: #009fe3;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    margin-top: 20px;
}

.specListItem h1::before, 
.specListItem h2::before, 
.specListItem h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #666; /* Gray bullet point */
    border-radius: 50%;
}

/* Sub-headings and bold text in blue */
.specListItem h4, 
.specListItem h5, 
.specListItem b, 
.specListItem strong {
    color: #009fe3;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    display: inline-block;
}

.specListItem ul {
    list-style: none;
    padding-left: 25px;
    margin-bottom: 20px;
}

.specListItem ul li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 10px;
    color: #444;
}

.specListItem ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #666;
    font-weight: bold;
}

.specListItem p {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.8;
}

.specListItem a {
    color: #333;
    text-decoration: underline;
    font-weight: 600;
}

.specListItem a:hover {
    color: #009fe3;
}

/* Tab Styles - Clean and Professional */
.docsTabNav {
    display: flex;
    gap: 5px;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 30px;
    overflow-x: auto;
}

.docsTabBtn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: #888;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.docsTabBtn:hover {
    color: #009fe3;
}

.docsTabBtn.active {
    color: #009fe3;
    border-bottom-color: #009fe3;
}

.docsTabBtn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.docsTabBtn.active svg {
    transform: scale(1.1);
}

.docsTabPanel {
    display: none;
    animation: fadeIn 0.4s ease forwards;
}

.docsTabPanel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}