@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,
body {
    width: 100%;
    min-height: 100%;
}

body {
    font-family: "Manrope", sans-serif;
    background: #ffffff;
    color: #111111;
}



/* =========================================================
   NAVBAR
========================================================= */

.navbar {
    position: relative;
    width: 100%;
    height: 105px;

    display: flex;
    align-items: center;

    padding: 0 40px;

    background: transparent;
    border-bottom: 1px solid #eeeeee;

    z-index: 1000;
}


/* =========================================================
   LOGO
========================================================= */

.logo {
    width: 120px;
    height: 95px;

    display: flex;
    align-items: center;

    flex-shrink: 0;

    text-decoration: none;

    color: #111111;

    font-size: 26px;
    font-weight: 800;
}

.logo img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: contain;
}


/* =========================================================
   NAV RIGHT
========================================================= */

.nav-right {
    display: flex;
    align-items: center;

    /*
        Controls distance between
        LOGO and NAVIGATION LINKS
    */
    margin-left: 30px;

    /*
        Controls distance between
        NAVIGATION LINKS and EMAIL
    */
    gap: 55px;

    flex-shrink: 0;
}


/* =========================================================
   NAVIGATION LINKS
========================================================= */

.nav-links {
    display: flex;
    align-items: center;

    /*
        Controls distance between links
    */
    gap: 45px;
}

.nav-links>a,
.products>a {
    display: flex;
    align-items: center;

    color: #222222;

    text-decoration: none;

    font-size: 17px;
    font-weight: 700;

    white-space: nowrap;

    transition: color 0.2s ease;
}

.nav-links>a:hover,
.products>a:hover {
    color: #777777;
}


/* =========================================================
   PRODUCTS
========================================================= */

.products {
    position: relative;
}

.products>a {
    gap: 8px;
}


/* =========================================================
   DROPDOWN ARROW
========================================================= */

