/* ========================================
   SPARE PARTS & EQUIPMENT
   Global Design System
======================================== */

:root {
    --white: #ffffff;

    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #eeeeee;
    --gray-300: #dddddd;
    --gray-400: #bdbdbd;
    --gray-600: #6b6b6b;
    --gray-800: #303030;

    --black: #111111;

    --traffic-yellow: #F0CA00;

    --border-color: #e2e2e2;
}


/* ========================================
   GENERAL
======================================== */

html,
body {
    margin: 0;
    padding: 0;

    background-color: var(--white);
    color: var(--black);

    font-family: Arial, Helvetica, sans-serif;
}

body {
    min-height: 100vh;
}


/* ========================================
   NAVBAR
======================================== */

.heavyparts-navbar {
    background-color: var(--traffic-yellow) !important;
    border-bottom: none !important;

    padding-top: 14px;
    padding-bottom: 14px;
}


/* Logo */

.heavyparts-navbar .navbar-brand {
    color: var(--black) !important;

    font-weight: 700;
    font-size: 24px;

    letter-spacing: -0.5px;
}

.heavyparts-navbar .navbar-brand:hover {
    color: var(--black) !important;
}


/* Navigation */

.heavyparts-navbar .nav-link {
    color: #222222 !important;

    font-size: 16px;
    font-weight: 500;

    margin-left: 5px;
    margin-right: 5px;
}

.heavyparts-navbar .nav-link:hover {
    color: #000000 !important;
}


/* Mobile menu button */

.heavyparts-navbar .navbar-toggler {
    border: 1px solid rgba(0, 0, 0, 0.35);
}

.heavyparts-navbar .navbar-toggler:focus {
    box-shadow: none;
}


/* ========================================
   LANGUAGE SWITCHER
======================================== */

.language-switcher {
    display: flex;
    align-items: center;
}

.language-switcher form {
    display: flex;
    align-items: center;

    gap: 6px;

    margin: 0;
}

.language-button {
    min-width: 38px;
    height: 32px;

    padding: 0 9px;

    background-color: transparent;

    border: 1px solid rgba(0, 0, 0, 0.3);
    border-radius: 5px;

    color: #222222;

    font-size: 12px;
    font-weight: 500;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.language-button:hover {
    background-color: rgba(255, 255, 255, 0.35);

    border-color: #111111;
}

.language-button.active {
    background-color: #111111;

    border-color: #111111;

    color: #ffffff;
}


/* ========================================
   MAIN CONTENT
======================================== */

main {
    background-color: var(--white);
}

/* ========================================
   ERROR PAGES
======================================== */

.error-page {
    min-height: 68vh;

    display: flex;
    flex-direction: column;

    justify-content: center;
    align-items: center;

    text-align: center;

    padding: 60px 20px;
}


/* 400 / 403 / 404 / 500 */

.error-code {
    margin-bottom: 20px;

    color: var(--black);

    font-size: clamp(90px, 14vw, 160px);
    font-weight: 700;

    line-height: 0.9;

    letter-spacing: -7px;
}


/* Error heading */

.error-title {
    margin-bottom: 14px;

    color: var(--black);

    font-size: 34px;
    font-weight: 600;

    letter-spacing: -0.5px;
}


/* Error description */

.error-text {
    max-width: 520px;

    margin-bottom: 30px;

    color: var(--gray-600);

    font-size: 17px;

    line-height: 1.6;
}


/* Error button */

.error-button {
    display: inline-block;

    padding: 12px 25px;

    color: var(--black);

    background-color: var(--gray-100);

    border: 1px solid var(--gray-300);
    border-radius: 6px;

    font-size: 15px;
    font-weight: 500;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.error-button:hover {
    color: var(--black);

    background-color: var(--gray-200);

    border-color: var(--gray-400);
}

/* ========================================
   FOOTER
======================================== */

.site-footer {
    margin-top: 60px;

    background-color: #f5f5f5;

    border-top: 1px solid #e2e2e2;
}

.footer-content {
    padding: 38px 0 28px;

    text-align: center;
}

.footer-brand {
    margin-bottom: 22px;
}

.footer-title {
    margin-bottom: 6px;

    color: #111111;

    font-size: 17px;
    font-weight: 700;
}

.footer-description {
    margin: 0;

    color: #777777;

    font-size: 13px;
}


/* LINKS */

.footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;

    gap: 10px 24px;

    margin-bottom: 24px;
}

.footer-links a {
    color: #555555;

    font-size: 13px;

    text-decoration: none;
}

.footer-links a:hover {
    color: #111111;

    text-decoration: underline;
}


/* COPYRIGHT */

.footer-bottom {
    padding-top: 18px;

    border-top: 1px solid #dddddd;
}

.footer-bottom p {
    margin: 0;

    color: #888888;

    font-size: 12px;
}


/* MOBILE */

@media (max-width: 768px) {

    .footer-links {
        gap: 10px 18px;
    }

    .footer-content {
        padding: 30px 0 24px;
    }

}

/* ========================================
   MOBILE
======================================== */

@media (max-width: 991px) {

    .heavyparts-navbar .navbar-collapse {
        padding-top: 15px;
    }

    .heavyparts-navbar .nav-link {
        margin-left: 0;

        padding-top: 8px;
        padding-bottom: 8px;
    }

    .heavyparts-navbar .d-flex {
        margin-top: 12px;
        margin-bottom: 5px;
    }

}


@media (max-width: 576px) {

    .error-code {
        letter-spacing: -4px;
    }

    .error-title {
        font-size: 28px;
    }

    .error-text {
        font-size: 16px;
    }

}


/* ========================================
   MESSAGES
======================================== */

.site-messages {
    width: 100%;

    padding: 16px 0;

    background-color: #ffffff;
}

.site-message {
    max-width: 900px;

    margin: 0 auto 10px;
    padding: 14px 18px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: #f5f5f5;

    border: 1px solid #dddddd;
    border-radius: 6px;

    color: #222222;

    font-size: 14px;
}

.site-message:last-child {
    margin-bottom: 0;
}

.site-message-text {
    padding-right: 20px;
}

.site-message-close {
    padding: 0;

    background: none;
    border: none;

    color: #777777;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;
}

.site-message-close:hover {
    color: #111111;
}


/* ========================================
   BREADCRUMBS
======================================== */

.site-breadcrumbs {
    background-color: #f5f5f5;

    border-bottom: 1px solid #e2e2e2;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;

    gap: 0;

    margin: 0;
    padding: 11px 0;

    list-style: none;

    font-size: 13px;
}

.breadcrumb-item {
    display: flex;
    align-items: center;

    color: #777777;
}

.breadcrumb-item:not(:last-child)::after {
    content: "/";

    margin: 0 9px;

    color: #b0b0b0;
}

.breadcrumb-item a {
    color: #555555;

    text-decoration: none;

    transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
    color: #111111;
}

.breadcrumb-item:last-child {
    color: #111111;

    font-weight: 500;
}


/* ========================================
   PAGINATION
======================================== */

.site-pagination {
    margin-top: 40px;
    margin-bottom: 20px;
}

.pagination-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;

    gap: 6px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.pagination-link {
    min-width: 40px;
    height: 40px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 0 12px;

    background-color: #ffffff;

    border: 1px solid #dddddd;
    border-radius: 6px;

    color: #333333;

    font-size: 14px;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.pagination-link:hover {
    background-color: #f5f5f5;

    border-color: #bdbdbd;

    color: #111111;
}

.pagination-active {
    background-color: #f0ca00;

    border-color: #f0ca00;

    color: #111111;

    font-weight: 600;
}

.pagination-active:hover {
    background-color: #f0ca00;

    border-color: #f0ca00;
}

.pagination-disabled {
    background-color: #f5f5f5;

    color: #aaaaaa;

    cursor: default;
}

.pagination-disabled:hover {
    background-color: #f5f5f5;

    border-color: #dddddd;

    color: #aaaaaa;
}

.pagination-arrow {
    padding-left: 16px;
    padding-right: 16px;
}

/* ========================================
   QUOTE BUTTON
======================================== */

.quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 44px;

    padding: 0 22px;

    background-color: var(--traffic-yellow);

    border: 1px solid var(--traffic-yellow);
    border-radius: 6px;

    color: #111111;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;

    cursor: pointer;

    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.15s ease;
}

.quote-button:hover {
    background-color: #e2be00;
    border-color: #e2be00;

    color: #111111;

    transform: translateY(-1px);
}

.quote-button:active {
    transform: translateY(0);
}

/* ========================================
   QUOTE MODAL
======================================== */

.quote-modal-content {
    border: none;
    border-radius: 10px;

    background-color: #ffffff;

    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.18);
}

.quote-modal-header {
    padding: 24px 26px 18px;

    border-bottom: 1px solid #e5e5e5;
}

.quote-modal-title {
    margin: 0;

    color: #111111;

    font-size: 24px;
    font-weight: 700;
}

.quote-modal-subtitle {
    margin: 6px 0 0;

    color: #777777;

    font-size: 14px;
}

.quote-modal-body {
    padding: 24px 26px 26px;
}

.quote-form-group {
    margin-bottom: 16px;
}

.quote-form-group label {
    display: block;

    margin-bottom: 6px;

    color: #333333;

    font-size: 13px;
    font-weight: 600;
}

.quote-form-group input,
.quote-form-group textarea {
    width: 100%;

    padding: 11px 12px;

    background-color: #ffffff;

    border: 1px solid #d9d9d9;
    border-radius: 6px;

    color: #111111;

    font-size: 14px;

    outline: none;
}

.quote-form-group input:focus,
.quote-form-group textarea:focus {
    border-color: #999999;

    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.04);
}

.quote-form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 14px;
}

