/*
Theme Name: Link-shine Smart
Theme URI: https://linkshinesmart.com/
Author: Link-shine Smart
Description: Link-shine Smart Global B2B Camera Manufacturing Website
Version: 3.7.4
*/

/* =========================================================
   01. RESET
========================================================= */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font: inherit;
}

p,
h1,
h2,
h3,
h4,
ul,
ol {
    margin-top: 0;
}

h1,
h2,
h3,
h4 {
    line-height: 1.25;
}


/* =========================================================
   02. GLOBAL CONTAINERS
========================================================= */

.container,
.product-container,
.product-category-container {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

.product-category-hero__inner {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}


/* =========================================================
   03. TOP INFORMATION BAR
========================================================= */

.top-bar {
    width: 100%;
    background: #111111;
    color: #ffffff;
    font-size: 11px;
    line-height: 1.4;
    letter-spacing: 0.04em;
}

.top-bar-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 34px;
    margin-left: auto;
    margin-right: auto;

    display: flex;
    align-items: center;
    gap: 9px;
}

.top-bar-icon {
    flex: 0 0 auto;
    font-size: 10px;
}


/* =========================================================
   04. MAIN HEADER
========================================================= */

.site-header {
    position: relative;
    z-index: 1000;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.site-header-inner {
    width: min(1180px, calc(100% - 40px));
    min-height: 82px;
    margin-left: auto;
    margin-right: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}


/* =========================================================
   05. SITE BRANDING / LOGO
========================================================= */

.site-branding {
    flex: 0 0 auto;
    min-width: 0;
}

.site-logo-link {
    display: inline-flex;
    align-items: center;
    max-width: 260px;
}

.site-logo-link img,
.custom-logo {
    display: block;
    width: auto;
    max-width: 220px;
    max-height: 58px;
    height: auto;
}

.site-title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}


/* =========================================================
   06. PRIMARY NAVIGATION
========================================================= */

.primary-navigation {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.primary-navigation ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0;
}

.primary-menu > li {
    position: relative;
    margin: 0;
    padding: 0;
}

.primary-menu > li > a {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 82px;
    padding: 0 18px;

    color: #222222;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;

    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.primary-menu > li > a:hover {
    color: #777777;
}


/* =========================================================
   07. ACTIVE NAVIGATION ITEM
========================================================= */

.primary-menu > li.current-menu-item > a,
.primary-menu > li.current-menu-parent > a,
.primary-menu > li.current-menu-ancestor > a {
    color: #111111;
}

.primary-menu > li.current-menu-item > a::after,
.primary-menu > li.current-menu-parent > a::after,
.primary-menu > li.current-menu-ancestor > a::after {
    content: "";
    position: absolute;
    left: 18px;
    right: 18px;
    bottom: 20px;
    height: 2px;
    background: #111111;
}


/* =========================================================
   08. DROPDOWN MENU
========================================================= */

.primary-menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;

    min-width: 250px;

    margin: 0;
    padding: 10px 0;

    background: #ffffff;
    border: 1px solid #e5e5e5;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);

    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);

    transition:
        opacity 0.2s ease,
        visibility 0.2s ease,
        transform 0.2s ease;
}

.primary-menu > li:hover > .sub-menu,
.primary-menu > li:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.primary-menu .sub-menu li {
    position: relative;
    margin: 0;
    padding: 0;
}

.primary-menu .sub-menu li a {
    display: block;

    padding: 11px 18px;

    color: #222222;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;

    white-space: normal;

    transition:
        background-color 0.2s ease,
        color 0.2s ease;
}

.primary-menu .sub-menu li a:hover {
    background: #f5f5f3;
    color: #111111;
}


/* =========================================================
   09. GLOBAL BUTTONS
========================================================= */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 12px 26px;

    border: 1px solid transparent;

    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button-primary {
    background: #111111;
    color: #ffffff;
    border-color: #111111;
}

.button-primary:hover {
    background: #333333;
    border-color: #333333;
    color: #ffffff;
}

.button-secondary {
    background: transparent;
    color: #111111;
    border-color: #111111;
}

.button-secondary:hover {
    background: #111111;
    color: #ffffff;
}


/* =========================================================
   10. SECTION TYPOGRAPHY
========================================================= */

.section-heading,
.products-overview-heading {
    max-width: 780px;
    margin: 0 auto 55px;
}

.section-heading {
    text-align: center;
}

.products-overview-heading {
    text-align: left;
}

.section-eyebrow,
.product-section-eyebrow,
.product-category-section-eyebrow {
    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #777777;
}

.section-heading h2,
.products-overview-heading h2 {
    margin-bottom: 18px;

    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
}

.section-heading > p:last-child,
.products-overview-heading > p:last-child {
    margin-bottom: 0;

    color: #666666;
    font-size: 16px;
}


/* =========================================================
   11. HOMEPAGE HERO
   ---------------------------------------------------------
   Version 3.7.4 Hero Optimization

   Goals:
   - Preserve all Hero content
   - Reduce excessive H1 wrapping
   - Give text column more horizontal space
   - Keep image on the right
   - Maintain strong B2B visual hierarchy
   - Improve desktop and tablet readability
========================================================= */

.hero-section {
    padding: 78px 0;
    background: #f5f5f3;
}

.hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.18fr)
        minmax(0, 0.82fr);

    gap: 58px;

    align-items: center;
}

.hero-eyebrow {
    margin-bottom: 14px;

    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;

    color: #777777;

    white-space: nowrap;
}

.hero-title {
    max-width: 700px;

    margin-bottom: 18px;

    font-size: clamp(44px, 4.1vw, 56px);

    font-weight: 700;

    letter-spacing: -0.035em;

    line-height: 1.08;

    overflow-wrap: normal;
    word-break: normal;
}

