/* Full-width parent */
.single-product-page {
    width: 100%;
    background-color: #ffffff; /* optional */
}

/* Content box inside with 80px margin */
.single-product-content {
    margin: 0 100px; /* top/bottom 0, left/right 80px */
    padding: 20px; /* optional inner padding */
    background-color: #ffffff; /* optional */
    box-sizing: border-box;
}
/* Product Information Section */
.product-info {
    display: flex;
    gap: 20px; /* space between left and right */
    margin: 40px 0;
    flex-wrap: nowrap; /* ensures horizontal layout on desktop */
}

/* Left part - 40% */
.product-info-left {
    flex: 0 0 40%;
    max-width: 40%;
    box-sizing: border-box;
}

/* Right part - 60% */
.product-info-right {
    flex: 0 0 60%;
    max-width: 60%;
    background-color: #fff; /* optional */
    padding: 20px;
    box-sizing: border-box;
}

.product-tags {
    margin-bottom: 15px;
}

.product-tags .tag {
    display: inline-block;
    padding: 10px 20px; /* top-bottom 10px, left-right 20px */
    border-radius: 20px;
    margin-right: 8px;
    line-height: 100%;
    letter-spacing: 0%;
    font-family: 'Inter', sans-serif;
}

/* Tag 1 Style */
.product-tags .tag-1 {
    background-color: #F0F3FF;
    color: #161616;
    font-weight: 400;
    font-style: normal; /* Regular */
    font-size: 16px;
}

/* Tag 2 Style */
.product-tags .tag-2 {
    background-color: #FBEBEA;
    color: #E31E24;
    font-weight: 600;
    font-style: normal; /* Semi Bold */
    font-size: 14px;
}

/* Tag 3 Style */
.product-tags .tag-3 {
    background-color: #E8FDE1;
    color: #5C9C53;
    font-weight: 600;
    font-style: normal; /* Semi Bold */
    font-size: 14px;
}

/* Product Title with Gradient and Line */
.product-info-right h2 {
    font-family: 'Sora', sans-serif;
    font-weight: 600; /* SemiBold */
    font-style: normal; /* SemiBold */
    font-size: 40px;
    line-height: 100%;
    letter-spacing: 0%;
    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 0 !important; 
}

/* Short Description Heading */
.product-info-right .short-desc-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 600; /* SemiBold */
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #161616;
    margin-top: 20px;
}

/* Short Description Text */
.product-info-right .short-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* Regular */
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #161616;
    margin-top: 10px; /* optional spacing below heading */
}

/* Line below short description */
.product-info-right .short-desc-line {
    border-bottom: 1px solid #E4E4E4;
    margin-top: 20px; /* space above the line */
    margin-bottom: 20px; /* optional space below the line */
}


.business-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px; /* space between each tag */
    margin-top: 10px; /* optional spacing above container */
}

.business-tags .business-tag {
    background-color: #F0F3FF;
    color: #161616;
    font-family: 'Inter', sans-serif;
    font-weight: 500; /* Medium */
    font-style: normal;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    padding: 10px 7px; /* top-bottom 10px, left-right 7px */
    border-radius: 20px;
    display: inline-block;
}

.material-section {
    display: flex;
    flex-direction: column;
    margin: 20px 0;

    /* Border & Padding */
    border: 1px solid #E4E4E4;
    border-radius: 14px;
    padding: 17px;
    background-color: #fff; /* optional for contrast */
}

/* Single Material Block */
.material-block {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Image + Title on single line */
.material-header {
    display: flex;
    align-items: center;
    gap: 15px; /* space between image and title */
}
.material-header img {
    width: 30px; /* updated width */
    height: 30px; /* updated height */
    object-fit: contain;
}

.material-header h4 {
    font-family: 'Sora', sans-serif;
    font-weight: 600; /* SemiBold */
    font-style: normal; /* SemiBold */
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #161616;
    margin: 0;
}

/* Description below title */
.material-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400; /* SemiBold */
    font-style: normal; /* SemiBold */
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #161616;
    margin: 0 0 0 45px; /* aligns description with title start */
}

/* Container for both buttons */
.product-buttons {
    display: flex;
    gap: 16px; /* space between buttons */
    margin-top: 20px;
    justify-content: flex-start; /* left align */
}

/* Button 1: Request Quote */
.product-buttons .btn-request-quote {
    display: flex;
    align-items: center;       /* vertically center */
    justify-content: center;   /* horizontally center */
    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    width: 200px;
    height: 54px;
    border-radius: 8px;
    box-shadow: 1px 3px 8.9px 0px #485F7E66;
    font-family: 'Inter', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #FFFFFF;
    text-decoration: none;
    padding: 0; /* removed padding */
}


/* Button 2: Download Brochure */
.product-buttons .btn-download-brochure {
    display: flex;
    align-items: center;    /* vertically center */
    justify-content: center; /* horizontally center */
    background: #FFFFFF;
    width: 218px;
    height: 54px;
    border: 1px solid #D4D4D4;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-weight: 500; /* Medium */
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #161616;
    text-decoration: none;
    padding: 0; /* removed padding */
}


.main-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 10px;
}

.thumb-carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    margin-top: 16px;
}