.quote-modal-submit {
    width: 100%;

    padding: 12px 18px;

    background-color: #f0ca00;

    border: none;
    border-radius: 6px;

    color: #111111;

    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}

.quote-modal-submit:hover {
    background-color: #e2be00;
}

@media (max-width: 576px) {

    .quote-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

}

/* ========================================
   ABOUT PAGE
======================================== */

.about-page {
    padding-bottom: 30px;
}

.about-card {
    padding: 28px;

    background: #ffffff;

    border: 1px solid #e2e2e2;
    border-radius: 10px;
}

.about-card h3 {
    margin-bottom: 16px;

    color: #111111;

    font-size: 24px;
    font-weight: 600;
}

.about-card p {
    color: #666666;

    line-height: 1.7;
}

.about-list {
    margin: 0;
    padding-left: 18px;

    color: #555555;
}

.about-list li {
    margin-bottom: 10px;
}

.brand-grid {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));

    gap: 12px;

    margin-top: 18px;
}

.brand-item {
    padding: 14px 10px;

    text-align: center;

    background: #f5f5f5;

    border: 1px solid #dddddd;
    border-radius: 6px;

    font-weight: 600;

    color: #333333;
}

/* ========================================
   PAYMENT PAGE
======================================== */

.payment-page {
    padding-bottom: 30px;
}

.payment-card {
    height: 100%;

    padding: 24px;

    background-color: #f5f5f5;

    border: 1px solid #e2e2e2;
    border-radius: 8px;
}

.payment-card h3 {
    margin-bottom: 12px;

    color: #111111;

    font-size: 18px;
    font-weight: 700;
}

.payment-card p {
    margin: 0;

    color: #666666;

    font-size: 14px;
    line-height: 1.6;
}


/* PAYMENT PROCESS */

.payment-process {
    margin-top: 70px;
}

.payment-step {
    height: 100%;

    padding: 24px;

    background-color: #ffffff;

    border: 1px solid #dddddd;
    border-radius: 8px;
}

.payment-step-number {
    margin-bottom: 18px;

    color: #111111;

    font-size: 34px;
    font-weight: 700;
}

.payment-step h3 {
    margin-bottom: 10px;

    color: #111111;

    font-size: 18px;
    font-weight: 700;
}

.payment-step p {
    margin: 0;

    color: #666666;

    font-size: 14px;
    line-height: 1.6;
}


/* PAYMENT NOTE */

.payment-note {
    padding: 24px;

    background-color: #f5f5f5;

    border-left: 4px solid #f0ca00;
    border-radius: 6px;
}

.payment-note h3 {
    margin-bottom: 10px;

    color: #111111;

    font-size: 18px;
    font-weight: 700;
}

.payment-note p {
    margin: 0;

    color: #666666;

    font-size: 14px;
    line-height: 1.7;
}

/* ========================================
   FAQ
======================================== */

.faq-list {
    border-top: 1px solid #dddddd;
}

.faq-item {
    border-bottom: 1px solid #dddddd;
}

.faq-question {
    position: relative;

    display: block;

    width: 100%;

    padding: 20px 50px 20px 18px;

    color: #111111;

    font-size: 16px;
    font-weight: 600;

    cursor: pointer;

    list-style: none;
}

.faq-question::-webkit-details-marker {
    display: none;
}


/* стрелка */

.faq-question::after {
    content: "+";

    position: absolute;

    right: 18px;
    top: 50%;

    transform: translateY(-50%);

    color: #555555;

    font-size: 24px;
    font-weight: 400;
}


/* когда открыт */

.faq-item[open] .faq-question::after {
    content: "−";
}

.faq-item[open] .faq-question {
    background-color: #f5f5f5;
}


/* ответ */

.faq-answer {
    padding: 0 50px 22px 18px;

    color: #202020;

    font-size: 17px;
    line-height: 1.7;
}

/* ========================================
   PRIVACY PAGE
======================================== */

.privacy-page {
    max-width: 900px;

    margin: 0 auto;

    padding-bottom: 30px;
}

.privacy-content {
    margin-top: 20px;
}

.privacy-section {
    padding: 26px 0;

    border-bottom: 1px solid #e2e2e2;
}

.privacy-section:first-child {
    border-top: 1px solid #e2e2e2;
}

.privacy-section h2 {
    margin-bottom: 14px;

    color: #111111;

    font-size: 21px;
    font-weight: 700;
}

.privacy-section p {
    margin-bottom: 12px;

    color: #555555;

    font-size: 15px;
    line-height: 1.75;
}

.privacy-section p:last-child {
    margin-bottom: 0;
}

.privacy-contact-link {
    display: inline-block;

    margin-top: 10px;

    padding: 10px 18px;

    background-color: #f5f5f5;

    border: 1px solid #dddddd;
    border-radius: 6px;

    color: #111111;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}

.privacy-contact-link:hover {
    background-color: #eeeeee;

    color: #111111;
}

/* ========================================
   COOKIE BANNER
======================================== */

.cookie-banner {
    position: fixed;

    left: 0;
    right: 0;
    bottom: 0;

    z-index: 1050;

    background-color: #ffffff;

    border-top: 1px solid #dddddd;

    box-shadow: 0 -6px 25px rgba(0, 0, 0, 0.08);
}

.cookie-banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding-top: 18px;
    padding-bottom: 18px;
}

.cookie-banner-text {
    max-width: 760px;
}

.cookie-banner-text strong {
    display: block;

    margin-bottom: 4px;

    color: #111111;

    font-size: 15px;
    font-weight: 700;
}

.cookie-banner-text p {
    margin: 0;

    color: #666666;

    font-size: 13px;
    line-height: 1.6;
}

.cookie-banner-actions {
    display: flex;
    align-items: center;

    gap: 12px;

    flex-shrink: 0;
}

.cookie-link {
    color: #333333;

    font-size: 13px;
    font-weight: 600;

    text-decoration: none;
}

.cookie-link:hover {
    color: #111111;

    text-decoration: underline;
}

.cookie-accept-button {
    min-width: 95px;

    padding: 10px 18px;

    background-color: #f0ca00;

    border: 1px solid #f0ca00;
    border-radius: 6px;

    color: #111111;

    font-size: 13px;
    font-weight: 700;

    cursor: pointer;
}

.cookie-accept-button:hover {
    background-color: #e2be00;
    border-color: #e2be00;
}


/* MOBILE */

@media (max-width: 768px) {

    .cookie-banner-inner {
        flex-direction: column;
        align-items: flex-start;

        gap: 14px;
    }

    .cookie-banner-actions {
        width: 100%;

        justify-content: space-between;
    }

}

/* ========================================
   TERMS PAGE
======================================== */

.terms-page {
    max-width: 900px;

    margin: 0 auto;

    padding-bottom: 30px;
}

.terms-content {
    margin-top: 20px;
}

.terms-section {
    padding: 26px 0;

    border-bottom: 1px solid #e2e2e2;
}

.terms-section:first-child {
    border-top: 1px solid #e2e2e2;
}

.terms-section h2 {
    margin-bottom: 14px;

    color: #111111;

    font-size: 21px;
    font-weight: 700;
}

.terms-section p {
    margin-bottom: 12px;

    color: #555555;

    font-size: 15px;
    line-height: 1.75;
}

.terms-section p:last-child {
    margin-bottom: 0;
}

.terms-contact-link {
    display: inline-block;

    margin-top: 10px;

    padding: 10px 18px;

    background-color: #f5f5f5;

    border: 1px solid #dddddd;
    border-radius: 6px;

    color: #111111;

    font-size: 14px;
    font-weight: 600;

    text-decoration: none;
}

.terms-contact-link:hover {
    background-color: #eeeeee;

    color: #111111;
}

/* ========================================
   PARTS PAGE
======================================== */

.parts-page {
    padding-bottom: 30px;
}


/* HERO */

.parts-hero {
    max-width: 900px;

    margin: 0 auto 65px;
}

.parts-hero .lead {
    max-width: 780px;

    margin: 0 auto;

    line-height: 1.7;
}

.parts-hero-action {
    margin-top: 28px;
}


/* INTRO */

.parts-intro {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 50px;

    align-items: end;

    margin-bottom: 35px;
}

.parts-intro h2 {
    margin: 0;

    color: #111111;

    font-size: 30px;
    font-weight: 700;
}

.parts-intro > p {
    margin: 0;

    color: #666666;

    line-height: 1.7;
}


/* CATEGORIES */

.parts-category-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    gap: 18px;

    margin-bottom: 75px;
}

