@charset "UTF-8";
/* ── Product Hero ── */
.prod_hero_section {
    padding: 20px 0 40px;
}
.prod_hero_section h1 {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 36px;
    line-height: 117%;
    color: var(--primary);
    margin: 0 0 32px;
}
@media (max-width: 900px) {
    .prod_hero_section h1 {
        font-size: 24px;
        font-weight: 600;
        margin-bottom: 24px;
    }
}

.prod_hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    align-items: start;
}
@media (max-width: 1100px) {
    .prod_hero {
        grid-template-columns: 1fr 380px;
        gap: 28px;
    }
}
@media (max-width: 900px) {
    .prod_hero {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

@media (max-width: 900px) {
    .prod_hero__left {
        margin-bottom: 8px;
    }
}

@media (max-width: 900px) {
    .prod_hero__right {
        order: 1;
    }
    .prod_hero__right .prod_hero__desc {
        display: none;
    }
}
.prod_hero__right .btn_button {
    display: inline-block;
    min-width: 300px;
    padding: 20px 24px;
}
@media (max-width: 900px) {
    .prod_hero__right .btn_button {
        width: 100%;
    }
}

.prod_hero__img img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.prod_hero__label {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 163%;
    color: var(--gray);
    margin-bottom: 10px;
}

.prod_hero__desc {
    padding: 16px;
    background: var(--gray---blue);
    margin-bottom: 8px;
}
.prod_hero__desc p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 163%;
    color: #000;
    margin: 0;
}
.prod_hero__desc p strong {
    font-weight: 600;
}
.prod_hero__desc.mob {
    display: none;
}
@media (max-width: 900px) {
    .prod_hero__desc {
        margin-bottom: 16px;
    }
    .prod_hero__desc.mob {
        display: block;
    }
    .prod_hero__desc .prod_hero__label {
        font-size: 14px;
    }
    .prod_hero__desc p {
        font-size: 14px;
    }
}

.prod_features {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 8px;
}

.prod_feature {
    padding: 8px 0;
}
@media (max-width: 900px) {
    .prod_feature {
        overflow: hidden;
    }
}
.prod_feature__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    color: var(--primary);
    cursor: default;
    margin-bottom: 6px;
}
.prod_feature__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: var(--gray);
}
/* ── Technical Specs ── */
.prod_specs_section {
    padding: 10px 0 52px;
}

.prod_specs__title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 144%;
    color: var(--black);
    margin-bottom: 20px;
}
.prod_specs__title svg {
    flex-shrink: 0;
}
@media (max-width: 900px) {
    .prod_specs__title {
        font-size: 16px;
    }
}

.prod_specs__table_wrap {
    overflow-x: auto;
    margin-right: -20px;
    padding-right: 20px;
    -webkit-overflow-scrolling: touch;
}

.prod_specs__table {
    width: 100%;
    border-collapse: collapse;
    min-width: 500px;
}
.prod_specs__table th {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    color: var(--primary);
    text-align: left;
    padding: 17px 38px;
    background: var(--gray---blue);
}
@media all and (max-width: 990px) {
    .prod_specs__table th {
        padding: 10px 14px;
    }
}
.prod_specs__table td {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #000;
    padding: 17px 38px;
}
@media all and (max-width: 990px) {
    .prod_specs__table td {
        padding: 16px 14px;
    }
}
.prod_specs__table td:first-child {
    font-weight: 600;
}
.prod_specs__table tr:last-child td {
    border-bottom: 1px solid var(--gray-2);
}
.prod_specs__table tbody tr:nth-child(2n) td {
    background: var(--gray---bg);
}

/* ── Tabs ── */
.prod_tabs_section {
    padding: 0 0 30px;
}
.prod_tabs_section .prod_tabs {
    display: block;
    border: none;
}
.prod_tabs_section .prod_tab_pane {
    border-top: 1px solid #d9d9d9;
    padding-top: 37px;
}
.prod_tabs_section .prod_tabs__nav {
    display: flex;
}
@media all and (max-width: 990px) {
    .prod_tabs_section .prod_tabs__nav {
        overflow-x: auto;
        margin-right: -20px;
        padding-right: 20px;
        -webkit-overflow-scrolling: touch;
    }
}

