
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap');


/* =========================================================
   GLOBAL
========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
}

body {
    width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;

    font-family: "Manrope", sans-serif;
    background: #ffffff;
    color: #111111;

    overflow-x: hidden;
}


/* =========================================================
   PAGE
========================================================= */

.bolts-page {
    width: 100%;
    max-width: 1040px;

    margin: 0 auto;
    padding: 32px 20px 60px;

    box-sizing: border-box;
}


/* =========================================================
   PAGE HEADER
========================================================= */

.bolts-header {
    width: 100%;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    gap: 25px;
    margin-bottom: 30px;
}


/* =========================================================
   TITLE
========================================================= */

.bolts-title {
    min-width: 0;
}

.bolts-title h1 {
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;

    color: #1d4169;
}

.bolts-title span {
    display: block;

    width: 74px;
    height: 3px;

    margin-top: 10px;

    background: #ef3b4f;
}


/* =========================================================
   BACK BUTTON
========================================================= */

.back-products {
    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;

    min-width: 170px;
    height: 40px;

    padding: 0 24px;
    margin-top: 2px;

    background: #ef3b4f;
    color: #ffffff;

    border-radius: 25px;

    text-decoration: none;

    font-family: "Manrope", sans-serif;
    font-size: 14px;
    font-weight: 500;

    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

.back-products:hover {
    background: #d92e42;
    transform: translateY(-1px);
}


/* =========================================================
   BANNER
========================================================= */

.bolts-banner {
    width: 100%;

    overflow: hidden;

    border-radius: 16px;

    line-height: 0;
}

.bolts-banner img {
    display: block;

    width: 100%;
    height: auto;

    object-fit: cover;
}


/* =========================================================
   GRADE TABLE SECTION
========================================================= */

.grade-table-section {
    width: 100%;

    padding: 40px 20px;

    background: #ffffff;

    box-sizing: border-box;
}


/* =========================================================
   TABLE CONTAINER
========================================================= */

.grade-table-container {
    width: 100%;
    max-width: 1250px;

    margin: 0 auto;

    box-sizing: border-box;
}


/* =========================================================
   TABLE WRAPPER
========================================================= */

.grade-table-wrapper {
    width: 100%;

    margin: 0;
    padding: 0;

    overflow: hidden;

    border: 0;
}


/* =========================================================
   TABLE
========================================================= */

.grade-table {
    width: 100%;

    border-collapse: collapse;
    border-spacing: 0;

    table-layout: fixed;

    background: #dbe6f2;
    color: #222222;

    font-family: "Manrope", sans-serif;
}


/* =========================================================
   TABLE HEADER
========================================================= */

.grade-table thead {
    background: #004380;
    color: #ffffff;
}

.grade-table th {
    padding: 16px 10px;

    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;

    font-size: 16px;
    font-weight: 700;

    line-height: 1.3;
    text-align: center;
    vertical-align: middle;

    white-space: normal;

    overflow-wrap: anywhere;
    word-break: normal;
}

.grade-table th:last-child {
    border-right: none;
}


/* =========================================================
   TABLE BODY
========================================================= */

.grade-table td {
    padding: 15px 10px;

    border-right: 2px solid #ffffff;
    border-bottom: 2px solid #ffffff;

    font-size: 15px;
    font-weight: 500;

    line-height: 1.4;

    text-align: center;
    vertical-align: middle;

    white-space: normal;

    overflow-wrap: anywhere;
    word-break: normal;
}

.grade-table td:last-child {
    border-right: none;
}


/* =========================================================
   COLUMN WIDTHS
========================================================= */

.grade-table th:nth-child(1),
.grade-table td:nth-child(1) {
    width: 16%;
}

.grade-table th:nth-child(2),
.grade-table td:nth-child(2) {
    width: 20%;
}

.grade-table th:nth-child(3),
.grade-table td:nth-child(3) {
    width: 19%;
}

.grade-table th:nth-child(4),
.grade-table td:nth-child(4) {
    width: 17%;
}

.grade-table th:nth-child(5),
.grade-table td:nth-child(5) {
    width: 15%;
}

.grade-table th:nth-child(6),
.grade-table td:nth-child(6) {
    width: 13%;
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.grade-image {
    display: block;

    width: 140px;
    height: 110px;

    max-width: 100%;

    margin: 0 auto;

    object-fit: contain;
}


/* =========================================================
   ROW HOVER
========================================================= */

.grade-table tbody tr {
    transition: background-color 0.2s ease;
}

.grade-table tbody tr:hover {
    background: #eeeeee;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .bolts-page {
        max-width: 100%;
        padding-left: 25px;
        padding-right: 25px;
    }

    .grade-table-section {
        padding-left: 20px;
        padding-right: 20px;
    }

    .grade-table th {
        padding: 14px 8px;
        font-size: 14px;
    }

    .grade-table td {
        padding: 13px 8px;
        font-size: 13px;
    }

    .grade-image {
        width: 115px;
        height: 90px;
    }
}


/* =========================================================
   SMALL TABLET
========================================================= */

@media (max-width: 850px) {

    .bolts-page {
        padding: 28px 20px 45px;
    }

    .bolts-header {
        gap: 18px;
        margin-bottom: 24px;
    }

    .bolts-title h1 {
        font-size: 24px;
    }

    .back-products {
        min-width: 150px;
        height: 38px;
        padding: 0 18px;
        font-size: 13px;
    }

    .grade-table-section {
        padding: 30px 15px;
    }

    .grade-table th {
        padding: 12px 6px;
        font-size: 12px;
    }

    .grade-table td {
        padding: 11px 6px;
        font-size: 11px;
    }

    .grade-image {
        width: 90px;
        height: 75px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .bolts-page {
        width: 100%;
        max-width: none;

        padding: 24px 15px 40px;
    }


    /* -----------------------------
       HEADER
    ----------------------------- */

    .bolts-header {
        align-items: flex-start;

        gap: 12px;

        margin-bottom: 20px;
    }

    .bolts-title {
        flex: 1;
    }

    .bolts-title h1 {
        font-size: 20px;
        line-height: 1.25;
    }

    .bolts-title span {
        width: 55px;
        height: 2px;

        margin-top: 7px;
    }


    /* -----------------------------
       BACK BUTTON
    ----------------------------- */

    .back-products {
        min-width: auto;

        height: 34px;

        padding: 0 13px;

        border-radius: 20px;

        font-size: 11px;
    }


    /* -----------------------------
       BANNER
    ----------------------------- */

    .bolts-banner {
        border-radius: 10px;
    }


    /* -----------------------------
       TABLE SECTION
    ----------------------------- */

    .grade-table-section {
        width: 100%;

        padding: 25px 10px;

        overflow: hidden;
    }

    .grade-table-container {
        width: 100%;
    }

    .grade-table-wrapper {
        width: 100%;
        overflow: hidden;
    }


    /* -----------------------------
       TABLE
    ----------------------------- */

    .grade-table {
        width: 100%;
        table-layout: fixed;
    }

    .grade-table th {
        padding: 10px 4px;

        font-size: 10px;
        line-height: 1.25;

        overflow-wrap: anywhere;
    }

    .grade-table td {
        padding: 10px 4px;

        font-size: 9.5px;
        line-height: 1.35;

        overflow-wrap: anywhere;
    }


    /* -----------------------------
       COLUMN WIDTHS
    ----------------------------- */

    .grade-table th:nth-child(1),
    .grade-table td:nth-child(1) {
        width: 15%;
    }

    .grade-table th:nth-child(2),
    .grade-table td:nth-child(2) {
        width: 21%;
    }

    .grade-table th:nth-child(3),
    .grade-table td:nth-child(3) {
        width: 19%;
    }

    .grade-table th:nth-child(4),
    .grade-table td:nth-child(4) {
        width: 15%;
    }

    .grade-table th:nth-child(5),
    .grade-table td:nth-child(5) {
        width: 16%;
    }

    .grade-table th:nth-child(6),
    .grade-table td:nth-child(6) {
        width: 14%;
    }


    /* -----------------------------
       PRODUCT IMAGE
    ----------------------------- */

    .grade-image {
        width: 55px;
        height: 50px;
    }
}


/* =========================================================
   VERY SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .bolts-page {
        padding-left: 10px;
        padding-right: 10px;
    }

    .bolts-title h1 {
        font-size: 18px;
    }

    .back-products {
        height: 32px;

        padding: 0 10px;

        font-size: 10px;
    }

    .grade-table-section {
        padding-left: 5px;
        padding-right: 5px;
    }

    .grade-table th {
        padding: 8px 3px;
        font-size: 9px;
    }

    .grade-table td {
        padding: 8px 3px;
        font-size: 8.5px;
    }

    .grade-image {
        width: 48px;
        height: 44px;
    }
}


/* =========================================================
   FOOTER GAP FIX
========================================================= */

.site-footer {
    width: 100%;
    margin: 0;
    border: 0;
}


/* Remove accidental bottom whitespace */
.site-footer:last-child {
    margin-bottom: 0;
}


/* =========================================================
   MOBILE FOOTER SAFETY
========================================================= */

@media (max-width: 600px) {

    .site-footer {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }
}