.parts-category-card {
    min-height: 180px;

    padding: 26px;

    background-color: #ffffff;

    border: 1px solid #dddddd;
    border-radius: 8px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.parts-category-card:hover {
    transform: translateY(-3px);

    border-color: #c8c8c8;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}

.parts-category-card h3 {
    margin-bottom: 12px;

    color: #111111;

    font-size: 18px;
    font-weight: 700;
}

.parts-category-card p {
    margin: 0;

    color: #666666;

    font-size: 14px;
    line-height: 1.65;
}


/* REQUEST INFORMATION */

.parts-request-info {
    margin-bottom: 75px;

    padding: 40px;

    background-color: #f5f5f5;

    border: 1px solid #e0e0e0;
    border-radius: 8px;
}

.parts-request-heading {
    max-width: 760px;

    margin-bottom: 32px;
}

.parts-request-heading h2 {
    margin-bottom: 10px;

    color: #111111;

    font-size: 29px;
    font-weight: 700;
}

.parts-request-heading > p:last-child {
    margin: 0;

    color: #666666;

    line-height: 1.7;
}

.parts-info-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 18px;
}

.parts-info-item {
    display: flex;

    gap: 18px;

    padding: 22px;

    background-color: #ffffff;

    border: 1px solid #dddddd;
    border-radius: 7px;
}

.parts-info-number {
    flex-shrink: 0;

    color: #111111;

    font-size: 13px;
    font-weight: 800;
}

.parts-info-item h3 {
    margin-bottom: 7px;

    color: #111111;

    font-size: 16px;
    font-weight: 700;
}

.parts-info-item p {
    margin: 0;

    color: #666666;

    font-size: 14px;
    line-height: 1.6;
}


/* OEM / AFTERMARKET */

.parts-types {
    margin-bottom: 75px;
}

.parts-types > div:first-child {
    max-width: 760px;

    margin-bottom: 28px;
}

.parts-types h2 {
    margin-bottom: 10px;

    color: #111111;

    font-size: 29px;
    font-weight: 700;
}

.parts-types > div:first-child > p:last-child {
    margin: 0;

    color: #666666;

    line-height: 1.7;
}

.parts-type-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.parts-type-card {
    padding: 28px;

    background-color: #ffffff;

    border: 1px solid #dddddd;
    border-radius: 8px;
}

.parts-type-card h3 {
    margin-bottom: 10px;

    color: #111111;

    font-size: 19px;
    font-weight: 700;
}

.parts-type-card p {
    margin: 0;

    color: #666666;

    font-size: 14px;
    line-height: 1.65;
}


/* FINAL REQUEST */

.parts-final-request {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 36px;

    background-color: #f5f5f5;

    border: 1px solid #dddddd;
    border-radius: 8px;
}

.parts-final-request h2 {
    margin-bottom: 10px;

    color: #111111;

    font-size: 28px;
    font-weight: 700;
}

.parts-final-request p {
    max-width: 680px;

    margin: 0;

    color: #666666;

    line-height: 1.7;
}

.parts-final-action {
    flex-shrink: 0;
}


/* RESPONSIVE */

@media (max-width: 1100px) {

    .parts-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 768px) {

    .parts-intro {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .parts-category-grid {
        grid-template-columns: 1fr;
    }

    .parts-info-grid {
        grid-template-columns: 1fr;
    }

    .parts-type-grid {
        grid-template-columns: 1fr;
    }

    .parts-request-info {
        padding: 28px 20px;
    }

    .parts-final-request {
        align-items: flex-start;
        flex-direction: column;

        padding: 28px 22px;
    }

}

/* ========================================
   PARTS - IMAGE CATEGORIES
======================================== */

.parts-categories {
    margin-bottom: 70px;
}

.parts-section-heading {
    max-width: 760px;
    margin-bottom: 30px;
}

.parts-section-heading h2 {
    margin-bottom: 10px;
    color: #111;
    font-size: 30px;
    font-weight: 700;
}

.parts-section-heading > p:last-child {
    margin-bottom: 0;
    color: #666;
    line-height: 1.7;
}


/* CATEGORY GRID */

.parts-category-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}


/* CATEGORY CARD */

.parts-category-card {
    overflow: hidden;

    background-color: #fff;

    border: 1px solid #ddd;
    border-radius: 8px;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.parts-category-card:hover {
    transform: translateY(-3px);

    border-color: #c8c8c8;

    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.07);
}


/* IMAGE */

.parts-category-image {
    width: 100%;
    height: 210px;

    overflow: hidden;

    background-color: #f5f5f5;

    border-bottom: 1px solid #e2e2e2;
}

.parts-category-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;
    padding: 12px;
    background-color: #ffffff;

    transition: transform 0.3s ease;
}

.parts-category-card:hover .parts-category-image img {
    transform: scale(1.03);
}


/* CARD TEXT */

.parts-category-content {
    padding: 22px;
}

.parts-category-content h3 {
    margin-bottom: 10px;

    color: #111;

    font-size: 18px;
    font-weight: 700;
}

.parts-category-content p {
    margin: 0;

    color: #666;

    font-size: 14px;
    line-height: 1.65;
}


/* NOT A COMPLETE CATALOG */

.parts-not-catalog {
    margin-bottom: 70px;

    padding: 35px;

    background-color: #f5f5f5;

    border: 1px solid #ddd;
    border-left: 5px solid #f4c400;
    border-radius: 8px;
}

.parts-not-catalog h2 {
    margin-bottom: 12px;

    color: #111;

    font-size: 28px;
    font-weight: 700;
}

.parts-not-catalog p {
    max-width: 850px;

    margin-bottom: 10px;

    color: #666;

    line-height: 1.7;
}

.parts-not-catalog p:last-child {
    margin-bottom: 0;
}


/* TABLET */

@media (max-width: 1100px) {

    .parts-category-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* MOBILE */

@media (max-width: 600px) {

    .parts-category-grid {
        grid-template-columns: 1fr;
    }

    .parts-category-image {
        height: 230px;
    }

    .parts-not-catalog {
        padding: 26px 20px;
    }

}

/* ========================================
   HOME PAGE
======================================== */

.home-page {
    padding-bottom: 20px;
}


/* ========================================
   HERO
======================================== */

.home-hero {
    margin-bottom: 75px;
}

.home-hero-image {
    position: relative;

    min-height: 560px;

    overflow: hidden;

    border-radius: 10px;

    background-color: #222;
}

.home-hero-image > img {
    position: absolute;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.home-hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.28) 0%,
            rgba(0, 0, 0, 0.14) 43%,
            rgba(0, 0, 0, 0.07) 75%,
            rgba(0, 0, 0, 0.00) 100%
        );
}

.home-hero-content {
    position: relative;
    z-index: 2;

    display: flex;
    flex-direction: column;
    justify-content: center;

    max-width: 680px;
    min-height: 560px;

    padding: 65px;
}

.home-hero-kicker {
    margin-bottom: 14px;

    color: #f4c400;

    font-size: 13px;
    font-weight: 800;

    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.home-hero-content h1 {
    margin-bottom: 20px;

    color: #fff;

    font-size: clamp(42px, 5vw, 68px);
    font-weight: 750;

    line-height: 1.05;
}

.home-hero-content > p:not(.home-hero-kicker) {
    max-width: 610px;

    margin-bottom: 28px;

    color: rgba(255, 255, 255, 0.84);

    font-size: 17px;
    line-height: 1.7;
}

.home-primary-button {
    display: inline-flex;

    width: fit-content;

    padding: 13px 22px;

    background-color: #f4c400;

    border: 1px solid #f4c400;
    border-radius: 6px;

    color: #111;

    font-size: 14px;
    font-weight: 750;

    text-decoration: none;

    transition:
        background-color 0.2s ease,
        transform 0.2s ease;
}

.home-primary-button:hover {
    background-color: #e4b700;

    color: #111;

    transform: translateY(-1px);
}


/* ========================================
   INTRO
======================================== */

.home-intro {
    display: grid;

    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);

    gap: 70px;

    margin-bottom: 75px;
}

.home-intro-title h2 {
    max-width: 520px;

    margin: 0;

    color: #111;

    font-size: 34px;
    font-weight: 700;

    line-height: 1.2;
}

.home-intro-text {
    padding-top: 24px;
}

.home-intro-text p {
    margin-bottom: 15px;

    color: #666;

    line-height: 1.75;
}

.home-intro-text p:last-child {
    margin-bottom: 0;
}


/* ========================================
   EQUIPMENT GALLERY
======================================== */

.home-equipment-gallery {
    display: grid;

    grid-template-columns: minmax(0, 1.55fr) minmax(280px, 0.75fr);

    gap: 20px;

    height: 570px;

    margin-bottom: 70px;
}

.home-gallery-large,
.home-gallery-small {
    overflow: hidden;

    border-radius: 8px;

    background-color: #ffffff;
}

.home-gallery-large img,
.home-gallery-small img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: contain;

    transition: transform 0.35s ease;
}

.home-gallery-large:hover img,
.home-gallery-small:hover img {
    transform: scale(1.025);
}

.home-gallery-side {
    display: grid;

    grid-template-rows: 1fr 1fr;

    gap: 18px;

    min-height: 0;
}


/* ========================================
   WORLD MAP
======================================== */

.home-worldwide {
    margin-bottom: 85px;
}

.home-worldwide-heading {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 50px;

    align-items: end;

    margin-bottom: 28px;
}

.home-worldwide-heading h2 {
    margin: 0;

    color: #111;

    font-size: 34px;
    font-weight: 700;
}

.home-worldwide-heading > p {
    margin: 0;

    color: #666;

    line-height: 1.7;
}

.home-map {
    overflow: hidden;

    height: 500px;

    background-color: #eee;

    border: 1px solid #ddd;
    border-radius: 8px 8px 0 0;
}

.home-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}

.home-map-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    padding: 22px 25px;

    background-color: #f5f5f5;

    border: 1px solid #ddd;
    border-top: 0;
    border-radius: 0 0 8px 8px;
}

.home-map-footer > div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.home-map-footer strong {
    color: #111;

    font-size: 14px;
}

.home-map-footer span {
    color: #777;

    font-size: 13px;
}

.home-map-footer a {
    flex-shrink: 0;

    color: #222;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.home-map-footer a:hover {
    text-decoration: underline;
}


/* ========================================
   PROCESS
======================================== */

.home-process {
    margin-bottom: 85px;
}

.home-process-heading {
    margin-bottom: 30px;
}

.home-process-heading h2 {
    margin: 0;

    color: #111;

    font-size: 34px;
    font-weight: 700;
}

.home-process-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
}

.home-process-item {
    padding: 30px;

    border-right: 1px solid #ddd;
}

.home-process-item:last-child {
    border-right: none;
}

.home-process-item > span {
    display: block;

    margin-bottom: 35px;

    color: #b99300;

    font-size: 13px;
    font-weight: 800;
}

