/* _!-nav -> First screen tabs */
.tabs1 {
    display: flex;
    gap: 45px;
    justify-content: space-between;
}

.tabs1 input {
    display: none
}

.tabs1 :is(.tab-heades, .tab-content) {
    display: flex !important;
}

.tabs1 .tab-heades {
    flex-shrink: 0;
    flex-direction: column;
    width: max-content;
}

.tabs1 .tab-heades label {
    position: relative;
    width: max-content;
    margin-top: 10px;
    padding-block: 5px;
    font-weight: 500;
    line-height: 1.67;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: 0.2s ease-in;
}

.tabs1 .tab-heades input:checked+label {
    border-color: var(--brand-blue);
}

.tabs1 .tab-content [data-id] {
    display: none;
    flex-direction: column;
    gap: 12px;
}

.tabs1 .tab-content [data-id="tab-id-2"] {
    gap: 24px;
}

.tabs1:has(.tab-heades input:nth-of-type(1):checked) .tab-content [data-id="tab-id-1"],
.tabs1:has(.tab-heades input:nth-of-type(2):checked) .tab-content [data-id="tab-id-2"],
.tabs1:has(.tab-heades input:nth-of-type(3):checked) .tab-content [data-id="tab-id-3"],
.tabs1:has(.tab-heades input:nth-of-type(4):checked) .tab-content [data-id="tab-id-4"],
.tabs1:has(.tab-heades input:nth-of-type(5):checked) .tab-content [data-id="tab-id-5"],
.tabs1:has(.tab-heades input:nth-of-type(6):checked) .tab-content [data-id="tab-id-6"] {
    display: flex;
}