.hero-description {
    max-width: 720px;

    margin-bottom: 24px;

    color: #555555;

    font-size: 16px;

    line-height: 1.58;
}

.hero-actions {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;
}

.hero-media {
    overflow: hidden;

    min-width: 0;
}

.hero-image {
    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;
}


/* =========================================================
   12. HOMEPAGE PRODUCTS
========================================================= */

.products-section {
    padding: 100px 0;
    background: #ffffff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.product-card {
    position: relative;
    min-width: 0;
}

.products-section .product-card {
    padding: 30px;

    border: 1px solid #e4e4e4;
    background: #ffffff;
}

.product-number {
    display: block;
    margin-bottom: 22px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.12em;

    color: #888888;
}

.product-card-image {
    overflow: hidden;
    margin-bottom: 24px;
    background: #f5f5f5;
}

.product-card-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.products-section .product-card h3 {
    margin-bottom: 12px;
    font-size: 23px;
}

.products-section .product-card p {
    margin-bottom: 20px;
    color: #666666;
}

.product-link {
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   13. WHY CHOOSE US
========================================================= */

.capabilities-section {
    padding: 100px 0;
    background: #f7f7f5;
}

.capability-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.capability-item {
    padding: 30px;

    border: 1px solid #e2e2e2;
    background: #ffffff;
}

.capability-item > span {
    display: block;
    margin-bottom: 20px;

    font-size: 12px;
    font-weight: 700;

    color: #888888;
}

.capability-image {
    margin-bottom: 22px;
    overflow: hidden;
}

.capability-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.capability-item h3 {
    margin-bottom: 12px;
    font-size: 20px;
}

.capability-item p {
    margin-bottom: 0;
    color: #666666;
}


/* =========================================================
   14. ABOUT HOMEPAGE
========================================================= */

.about-section {
    padding: 100px 0;
    background: #ffffff;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 70px;
    align-items: center;
}

.about-content {
    text-align: left;
}

.about-content p {
    color: #555555;
    font-size: 17px;
}

.about-button {
    margin-top: 10px;
}

.about-media {
    overflow: hidden;
}

.about-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}


/* =========================================================
   15. GLOBAL CTA
========================================================= */

.cta-section {
    padding: 100px 0;
    background: #111111;
    color: #ffffff;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-section .section-eyebrow {
    color: #aaaaaa;
}

.cta-content h2 {
    margin-bottom: 20px;

    font-size: clamp(34px, 4vw, 52px);
}

.cta-content > p:not(.section-eyebrow) {
    max-width: 680px;
    margin: 0 auto 30px;

    color: #cccccc;
}


/* =========================================================
   16. PRODUCTS ARCHIVE
========================================================= */

.products-overview-page {
    background: #ffffff;
}

.products-overview-hero {
    padding: 90px 0;
    background: #f5f5f3;
}

.products-overview-hero-content {
    max-width: 850px;
    text-align: left;
}

.products-overview-title {
    margin-bottom: 22px;

    font-size: clamp(42px, 5vw, 64px);
    letter-spacing: -0.03em;
}

.products-overview-description {
    max-width: 760px;
    margin-bottom: 0;

    color: #5f5f5f;
    font-size: 18px;
}

.products-overview-section {
    padding: 100px 0;
}


/* =========================================================
   17. PRODUCTS ARCHIVE CATEGORY GRID
========================================================= */

.products-overview-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 24px;
    width: 100%;
}

.products-overview-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    min-height: 300px;

    padding: 30px;

    border: 1px solid #dedede;
    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.products-overview-card:hover {
    transform: translateY(-4px);

    border-color: #bdbdbd;

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.08);
}

.products-overview-card-number {
    margin-bottom: 30px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;

    color: #888888;
}

.products-overview-card-content {
    display: flex;
    flex: 1;
    flex-direction: column;

    text-align: left;
}

.products-overview-card h3 {
    margin-bottom: 15px;

    font-size: 25px;
    line-height: 1.3;
}

.products-overview-card h3 a:hover {
    color: #666666;
}

.products-overview-card p {
    margin-bottom: 25px;

    color: #666666;
    font-size: 15px;
    line-height: 1.7;
}

.products-overview-card-link {
    margin-top: auto;

    display: inline-block;

    font-size: 14px;
    font-weight: 700;
}


/* =========================================================
   18. PRODUCTS ARCHIVE OEM
========================================================= */

.products-overview-oem {
    padding: 100px 0;
    background: #f7f7f5;
}

.products-overview-oem-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);

    gap: 70px;
    align-items: start;
}

.products-overview-oem-content {
    text-align: left;
}

.products-overview-oem-content h2 {
    margin-bottom: 20px;

    font-size: clamp(32px, 4vw, 48px);
}

.products-overview-oem-content p {
    color: #5f5f5f;
}

.products-overview-oem-content .button {
    margin-top: 15px;
}

.products-overview-oem-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.products-overview-oem-item {
    padding: 28px;

    border: 1px solid #dddddd;
    background: #ffffff;
}

.products-overview-oem-item span {
    display: block;
    margin-bottom: 15px;

    font-size: 12px;
    font-weight: 700;

    color: #888888;
}

.products-overview-oem-item h3 {
    margin-bottom: 10px;
    font-size: 19px;
}

.products-overview-oem-item p {
    margin-bottom: 0;

    color: #666666;
    font-size: 14px;
}


/* =========================================================
   19. PRODUCTS ARCHIVE RFQ
========================================================= */

.products-overview-rfq {
    padding: 100px 0;

    background: #111111;
    color: #ffffff;
}

.products-overview-rfq-content {
    max-width: 800px;
    margin: 0 auto;

    text-align: center;
}

.products-overview-rfq-content .product-section-eyebrow {
    color: #aaaaaa;
}

.products-overview-rfq-content h2 {
    margin-bottom: 20px;

    font-size: clamp(34px, 4vw, 52px);
}