.dropdown-arrow {
    width: 15px;
    height: 15px;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.imgss {
    width: 15px;
    height: 15px;

    display: block;

    object-fit: contain;

    transition: transform 0.25s ease;
}

.products:hover .imgss {
    transform: rotate(180deg);
}


/* =========================================================
   PRODUCTS DROPDOWN
========================================================= */

.dropdown {
    position: absolute;

    top: calc(100% + 12px);
    left: 50%;

    transform: translateX(-50%);

    width: 190px;

    padding: 10px 0;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;

    z-index: 1100;
}


/* Invisible bridge */

.products::after {
    content: "";

    position: absolute;

    top: 100%;
    left: 0;

    width: 100%;
    height: 12px;
}


/* Show dropdown */

.products:hover .dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   CATEGORY
========================================================= */

.category {
    position: relative;
}

.category>a {
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 12px 18px;

    color: #222222;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition: background 0.2s ease;
}

.category>a:hover {
    background: #f5f5f5;
}


/* =========================================================
   SUBCATEGORY ARROW
========================================================= */

.subcategory-arrow {
    font-size: 20px;

    line-height: 1;

    font-weight: 400;

    transition: transform 0.2s ease;
}

.category:hover .subcategory-arrow {
    transform: translateX(3px);
}


/* =========================================================
   SUBCATEGORY DROPDOWN
========================================================= */

.sub-dropdown {
    position: absolute;

    top: 0;
    left: calc(100% + 5px);

    width: 190px;

    padding: 10px 0;

    background: #ffffff;

    border: 1px solid #eeeeee;
    border-radius: 8px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease;

    z-index: 1200;
}


/* Invisible bridge */

.category::after {
    content: "";

    position: absolute;

    top: 0;
    left: 100%;

    width: 5px;
    height: 100%;
}


/* Show submenu */

.category:hover .sub-dropdown {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}


/* =========================================================
   SUBCATEGORY LINKS
========================================================= */

.sub-dropdown a {
    display: block;

    width: 100%;

    padding: 12px 18px;

    color: #222222;

    text-decoration: none;

    font-size: 15px;
    font-weight: 600;

    transition:
        background 0.2s ease,
        color 0.2s ease;
}

.sub-dropdown a:hover {
    background: #f5f5f5;
    color: #111111;
}


/* =========================================================
   EMAIL BUTTON
========================================================= */

.email-btn {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 17px 35px;

    background: #003157;

    color: #ffffff;

    border-radius: 30px;

    text-decoration: none;

    font-size: 16px;
    font-weight: 700;

    white-space: nowrap;

    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.email-btn:hover {
    background: #333333;

    transform: translateY(-1px);
}



/* =========================================================
   BOLTS & STUDS PAGE
========================================================= */

.bolts-page {
    width: 100%;
    max-width: 1040px;

    margin: 0 auto;
    padding: 32px 0 60px;

    box-sizing: border-box;
}


/* =========================================================
   HEADER
========================================================= */

.bolts-header {
    width: 100%;

    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    margin-bottom: 30px;
}


/* =========================================================
   TITLE
========================================================= */

.bolts-title h1 {
    margin: 0;

    font-family: "Manrope", sans-serif;
    font-size: 28px;
    font-weight: 800;

    line-height: 1.2;

    color: #1d4169;
}


/* Red underline */

.bolts-title span {
    display: block;

    width: 74px;
    height: 3px;

    margin-top: 10px;

    background: #ef3b4f;
}


/* =========================================================
   BACK TO PRODUCTS BUTTON
========================================================= */

.back-products {
    display: flex;

    align-items: center;
    justify-content: center;

    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: all 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;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .bolts-page {
        max-width: calc(100% - 50px);
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .bolts-page {
        max-width: calc(100% - 30px);

        padding-top: 25px;
    }


    .bolts-header {
        align-items: flex-start;

        gap: 20px;

        margin-bottom: 22px;
    }


    .bolts-title h1 {
        font-size: 22px;
    }


    .bolts-title span {
        width: 60px;
        height: 2px;

        margin-top: 8px;
    }


    .back-products {
        min-width: auto;

        height: 36px;

        padding: 0 16px;

        font-size: 12px;

        white-space: nowrap;
    }


    .bolts-banner {
        border-radius: 12px;
    }

}





/* =========================================================
   SPECIFICATION TABLE
========================================================= */

.spec-table-wrapper {
    width: 100%;

    /* Minimum 30px left and right spacing */
    /* padding-left: 30px;
    padding-right: 30px; */
    padding: 0px 100px 0px 100px;
    box-sizing: border-box;

    margin: 20px auto;

    overflow-x: auto;
}


/* =========================================================
   TABLE
========================================================= */

.spec-table {
    width: 100%;

    border-collapse: collapse;
    border-spacing: 0;

    table-layout: fixed;

    font-family: "Afacad", sans-serif;

    font-size: 14px;

    color: #111111;

    text-align: center;
}


/* =========================================================
   HEADER
========================================================= */

.spec-table thead th {
    background: #064b84;

    color: #ffffff;

    font-size: 14px;

    font-weight: 700;

    height: 66px;

    padding: 12px 10px;

    vertical-align: middle;

    /* Thin light-gray borders */
    border: 2px solid white;
}


/* =========================================================
   ROUNDED TOP CORNERS
========================================================= */

.spec-table thead th:first-child {
    border-top-left-radius: 12px;
}

.spec-table thead th:last-child {
    border-top-right-radius: 12px;
}


/* =========================================================
   COLUMN WIDTHS
========================================================= */

.spec-table th:nth-child(1),
.spec-table td:nth-child(1) {
    width: 18%;
}

.spec-table th:nth-child(2),
.spec-table td:nth-child(2) {
    width: 18%;
}

.spec-table th:nth-child(3),
.spec-table td:nth-child(3) {
    width: 18%;
}

.spec-table th:nth-child(4),
.spec-table td:nth-child(4) {
    width: 18%;
}

.spec-table th:nth-child(5),
.spec-table td:nth-child(5) {
    width: 28%;
}


/* =========================================================
   BODY CELLS
========================================================= */

.spec-table tbody td {
    background: #dbe6f2;

    padding: 12px 8px;

    height: 50px;

    line-height: 1.55;

    vertical-align: middle;

    /* Screenshot-style thin gray border */
    border: 2px solid white;

    font-weight: 400;
}


/* =========================================================
   SIZE RANGE MERGED CELL
========================================================= */

.spec-table tbody .size-range {
    vertical-align: middle;

    padding-left: 8px;
    padding-right: 8px;

    line-height: 1.7;
}


/* =========================================================
   BOTTOM ROUNDED CORNERS
========================================================= */

.spec-table tbody tr:last-child td:first-child {
    border-bottom-left-radius: 12px;
}

.spec-table tbody tr:last-child td:last-child {
    border-bottom-right-radius: 12px;
}


/* =========================================================
   HOVER
========================================================= */

.spec-table tbody tr:hover td {
    background: #f1f1f1;

    transition: background 0.2s ease;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 768px) {

    .spec-table-wrapper {
        padding-left: 30px;
        padding-right: 30px;

        overflow-x: auto;
    }

    .spec-table {
        min-width: 850px;

        font-size: 13px;
    }

    .spec-table thead th {
        font-size: 13px;

        height: 60px;
    }

    .spec-table tbody td {
        padding: 10px 7px;
    }
}





/* =========================================================
   PTI WASHER SECTION
========================================================= */

.washer-section {
    width: 100%;
    background: #ffffff;
    padding: 35px 100px 35px 100px;
    box-sizing: border-box;
}


/* =========================================================
   CONTAINER
========================================================= */

.washer-container {
    width: 100%;
    max-width: 1250px;
    min-height: 110px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    box-sizing: border-box;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.washer-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}


/* =========================================================
   HEADING
========================================================= */

.washer-content h2 {
    margin: 0;
    color: #173d63;
    font-family: "Manrope", sans-serif;
    font-size: 27px;
    font-weight: 800;
    line-height: 1.2;
}


/* =========================================================
   RED UNDERLINE
========================================================= */

.washer-line {
    display: block;
    width: 82px;
    height: 3px;
    margin-top: 10px;
    background: #dc3545;
}


/* =========================================================
   IMAGE
========================================================= */

.washer-image {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}


.washer-image img {
    width: 300px;
    height: 110px;
    display: block;
    object-fit: contain;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .washer-section {
        padding: 30px 20px;
    }

    .washer-container {
        min-height: 100px;
    }

    .washer-content h2 {
        font-size: 25px;
    }

    .washer-image img {
        width: 260px;
        height: 100px;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .washer-section {
        padding: 25px 15px;
    }

    .washer-container {
        min-height: auto;
        gap: 15px;
    }

    .washer-content h2 {
        font-size: 21px;
    }

    .washer-line {
        width: 65px;
        height: 3px;
        margin-top: 8px;
    }

    .washer-image img {
        width: 180px;
        height: 80px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .washer-section {
        padding: 20px 12px;
    }

    .washer-container {
        gap: 8px;
    }

    .washer-content h2 {
        font-size: 18px;
    }

    .washer-line {
        width: 55px;
        height: 2px;
    }

    .washer-image img {
        width: 145px;
        height: 70px;
    }
}






/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    position: relative;
    background: #111c2b;
    color: #ffffff;
    overflow: hidden;
}


/* =========================================================
   SUBTLE BACKGROUND DETAIL
========================================================= */

.site-footer::before {
    content: "";
    position: absolute;

    width: 500px;
    height: 500px;

    top: -250px;
    right: -180px;

    border: 1px solid rgba(240, 136, 37, 0.10);
    border-radius: 50%;

    pointer-events: none;
}

.site-footer::after {
    content: "";
    position: absolute;

    width: 300px;
    height: 300px;

    bottom: -180px;
    left: -150px;

    background: rgba(240, 136, 37, 0.035);
    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   MAIN FOOTER
========================================================= */

.footer-main {
    position: relative;
    z-index: 1;

    padding: 85px 40px 70px;
}


.footer-container {
    max-width: 1400px;
    margin: 0 auto;

    display: grid;

    grid-template-columns:
        1.45fr
        0.8fr
        1.5fr
        0.8fr;

    gap: 65px;
}


/* =========================================================
   COMPANY
========================================================= */

.footer-company {
    padding-right: 25px;
}


.footer-logo {
    display: inline-flex;
    align-items: center;

    margin-bottom: 28px;
}


.footer-logo img {
    width: 145px;
    height: auto;

    display: block;
}


.footer-description {
    max-width: 390px;

    margin: 0 0 25px;

    color: #aeb8c5;

    font-size: 15px;
    line-height: 1.9;
    font-weight: 400;
}


.footer-about-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-about-link span {
    color: #f08825;

    font-size: 19px;

    transition: transform 0.3s ease;
}


.footer-about-link:hover {
    color: #f08825;
}


.footer-about-link:hover span {
    transform: translateX(5px);
}


/* =========================================================
   FOOTER HEADINGS
========================================================= */

.footer-menu h3,
.footer-locations h3,
.footer-contact h3 {
    position: relative;

    margin: 7px 0 28px;

    padding-bottom: 15px;

    color: #ffffff;

    font-size: 17px;
    font-weight: 800;

    letter-spacing: 0.2px;
}


.footer-menu h3::after,
.footer-locations h3::after,
.footer-contact h3::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: 0;

    width: 38px;
    height: 2px;

    background: #f08825;
}


/* =========================================================
   SITE MENU
========================================================= */

.footer-menu ul {
    list-style: none;

    margin: 0;
    padding: 0;
}


.footer-menu li {
    margin-bottom: 13px;
}


.footer-menu a {
    position: relative;

    color: #aeb8c5;

    font-size: 14px;
    font-weight: 500;

    text-decoration: none;

    transition:
        color 0.3s ease,
        padding-left 0.3s ease;
}


.footer-menu a::before {
    content: "";

    position: absolute;

    left: -15px;
    top: 50%;

    width: 5px;
    height: 5px;

    background: #f08825;
    border-radius: 50%;

    opacity: 0;

    transform: translateY(-50%);

    transition: opacity 0.3s ease;
}


.footer-menu a:hover {
    color: #ffffff;
    padding-left: 5px;
}


.footer-menu a:hover::before {
    opacity: 1;
}


/* =========================================================
   LOCATIONS
========================================================= */

.footer-location {
    display: flex;
    align-items: flex-start;

    gap: 15px;

    margin-bottom: 27px;
}


.location-number {
    flex-shrink: 0;

    color: #f08825;

    font-size: 12px;
    font-weight: 800;

    letter-spacing: 1px;

    padding-top: 2px;
}


.footer-location h4 {
    margin: 0 0 7px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 800;
}


.footer-location p {
    max-width: 330px;

    margin: 0;

    color: #9faab8;

    font-size: 13px;
    line-height: 1.75;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-label {
    margin: 0 0 8px;

    color: #7f8c9c;

    font-size: 11px;
    font-weight: 700;

    text-transform: uppercase;
    letter-spacing: 1.5px;
}


.footer-email {
    display: inline-block;

    margin-bottom: 30px;

    color: #ffffff;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-email:hover {
    color: #f08825;
}


/* =========================================================
   CONTACT BUTTON
========================================================= */

.footer-contact-button {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;
    max-width: 190px;

    padding: 14px 17px;

    border: 1px solid rgba(240, 136, 37, 0.55);

    color: #ffffff;

    font-size: 13px;
    font-weight: 700;

    text-decoration: none;

    transition:
        background 0.3s ease,
        border-color 0.3s ease,
        color 0.3s ease;
}


.footer-contact-button span {
    color: #f08825;

    font-size: 17px;

    transition: transform 0.3s ease;
}


.footer-contact-button:hover {
    background: #f08825;
    border-color: #f08825;

    color: #111c2b;
}


.footer-contact-button:hover span {
    color: #111c2b;
    transform: translate(3px, -3px);
}


/* =========================================================
   BOTTOM FOOTER
========================================================= */

.footer-bottom {
    position: relative;
    z-index: 2;

    border-top: 1px solid rgba(255, 255, 255, 0.08);

    padding: 20px 40px;
}


.footer-bottom-container {
    max-width: 1400px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 20px;
}


.footer-bottom p {
    margin: 0;

    color: #7f8b99;

    font-size: 12px;
    line-height: 1.6;
}


.footer-bottom a {
    color: #c5ccd5;

    font-weight: 700;

    text-decoration: none;

    transition: color 0.3s ease;
}


.footer-bottom a:hover {
    color: #f08825;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1100px) {

    .footer-container {
        grid-template-columns: 1.3fr 0.8fr 1.3fr;
        gap: 45px;
    }

    .footer-contact {
        grid-column: 1 / -1;

        margin-top: 15px;
    }

    .footer-contact-button {
        max-width: 190px;
    }

}


/* =========================================================
   TABLET / SMALL LAPTOP
========================================================= */

@media (max-width: 800px) {

    .footer-main {
        padding: 65px 30px 50px;
    }

    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 50px 35px;
    }

    .footer-company {
        padding-right: 0;
    }

    .footer-locations {
        grid-column: 1 / -1;
    }

    .footer-contact {
        grid-column: auto;
        margin-top: 0;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {

    .footer-main {
        padding: 55px 22px 40px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .footer-company,
    .footer-locations,
    .footer-contact {
        grid-column: auto;
    }

    .footer-logo img {
        width: 130px;
    }

    .footer-description {
        max-width: 100%;

        font-size: 14px;
        line-height: 1.8;
    }

    .footer-location {
        margin-bottom: 23px;
    }

    .footer-location p {
        max-width: 100%;
    }

    .footer-bottom {
        padding: 18px 22px;
    }

    .footer-bottom-container {
        flex-direction: column;
        align-items: flex-start;

        gap: 6px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .footer-main {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-bottom {
        padding-left: 18px;
        padding-right: 18px;
    }

    .footer-description {
        font-size: 13px;
    }

    .footer-location {
        gap: 11px;
    }

}




