.singleProduct-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 53px;
}

.singleProduct-container {
    display: flex;
    gap: 50px;
    width: 100%;
}

/* Left Side */
.singleProduct-left {
    /* width change */
    flex: -1 0 40%;   
}

.singleProduct-image-container {
    width: 100%;
    max-height: 300px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px;
}

.singleProduct-image {
    width: auto;
    height: auto;
    max-height: 250px;
    max-width: 100%;
    object-fit: contain;
}

/* Calculator Box Container */
/* .calculator-box {
    margin: 20px auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
} */

/* .input-group {
    display: flex;
    border: 1px solid #E0E0E0;
    border-radius: 30px;
    overflow: hidden;
    width: 280px;
    background: var(--ssbond-white);
    padding: 4px;
    margin: 0 auto;
} */

/* .variants-section {
    flex: 1.5;
    padding: 8px 15px;
    border-right: 1px solid #E0E0E0;
    display: flex;
    flex-direction: column;
} */

/* .price-section {
    flex: 1;
    padding: 8px 15px;
    display: flex;
    flex-direction: column;
} */

.variants-section label,
.price-section label {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    margin-bottom: 2px;
}

.variants-section input {
    border: none;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    background: transparent;
    padding: 1px 0;
    cursor: text;
    outline: none;
}

/* .price-value {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    display: flex;
    align-items: center;
    padding: 1px 0;
} */

/* Action Buttons - centered */
/* .action-buttons {
    display: flex;
    gap: 12px;
    width: 280px;
    margin: 10px auto 0;
    justify-content: center;    
} */
.singleProduct-card {
    /* flex: 0 0 calc(25% - 19px); */
    border-radius: 10px;
    overflow: hidden;
    background: var(--ssbond-whiteGray);
    box-shadow: var(--sf-shadow-md);
    transition: transform 0.3s ease;
    cursor: pointer;
    width: 290px;
}.singleProduct-card:hover {
    transform: translateY(-5px);
}

.singleProduct-card img {
    width: 100%;
    max-height: 350px;
    object-fit: fill;
}
.singleProduct-content {
    padding: var(--sf-spacing-md);
}.singleProduct-content h3 {
    font-size: var(--sf-text-lg);
    font-weight: 600;
    margin: 0;
}
.singleProduct-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}
.singleProduct-header-row-single {
    display: flex;
    justify-content: center;
    align-items: center;
}.singleProduct-text {
    text-align: left;
}.singleProduct-buttons {
    display: flex;
    justify-content: flex-end;
}

.singleProduct-card {
    position: relative; /* Add this to make .singleProduct-video-btn position relative to this container */
    overflow: hidden;  /* Ensures content doesn't overflow */
}