.products-overview-rfq-content p {
    max-width: 680px;
    margin: 0 auto 30px;

    color: #cccccc;
}


/* =========================================================
   20. PRODUCT CATEGORY PAGE
========================================================= */

.product-category-page {
    background: #ffffff;
}


/* =========================================================
   21. CATEGORY HERO
========================================================= */

.product-category-hero {
    padding: 85px 0;
    background: #f5f5f3;
}

.product-category-hero__inner {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 0.85fr);

    gap: 70px;
    align-items: center;
}

.product-category-hero__content {
    text-align: left;
}

.product-category-hero__title {
    margin-bottom: 20px;

    font-size: clamp(40px, 5vw, 62px);
    letter-spacing: -0.03em;
}

.product-category-hero__description {
    max-width: 680px;

    color: #5f5f5f;
    font-size: 17px;
}

.product-category-hero__actions {
    margin-top: 25px;
}

.product-category-hero__media {
    overflow: hidden;
}

.product-category-hero__media img {
    width: 100%;

    aspect-ratio: 4 / 3;
    object-fit: cover;
}


/* =========================================================
   22. CATEGORY INTRO
========================================================= */

.product-category-intro {
    padding: 85px 0;
    background: #ffffff;
}

.product-category-section-title {
    margin-bottom: 18px;

    font-size: clamp(30px, 4vw, 44px);
}

.product-category-intro__content {
    max-width: 850px;

    color: #5f5f5f;
    font-size: 17px;

    text-align: left;
}


/* =========================================================
   23. CATEGORY PRODUCTS
========================================================= */

.product-category-products {
    padding: 100px 0;
    background: #f7f7f5;
}

.product-category-products__header {
    margin-bottom: 45px;
    text-align: left;
}

.product-category-products__header .product-category-section-title {
    margin-bottom: 0;
}


/* =========================================================
   24. CATEGORY PRODUCT GRID
========================================================= */

.product-category-products__grid {
    display: grid;

    grid-template-columns:
        repeat(3, minmax(0, 1fr));

    gap: 28px;

    width: 100%;

    align-items: stretch;
}


/* =========================================================
   25. CATEGORY PRODUCT CARD
========================================================= */

.product-category-products .product-card {
    display: flex;
    flex-direction: column;

    min-width: 0;
    height: 100%;

    overflow: hidden;

    border: 1px solid #dddddd;
    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.product-category-products .product-card:hover {
    transform: translateY(-5px);

    border-color: #c3c3c3;

    box-shadow: 0 16px 35px rgba(0, 0, 0, 0.09);
}


/* =========================================================
   26. PRODUCT CARD IMAGE
========================================================= */

.product-category-products .product-card__image {
    width: 100%;
    overflow: hidden;

    background: #f2f2f2;
}

.product-category-products .product-card__image a {
    display: block;
}

.product-category-products .product-card__image img {
    width: 100%;
    height: auto;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.product-category-products .product-card:hover
.product-card__image img {
    transform: scale(1.03);
}


/* =========================================================
   27. PRODUCT CARD CONTENT
========================================================= */

.product-category-products .product-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 28px;

    text-align: left;
}

.product-category-products .product-card__title {
    margin-bottom: 12px;

    font-size: 23px;
    line-height: 1.3;
}

.product-category-products .product-card__title a:hover {
    color: #666666;
}

.product-category-products .product-card__code {
    margin-bottom: 16px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.04em;

    color: #888888;
}

.product-category-products .product-card__description {
    margin-bottom: 25px;

    color: #666666;
    font-size: 14px;
    line-height: 1.7;
}

.product-category-products .product-card__description p:last-child {
    margin-bottom: 0;
}

.product-category-products .product-card__action {
    margin-top: auto;
    padding-top: 5px;
}

.product-category-products .product-card__action .button {
    width: 100%;
}


/* =========================================================
   28. CATEGORY EMPTY
========================================================= */

.product-category-products__empty {
    padding: 50px;

    border: 1px solid #dddddd;
    background: #ffffff;

    text-align: center;
}

.product-category-products__empty p {
    margin-bottom: 0;
    color: #666666;
}


/* =========================================================
   29. CATEGORY OEM / ODM
========================================================= */

.product-category-oem {
    padding: 100px 0;
    background: #ffffff;
}

.product-category-oem__inner {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        auto;

    gap: 50px;

    align-items: center;

    padding: 55px;

    background: #f5f5f3;
}

.product-category-oem__content {
    max-width: 760px;
    text-align: left;
}

.product-category-oem__content h2 {
    margin-bottom: 20px;
}

.product-category-oem__content p {
    margin-bottom: 0;
    color: #5f5f5f;
}

.product-category-oem__action {
    white-space: nowrap;
}


/* =========================================================
   30. CATEGORY BOTTOM CTA
========================================================= */

.product-category-cta {
    padding: 100px 0;

    background: #111111;
    color: #ffffff;
}

.product-category-cta__inner {
    max-width: 800px;
    margin: 0 auto;

    text-align: center;
}

.product-category-cta__inner h2 {
    margin-bottom: 18px;

    font-size: clamp(34px, 4vw, 50px);
}

.product-category-cta__inner p {
    max-width: 680px;
    margin: 0 auto 30px;

    color: #cccccc;
}


/* =========================================================
   31. PRODUCT DETAIL
========================================================= */

.product-single-page {
    background: #ffffff;
}

.product-detail {
    width: 100%;
}

.product-detail section {
    width: 100%;
}


/* =========================================================
   32. PRODUCT DETAIL HERO
========================================================= */

.product-hero {
    padding: 85px 0;
    background: #f5f5f3;
}

.product-hero-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 70px;

    align-items: center;
}

.product-image-column {
    min-width: 0;
}