/* ── Tab: Production top ── */
.prod_tab_top {
    display: grid;
    grid-template-columns: 1fr 0.7fr;
    gap: 28px;
    margin-bottom: 30px;
}
@media (max-width: 900px) {
    .prod_tab_top {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
.prod_tab_top__img img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.prod_tab_top__text p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 163%;
    color: var(--black);
    margin: 0 0 16px;
}
.prod_tab_top__text p strong {
    font-weight: 600;
}
.prod_tab_top__text .btn_button {
    display: block;
    width: 100%;
    text-transform: none;
    padding: 20px;
}

.prod_tab_pane ul li:before {
    top: 9px;
}

/* ── Sub-tabs ── */
.prod_subtabs__nav {
    display: flex;
    gap: 0;
    margin-bottom: 18px;
    padding: 3.5px 5px;
    overflow-x: auto;
    background: var(--gray---blue);
    border-radius: 40px;
    -webkit-overflow-scrolling: touch;
}

@media all and (max-width: 990px) {
    .prod_subtabs .block_inner {
        padding-right: 0;
    }
    .prod_subtabs .prod_subtabs__nav {
        border-radius: 40px 0 0 40px;
    }
    .prod_subtabs .prod_table_wrap {
        padding-right: 20px;
    }
}

.prod_subtab {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 18px;
    line-height: 144%;
    color: var(--black);
    white-space: nowrap;
    padding: 9px 30px;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    outline: none;
    border-radius: 40px;
}
.prod_subtab:hover {
    color: var(--primary);
}
.prod_subtab.active {
    color: #fff;
    font-weight: 700;
    background: var(--primary);
}

.prod_subtab_pane {
    display: none;
}
.prod_subtab_pane.active {
    display: block;
}

/* ── Product Table ── */
.prod_table_wrap {
    overflow-x: auto;
    overflow-y: auto;
    max-height: 1135px;
    -webkit-overflow-scrolling: touch;
}

.prod_subtabs {
    margin-bottom: 40px;
}
.prod_subtabs .prod_subtab_pane {
    border-bottom: 1px solid var(--gray-2);
}

.prod_table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.prod_table th {
    font-family: var(--font-family);
    font-weight: 600;
    font-size: 14px;
    line-height: 143%;
    color: var(--primary);
    text-align: left;
    padding: 17px 38px;
    background: var(--gray---blue);
    position: sticky;
    top: 0;
    z-index: 1;
}
@media all and (max-width: 990px) {
    .prod_table th {
        padding: 10px 14px;
    }
}
.prod_table td {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: #000;
    padding: 17px 38px;
}
@media all and (max-width: 990px) {
    .prod_table td {
        padding: 16px 14px;
    }
}
.prod_table td:first-child {
    font-weight: 600;
}
.prod_table tr:last-child td {
    border-bottom: 1px solid var(--gray-2);
}
.prod_table tbody tr:nth-child(2n) td {
    background: var(--gray---bg);
}

/* ── Tab: What can be made / Spheres ── */
.prod_make_grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    align-items: start;
}
@media (max-width: 900px) {
    .prod_make_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.prod_make_col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.prod_make_col img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
}
.prod_make_col--center img {
    height: 100%;
    min-height: 200px;
}
@media (max-width: 900px) {
    .prod_make_col--center img {
        min-height: 160px;
    }
}

.prod_make_imgs2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.prod_make_imgs2 img {
    height: 100px;
}
@media (max-width: 900px) {
    .prod_make_imgs2 img {
        height: 80px;
    }
}

.prod_make_imgs4 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}
.prod_make_imgs4 img {
    height: 110px;
    object-fit: cover;
    width: 100%;
    display: block;
}

.prod_make_list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.prod_make_list li {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: var(--black);
    padding-left: 16px;
    position: relative;
}
.prod_make_list li::before {
    content: "·";
    position: absolute;
    left: 4px;
    font-size: 18px;
    line-height: 1.2;
    color: var(--black);
}