.singleProduct-video-btn {
    position: absolute;
    left: 70%; /* Adjust as needed */
    top: 5%; /* Adjust as needed */
    z-index: 2;
}
.singleProduct-video-btn button{
    white-space: nowrap;
}
.singleProduct-video-btn i{
    margin-right: 5px;
}
.singleProduct-buttons-shop i{
    margin-right: 5px;
    background-color: red;
}
.singleProduct-buttons .btn {
    padding: var(--sf-spacing-sm) var(--sf-spacing-lg);
    border-radius: 20px;
    border: 1px solid var(--ssbond-blue);
    background: transparent;
    color: var(--ssbond-black);
    font-size: var(--sf-text-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.singleProduct-buttons .btn:hover {
    background: rgba(0, 113, 227, 0.1);
}
.find-dealer,
.shop-now {
    flex: 1;
    padding: 12px 0;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
}

.find-dealer {
    background: var(--ssbond-blue);
    color: var(--ssbond-white);
    border: none;
}

.shop-now {
    background: var(--ssbond-red);
    color: var(--ssbond-white);
}

/* Hover states */
.find-dealer:hover {
    background: var(--ssbond-blue);
}

.shop-now:hover {
    background: var(--ssbond-red);
}

/* Right Side */
.singleProduct-details {
    flex: 0 0 73%;
    background: var(--ssbond-whiteGray);
    box-shadow: var(--sf-shadow-md);
    border-radius: 10px;


    
}
.singleProduct-details-body {
    margin-top: 3%;
    margin-left: 3%;
    margin-right: 3%; /* Add this to balance margins on both sides */
    margin-bottom: 3%; /* Add this to balance margins on both sides */
    white-space: normal; /* Ensure text wraps normally */
    text-align: justify; /* Align text to justify */
    overflow: hidden; /* Prevent content from overflowing */
    box-sizing: border-box; /* Ensure padding and borders are included in the element's width and height */
    max-width: 100%; /* Restrict the width to prevent overflow */
    word-wrap: break-word; 
}
.singleProduct-details-body p {
    display: -webkit-box;
    -webkit-line-clamp: 5; /* Show only 5 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 10px; /* Add some space for the link */
    line-height: 1.3;

}

.show-more {
    color: var(--ssbond-blue); /* Style for the "Show more" link */
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.show-less {
    color: var(--ssbond-blue);/* Style for the "Show less" link */
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
}

.singleProduct-title {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    margin-top: 10px;
}

.singleProduct-description {
    color: var(--ssbond-black);
    line-height: 1.6;
    margin-bottom: 20px;
    margin-top: -7px;
    font-size: var(--ssbond-d-h5);
}

.read-more {
    color: var(--ssbond-black);
    text-decoration: none;
    display: block;
    margin: 15px 0 25px;
}

.product-specs {
    
    /* margin-bottom: 0; */
}

.product-specs p {
    margin-bottom: 10px;
    color: var(--ssbond-black);
    font-size: var(--ssbond-d-h5);
}

/* Tabs */
.product-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
    padding: 0 15px;
    margin-top: var(--ssbond-d-t8);
}
.product-tabs i{
    margin-right: 5px;
}
.tab-button {
    padding: 8px 24px;
    border-radius: 20px;
    border: 1px solid var(--ssbond-blue);
    background: transparent;
    color: var(--ssbond-black);
    font-size: var(--ssbond-d-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--ssbond-family);
    font-weight: var(--ssbond-d-btn-weight);
}

.tab-button[data-tab="technical"] {
    padding: 8px 24px;
    border-radius: 20px;
    border: 1px solid var(--ssbond-blue);
    background: transparent;
    color: var(--ssbond-black);
    font-size: var(--ssbond-d-btn);
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--ssbond-family);
    font-weight: var(--ssbond-d-btn-weight);
}

.tab-button:hover {
    background: var(--ssbond-primaryLinear);
    color: var(--ssbond-white);
}

.tab-button.active {
    background: var(--ssbond-primaryLinear);
    color: var(--ssbond-white);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .singleProduct-card {
        flex: 0 0 calc(33.333% - 17px);
    }
}
@media (max-width: 992px) {
    .singleProduct-container {
        flex-direction: column;
    }
    .singleProduct-card {
        flex: 0 0 calc(50% - 13px);
    }
    .singleProduct-left,
    .singleProduct-details {
        flex: 0 0 100%;
    }
}

@media (max-width: 768px) {
    .singleProduct-section {
        padding: 20px;
    }

    .action-buttons {
        flex-direction: column;
    }

    .product-tabs {
        gap: 10px;
    }
    .singleProduct-buttons-shop i {
        font-size: 0.8em;
        margin-right: 3px;
    }
    .tab-button {
        font-size: var(--ssbond-m-btn-card) !important;
        padding: 6px 12px !important;
    }

    .singleProduct-image-container {
        max-height: 250px;
    }
    
    .singleProduct-image {
        max-height: 200px;
    }
    .singleProduct-title{
        font-size: var(--ssbond-d-h7);
    }
}

@media (max-width: 576px) {
    .singleProduct-image-container {
        max-height: 200px;
    }
    
    .singleProduct-image {
        max-height: 180px;
    }
    .singleProduct-card {
        width: 100%;
        /* flex: 0 0 calc(100% - 55px); */
    }
	.singleProduct-buttons .btn {
        /* Even smaller button adjustments */
        padding: 0px 0px; /* Further reduce padding */
        font-size: var(--sf-text-sm); /* Smaller font size */
        height: 30px; /* Smaller button height */
        min-width: 80px; /* Smaller minimum width */
    }
    .technical-table-wrapper {
        overflow-x: scroll; /* Adds horizontal scroll for smaller screens */
        display: flex; /* Ensures the table stays in the center */
        justify-content: center; /* Centers the table horizontally */
        max-width: 95% !important;
    }
    .technical-table {
        min-width: 50%; /* Ensures the table doesn't shrink too small */
        margin-left: 100px;
    }
}

/* Container for both calculator and buttons */
.product-actions-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

/* Features Content */
.tab-content {
    margin-top: var(--ssbond-d-t7);
}
#application-content,
#features-content,
#technical-content,
#report-content,
#faqs-content
{
    /* margin-top: 40px !important; */
}
#technical-content{
    margin-top: var(--ssbond-d-t8);
}
#report-content{
    margin-top: var(--ssbond-d-t8);
}
#report-content h2{
    font-size: var(--ssbond-d-h6);
}
#application-content{
    padding: 50px 0;
    max-width: 1400px;
    margin: 0 auto;
    width: calc(100% - 140px);
    text-align: center;
}
.tab-content #application-content h2{
    font-size: var(--ssbond-d-h6);
}
.singleProduct-related #application-content h2{
    font-size: var(--ssbond-d-h6);
}
.application-title {
    text-align: center;
    font-size: var(--ssbond-d-h6);
    font-weight: 600;
    margin-bottom: 40px;
}
.features-title {
    text-align: center;
    font-size: var(--ssbond-d-h6);
    font-weight: 600;
    margin-bottom: 40px;
}