.product-main-image {
    position: relative;

    width: 100%;
    overflow: hidden;

    background: #ffffff;

    border: 1px solid #e3e3e3;
}

.product-main-image img {
    width: 100%;
    height: auto;

    aspect-ratio: 1 / 1;

    object-fit: contain;

    transition: transform 0.4s ease;
}

.product-main-image:hover img {
    transform: scale(1.02);
}

.product-info-column {
    min-width: 0;

    text-align: left;
}

.product-category-label {
    display: flex;
    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 20px;
}

.product-category-label a {
    display: inline-flex;
    align-items: center;

    min-height: 30px;

    padding: 5px 10px;

    border: 1px solid #d2d2d2;

    background: #ffffff;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #666666;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease;
}

.product-category-label a:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;
}

.product-title {
    margin-bottom: 20px;

    font-size: clamp(38px, 5vw, 60px);
    font-weight: 700;

    letter-spacing: -0.03em;

    overflow-wrap: anywhere;
}

.product-code {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;

    gap: 6px;

    margin-bottom: 24px;

    color: #777777;
    font-size: 13px;
}

.product-code strong {
    color: #333333;
    font-weight: 700;
}

.product-code span {
    overflow-wrap: anywhere;
}

.product-short-description {
    max-width: 650px;

    margin-bottom: 30px;

    color: #555555;
    font-size: 17px;
}

.product-short-description p:last-child {
    margin-bottom: 0;
}

.product-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.product-cta-button,
.product-rfq-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 50px;

    padding: 13px 28px;

    background: #111111;
    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    border: 1px solid #111111;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.product-cta-button:hover,
.product-rfq-button:hover {
    background: #333333;
    border-color: #333333;
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   33. PRODUCT DESCRIPTION
========================================================= */

.product-description-section {
    padding: 90px 0;

    background: #ffffff;
}

.product-description-content {
    max-width: 900px;

    margin-left: auto;
    margin-right: auto;

    text-align: left;
}

.product-description-content h2 {
    margin-bottom: 25px;

    font-size: 36px;
}

.product-description {
    color: #555555;
    font-size: 16px;
    line-height: 1.85;
}

.product-description p:last-child {
    margin-bottom: 0;
}

.product-description h3 {
    margin-top: 32px;
    margin-bottom: 14px;

    font-size: 23px;
}

.product-description h4 {
    margin-top: 25px;
    margin-bottom: 12px;

    font-size: 19px;
}

.product-description ul,
.product-description ol {
    margin-bottom: 24px;
    padding-left: 24px;
}

.product-description li {
    margin-bottom: 7px;
}

.product-description strong {
    color: #222222;
}


/* =========================================================
   34. PRODUCT SPECIFICATIONS
========================================================= */

.product-specifications-section {
    padding: 90px 0;

    background: #f7f7f5;
}

.product-specifications-content {
    max-width: 900px;

    margin-left: auto;
    margin-right: auto;

    text-align: left;
}

.product-specifications-content h2 {
    margin-bottom: 25px;

    font-size: 36px;
}

.product-specifications {
    color: #555555;
    font-size: 16px;
    line-height: 1.75;

    overflow-x: auto;
}

.product-specifications p:last-child {
    margin-bottom: 0;
}

.product-specifications table {
    width: 100%;
    margin-bottom: 0;

    background: #ffffff;
}

.product-specifications th {
    background: #eeeeec;
    color: #222222;
}

.product-specifications td,
.product-specifications th {
    vertical-align: top;
}


/* =========================================================
   35. PRODUCT CATEGORY SECTION ON DETAIL
========================================================= */

.product-category-section {
    padding: 70px 0;

    background: #f7f7f5;
}

.product-category-section h2 {
    margin-bottom: 25px;

    font-size: 36px;
}

.product-category-list {
    display: flex;
    flex-wrap: wrap;

    gap: 12px;
}

.product-category-link {
    display: inline-flex;

    align-items: center;

    min-height: 44px;

    padding: 10px 18px;

    border: 1px solid #cccccc;

    background: #ffffff;

    font-size: 14px;
    font-weight: 700;

    transition:
        background-color 0.2s ease,
        color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease;
}

.product-category-link:hover {
    background: #111111;
    border-color: #111111;
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   36. RELATED PRODUCTS
========================================================= */

.product-related-section {
    padding: 90px 0;

    background: #ffffff;
}

.product-related-header {
    max-width: 700px;

    margin-bottom: 45px;

    text-align: left;
}

.product-related-header h2 {
    margin-bottom: 15px;

    font-size: 40px;
}

.product-related-header p {
    margin-bottom: 0;

    color: #666666;
}

.product-related-grid {
    display: grid;

    grid-template-columns:
        repeat(4, minmax(0, 1fr));

    gap: 24px;
}

.product-related-card {
    display: flex;
    flex-direction: column;

    min-width: 0;

    overflow: hidden;

    border: 1px solid #dddddd;

    background: #ffffff;

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.product-related-card:hover {
    transform: translateY(-4px);

    border-color: #c5c5c5;

    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.08);
}

.product-related-card__image {
    display: block;

    overflow: hidden;

    background: #f5f5f5;
}

.product-related-card__image img {
    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;

    transition: transform 0.35s ease;
}

.product-related-card:hover
.product-related-card__image img {
    transform: scale(1.03);
}

.product-related-card__content {
    display: flex;
    flex: 1;
    flex-direction: column;

    padding: 22px;

    text-align: left;
}

.product-related-card__code {
    margin-bottom: 10px;

    color: #888888;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.04em;

    overflow-wrap: anywhere;
}

.product-related-card h3 {
    margin-bottom: 16px;

    font-size: 18px;

    line-height: 1.4;

    overflow-wrap: anywhere;
}

.product-related-card h3 a:hover {
    color: #666666;
}

.product-related-card__link {
    margin-top: auto;

    display: inline-block;

    font-size: 13px;
    font-weight: 700;
}


/* =========================================================
   37. PRODUCT OEM / ODM
========================================================= */

.product-oem-section {
    padding: 90px 0;

    background: #f7f7f5;
}

.product-oem-content {
    max-width: 900px;

    margin: 0 auto;

    padding: 55px;

    border: 1px solid #dddddd;

    background: #ffffff;

    text-align: left;
}

.product-oem-content h2 {
    margin-bottom: 20px;

    font-size: clamp(32px, 4vw, 46px);
}

.product-oem-content p {
    max-width: 760px;

    margin-bottom: 25px;

    color: #5f5f5f;

    font-size: 16px;
}

.product-oem-content .product-section-eyebrow {
    margin-bottom: 14px;
}

.product-oem-button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 48px;

    padding: 12px 25px;

    border: 1px solid #111111;

    background: #111111;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.product-oem-button:hover {
    background: #333333;
    border-color: #333333;
    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   38. PRODUCT RFQ
========================================================= */

.product-rfq-section {
    padding: 90px 0;

    background: #111111;

    color: #ffffff;
}

.product-rfq-content {
    max-width: 800px;

    margin: 0 auto;

    text-align: center;
}

.product-rfq-content .product-section-eyebrow {
    color: #aaaaaa;
}

.product-rfq-content h2 {
    margin-bottom: 18px;

    font-size: clamp(34px, 4vw, 50px);
}

.product-rfq-content p {
    max-width: 680px;

    margin: 0 auto 30px;

    color: #cccccc;
}

.product-rfq-button {
    background: #ffffff;

    border-color: #ffffff;

    color: #111111;
}

.product-rfq-button:hover {
    background: #e8e8e8;

    border-color: #e8e8e8;

    color: #111111;
}


/* =========================================================
   39. ABOUT PAGE
========================================================= */

.about-page {
    background: #ffffff;
}

.about-hero {
    padding: 90px 0;
    background: #f5f5f3;
}

.about-hero-content {
    max-width: 900px;
    text-align: left;
}

.about-hero-title {
    margin-bottom: 22px;

    font-size: clamp(42px, 5vw, 64px);
}

.about-hero-description {
    max-width: 760px;

    color: #5f5f5f;
    font-size: 18px;
}

.about-company {
    padding: 100px 0;
}

.about-company-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1fr)
        minmax(0, 1fr);

    gap: 70px;

    align-items: center;
}