.home-process-item h3 {
    margin-bottom: 10px;

    color: #111;

    font-size: 17px;
    font-weight: 700;
}

.home-process-item p {
    margin: 0;

    color: #666;

    font-size: 14px;
    line-height: 1.65;
}


/* ========================================
   OEM / AFTERMARKET
======================================== */

.home-supply-options {
    display: grid;

    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    min-height: 440px;

    margin-bottom: 85px;

    overflow: hidden;

    background-color: #f5f5f5;

    border: 1px solid #ddd;
    border-radius: 8px;
}

.home-supply-image {
    min-height: 440px;
}

.home-supply-image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}

.home-supply-content {
    display: flex;
    flex-direction: column;
    justify-content: center;

    padding: 55px;
}

.home-supply-content h2 {
    margin-bottom: 18px;

    color: #111;

    font-size: 32px;
    font-weight: 700;
}

.home-supply-content > p {
    margin-bottom: 14px;

    color: #666;

    line-height: 1.7;
}

.home-text-link {
    width: fit-content;

    margin-top: 10px;

    color: #111;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.home-text-link:hover {
    text-decoration: underline;
}


/* ========================================
   FINAL CTA
======================================== */

.home-final-cta {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 38px;

    background-color: #f5f5f5;

    border: 1px solid #ddd;
    border-left: 5px solid #f4c400;
    border-radius: 8px;
}

.home-final-cta h2 {
    margin-bottom: 10px;

    color: #111;

    font-size: 30px;
    font-weight: 700;
}

.home-final-cta p {
    max-width: 670px;

    margin: 0;

    color: #666;

    line-height: 1.7;
}

.home-final-action {
    flex-shrink: 0;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 1000px) {

    .home-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .home-process-item:nth-child(2) {
        border-right: none;
    }

    .home-process-item:nth-child(-n+2) {
        border-bottom: 1px solid #ddd;
    }

}