/* Features Grid Layout */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--ssbond-whiteGray);
    border-radius: 10px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    object-fit: contain;
    flex-shrink: 0; /* Prevents icon from shrinking */
}

.feature-content h3 {
    color: #333;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.feature-content p {
    color: #666;
    font-size: var(--ssbond-d-desc2);
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1400px) {
    #application-content {
        width: calc(100% - 100px);
    }
}
@media (max-width: 992px) {
    #application-content {
        width: calc(100% - 60px);
    }
}
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr; /* Single column on mobile */
        padding: 0 15px;
        gap: 15px;
    }

    .feature-item {
        padding: 15px;
    }

    .features-title,.section-title {
        font-size: var(--ssbond-m-h2) !important;
        margin-bottom: 30px;
    }
}

/* Optional: Medium screen breakpoint */
@media (max-width: 1024px) and (min-width: 769px) {
    .features-grid {
        grid-template-columns: 1fr; /* Single column on tablets */
        max-width: 700px;
    }
}

/* Even smaller screens */
@media (max-width: 480px) {
    .product-tabs {
        gap: 8px;
    }

    .tab-button {
        font-size: var(--ssbond-m-btn-card) !important;
        padding: 6px 12px !important;
    }
}

/* Tab Content Styling */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

.section-title {
    text-align: center;
    font-size: var(--ssbond-d-h6);
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 90px;
}

.techincal-col{
    display: flex;
    justify-content: space-around;
    background-color: var(--ssbond-whiteGray);
    padding-top: 5%;
    padding-bottom: 5%;
    align-items: center;
}
.techincal-col > div:first-child {
    flex: 0.3;                       /* The first div takes less space (flex 1) */
    margin-right: 17px;            /* Optional: Add space between the two divs */
    display: flex;                 /* Enable flexbox for centering content inside */
    justify-content: center;       /* Center content horizontally */
    align-items: center;           /* Center content vertically */
    padding: 20px; 
    font-weight: 550;
    font-size: var(--ssbond-d-h6);
}

.techincal-col > div:last-child {
    flex: 4;                       /* The second div takes more space (flex 2) */
    display: flex;                 /* Enable flexbox for centering content inside */
    justify-content: center;       /* Center content horizontally */
    align-items: center;           /* Center content vertically */
    padding: 20px;                 /* Optional: Add padding around the content */
}
/* Technical Table Styling */
.technical-table-wrapper {
    max-width: 500px;
    background: var(--ssbond-white);
    border: 1px solid #E0E0E0;
    border-radius: 15px;
}

.technical-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0 2px;
    margin-top: 2px;
}

.technical-table th {
    padding: 0px 20px;
    text-align: left;
    font-weight: 600;
    color: #333;
    background: transparent;
    border: none;
}

.technical-table td {
    padding: 2px 0px;
    color: #666;
    border: none;
}

/* Only vertical line between columns */
.technical-table td:first-child {
    border-right: 1px solid #E0E0E0;
    font-weight: 500;
    color: #333;
    width: 40%;
}

/* Remove all other borders */
.technical-table tr {
    border: none;
    background: transparent !important;
}

/* Parameters column styling */
.technical-table td:first-child {
    color: #333;
}