/* ── Tab: Delivery ── */
.prod_delivery {
    display: grid;
    grid-template-columns: 410px 1fr;
    gap: 15px;
    align-items: start;
}
@media (max-width: 900px) {
    .prod_delivery {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.prod_delivery__img img {
    width: 100%;
    object-fit: cover;
    display: block;
}
.prod_delivery__list {
    display: flex;
    flex-direction: column;
    gap: 17px;
}
.prod_delivery__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.prod_delivery__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}
.prod_delivery__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 16px;
    line-height: 163%;
    color: #000;
    margin: 0;
}
.prod_delivery__text b {
    font-weight: 600;
}

/* ── Tab: Documents ── */
.prod_tab_pane .prod_docs__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
@media (max-width: 900px) {
    .prod_tab_pane .prod_docs__list {
        grid-template-columns: 1fr;
        gap: 8px;
    }
}

.prod_tab_pane .prod_docs__list {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}
.prod_tab_pane .prod_docs__item {
    border: 1px solid var(--gray-1);
    padding: 7px 48px 7px 16px;
}
.prod_tab_pane .prod_docs__item:after {
    right: 16px;
}

.prod_docs__btn {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 1px solid var(--gray-1);
    background: #fff;
    /*border-radius: 50%;*/
    line-height: 0px !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, background 0.2s;
}

.prod_docs__btn:hover {
    border-color: var(--primary);
    background: var(--primary);
}
.prod_docs__btn:hover svg path, .prod_docs__btn:hover svg line {
    stroke: #fff;
}

/* ── Sample Order Section ── */
.prod_sample_section {
    padding: 30px 0;
    background: var(--primary);
}

.prod_sample_inner {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 60px;
    align-items: center;
}
@media (max-width: 1100px) {
    .prod_sample_inner {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }
}
@media (max-width: 900px) {
    .prod_sample_inner {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.prod_sample__left p {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 157%;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 0 16px;
}

.prod_sample__title {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 22px;
    line-height: 133%;
    color: #fff;
    margin-bottom: 8px;
}

.prod_sample__contacts {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.prod_sample__phone {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 18px;
    line-height: 144%;
    color: #fff;
    text-decoration: none;
}
.prod_sample__phone:hover {
    opacity: 0.8;
}

.prod_sample__socials {
    display: flex;
    gap: 8px;
}
.prod_sample__socials a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.85;
    transition: opacity 0.2s;
}
.prod_sample__socials a:hover {
    opacity: 1;
}
.prod_sample__socials a img {
    width: 24px;
    height: 24px;
}

.prod_sample__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    align-items: start;
}
.prod_sample__fields .field {
    margin: 0;
}
.prod_sample__fields .field input[type=text] {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}
.prod_sample__fields .field input[type=text]::placeholder {
    color: rgba(255, 255, 255, 0.6);
}
.prod_sample__fields .field input[type=text]:focus {
    border-color: rgba(255, 255, 255, 0.7);
}
.prod_sample__fields .field.checkbox {
    grid-column: span 2;
}
.prod_sample__fields .field.checkbox label {
    color: rgba(255, 255, 255, 0.7);
}
.prod_sample__fields .field.checkbox label a {
    color: rgba(255, 255, 255, 0.7);
}
.prod_sample__fields .field.checkbox i {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.3);
}
.prod_sample__fields .btn_button {
    white-space: nowrap;
}
@media (max-width: 600px) {
    .prod_sample__fields {
        grid-template-columns: 1fr;
    }
    .prod_sample__fields .field.checkbox {
        grid-column: 1;
    }
    .prod_sample__fields .btn_button {
        width: 100%;
    }
}

/* ── Quality Section ── */
.prod_quality_section {
    padding: 15px 0 20px;
}

.prod_quality_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
@media (max-width: 900px) {
    .prod_quality_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}
.prod_quality_grid .item {
    width: 100%;
}
.prod_quality_grid .item .text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 14px;
    line-height: 143%;
    color: var(--gray);
}
.prod_quality_grid .item_header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 6px;
}
.prod_quality_grid .item_header .image img {
    border-radius: 100px;
}
.prod_quality_grid .item_header .name {
    font-family: var(--font-family);
    font-weight: 700;
    font-size: 20px;
    line-height: 130%;
    color: var(--primary);
}

/* ── Why Polymer Section ── */
.prod_why_section {
    padding: 6px 0 20px;
}

/* ── FAQ Section ── */