.about-company-content {
    color: #555555;
    text-align: left;
}

.about-company-image img {
    width: 100%;

    aspect-ratio: 4 / 3;

    object-fit: cover;
}

.about-capabilities {
    padding: 100px 0;
    background: #f7f7f5;
}

.about-capabilities-grid {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 24px;
}

.about-capability-item {
    padding: 32px;

    border: 1px solid #dddddd;
    background: #ffffff;

    text-align: left;
}

.about-capability-item span {
    display: block;
    margin-bottom: 16px;

    color: #888888;

    font-size: 12px;
    font-weight: 700;
}

.about-capability-item h3 {
    margin-bottom: 12px;
}

.about-capability-item p {
    margin-bottom: 0;
    color: #666666;
}

.about-cta {
    padding: 100px 0;

    background: #111111;
    color: #ffffff;
}


/* =========================================================
   40. CONTACT PAGE
========================================================= */

.contact-page {
    background: #ffffff;
}


/* =========================================================
   41. CONTACT HERO
========================================================= */

.contact-hero {
    padding: 90px 0;
    background: #f5f5f3;
}

.contact-hero-content {
    max-width: 900px;
    text-align: left;
}

.contact-section-eyebrow {
    margin-bottom: 14px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;

    color: #777777;
}

.contact-hero-title {
    margin-bottom: 22px;

    font-size: clamp(42px, 5vw, 64px);
    font-weight: 700;

    letter-spacing: -0.03em;
}

.contact-hero-description {
    max-width: 760px;

    color: #5f5f5f;

    font-size: 18px;
    line-height: 1.8;
}

.contact-hero-description p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   42. CONTACT INFORMATION
========================================================= */

.contact-information-section {
    padding: 90px 0;
    background: #ffffff;
}

.contact-information-grid {
    display: grid;

    grid-template-columns:
        minmax(0, 1.05fr)
        minmax(0, 0.95fr);

    gap: 70px;

    align-items: start;
}

.contact-information-content,
.contact-rfq-intro {
    min-width: 0;

    text-align: left;
}

.contact-information-content h2,
.contact-rfq-intro h2 {
    margin-bottom: 18px;

    font-size: clamp(30px, 4vw, 44px);

    letter-spacing: -0.02em;
}

.contact-information-content > p,
.contact-rfq-description {
    max-width: 650px;

    margin-bottom: 28px;

    color: #5f5f5f;

    font-size: 16px;
    line-height: 1.8;
}

.contact-information-content > p:last-child,
.contact-rfq-description p:last-child {
    margin-bottom: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;

    gap: 0;

    margin-top: 30px;

    border-top: 1px solid #e2e2e2;
}

.contact-detail-item {
    display: grid;

    grid-template-columns: 110px minmax(0, 1fr);

    gap: 20px;

    padding: 18px 0;

    border-bottom: 1px solid #e2e2e2;

    align-items: start;
}

.contact-detail-item strong {
    color: #222222;

    font-size: 13px;
    font-weight: 700;
}

.contact-detail-item a {
    min-width: 0;

    color: #555555;

    font-size: 14px;

    overflow-wrap: anywhere;

    transition: color 0.2s ease;
}

.contact-detail-item a:hover {
    color: #111111;
}


/* =========================================================
   43. CONTACT RFQ SECTION
========================================================= */

.contact-rfq-section {
    padding: 90px 0 105px;

    background: #f7f7f5;
}