@media (max-width: 768px) {

    .home-hero-image,
    .home-hero-content {
        min-height: 510px;
    }

    .home-hero-content {
        padding: 35px 25px;
    }

    .home-hero-overlay {
        background: rgba(0, 0, 0, 0.62);
    }

    .home-intro {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .home-intro-text {
        padding-top: 0;
    }

    .home-equipment-gallery {
        grid-template-columns: 1fr;

        height: auto;
    }

    .home-gallery-large {
        height: 350px;
    }

    .home-gallery-side {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: none;
    }

    .home-gallery-small {
        height: 220px;
    }

    .home-worldwide-heading {
        grid-template-columns: 1fr;

        gap: 15px;
    }

    .home-map {
        height: 400px;
    }

    .home-map-footer {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-supply-options {
        grid-template-columns: 1fr;
    }

    .home-supply-image {
        min-height: 320px;
    }

    .home-supply-content {
        padding: 35px 25px;
    }

    .home-final-cta {
        align-items: flex-start;
        flex-direction: column;

        padding: 30px 24px;
    }

}


@media (max-width: 550px) {

    .home-gallery-side {
        grid-template-columns: 1fr;
    }

    .home-process-grid {
        grid-template-columns: 1fr;
    }

    .home-process-item {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .home-process-item:last-child {
        border-bottom: none;
    }

}

/* ========================================
   BRANDS PAGE
======================================== */

.brands-page {
    padding-bottom: 25px;
}


/* HERO */

.brands-hero {
    max-width: 820px;

    margin-bottom: 50px;
}

.brands-hero h1 {
    margin-bottom: 16px;

    color: #111;

    font-size: 42px;
    font-weight: 700;
}

.brands-hero > p:last-child {
    max-width: 720px;

    margin: 0;

    color: #666;

    font-size: 16px;
    line-height: 1.75;
}


/* ========================================
   BRAND GRID
======================================== */

.brands-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;

    margin-bottom: 75px;
}


/* ========================================
   BRAND CARD
======================================== */
.brand-machine-image {
    display: block;

    width: 100%;
    height: 270px;

    object-fit: cover;
    object-position: center;

    background-color: #f3f3f3;
}

.brand-card {
    overflow: hidden;

    background-color: #fff;

    border: 1px solid #ddd;
    border-radius: 9px;

    transition:
        transform 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.brand-card:hover {
    transform: translateY(-3px);

    border-color: #c8c8c8;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.07);
}


/* EQUIPMENT PHOTO */

.brand-card-image {
    height: 270px;

    overflow: hidden;

    background-color: #eee;

    border-bottom: 1px solid #ddd;
}

.brand-card-image > img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.brand-card:hover .brand-card-image > img {
    transform: scale(1.025);
}


/* ========================================
   CARD FOOTER
======================================== */

.brand-card-footer {
    display: flex;

    align-items: center;

    min-height: 86px;

    padding: 22px 24px;

    background-color: #fff;
}


/* BRAND NAME */

.brand-card-footer h3 {
    margin: 0;

    color: #111;

    font-size: 24px;
    font-weight: 700;
}


/* ========================================
   OTHER MANUFACTURERS
======================================== */

.brands-more {
    margin-bottom: 65px;

    padding: 36px;

    background-color: #f5f5f5;

    border: 1px solid #ddd;
    border-left: 5px solid #f4c400;
    border-radius: 8px;
}

.brands-more > div {
    max-width: 800px;
}

.brands-more h2 {
    margin-bottom: 12px;

    color: #111;

    font-size: 29px;
    font-weight: 700;
}

.brands-more p:last-child {
    margin: 0;

    color: #666;

    line-height: 1.7;
}


/* ========================================
   FINAL CTA
======================================== */

.brands-final {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 36px;

    background-color: #f5f5f5;

    border: 1px solid #ddd;
    border-radius: 8px;
}

.brands-final h2 {
    margin-bottom: 10px;

    color: #111;

    font-size: 28px;
    font-weight: 700;
}

.brands-final p {
    max-width: 650px;

    margin: 0;

    color: #666;

    line-height: 1.7;
}

.brands-final-action {
    flex-shrink: 0;
}


/* ========================================
   TABLET
======================================== */

@media (max-width: 1050px) {

    .brands-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


/* ========================================
   MOBILE
======================================== */

@media (max-width: 650px) {

    .brands-hero h1 {
        font-size: 34px;
    }

    .brands-grid {
        grid-template-columns: 1fr;
    }

    .brand-card-image {
        height: 250px;
    }

    .brands-more {
        padding: 28px 22px;
    }

    .brands-final {
        align-items: flex-start;
        flex-direction: column;

        padding: 28px 22px;
    }

}

/* ========================================
   REQUEST A QUOTE PAGE
======================================== */

.quote-page {
    max-width: 1180px;

    margin: 0 auto;

    padding: 10px 0 45px;
}


/* ========================================
   HEADER
======================================== */

.quote-page-header {
    max-width: 760px;

    margin-bottom: 50px;
}

.quote-page-header h1 {
    margin: 8px 0 16px;

    color: #111;

    font-size: 46px;
    font-weight: 750;
    line-height: 1.08;
}

.quote-page-header > p:last-child {
    max-width: 700px;

    margin: 0;

    color: #676767;

    font-size: 16px;
    line-height: 1.75;
}


/* ========================================
   PAGE LAYOUT
======================================== */

.quote-page-layout {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 310px;

    gap: 34px;

    align-items: start;
}


/* ========================================
   FORM WRAPPER
======================================== */

.quote-form-wrapper {
    overflow: hidden;

    background-color: #fff;

    border: 1px solid #dedede;
    border-radius: 14px;

    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.045);
}

.quote-form {
    width: 100%;
}


/* ========================================
   FORM SECTIONS
======================================== */

.quote-form-section {
    padding: 34px 38px;

    border-bottom: 1px solid #e5e5e5;
}

.quote-form-section:last-of-type {
    border-bottom: none;
}

.quote-form-section-heading {
    display: flex;

    align-items: flex-start;

    gap: 18px;

    margin-bottom: 27px;
}

.quote-form-section-heading > span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 42px;
    height: 42px;

    flex-shrink: 0;

    background-color: #f4c400;

    color: #111;

    border-radius: 50%;

    font-size: 13px;
    font-weight: 800;
}

.quote-form-section-heading h2 {
    margin: 1px 0 6px;

    color: #111;

    font-size: 22px;
    font-weight: 700;
}

.quote-form-section-heading p {
    margin: 0;

    color: #777;

    font-size: 14px;
    line-height: 1.55;
}


/* ========================================
   GRID
======================================== */

.quote-form-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.quote-field-full {
    grid-column: 1 / -1;
}


/* ========================================
   FIELDS
======================================== */

.quote-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.quote-field label {
    color: #222;

    font-size: 14px;
    font-weight: 650;
}

.quote-field input,
.quote-field textarea,
.quote-field select {
    width: 100%;

    padding: 13px 14px;

    background-color: #fafafa;

    color: #111;

    border: 1px solid #d5d5d5;
    border-radius: 8px;

    outline: none;

    font-family: inherit;
    font-size: 15px;

    transition:
        border-color 0.18s ease,
        background-color 0.18s ease,
        box-shadow 0.18s ease;
}

.quote-field input::placeholder,
.quote-field textarea::placeholder {
    color: #999;
}

.quote-field input:hover,
.quote-field textarea:hover,
.quote-field select:hover {
    border-color: #bebebe;
}

.quote-field input:focus,
.quote-field textarea:focus,
.quote-field select:focus {
    background-color: #fff;

    border-color: #b99700;

    box-shadow: 0 0 0 3px rgba(244, 196, 0, 0.14);
}

.quote-field textarea {
    min-height: 145px;

    resize: vertical;
}


/* ========================================
   FILE UPLOAD
======================================== */

.quote-upload-box {
    padding: 22px;

    background-color: #fafafa;

    border: 1px dashed #c7c7c7;
    border-radius: 10px;
}

.quote-upload-box input[type="file"] {
    padding: 10px;

    background-color: #fff;

    border-style: solid;
}

.quote-upload-box p {
    margin: 13px 0 5px;

    color: #666;

    font-size: 14px;
    line-height: 1.55;
}

.quote-upload-box span {
    color: #999;

    font-size: 12px;
}


/* ========================================
   SUBMIT AREA
======================================== */

.quote-form-submit {
    display: flex;

    align-items: center;

    gap: 22px;

    padding: 30px 38px;

    background-color: #f6f6f6;

    border-top: 1px solid #e0e0e0;
}

.quote-form-submit button {
    min-width: 170px;

    padding: 13px 22px;

    background-color: #f4c400;

    color: #111;

    border: none;
    border-radius: 7px;

    cursor: pointer;

    font-family: inherit;
    font-size: 15px;
    font-weight: 750;

    transition:
        transform 0.15s ease,
        background-color 0.15s ease;
}

.quote-form-submit button:hover {
    background-color: #ddb300;

    transform: translateY(-1px);
}

.quote-form-submit button:active {
    transform: translateY(0);
}

.quote-form-submit p {
    max-width: 470px;

    margin: 0;

    color: #737373;

    font-size: 13px;
    line-height: 1.55;
}


/* ========================================
   SIDEBAR
======================================== */

.quote-page-sidebar {
    position: sticky;

    top: 100px;

    display: flex;

    flex-direction: column;

    gap: 20px;
}

.quote-sidebar-box,
.quote-sidebar-note {
    padding: 27px;

    background-color: #f7f7f7;

    border: 1px solid #dedede;
    border-radius: 12px;
}

.quote-sidebar-box {
    border-top: 4px solid #f4c400;
}

.quote-sidebar-box h2 {
    margin: 7px 0 18px;

    color: #111;

    font-size: 21px;
    font-weight: 700;
}

.quote-sidebar-box ul {
    display: grid;

    gap: 11px;

    margin: 0;
    padding: 0;

    list-style: none;
}

.quote-sidebar-box li {
    position: relative;

    padding-left: 20px;

    color: #555;

    font-size: 14px;
    line-height: 1.5;
}

.quote-sidebar-box li::before {
    content: "";

    position: absolute;

    top: 8px;
    left: 0;

    width: 7px;
    height: 7px;

    background-color: #f4c400;

    border-radius: 50%;
}

.quote-sidebar-note h3 {
    margin: 0 0 10px;

    color: #111;

    font-size: 18px;
    font-weight: 700;
}

.quote-sidebar-note p {
    margin: 0;

    color: #666;

    font-size: 14px;
    line-height: 1.65;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 980px) {

    .quote-page-layout {
        grid-template-columns: 1fr;
    }

    .quote-page-sidebar {
        position: static;

        display: grid;

        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 700px) {

    .quote-page-header h1 {
        font-size: 36px;
    }

    .quote-form-section {
        padding: 28px 22px;
    }

    .quote-form-grid {
        grid-template-columns: 1fr;
    }

    .quote-field-full {
        grid-column: auto;
    }

    .quote-form-submit {
        align-items: flex-start;
        flex-direction: column;

        padding: 26px 22px;
    }

    .quote-page-sidebar {
        grid-template-columns: 1fr;
    }

    .quote-form-submit button {
        width: 100%;
    }

}


@media (max-width: 450px) {

    .quote-page-header h1 {
        font-size: 31px;
    }

    .quote-form-section-heading {
        gap: 13px;
    }

    .quote-form-section-heading > span {
        width: 36px;
        height: 36px;
    }

    .quote-form-section-heading h2 {
        font-size: 19px;
    }

}

/* ========================================
   MY REQUESTS
======================================== */

.my-requests-page {
    max-width: 1100px;

    margin: 0 auto;

    padding: 10px 0 50px;
}


/* HEADER */

.my-requests-header {
    max-width: 720px;

    margin-bottom: 42px;
}

.my-requests-header h1 {
    margin: 7px 0 13px;

    color: #111;

    font-size: 44px;
    font-weight: 750;
    line-height: 1.1;
}

.my-requests-header > p:last-child {
    margin: 0;

    color: #696969;

    font-size: 16px;
    line-height: 1.7;
}


/* LIST */

.my-requests-list {
    display: grid;

    gap: 20px;
}


/* CARD */

.request-card {
    overflow: hidden;

    background-color: #fff;

    border: 1px solid #dedede;
    border-radius: 12px;

    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.035);

    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        box-shadow 0.18s ease;
}

.request-card:hover {
    transform: translateY(-2px);

    border-color: #c9c9c9;

    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.055);
}


/* TOP */

.request-card-top {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 20px;

    padding: 24px 26px;

    border-bottom: 1px solid #e8e8e8;
}

.request-number {
    margin: 0 0 6px;

    color: #888;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.request-card-top h2 {
    margin: 0;

    color: #111;

    font-size: 21px;
    font-weight: 700;
}


/* STATUS */

.request-status {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 31px;

    padding: 6px 12px;

    flex-shrink: 0;

    background-color: #f1f1f1;

    color: #333;

    border: 1px solid #ddd;
    border-radius: 999px;

    font-size: 12px;
    font-weight: 700;
}

.request-status-new {
    background-color: #fff8cf;

    border-color: #ebd768;
}

.request-status-in_progress {
    background-color: #f3f3f3;
}

.request-status-quoted {
    background-color: #fff3b8;

    border-color: #e4c743;
}

.request-status-completed {
    background-color: #ededed;
}


/* DETAILS */

.request-card-details {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    padding: 22px 26px;
}

.request-detail-item {
    min-width: 0;

    padding: 0 20px;

    border-right: 1px solid #e5e5e5;
}

.request-detail-item:first-child {
    padding-left: 0;
}

.request-detail-item:last-child {
    padding-right: 0;

    border-right: none;
}

.request-detail-item span {
    display: block;

    margin-bottom: 5px;

    color: #888;

    font-size: 12px;
}

.request-detail-item strong {
    display: block;

    overflow: hidden;

    color: #222;

    font-size: 14px;
    font-weight: 650;

    text-overflow: ellipsis;
    white-space: nowrap;
}


/* BOTTOM */

.request-card-bottom {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    padding: 15px 26px;

    background-color: #f7f7f7;

    border-top: 1px solid #e5e5e5;
}

.request-card-bottom > span {
    color: #777;

    font-size: 13px;
}

.request-card-bottom a {
    display: inline-flex;

    align-items: center;

    gap: 8px;

    color: #111;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.request-card-bottom a:hover {
    text-decoration: underline;
}

.request-card-bottom a span {
    color: #c8a200;
}


/* ========================================
   EMPTY STATE
======================================== */

.my-requests-empty {
    max-width: 650px;

    margin: 25px auto 0;
    padding: 60px 35px;

    background-color: #f7f7f7;

    text-align: center;

    border: 1px solid #dedede;
    border-radius: 14px;
}

.my-requests-empty-icon {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 54px;
    height: 54px;

    margin: 0 auto 22px;

    background-color: #f4c400;

    color: #111;

    border-radius: 50%;

    font-size: 29px;
    font-weight: 500;
}

.my-requests-empty h2 {
    margin: 0 0 10px;

    color: #111;

    font-size: 25px;
    font-weight: 700;
}

.my-requests-empty p {
    max-width: 500px;

    margin: 0 auto 24px;

    color: #6c6c6c;

    line-height: 1.7;
}

.my-requests-empty-button {
    display: inline-block;

    padding: 12px 20px;

    background-color: #f4c400;

    color: #111;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 750;

    text-decoration: none;
}

.my-requests-empty-button:hover {
    background-color: #ddb300;

    color: #111;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 800px) {

    .request-card-details {
        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 22px 0;
    }

    .request-detail-item {
        border-right: none;
    }

    .request-detail-item:nth-child(odd) {
        padding-left: 0;
    }

}


@media (max-width: 550px) {

    .my-requests-header h1 {
        font-size: 34px;
    }

    .request-card-top {
        align-items: flex-start;
        flex-direction: column;
    }

    .request-card-details {
        grid-template-columns: 1fr;

        gap: 17px;
    }

    .request-detail-item {
        padding: 0;

        border: none;
    }

    .request-card-bottom {
        align-items: flex-start;
        flex-direction: column;
    }

}

/* ========================================
   REQUEST DETAIL
======================================== */

.request-detail-page {
    max-width: 1120px;

    margin: 0 auto;

    padding: 5px 0 50px;
}


/* BACK */

.request-detail-back {
    margin-bottom: 25px;
}

.request-detail-back a {
    color: #666;

    font-size: 14px;
    font-weight: 650;

    text-decoration: none;
}

.request-detail-back a:hover {
    color: #111;
}


/* ========================================
   HEADER
======================================== */

.request-detail-header {
    display: flex;

    align-items: flex-start;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 32px;
}

.request-detail-header h1 {
    margin: 6px 0 9px;

    color: #111;

    font-size: 40px;
    font-weight: 750;
    line-height: 1.1;
}

.request-detail-header > div:first-child > p:last-child {
    margin: 0;

    color: #777;

    font-size: 14px;
}


/* ========================================
   LAYOUT
======================================== */

.request-detail-layout {
    display: grid;

    grid-template-columns: minmax(0, 1fr) 300px;

    gap: 30px;

    align-items: start;
}


/* MAIN */

.request-detail-main {
    overflow: hidden;

    background-color: #fff;

    border: 1px solid #dedede;
    border-radius: 13px;

    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.035);
}


/* ========================================
   SECTIONS
======================================== */