/* Specifications column styling */
.technical-table td:last-child {
    color: #666;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #application-content {
        width: calc(100% - 40px);
        padding: 40px 0;
    }
    .technical-table-wrapper {
        padding: 0 15px;
        margin: 0 15px;
        line-height: 0;
    }

    .technical-table th,
    .technical-table td {
        padding: 10px 15px;
        font-size: var(--ssbond-d-desc2);
    }
    .techincal-col{
        display: flex;
        flex-direction: column;
    }
    .techincal-col > div:first-child{
        align-items: center;
        text-align: center;
        font-size: var(--ssbond-d-h7);
    }
    .technical-text{
        font-size: var(--ssbond-d-h7) !important;
        font-weight: 550;
    }
}

/* Report Section Styling */
.report-grid {
    display: flex;
    justify-content: flex-start; /* Align items to the start for proper horizontal scrolling */
    gap: 30px;
    padding: 20px 53px;
    flex-wrap: nowrap; /* Prevent wrapping for horizontal scrolling */
    max-width: 100%; /* Ensure it takes the full width of the parent */
    margin: 0 auto;
    overflow-x: auto; /* Enable horizontal scrolling */
    overflow-y: hidden; /* Prevent vertical scrolling */
    scroll-behavior: smooth; /* Smooth scrolling experience */
}

.report-card {
    flex: 0 0 auto; /* Ensure each card doesn't shrink or grow unexpectedly */
    min-width: 150px; /* Adjust this to suit your card width */
}


.report-card {
    background: var(--ssbond-whiteGray);
    border-radius: 10px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 200px;
    transition: all 0.3s ease;
    
}
.report-grid::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome, Edge, and Safari */
}
.report-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.report-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.report-icon img{
    width: 90%;
    height: 90%;
}
.report-title {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

.download-btn {
    padding: 8px 25px;
    border: 1px solid var(--ssbond-blue);
    border-radius: 20px;
    color: var(--ssbond-black);
    background: transparent;
    cursor: pointer;
    font-size: var(--ssbond-d-desc2);
    transition: all 0.3s ease;
}

.download-btn:hover {
    background: var(--ssbond-blue);
    color: var(--ssbond-white);
}

/* Responsive Design */
@media (max-width: 768px) {
    .report-grid {
        gap: 20px;
        padding: 15px;
    }

    .report-card {
        width: 100%;
        /* max-width: 280px; */
        max-width: 170px;
        padding: 20px;
    }

    .report-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 15px;
    }
}

/* FAQ Styles */
.faq-tabs {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 30px 0;
    flex-wrap: wrap;
    padding: 0 20px;
}

.faq-tab-btn {
    padding: 8px 20px;
    border: 1px solid var(--ssbond-blue);
    border-radius: 20px;
    background: transparent;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--ssbond-d-desc2);
}

.faq-tab-btn.active {
    background: var(--ssbond-blue);
    color: var(--ssbond-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.faq-item {
    background: var(--ssbond-white);
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #333;
    font-weight: 500;
    background: var(--ssbond-whiteGray); /* Ensure a contrasting background */
    
}

.faq-item.active .faq-question {
    background: var(--ssbond-primaryLinear);
    color: var(--ssbond-white);
    line-height: 1.3;
    font-weight: 550;
}

.arrow-icon {
    transition: transform 0.3s ease;
    color: var(--ssbond-blue);
}

.faq-item.active .arrow-icon {
    transform: rotate(180deg);
    color: var(--ssbond-white);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #666;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
    line-height: 1.3;
}

/* Responsive Design */
@media (max-width: 768px) {
    .faq-tabs {
        gap: 10px;
    }

    .faq-tab-btn {
        padding: 6px 15px;
        font-size: 13px;
    }

    .faq-accordion {
        padding: 15px;
    }

    .faq-question {
        padding: 15px;
        font-size: var(--ssbond-d-desc2);
    }

    .faq-item.active .faq-answer {
        padding: 15px;
        font-size: var(--ssbond-d-h5);
    }
}

/* Add to existing FAQ styles */
.hidden {
    display: none;
}

.faq-accordion {
    opacity: 1;
    transition: opacity 0.3s ease;
}

.faq-accordion.hidden {
    opacity: 0;
    display: none;
}

/* Optional: Add transition for smoother tab switching */
.faq-tab-btn {
    position: relative;
    overflow: hidden;
}

.faq-tab-btn::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--ssbond-blue);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.faq-tab-btn.active::after {
    transform: scaleX(1);
}