.contact-rfq-wrapper {
    width: 100%;
    max-width: 980px;

    margin: 0 auto;

    padding: 55px;

    border: 1px solid #dddddd;

    background: #ffffff;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.04);
}

.contact-rfq-header {
    max-width: 760px;

    margin-bottom: 38px;

    text-align: left;
}

.contact-rfq-header .contact-section-eyebrow {
    margin-bottom: 14px;
}

.contact-rfq-header h2 {
    margin-bottom: 15px;

    font-size: clamp(30px, 4vw, 44px);

    letter-spacing: -0.02em;
}

.contact-rfq-header p {
    max-width: 700px;

    margin-bottom: 0;

    color: #666666;

    font-size: 16px;
    line-height: 1.8;
}

.contact-rfq-form {
    width: 100%;
}


/* =========================================================
   44. WPFORMS RFQ FORM
========================================================= */

.contact-rfq-form .wpforms-container {
    width: 100%;

    margin: 0;
}

.contact-rfq-form .wpforms-form {
    width: 100%;
    margin: 0;
}

.contact-rfq-form .wpforms-field {
    padding: 0 0 22px;
}

.contact-rfq-form .wpforms-field-label {
    display: block;

    margin: 0 0 8px;

    color: #222222;

    font-size: 13px;
    font-weight: 700;
    line-height: 1.4;
}

.contact-rfq-form .wpforms-field-label-inline {
    font-weight: 400;
}