.request-detail-section {
    padding: 30px 34px;

    border-bottom: 1px solid #e5e5e5;
}

.request-detail-section:last-child {
    border-bottom: none;
}

.request-detail-section-heading {
    display: flex;

    align-items: center;

    gap: 14px;

    margin-bottom: 23px;
}

.request-detail-section-heading > span {
    display: flex;

    align-items: center;
    justify-content: center;

    width: 37px;
    height: 37px;

    flex-shrink: 0;

    background-color: #f4c400;

    color: #111;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 800;
}

.request-detail-section-heading h2 {
    margin: 0;

    color: #111;

    font-size: 20px;
    font-weight: 700;
}


/* ========================================
   DETAILS
======================================== */

.request-detail-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 17px;
}

.request-detail-field {
    padding: 17px 18px;

    background-color: #f7f7f7;

    border: 1px solid #e2e2e2;
    border-radius: 8px;
}

.request-detail-field-full {
    grid-column: 1 / -1;
}

.request-detail-field span {
    display: block;

    margin-bottom: 5px;

    color: #888;

    font-size: 12px;
}

.request-detail-field strong {
    display: block;

    color: #222;

    font-size: 14px;
    font-weight: 650;

    overflow-wrap: anywhere;
}


/* ========================================
   MESSAGE
======================================== */

.request-detail-message {
    padding: 20px;

    background-color: #f7f7f7;

    border: 1px solid #e2e2e2;
    border-radius: 8px;
}

.request-detail-message p {
    margin: 0;

    color: #555;

    line-height: 1.7;
}

.request-detail-empty {
    margin: 0;

    color: #888;

    font-size: 14px;
}


/* ========================================
   ATTACHMENTS
======================================== */

.request-attachments-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 13px;
}

.request-attachment {
    display: block;

    height: 145px;

    overflow: hidden;

    background-color: #eee;

    border: 1px solid #ddd;
    border-radius: 8px;
}

.request-attachment img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;

    transition: transform 0.25s ease;
}

.request-attachment:hover img {
    transform: scale(1.035);
}


/* ========================================
   SIDEBAR
======================================== */

.request-detail-sidebar {
    position: sticky;

    top: 100px;

    display: grid;

    gap: 19px;
}

.request-detail-sidebox {
    padding: 25px;

    background-color: #f7f7f7;

    border: 1px solid #ddd;
    border-radius: 11px;
}

.request-detail-sidebox:first-child {
    border-top: 4px solid #f4c400;
}

.request-detail-sidebox h2 {
    margin: 6px 0 18px;

    color: #111;

    font-size: 20px;
    font-weight: 700;
}


/* CONTACT */

.request-detail-contact {
    display: grid;

    gap: 15px;
}

.request-detail-contact > div {
    padding-bottom: 13px;

    border-bottom: 1px solid #ddd;
}

.request-detail-contact > div:last-child {
    padding-bottom: 0;

    border-bottom: none;
}

.request-detail-contact span {
    display: block;

    margin-bottom: 4px;

    color: #888;

    font-size: 12px;
}

.request-detail-contact strong {
    display: block;

    color: #333;

    font-size: 14px;
    font-weight: 650;

    overflow-wrap: anywhere;
}


/* STATUS BOX */

.request-detail-status-box p:last-child {
    margin-bottom: 0;

    color: #666;

    font-size: 14px;
    line-height: 1.65;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .request-detail-layout {
        grid-template-columns: 1fr;
    }

    .request-detail-sidebar {
        position: static;

        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 650px) {

    .request-detail-header {
        flex-direction: column;

        gap: 16px;
    }

    .request-detail-header h1 {
        font-size: 32px;
    }

    .request-detail-section {
        padding: 25px 21px;
    }

    .request-detail-grid {
        grid-template-columns: 1fr;
    }

    .request-detail-field-full {
        grid-column: auto;
    }

    .request-attachments-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .request-detail-sidebar {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 430px) {

    .request-attachments-grid {
        grid-template-columns: 1fr;
    }

    .request-attachment {
        height: 190px;
    }

}

/* ========================================
   STATIC WORLD SUPPLY MAP
======================================== */

.home-worldwide-layout {
    display: grid;

    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.55fr);

    gap: 35px;

    align-items: stretch;
}


/* MAP */

.home-static-map {
    min-height: 470px;

    overflow: hidden;

    background-color: #f4f4f4;

    border: 1px solid #ddd;
    border-radius: 10px;
}

.home-static-map img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
}


/* REGIONS */

.home-regions {
    display: grid;

    align-content: start;

    gap: 13px;
}

.home-region-item {
    display: flex;

    gap: 13px;

    padding: 16px 17px;

    background-color: #f7f7f7;

    border: 1px solid #dfdfdf;
    border-radius: 8px;
}

.home-region-item > span {
    width: 9px;
    height: 9px;

    margin-top: 6px;

    flex-shrink: 0;

    background-color: #f4c400;

    border-radius: 50%;
}

.home-region-item strong {
    display: block;

    margin-bottom: 4px;

    color: #111;

    font-size: 14px;
    font-weight: 700;
}

.home-region-item p {
    margin: 0;

    color: #727272;

    font-size: 13px;
    line-height: 1.55;
}


/* BOTTOM */

.home-map-footer {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 25px;

    margin-top: 20px;
    padding: 18px 20px;

    background-color: #f5f5f5;

    border: 1px solid #ddd;
    border-radius: 8px;
}

.home-map-footer p {
    margin: 0;

    color: #666;

    font-size: 14px;
}

.home-map-footer a {
    flex-shrink: 0;

    color: #111;

    font-size: 14px;
    font-weight: 700;

    text-decoration: none;
}

.home-map-footer a:hover {
    text-decoration: underline;
}


/* RESPONSIVE */

@media (max-width: 950px) {

    .home-worldwide-layout {
        grid-template-columns: 1fr;
    }

    .home-static-map {
        min-height: 380px;
    }

    .home-regions {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 650px) {

    .home-static-map {
        min-height: 280px;
    }

    .home-regions {
        grid-template-columns: 1fr;
    }

    .home-map-footer {
        align-items: flex-start;
        flex-direction: column;
    }

}

/* ========================================
   CONTACTS PAGE
======================================== */

.contacts-page {
    max-width: 1160px;

    margin: 0 auto;

    padding: 10px 0 50px;
}


/* HEADER */

.contacts-header {
    max-width: 760px;

    margin-bottom: 48px;
}

.contacts-header h1 {
    margin: 7px 0 15px;

    color: #111;

    font-size: 44px;
    font-weight: 750;
    line-height: 1.1;
}

.contacts-header > p:last-child {
    margin: 0;

    color: #686868;

    font-size: 16px;
    line-height: 1.7;
}


/* ========================================
   LAYOUT
======================================== */

.contacts-layout {
    display: grid;

    grid-template-columns: 340px minmax(0, 1fr);

    gap: 32px;

    align-items: start;

    margin-bottom: 60px;
}


/* ========================================
   LEFT SIDE
======================================== */

.contacts-info {
    display: grid;

    gap: 22px;
}

.contacts-info-card,
.contacts-international {
    padding: 28px;

    background-color: #f7f7f7;

    border: 1px solid #dedede;
    border-radius: 12px;
}

.contacts-info-card {
    border-top: 4px solid #f4c400;
}

.contacts-info-card h2,
.contacts-international h2 {
    margin: 7px 0 20px;

    color: #111;

    font-size: 22px;
    font-weight: 700;
}


/* CONTACT LIST */

.contacts-info-list {
    display: grid;

    gap: 0;
}

.contacts-info-item {
    padding: 15px 0;

    border-bottom: 1px solid #ddd;
}

.contacts-info-item:first-child {
    padding-top: 0;
}

.contacts-info-item:last-child {
    padding-bottom: 0;

    border-bottom: none;
}

.contacts-info-label {
    display: block;

    margin-bottom: 5px;

    color: #888;

    font-size: 12px;
    font-weight: 650;
}

.contacts-info-item a,
.contacts-info-item strong {
    display: block;

    color: #222;

    font-size: 14px;
    font-weight: 650;

    text-decoration: none;
}

.contacts-info-item a:hover {
    text-decoration: underline;
}

.contacts-info-item small {
    display: block;

    margin-top: 3px;

    color: #777;

    font-size: 13px;
}


/* INTERNATIONAL */

.contacts-international p {
    margin: 0 0 12px;

    color: #666;

    font-size: 14px;
    line-height: 1.65;
}

.contacts-international p:last-child {
    margin-bottom: 0;
}


/* ========================================
   FORM
======================================== */

.contacts-form-wrapper {
    overflow: hidden;

    background-color: #fff;

    border: 1px solid #dedede;
    border-radius: 14px;

    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.04);
}

.contacts-form-heading {
    padding: 30px 34px 0;
}

.contacts-form-heading h2 {
    margin: 7px 0 8px;

    color: #111;

    font-size: 26px;
    font-weight: 700;
}

.contacts-form-heading > p:last-child {
    margin: 0;

    color: #777;

    font-size: 14px;
}


/* FORM */

.contacts-form {
    padding: 28px 34px 0;
}

.contacts-form-grid {
    display: grid;

    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 20px;
}

.contact-field {
    display: flex;

    flex-direction: column;

    gap: 8px;
}

.contact-field-full {
    grid-column: 1 / -1;
}

.contact-field label {
    color: #222;

    font-size: 14px;
    font-weight: 650;
}

.contact-field input,
.contact-field textarea {
    width: 100%;

    padding: 13px 14px;

    background-color: #fafafa;

    color: #111;

    border: 1px solid #d5d5d5;
    border-radius: 8px;

    outline: none;

    font-family: inherit;
    font-size: 15px;

    transition:
        border-color 0.18s ease,
        background-color 0.18s ease,
        box-shadow 0.18s ease;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
    color: #999;
}

