/* ============================================ */
/* NEW PRODUCT DESIGN — Printable / Tint Section */
/* ============================================ */

/* ---- Heading spacing ---- */
.section-printable .heading-product{
    padding-bottom: 10px;
}

/* ---- Big Hero Image ---- */
.printable-hero-img{
    margin: 35px auto 10px;
    max-width: 650px;
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid #d60000;
}
.printable-hero-img img{
    width: 100%;
    height: auto;
    display: block;
}

/* ---- Table Wrapper ---- */
.printable-table-wrap{
    margin-top: 35px;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* ---- Base Spec Table ---- */
.printable-spec-table{
    width: 100%;
    min-width: 550px;
    border-collapse: collapse;
    background: #000;
    color: #fff;
}
.printable-spec-table thead th{
    background: #d60000;
    color: #fff;
    text-align: center;
    padding: 10px !important;
    font-size: 14px !important;
    border: 1px solid #444;
    font-family: "Barlow Condensed", sans-serif !important;
    text-transform: uppercase;
    line-height: 1.3;
}
.printable-spec-table thead th small{
    font-size: 10px;
    font-weight: 400;
    display: inline-block;
    text-transform: none;
}
.printable-spec-table thead th.cat-col{
    text-align: left;
    background: #000;
    border-color: #d60000;
}
.printable-spec-table tbody td{
    border: 1px solid #444;
    font-size: 13px;
    padding: 7px 12px;
    text-align: center;
    font-family: "Barlow Condensed", sans-serif !important;
}
.printable-spec-table tbody td.cat-col{
    text-align: left;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}
.printable-spec-table tbody td small{
    font-size: 10px;
    display: block;
    color: #999;
}
.printable-spec-table tbody tr{ background: #000; }
.printable-spec-table tbody tr:nth-child(even){ background: #0d0d0d; }
.printable-spec-table tbody tr:hover{ background: #1a1a1a; }

/* ---- Table disclaimer text (used under NCT/Carbon tables) ---- */
.table-disclaimer{
    color: #888;
    font-size: 11px;
    margin-top: 10px;
    font-family: "Barlow Condensed", sans-serif !important;
    font-style: italic;
}

/* ---- Section spacing override ---- */
.NCT-window-section{
    margin-top: 0px !important;
}

/* ---- NCT Tint Table (7 columns) ---- */
.tint-spec-table{
    min-width: 1000px;
}
.tint-spec-table thead th{
    font-size: 13px !important;
}
.tint-spec-table thead th small{
    font-size: 9px;
}
.tint-spec-table tbody td.cat-col{
    white-space: normal;
    min-width: 220px;
}

/* ---- Carbon Tint Table (5 columns) ---- */
.carbon-spec-table{
    min-width: 800px;
}
.carbon-spec-table thead th{
    font-size: 13px !important;
}

/* ---- Features & Benefits Block ---- */
.benefits-block{
    margin-top: 40px;
}
.benefits-heading{
    color: #fff;
    font-family: "Barlow Condensed", sans-serif !important;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}
.benefits-strip{
    margin-top: 0;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.benefits-strip .feature-item{
    flex: 0 0 20%;
    padding: 14px 10px;
}
.benefits-strip .feature-item:nth-child(5)::after{
    display: none;
}
.benefits-strip .feature-item:nth-child(10)::after{
    display: none;
}

/* ---- Responsive ---- */
@media (max-width: 768px){
    .benefits-strip .feature-item{
        flex: 0 0 33.333%;
    }
    .benefits-strip .feature-item:nth-child(3n)::after{
        display: none;
    }
}

@media (max-width: 480px){
    .printable-spec-table{ min-width: 650px; }
    .printable-hero-img{ border-radius: 6px; }
    .benefits-strip .feature-item{
        flex: 0 0 50%;
    }
    .benefits-strip .feature-item:nth-child(2n)::after{
        display: none;
    }
}