.contact-rfq-form input[type="text"],
.contact-rfq-form input[type="email"],
.contact-rfq-form input[type="tel"],
.contact-rfq-form input[type="url"],
.contact-rfq-form input[type="number"],
.contact-rfq-form select,
.contact-rfq-form textarea {
    width: 100%;

    min-height: 48px;

    padding: 11px 14px;

    border: 1px solid #d6d6d6;

    border-radius: 0;

    background: #ffffff;

    color: #222222;

    font-size: 14px;
    line-height: 1.5;

    box-shadow: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

.contact-rfq-form textarea {
    min-height: 150px;

    resize: vertical;
}

.contact-rfq-form input[type="text"]:focus,
.contact-rfq-form input[type="email"]:focus,
.contact-rfq-form input[type="tel"]:focus,
.contact-rfq-form input[type="url"]:focus,
.contact-rfq-form input[type="number"]:focus,
.contact-rfq-form select:focus,
.contact-rfq-form textarea:focus {
    border-color: #999999;

    outline: none;

    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.contact-rfq-form .wpforms-field-description {
    margin-top: 6px;

    color: #777777;

    font-size: 12px;
    line-height: 1.5;
}

.contact-rfq-form .wpforms-error {
    margin-top: 6px;

    font-size: 12px;
}

.contact-rfq-form .wpforms-submit-container {
    margin-top: 8px;

    padding-top: 5px;
}

.contact-rfq-form button[type="submit"],
.contact-rfq-form .wpforms-submit {
    min-height: 50px;

    padding: 13px 28px;

    border: 1px solid #111111;

    border-radius: 0;

    background: #111111;

    color: #ffffff;

    font-size: 14px;
    font-weight: 700;

    line-height: 1.2;

    cursor: pointer;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.contact-rfq-form button[type="submit"]:hover,
.contact-rfq-form .wpforms-submit:hover {
    background: #333333;

    border-color: #333333;

    color: #ffffff;

    transform: translateY(-2px);
}


/* =========================================================
   45. CONTACT WPFORMS FIELD LAYOUT
========================================================= */

.contact-rfq-form .wpforms-field-row {
    display: flex;

    gap: 20px;
}

.contact-rfq-form .wpforms-field-row .wpforms-one-half {
    width: 50%;

    margin-left: 0;
    margin-right: 0;
}

.contact-rfq-form .wpforms-field-row .wpforms-one-half:first-child {
    margin-right: 0;
}

.contact-rfq-form .wpforms-field-row .wpforms-one-half:last-child {
    margin-left: 0;
}


/* =========================================================
   46. CONTACT RADIO / CHECKBOX / SELECT
========================================================= */

.contact-rfq-form .wpforms-field-radio ul,
.contact-rfq-form .wpforms-field-checkbox ul {
    margin: 0;
    padding: 0;

    list-style: none;
}

.contact-rfq-form .wpforms-field-radio li,
.contact-rfq-form .wpforms-field-checkbox li {
    margin: 0 0 8px;
}

.contact-rfq-form .wpforms-field-radio li:last-child,
.contact-rfq-form .wpforms-field-checkbox li:last-child {
    margin-bottom: 0;
}

.contact-rfq-form .wpforms-field-radio label,
.contact-rfq-form .wpforms-field-checkbox label {
    color: #555555;

    font-size: 14px;
    line-height: 1.5;
}

/*
 * ========================================================
 * WPForms SELECT — SINGLE NATIVE DROPDOWN ARROW
 *
 * Keep the browser-native select arrow.
 * Do not add a second CSS arrow, background arrow,
 * pseudo-element arrow, or custom dropdown icon.
 * ========================================================
 */

.contact-rfq-form .wpforms-field-select select {
    appearance: auto;
    -webkit-appearance: auto;
    -moz-appearance: auto;

    background-image: none;
}


/* =========================================================
   47. CONTACT FORM SUCCESS MESSAGE
========================================================= */

.contact-rfq-form .wpforms-confirmation-container-full,
.contact-rfq-form .wpforms-confirmation-container {
    margin: 0;

    padding: 25px;

    border: 1px solid #dddddd;

    background: #f7f7f5;

    color: #333333;

    font-size: 15px;
    line-height: 1.7;
}

.contact-rfq-form .wpforms-confirmation-container-full p:last-child,
.contact-rfq-form .wpforms-confirmation-container p:last-child {
    margin-bottom: 0;
}


/* =========================================================
   48. CONTACT ACCESSIBILITY / FOCUS
========================================================= */

.contact-page a:focus-visible,
.contact-page button:focus-visible,
.contact-page input:focus-visible,
.contact-page textarea:focus-visible,
.contact-page select:focus-visible {
    outline: 2px solid #111111;

    outline-offset: 3px;
}


/* =========================================================
   49. WORDPRESS DEFAULT CONTENT
========================================================= */

.site-main {
    width: 100%;
}

.site-main > h1 {
    width: min(1180px, calc(100% - 40px));

    margin: 70px auto 30px;

    padding: 0;
}

.site-main > p {
    width: min(1180px, calc(100% - 40px));

    margin-left: auto;
    margin-right: auto;

    text-align: left;
}

.entry-content,
.page-content,
.post-content {
    text-align: left;
}


/* =========================================================
   50. TABLES
========================================================= */

table {
    width: 100%;

    border-collapse: collapse;

    margin-bottom: 30px;
}

th,
td {
    padding: 13px 15px;

    border: 1px solid #dddddd;

    text-align: left;
}

th {
    background: #f5f5f3;
    font-weight: 700;
}


/* =========================================================
   51. FOOTER BASE
========================================================= */

.site-footer {
    width: 100%;
}

.site-footer a {
    transition: color 0.2s ease;
}


/* =========================================================
   52. PRODUCT DETAIL CONTENT RHYTHM
========================================================= */

.product-detail .product-section-eyebrow {
    display: block;
}

.product-detail section h2 {
    font-weight: 700;
}

.product-detail section p {
    line-height: 1.8;
}

.product-detail a:focus-visible,
.product-detail button:focus-visible {
    outline: 2px solid #111111;
    outline-offset: 3px;
}


/* =========================================================
   53. TABLET
========================================================= */

@media (max-width: 1024px) {

    .site-header-inner {
        gap: 20px;
    }

    .primary-menu > li > a {
        padding-left: 12px;
        padding-right: 12px;
        font-size: 12px;
    }

    .primary-menu > li.current-menu-item > a::after,
    .primary-menu > li.current-menu-parent > a::after,
    .primary-menu > li.current-menu-ancestor > a::after {
        left: 12px;
        right: 12px;
    }

    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .capability-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .products-overview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-category-products__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-grid,
    .about-grid,
    .product-hero-grid,
    .product-category-hero__inner,
    .products-overview-oem-grid,
    .about-company-grid {
        gap: 40px;
    }

    /*
     * Tablet Hero
     * Keep the text area usable without making
     * the heading excessively large.
     */
    .hero-grid {
        grid-template-columns:
            minmax(0, 1.1fr)
            minmax(0, 0.9fr);
    }

    .hero-title {
        font-size: 46px;
        line-height: 1.08;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .product-title {
        font-size: 48px;
    }

    .product-oem-content {
        padding: 45px;
    }

    /* -------------------------
       Contact
    ------------------------- */

    .contact-information-grid {
        gap: 45px;
    }

    .contact-rfq-wrapper {
        padding: 45px;
    }
}


/* =========================================================
   54. MOBILE
========================================================= */

@media (max-width: 767px) {

    .container,
    .product-container,
    .product-category-container,
    .product-category-hero__inner {
        width: calc(100% - 30px);
    }


    /* -------------------------
       Top Bar
    ------------------------- */

    .top-bar-inner {
        width: calc(100% - 30px);

        min-height: 32px;

        font-size: 9px;

        text-align: left;
    }


    /* -------------------------
       Header
    ------------------------- */

    .site-header-inner {
        width: calc(100% - 30px);

        min-height: auto;

        padding: 18px 0;

        flex-direction: column;

        align-items: stretch;

        gap: 15px;
    }

    .site-branding {
        display: flex;
        justify-content: center;
    }

    .site-logo-link img,
    .custom-logo {
        max-width: 190px;
        max-height: 50px;
    }

    .site-title {
        text-align: center;
    }


    /* -------------------------
       Navigation
    ------------------------- */

    .primary-navigation {
        width: 100%;

        display: block;

        overflow-x: auto;

        -webkit-overflow-scrolling: touch;
    }

    .primary-menu {
        width: max-content;

        display: flex;

        justify-content: flex-start;

        gap: 0;
    }

    .primary-menu > li > a {
        min-height: 44px;

        padding: 0 12px;

        font-size: 12px;
    }

    .primary-menu > li.current-menu-item > a::after,
    .primary-menu > li.current-menu-parent > a::after,
    .primary-menu > li.current-menu-ancestor > a::after {
        left: 12px;
        right: 12px;
        bottom: 3px;
    }

    .primary-menu .sub-menu {
        display: none;
    }


    /* -------------------------
       Homepage
    ------------------------- */

    .hero-section,
    .products-section,
    .capabilities-section,
    .about-section,
    .cta-section {
        padding: 65px 0;
    }

    .hero-grid,
    .about-grid,
    .product-hero-grid,
    .product-category-hero__inner,
    .products-overview-oem-grid,
    .about-company-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .hero-title {
        font-size: 40px;
        line-height: 1.08;
        letter-spacing: -0.03em;
    }

    .hero-description {
        font-size: 16px;
        line-height: 1.6;
    }

    .products-grid {
        grid-template-columns: 1fr;
    }

    .capability-grid {
        grid-template-columns: 1fr;
    }


    /* -------------------------
       Products Archive
    ------------------------- */

    .products-overview-hero,
    .products-overview-section,
    .products-overview-oem,
    .products-overview-rfq {
        padding: 65px 0;
    }

    .products-overview-title {
        font-size: 42px;
    }

    .products-overview-description {
        font-size: 16px;
    }

    .products-overview-grid {
        grid-template-columns: 1fr;

        gap: 18px;
    }

    .products-overview-card {
        min-height: 0;

        padding: 25px;
    }

    .products-overview-oem-list {
        grid-template-columns: 1fr;
    }


    /* -------------------------
       Product Category
    ------------------------- */

    .product-category-hero {
        padding: 65px 0;
    }

    .product-category-hero__title {
        font-size: 42px;
    }

    .product-category-intro,
    .product-category-products,
    .product-category-oem,
    .product-category-cta {
        padding: 65px 0;
    }

    .product-category-products__grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .product-category-products .product-card__content {
        padding: 24px;
    }

    .product-category-oem__inner {
        grid-template-columns: 1fr;

        gap: 30px;

        padding: 30px;
    }

    .product-category-oem__action {
        white-space: normal;
    }


    /* -------------------------
       Product Detail
    ------------------------- */

    .product-hero {
        padding: 65px 0;
    }

    .product-hero-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }

    .product-main-image {
        max-width: 720px;
        margin-left: auto;
        margin-right: auto;
    }

    .product-info-column {
        width: 100%;
    }

    .product-title {
        margin-bottom: 18px;

        font-size: 40px;
    }

    .product-short-description {
        font-size: 16px;
    }

    .product-cta {
        width: 100%;
    }

    .product-cta-button {
        width: 100%;
    }

    .product-description-section,
    .product-specifications-section,
    .product-category-section,
    .product-related-section,
    .product-oem-section,
    .product-rfq-section {
        padding: 65px 0;
    }

    .product-description-content,
    .product-specifications-content {
        max-width: none;
    }

    .product-description-content h2,
    .product-specifications-content h2,
    .product-category-section h2 {
        font-size: 32px;
    }

    .product-specifications {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .product-specifications table {
        min-width: 600px;
    }

    .product-related-grid {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .product-related-header {
        margin-bottom: 35px;
    }

    .product-related-header h2 {
        font-size: 34px;
    }

    .product-oem-content {
        padding: 30px;
    }

    .product-oem-content h2 {
        font-size: 32px;
    }

    .product-oem-button {
        width: 100%;
    }

    .product-rfq-button {
        width: 100%;
    }


    /* -------------------------
       About
    ------------------------- */

    .about-hero,
    .about-company,
    .about-capabilities,
    .about-cta {
        padding: 65px 0;
    }

    .about-hero-title {
        font-size: 42px;
    }

    .about-capabilities-grid {
        grid-template-columns: 1fr;
    }


    /* -------------------------
       Contact
    ------------------------- */

    .contact-hero {
        padding: 65px 0;
    }

    .contact-hero-title {
        font-size: 42px;
    }

    .contact-hero-description {
        font-size: 16px;
    }

    .contact-information-section {
        padding: 65px 0;
    }

    .contact-information-grid {
        grid-template-columns: 1fr;

        gap: 45px;
    }

    .contact-information-content h2,
    .contact-rfq-intro h2 {
        font-size: 32px;
    }

    .contact-detail-item {
        grid-template-columns: 95px minmax(0, 1fr);

        gap: 15px;
    }

    .contact-rfq-section {
        padding: 65px 0;
    }

    .contact-rfq-wrapper {
        padding: 30px 24px;
    }

    .contact-rfq-header {
        margin-bottom: 30px;
    }

    .contact-rfq-header h2 {
        font-size: 32px;
    }

    .contact-rfq-form .wpforms-field-row {
        display: block;
    }

    .contact-rfq-form .wpforms-field-row .wpforms-one-half {
        width: 100%;

        margin-left: 0;
        margin-right: 0;

        margin-bottom: 22px;
    }

    .contact-rfq-form .wpforms-field-row .wpforms-one-half:last-child {
        margin-bottom: 0;
    }

    .contact-rfq-form .wpforms-field {
        padding-bottom: 20px;
    }

    .contact-rfq-form button[type="submit"],
    .contact-rfq-form .wpforms-submit {
        width: 100%;
    }
}


/* =========================================================
   55. VERY SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

    .container,
    .product-container,
    .product-category-container,
    .product-category-hero__inner {
        width: calc(100% - 24px);
    }

    .top-bar-inner {
        width: calc(100% - 24px);
    }

    .site-header-inner {
        width: calc(100% - 24px);
    }

    .hero-title,
    .products-overview-title,
    .product-category-hero__title,
    .about-hero-title {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .button {
        width: 100%;
    }

    .products-overview-card,
    .products-overview-oem-item,
    .product-category-products .product-card__content {
        padding: 22px;
    }

    .product-category-oem__inner {
        padding: 24px;
    }

    .product-title {
        font-size: 36px;
    }

    .product-category-label {
        gap: 6px;
    }

    .product-category-label a {
        font-size: 10px;
    }

    .product-description-content h2,
    .product-specifications-content h2,
    .product-category-section h2 {
        font-size: 29px;
    }

    .product-related-header h2 {
        font-size: 30px;
    }

    .product-oem-content {
        padding: 24px;
    }

    .product-oem-content h2 {
        font-size: 29px;
    }


    /* -------------------------
       Contact
    ------------------------- */

    .contact-hero-title {
        font-size: 36px;
    }

    .contact-information-content h2,
    .contact-rfq-intro h2,
    .contact-rfq-header h2 {
        font-size: 29px;
    }

    .contact-detail-item {
        grid-template-columns: 1fr;

        gap: 5px;
    }

    .contact-rfq-wrapper {
        padding: 24px 18px;
    }

    .contact-rfq-form input[type="text"],
    .contact-rfq-form input[type="email"],
    .contact-rfq-form input[type="tel"],
    .contact-rfq-form input[type="url"],
    .contact-rfq-form input[type="number"],
    .contact-rfq-form select,
    .contact-rfq-form textarea {
        font-size: 14px;
    }
}