.contact-field input:focus,
.contact-field textarea:focus {
    background-color: #fff;

    border-color: #b99700;

    box-shadow: 0 0 0 3px rgba(244, 196, 0, 0.14);
}

.contact-field textarea {
    min-height: 155px;

    resize: vertical;
}


/* SUBMIT */

.contacts-form-submit {
    display: flex;

    align-items: center;

    gap: 22px;

    margin: 30px -34px 0;
    padding: 26px 34px;

    background-color: #f6f6f6;

    border-top: 1px solid #e1e1e1;
}

.contacts-form-submit button {
    min-width: 150px;

    padding: 13px 22px;

    background-color: #f4c400;

    color: #111;

    border: none;
    border-radius: 7px;

    cursor: pointer;

    font-family: inherit;
    font-size: 14px;
    font-weight: 750;

    transition:
        background-color 0.16s ease,
        transform 0.16s ease;
}

.contacts-form-submit button:hover {
    background-color: #ddb300;

    transform: translateY(-1px);
}

.contacts-form-submit p {
    max-width: 450px;

    margin: 0;

    color: #747474;

    font-size: 13px;
    line-height: 1.55;
}


/* ========================================
   RFQ
======================================== */

.contacts-rfq {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 34px 36px;

    background-color: #f5f5f5;

    border: 1px solid #ddd;
    border-left: 5px solid #f4c400;
    border-radius: 10px;
}

.contacts-rfq > div {
    max-width: 700px;
}

.contacts-rfq h2 {
    margin: 6px 0 9px;

    color: #111;

    font-size: 25px;
    font-weight: 700;
}

.contacts-rfq p:last-child {
    margin: 0;

    color: #666;

    font-size: 14px;
    line-height: 1.65;
}

.contacts-rfq-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-width: 155px;

    padding: 13px 20px;

    flex-shrink: 0;

    background-color: #f4c400;

    color: #111;

    border-radius: 7px;

    font-size: 14px;
    font-weight: 750;

    text-decoration: none;
}

.contacts-rfq-button:hover {
    background-color: #ddb300;

    color: #111;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .contacts-layout {
        grid-template-columns: 1fr;
    }

    .contacts-info {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

}


@media (max-width: 650px) {

    .contacts-header h1 {
        font-size: 34px;
    }

    .contacts-info {
        grid-template-columns: 1fr;
    }

    .contacts-form-heading {
        padding: 26px 22px 0;
    }

    .contacts-form {
        padding: 25px 22px 0;
    }

    .contacts-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-field-full {
        grid-column: auto;
    }

    .contacts-form-submit {
        align-items: flex-start;
        flex-direction: column;

        margin: 27px -22px 0;
        padding: 24px 22px;
    }

    .contacts-form-submit button {
        width: 100%;
    }

    .contacts-rfq {
        align-items: flex-start;
        flex-direction: column;

        padding: 28px 23px;
    }

    .contacts-rfq-button {
        width: 100%;
    }

}

/* ========================================
   SHIPPING PAGE
======================================== */

.shipping-page {
    max-width: 1160px;

    margin: 0 auto;
    padding: 10px 0 50px;
}


/* HEADER */

.shipping-header {
    max-width: 800px;

    margin-bottom: 55px;
}

.shipping-header h1 {
    margin: 7px 0 16px;

    color: #111;

    font-size: 46px;
    font-weight: 750;
    line-height: 1.08;
}

.shipping-header > p:last-child {
    margin: 0;

    color: #676767;

    font-size: 16px;
    line-height: 1.75;
}


/* SECTION HEADING */

.shipping-section-heading {
    max-width: 760px;

    margin-bottom: 28px;
}

.shipping-section-heading h2 {
    margin: 6px 0 10px;

    color: #111;

    font-size: 30px;
    font-weight: 700;
}

.shipping-section-heading > p:last-child {
    margin: 0;

    color: #696969;

    line-height: 1.7;
}


/* ========================================
   MAP
======================================== */

.shipping-worldwide {
    margin-bottom: 70px;
}

.shipping-map {
    overflow: hidden;

    background-color: #f6f6f6;

    border: 1px solid #ddd;
    border-radius: 12px;
}

.shipping-map img {
    display: block;

    width: 100%;
    height: auto;
}

.shipping-map-note {
    margin: 14px 0 0;

    color: #858585;

    font-size: 12px;
    line-height: 1.6;
}


/* ========================================
   DESTINATIONS
======================================== */

.shipping-destinations {
    margin-bottom: 70px;
}

.shipping-destination-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 15px;
}

.shipping-destination {
    display: flex;

    gap: 13px;

    padding: 20px;

    background-color: #f7f7f7;

    border: 1px solid #dfdfdf;
    border-radius: 9px;
}

.shipping-destination > span {
    width: 9px;
    height: 9px;

    margin-top: 6px;

    flex-shrink: 0;

    background-color: #f4c400;

    border-radius: 50%;
}

.shipping-destination strong {
    display: block;

    margin-bottom: 5px;

    color: #111;

    font-size: 15px;
}

.shipping-destination p {
    margin: 0;

    color: #707070;

    font-size: 13px;
    line-height: 1.55;
}


/* ========================================
   SHIPPING METHODS
======================================== */

.shipping-methods {
    margin-bottom: 70px;
}

.shipping-method-grid {
    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 20px;
}

.shipping-method {
    padding: 27px;

    background-color: #fff;

    border: 1px solid #ddd;
    border-radius: 10px;
}

.shipping-method-number {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    width: 39px;
    height: 39px;

    margin-bottom: 18px;

    background-color: #f4c400;

    color: #111;

    border-radius: 50%;

    font-size: 12px;
    font-weight: 800;
}

.shipping-method h3 {
    margin: 0 0 9px;

    color: #111;

    font-size: 19px;
}

.shipping-method p {
    margin: 0;

    color: #696969;

    font-size: 14px;
    line-height: 1.65;
}


/* ========================================
   PROCESS
======================================== */

.shipping-process {
    margin-bottom: 70px;
}

.shipping-process-grid {
    display: grid;

    grid-template-columns: repeat(4, minmax(0, 1fr));

    border: 1px solid #ddd;
    border-radius: 10px;

    overflow: hidden;
}

.shipping-process-grid > div {
    padding: 25px;

    background-color: #f7f7f7;

    border-right: 1px solid #ddd;
}

.shipping-process-grid > div:last-child {
    border-right: none;
}

.shipping-process-grid span {
    display: block;

    margin-bottom: 11px;

    color: #ba9800;

    font-size: 12px;
    font-weight: 800;
}

.shipping-process-grid strong {
    display: block;

    margin-bottom: 8px;

    color: #111;

    font-size: 15px;
}

.shipping-process-grid p {
    margin: 0;

    color: #717171;

    font-size: 13px;
    line-height: 1.55;
}


/* ========================================
   FINAL CTA
======================================== */

.shipping-final {
    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 35px;

    padding: 35px;

    background-color: #f5f5f5;

    border: 1px solid #ddd;
    border-left: 5px solid #f4c400;
    border-radius: 10px;
}

.shipping-final > div {
    max-width: 720px;
}

.shipping-final h2 {
    margin: 6px 0 9px;

    color: #111;

    font-size: 27px;
}

.shipping-final p:last-child {
    margin: 0;

    color: #666;

    font-size: 14px;
    line-height: 1.65;
}


/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 900px) {

    .shipping-destination-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shipping-method-grid {
        grid-template-columns: 1fr;
    }

    .shipping-process-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .shipping-process-grid > div {
        border-bottom: 1px solid #ddd;
    }

}


@media (max-width: 650px) {

    .shipping-header h1 {
        font-size: 35px;
    }

    .shipping-destination-grid {
        grid-template-columns: 1fr;
    }

    .shipping-process-grid {
        grid-template-columns: 1fr;
    }

    .shipping-process-grid > div {
        border-right: none;
    }

    .shipping-final {
        align-items: flex-start;
        flex-direction: column;

        padding: 28px 22px;
    }

}

/* ========================================
   ACCOUNTS
======================================== */

.account-auth-page {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 70px;

    padding: 70px 0 90px;
}

.account-login-page {
    display: flex;
    justify-content: center;

    padding: 80px 0 100px;
}

.account-auth-card,
.account-login-card {
    width: 100%;
    max-width: 680px;
}

.account-login-card {
    max-width: 560px;
}

.account-auth-header {
    margin-bottom: 35px;
}

.account-auth-header h1 {
    margin: 5px 0 14px;

    color: #111;

    font-size: 42px;
    font-weight: 700;
}

.account-auth-header p {
    max-width: 600px;

    margin: 0;

    color: #666;

    line-height: 1.7;
}


/* FORM */

.account-auth-form {
    padding: 32px;

    background-color: #f7f7f7;

    border: 1px solid #ddd;
    border-radius: 10px;
}

.account-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.account-form-group {
    margin-bottom: 20px;
}

.account-form-group label {
    display: block;

    margin-bottom: 8px;

    color: #222;

    font-size: 14px;
    font-weight: 700;
}

.account-form-group input {
    width: 100%;
    height: 48px;

    padding: 0 14px;

    background-color: #fff;

    border: 1px solid #ccc;
    border-radius: 6px;

    color: #111;
}

.account-form-group input:focus {
    outline: none;

    border-color: #111;
}

.account-form-group small {
    display: block;

    margin-top: 7px;

    color: #777;
}


/* BUTTON */

.account-submit-button,
.account-request-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 0 24px;

    background-color: #ffd000;

    border: 0;
    border-radius: 6px;

    color: #111;

    font-weight: 700;

    text-decoration: none;

    cursor: pointer;
}