.tabs1 .pro-gear {
    display: flex;
    justify-content: center;
    align-items: center;
    width: max-content;
    padding: 1px 4px;

    /* border */
    border-style: solid;
    border-width: 0.8px;
    border-image-source: linear-gradient(100deg, #eb7676, #f00 48%, #ff0f0f);
    border-image-slice: 1;

    /* typography */
    background-image: linear-gradient(100deg, #eb7676, #f00 48%, #ff0f0f);
    font-size: 10px;
    font-weight: 600;
    line-height: 2;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.tabs1 .column-header {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tabs1 .column-header .header-item {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
}

.tabs1 .column-header .header-item .colorful {
    color: var(--brand-blue);
}

.tabs1 .column-header .header-info {
    font-weight: 600;
    line-height: 1.3;
}

.tabs1 .p-info {
    display: flex;
    flex-direction: column;
    gap: 6px;
    line-height: 1.3;
}

.tabs1 .p-info .marker {
    font-weight: 600;
    color: var(--brand-blue);
}

.tabs1 .big-img-wrapper {
    position: relative;
    display: flex;
    width: 100%;
    margin: 12px 0;
}

.tabs1 .big-img-wrapper img {
    width: auto;
    height: auto;
    max-width: 100%;
    border-radius: 10px;
    max-height: unset;
    min-width: unset;
    min-height: unset;
    display: block;
    margin: auto;
}

.tabs1 .img-wrapper {
    display: flex;
}

.tabs1 .img-wrapper img {
    object-fit: contain;
}


.tabs1 .panel-container {
    display: flex;
    justify-content: space-between;
}

.tabs1 .panel-container .panel {
    display: flex;
    align-items: center;
    gap: 10px;
}

.tabs1 .panel-container .panel .panel-icon {
    display: flex;
}

.tabs1 .panel-container .panel .panel-title {
    font-weight: 600;
    line-height: 1.33;
    color: var(--black);
}







/* _!-nav -> Features section */
.features-section .item_desc {
    font-size: 14px;
    line-height: 1.2;
    font-feature-settings: 'salt' on;
    color: #4b5563
}

.features-section .features-list {
    display: flex;
    flex-wrap: wrap;
}

.features-section .features-list .item {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 1.25em;
    margin-bottom: 20px;
}

.features-section .features-list .item .item_icon {
    display: flex;
    width: 48px;
    aspect-ratio: 1 / 1;
}

.features-section .features-list .item .item_title {
    text-transform: uppercase;
    font-size: 14px;
    color: #111827;
    font-weight: 600;
    line-height: 1.5;
    margin: 0 0 .5em;
}







/* _!-nav -> Interfaces section */
.interfaces-section .interfaces-content {
    gap: 10px;
}

.interfaces-section .interfaces-content .int_1 {
    justify-content: center;
    display: flex;
}

.interfaces-section .interfaces-content .int_1 img {
    width: 100%;
    object-fit: cover;
}

.interfaces-section .interfaces-content .int_2 {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 15px;
}

.interfaces-section .interfaces-content .intit {
    display: flex;
    gap: 8px;
}

.interfaces-section .interfaces-content .int_2_1 {
    flex: 0 0 170px;
    width: 200px;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 600;
    line-height: 15px;
    word-break: break-word;
}

.interfaces-section .interfaces-content .int_2_2 {
    flex: 1;
    font-size: 14px;
    font-weight: 400;
    line-height: 15px
}







/* _!-nav -> Connection Diagram section */
.connection-diagram-section .connection-diagram-image {
    position: relative;
    display: flex;
    width: 100%;
    height: 563px;
}

.connection-diagram-section .connection-diagram-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}







/* _!-nav -> Package Contents section */
.package-contents-section .package-contents-data {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.package-contents-section .package-contents-data .pack {
    width: 55.4%;
}

.pack li {
    border-bottom: 2px solid #eaeaea;
    line-height: 40px;
    font-size: 14px;
    font-weight: 500;
}

.pack li:last-of-type {
    border-bottom: 2px solid #fff;
}







/* _!-nav -> Other Information section */
.other-tabs {
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style-type: none;
    position: relative;
}

.other-tabs li {
    flex: 1;
}

.other-tabs li>input {
    display: none;
}

.other-tabs li>label {
    display: block;
    text-align: center;
    line-height: 84px;
    height: 84px;
    cursor: pointer;
    user-select: none;
    color: #0f1212;
    font-size: 22px;
    width: 100%;
    border-bottom: 4px solid var(--brand-blue-a2);
}

.other-tabs li>input:checked+label {
    border-bottom: 4px solid var(--brand-blue);
}

.other-tabs .tab-content {
    display: none;
    flex-direction: column;
    gap: 20px;
    padding-top: 40px;
    padding-bottom: 60px;
    width: 100%;
    font-size: 20px;
    position: absolute;
    left: 0;
    box-sizing: border-box;
    min-height: 1000px;
}

.other-tabs li>input:checked~.tab-content {
    display: flex;
}

.other-tabs li>input:checked~.tab-content {
    display: flex;
}

.other-tabs h3 {
    font-size: 30px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    text-align: left;
}

.other-tabs .subheader {
    margin: 0;
    font-size: 20px;
    font-family: Montserrat, sans-serif;
    font-weight: 600;
    text-align: left;
    color: var(--brand-blue);
}

.other-tabs .subheader.y-gap {
    margin: 0 0 20px;
}

.other-tabs .subheader+.without-gap {
    margin-top: -17px;
}

.other-tabs .row {
    display: flex;
    justify-content: space-between;
}

.other-tabs .col {
    width: 48%;
}

.other-tabs p {
    font-size: 16px;
    font-weight: 400;
}

.other-tabs .col img {
    width: 100%;
    border-radius: 20px;
}

.other-tabs .text-center {
    text-align: center !important;
}

.other-tabs .guarantee {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: -10px;
}

.other-tabs .guarantee_item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
}

.other-tabs .guarantee_item img {
    width: 16px;
    height: 16px;
}

.other-tabs li label {
    font-weight: 600;
}

.other-tabs .shipping-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 16px;
    text-align: left;
}

.other-tabs .shipping-table th,
.other-tabs .shipping-table td {
    padding: 12px 15px;
    border-right: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.other-tabs .shipping-table th {
    background-color: #EDEDFF;
    color: #333;
    font-weight: 600;
    font-family: Montserrat, sans-serif;
    font-size: 20px;
    text-align: center;
    border: 0 !important;
}

.other-tabs .shipping-table td {
    text-align: center;
    padding: 15px;
    font-size: 16px;
}

.other-tabs .shipping-table td:last-child {
    border-right: 0;
}

.other-tabs .note {
    font-size: 14px;
    color: #666;
    margin-top: 10px;
}


.custom-table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid #CCC;
}

.custom-table td,
.custom-table th {
    padding: 5px;
    border: 1px solid #CCC;
}