.thumb-carousel-wrapper button {
    background: transparent; /* remove default bg */
    border: none;
    width: 32px;
    height: 32px;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-carousel-wrapper button img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.thumb-carousel {
    display: flex;
    gap: 12px;
    overflow: hidden;
    max-width: 460px; /* 4 thumbnails */
}

/* Thumbnail */
.thumb {
    width: 102px;
    height: 102px;
    background: #EFEFEF;
    border-radius: 10px;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

/* Selected Thumbnail */
.thumb.active {
    background: #EFEFEF;
    border: 1px solid transparent;
    background-image:
        linear-gradient(#EFEFEF, #EFEFEF),
        linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    background-origin: border-box;
    background-clip: padding-box, border-box;
}

/* Arrow Buttons */
.thumb-carousel-wrapper button {
    background: transparent;
    border: none;
    width: 32px;
    height: 32px;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumb-carousel-wrapper button img {
    width: 24px;
    height: 24px;
}

.product-extra-info {
    display: flex;
    gap: 32px;
    border: 1px solid #BEDBFF;
    background: #F8FBFF;
    border-radius: 10px;
    margin-top: 50px;
    padding: 20px 90px; /* top-bottom | left-right */
}


.extra-info-block {
    flex: 1;
}

.extra-info-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 600; /* SemiBold */
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;
    margin: 0;
}

.extra-info-line {
    border: none;
    border-top: 1px solid #E4E4E4;
    margin: 12px 0 20px;
}

.extra-info-divider {
    width: 1px;
    background: #E4E4E4; /* temporary, you can change */
}

.certification-images {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.certification-images img {
    height: 32px;
}

.certification-pro-images {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.certification-pro-images img {
    height: 108px;
}


.product-details-tabs {
    margin-top: 50px;
}

.tabs-container {
    display: flex;
    background: #fff;
}

/* Left Menu */
.tabs-left {
    display: flex;
    flex-direction: column;
    width: 280px; /* adjust if needed */
}
.tabs-left .tab:hover,
.tabs-left .tab:focus,
.tabs-left .tab:active {
    background: inherit;
    color: inherit;
    border-color: inherit;
    box-shadow: none;
}

.tab-link {
    width: 100%;
    height: 44px;
    padding: 0 24px;
    display: flex;
    align-items: center;

    background: #F6F6F6;
    border: none;
    border-bottom: 1px solid #EBEBEB;

    font-family: 'Sora', sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #000000;

    cursor: pointer;
}

/* First tab top border */
.tab-link:first-child {
    border-top: 1px solid #EBEBEB;
}

/* Active / Selected Tab */
.tab-link.active {
    background: #FFFFFF;
    border: 1px solid #EBEBEB;
    border-right: none; /* connects visually with content */

    font-weight: 600;

    background-image: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Prevent border jump */
.tab-link.active + .tab-link {
    border-top: none;
}

.tabs-right {
    flex: 1;
    border: 1px solid #EBEBEB;
    background-color: #FFFFFF;

    background-image: url("https://sidsamgroup.com/wp-content/uploads/2025/10/d38029bc394fe532a41662d290f73f4629feda83.png");
    background-repeat: no-repeat;
    background-position: top; /* 👈 bottom aligned */
    background-size: cover;

    padding: 30px 40px;
}



.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}


.technical-specs-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-style: normal; /* SemiBold handled via font-weight */
    font-size: 40px;
    line-height: 141%;
    letter-spacing: 0;
    margin-top: 100px;
    vertical-align: middle;
    background: linear-gradient(90deg, #E31E24 0%, #173E83 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    margin-bottom: 10px; /* space between heading and line */
}


.heading-underline {
    height: 0.5px;
    width: 30%; /* 70% of heading width */
    border: 0.5px solid;
    border-image-source: linear-gradient(90deg, #E31E24 32.49%, #173E83 60.64%, rgba(255,255,255,0.5) 95.42%);
    border-image-slice: 1;
    margin-bottom: 20px; /* space below the line */
}

.technical-specs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 40px;
    background: #F9F9F9;
    border: 1px solid #CDCDCD;
}

.technical-specs-table th,
.technical-specs-table td {
    padding: 20px 8px; /* top/bottom 20px, left/right 8px */
    vertical-align: middle;
    border: 1px solid #CDCDCD; /* TR border */
}

.technical-specs-table tr:first-child {
    background-color: #ffffff; /* First row background */
}

.technical-specs-table tr:not(:first-child) {
    background-color: #F9F9F9; /* Other rows background */
}

/* Column widths and text styles */
.technical-specs-table th {
    width: 45%;
    font-family: 'Sora', sans-serif;
    font-weight: 600; /* SemiBold */
    font-style: normal;
    font-size: 20px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000000;
}

.technical-specs-table td {
    width: 65%;
    font-family: 'Sora', sans-serif;
    font-weight: 400; /* Regular */
    font-style: normal;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0;
    color: #000000;
}


.related-product-heading {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-style: normal; /* Bold */
    font-size: 28px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #141414;
}






/* Responsive */
@media (max-width: 768px) {
    .material-header {
        flex-direction: row;
        gap: 10px;
    }
    .material-desc {
        margin-left: 40px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .material-header {
        flex-direction: row;
        gap: 10px;
    }
    .material-desc {
        margin-left: 60px;
    }
}


/* Responsive: stack on small screens */
@media (max-width: 768px) {
    .product-info {
        flex-wrap: wrap;
    }
    .product-info-left,
    .product-info-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
}