.account-submit-button {
    width: 100%;
}

.account-submit-button:hover,
.account-request-button:hover {
    background-color: #e9be00;

    color: #111;
}


/* AUTH FOOTER */

.account-auth-footer {
    padding-top: 22px;

    text-align: center;
}

.account-auth-footer p {
    margin: 0;

    color: #666;
}

.account-auth-footer a {
    color: #111;
    font-weight: 700;
}


/* BENEFITS */

.account-benefits {
    padding: 35px;

    background-color: #f5f5f5;

    border-left: 3px solid #ffd000;
}

.account-benefits h2 {
    margin: 6px 0 30px;

    color: #111;

    font-size: 30px;
}

.account-benefit-item {
    display: grid;
    grid-template-columns: 42px 1fr;
    gap: 15px;

    padding: 22px 0;

    border-bottom: 1px solid #ddd;
}

.account-benefit-item:last-child {
    border-bottom: 0;
}

.account-benefit-item > span {
    color: #b28d00;

    font-size: 13px;
    font-weight: 800;
}

.account-benefit-item strong {
    display: block;

    margin-bottom: 6px;

    color: #111;
}

.account-benefit-item p {
    margin: 0;

    color: #666;

    line-height: 1.6;
}


/* ========================================
   ACCOUNT DASHBOARD
======================================== */

.account-dashboard {
    padding: 70px 0 100px;
}

.account-dashboard-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    gap: 30px;

    margin-bottom: 45px;
}

.account-dashboard-header h1 {
    margin: 5px 0 10px;

    color: #111;

    font-size: 42px;
}

.account-dashboard-header p {
    margin: 0;

    color: #666;
}

.account-logout-link {
    color: #444;

    font-weight: 700;

    text-decoration: none;
}

.account-logout-link:hover {
    color: #111;
}


/* DASHBOARD CARDS */

.account-dashboard-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;

    margin-bottom: 55px;
}

.account-dashboard-card {
    min-height: 230px;

    padding: 28px;

    background-color: #f7f7f7;

    border: 1px solid #ddd;
    border-radius: 8px;

    color: inherit;

    text-decoration: none;
}

a.account-dashboard-card {
    transition:
        transform 0.2s ease,
        border-color 0.2s ease;
}

a.account-dashboard-card:hover {
    transform: translateY(-3px);

    border-color: #bbb;

    color: inherit;
}

.account-dashboard-card h2 {
    margin: 12px 0;

    color: #111;

    font-size: 25px;
}

.account-dashboard-card p {
    color: #666;

    line-height: 1.6;
}

.account-dashboard-card strong {
    color: #111;
}

.account-card-number {
    display: block;

    color: #111;

    font-size: 38px;
    font-weight: 800;
}

.account-card-label {
    color: #777;

    font-size: 12px;
    font-weight: 800;

    text-transform: uppercase;
    letter-spacing: 0.08em;
}


/* DASHBOARD CTA */

.account-dashboard-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;

    padding: 35px;

    background-color: #f5f5f5;

    border-left: 3px solid #ffd000;
}

.account-dashboard-cta h2 {
    margin: 4px 0 8px;

    color: #111;
}

.account-dashboard-cta p {
    margin: 0;

    color: #666;
}


/* RESPONSIVE */

@media (max-width: 900px) {

    .account-auth-page {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .account-dashboard-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {

    .account-auth-page,
    .account-login-page,
    .account-dashboard {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .account-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .account-auth-form {
        padding: 22px;
    }

    .account-auth-header h1,
    .account-dashboard-header h1 {
        font-size: 34px;
    }

    .account-dashboard-header,
    .account-dashboard-cta {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* =========================================
   ACCOUNT PROFILE
========================================= */

.account-profile-link {
    color: #111;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
}

.account-profile-link:hover {
    text-decoration: underline;
}


/* Profile page */

.profile-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 35px 0 70px;
}

.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 30px;
    margin-bottom: 35px;
}

.profile-header h1 {
    margin: 5px 0 8px;
    font-size: 42px;
    font-weight: 700;
}

.profile-subtitle {
    margin: 0;
    color: #6c6c6c;
    font-size: 16px;
}


/* Edit link */

.profile-edit-link {
    color: #111;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #f2c200;
    padding-bottom: 3px;
    white-space: nowrap;
}

.profile-edit-link:hover {
    color: #555;
}


/* Main profile card */

.profile-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
}

.profile-card-header {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 28px 30px;
    border-bottom: 1px solid #e9e9e9;
    background: #fafafa;
}


/* Avatar */

.profile-avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #f2c200;
    color: #111;
    font-size: 23px;
    font-weight: 700;
}

.profile-name h2 {
    margin: 0 0 3px;
    font-size: 21px;
    font-weight: 700;
}

.profile-name p {
    margin: 0;
    color: #777;
    font-size: 14px;
}


/* Details */

.profile-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 5px 30px;
}

.profile-detail {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 22px 0;
    border-bottom: 1px solid #eeeeee;
}

.profile-detail:nth-child(odd):not(.profile-detail-full) {
    padding-right: 25px;
}

.profile-detail:nth-child(even) {
    padding-left: 25px;
    border-left: 1px solid #eeeeee;
}

.profile-detail-full {
    grid-column: 1 / -1;
    border-bottom: 0;
}

.profile-detail-label {
    color: #777;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.profile-detail-value {
    color: #111;
    font-size: 16px;
    font-weight: 500;
}


/* Bottom link */

.profile-footer {
    margin-top: 22px;
}

.profile-footer a {
    color: #555;
    font-size: 14px;
    text-decoration: none;
}

.profile-footer a:hover {
    color: #111;
}


/* Mobile */

@media (max-width: 767px) {

    .profile-page {
        padding: 20px 0 50px;
    }

    .profile-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 15px;
    }

    .profile-header h1 {
        font-size: 34px;
    }

    .profile-card-header {
        padding: 22px;
    }

    .profile-details {
        display: block;
        padding: 0 22px;
    }

    .profile-detail,
    .profile-detail:nth-child(odd):not(.profile-detail-full),
    .profile-detail:nth-child(even) {
        padding: 18px 0;
        border-left: 0;
        border-bottom: 1px solid #eeeeee;
    }

    .profile-detail:last-child {
        border-bottom: 0;
    }

}

/* =========================================
   ACCOUNT SECURITY
========================================= */

.profile-header-actions {
    display: flex;
    align-items: center;
    gap: 22px;
}

.account-form-wrapper {
    padding: 32px;
}

.account-form-wrapper .form-label {
    color: #222;
    font-size: 14px;
    font-weight: 600;
}

.account-form-wrapper .form-control {
    min-height: 48px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    box-shadow: none;
}

.account-form-wrapper .form-control:focus {
    border-color: #111;
    box-shadow: none;
}

.account-form-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    margin-top: 30px;
}

.account-primary-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border: 0;
    border-radius: 5px;
    background: #111;
    color: #fff;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
}

.account-primary-button:hover {
    background: #292929;
    color: #fff;
}

.account-cancel-link,
.account-text-link {
    color: #444;
    font-weight: 500;
    text-decoration: none;
}

.account-cancel-link:hover,
.account-text-link:hover {
    color: #111;
    text-decoration: underline;
}

.account-field-error {
    margin-top: 7px;
    color: #a00000;
    font-size: 13px;
}

.account-form-errors {
    margin-bottom: 25px;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-left: 4px solid #111;
    background: #fafafa;
}

.account-form-errors p {
    margin: 0;
}

.account-status-page {
    padding: 45px 32px;
    text-align: center;
}

.account-status-page h1,
.account-status-page h2 {
    margin-bottom: 15px;
}

.account-status-page p {
    max-width: 600px;
    margin: 0 auto 25px;
    color: #666;
}

.account-forgot-password {
    margin-top: -5px;
    margin-bottom: 22px;
    text-align: right;
}

.account-forgot-password a {
    color: #555;
    font-size: 14px;
    text-decoration: none;
}

.account-forgot-password a:hover {
    color: #111;
    text-decoration: underline;
}

@media (max-width: 767px) {

    .profile-header-actions {
        flex-wrap: wrap;
        gap: 15px;
    }

    .account-form-wrapper {
        padding: 22px;
    }

    .account-form-actions {
        align-items: flex-start;
        flex-direction: column;
    }

}

/* =========================================
   RESPONSIVE POLISH — NAVBAR
========================================= */

/* Small laptop / tablet */
@media (max-width: 1199px) {

    .heavyparts-navbar .navbar-brand {
        font-size: 21px;
    }

    .heavyparts-navbar .nav-link {
        margin-left: 2px;
        margin-right: 2px;
        font-size: 15px;
    }

}


/* Bootstrap navbar collapses below 992px */
@media (max-width: 991.98px) {

    .heavyparts-navbar {
        padding-top: 11px;
        padding-bottom: 11px;
    }

    .heavyparts-navbar .navbar-collapse {
        padding-top: 14px;
        padding-bottom: 5px;
    }

    .heavyparts-navbar .navbar-nav {
        width: 100%;
    }

    .heavyparts-navbar .nav-link {
        margin: 0;
        padding: 9px 0;

        font-size: 15px;
    }

    .heavyparts-navbar .nav-item + .nav-item {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
    }

}


/* Phones */
@media (max-width: 575.98px) {

    .heavyparts-navbar .navbar-brand {
        max-width: calc(100% - 70px);

        font-size: 18px;
        line-height: 1.15;

        white-space: normal;
    }

    .heavyparts-navbar .navbar-toggler {
        flex-shrink: 0;

        padding: 5px 8px;
    }

}


/* Very small phones */
@media (max-width: 360px) {

    .heavyparts-navbar .navbar-brand {
        font-size: 16px;
    }

}
