/* ==========================================================================
   OEM / ODM Solutions Page Styles - 1:1 Pixel-Perfect Match to Design Mockup
   ========================================================================== */

.oem-page-main {
    background-color: #ffffff;
    color: #181514;
    font-family: 'Google Sans Flex', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* Container Width: 1240px for generous, elegant spacing matching design */
.oem-page-main .container {
    max-width: 1240px;
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
}

/* Hide floating start project button on OEM page to keep 100% design fidelity */
.start_project_floating_btn {
    display: none !important;
}

/* --------------------------------------------------------------------------
   Breadcrumbs
   -------------------------------------------------------------------------- */
.oem-breadcrumb-wrapper {
    background-color: #ffffff;
    padding-top: 22px;
    padding-bottom: 26px;
}

.oem-breadcrumb {
    font-size: 13.5px;
    color: #888888;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.oem-breadcrumb a {
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.oem-breadcrumb a:hover {
    color: #181514;
    text-decoration: underline;
}

.oem-breadcrumb .sep {
    color: #aaaaaa;
}

.oem-breadcrumb .current {
    color: #181514;
    font-weight: 500;
}

/* --------------------------------------------------------------------------
   Common Gold Lines & Headers
   -------------------------------------------------------------------------- */
.oem-gold-line {
    width: 36px;
    height: 2px;
    background-color: #c5a880;
    margin: 14px 0 18px 0;
    border-radius: 1px;
}

.oem-gold-line-center {
    width: 36px;
    height: 2px;
    background-color: #c5a880;
    margin: 12px auto 16px auto;
    border-radius: 1px;
}

.oem-section-header {
    text-align: center;
    margin-bottom: 44px;
}

.oem-section-title {
    font-size: 28px;
    font-weight: 700;
    color: #181514;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.3px;
}

.oem-section-title.text-left {
    text-align: left;
}

.oem-section-subtitle {
    font-size: 14.5px;
    color: #666666;
    margin: 0;
    line-height: 1.5;
}

/* --------------------------------------------------------------------------
   Common Outline Button (1:1 with Design)
   -------------------------------------------------------------------------- */
.oem-btn-center-wrap {
    text-align: center;
    margin-top: 40px;
}

.oem-btn-outline {
    display: inline-block;
    background-color: #ffffff;
    color: #181514;
    border: 1px solid #71717a;
    padding: 8px 24px;
    font-size: 13.5px;
    font-weight: 500;
    border-radius: 2px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    line-height: 1.4;
}

.oem-btn-outline:hover {
    background-color: #181514;
    border-color: #181514;
    color: #ffffff;
    text-decoration: none;
}

/* --------------------------------------------------------------------------
   Section 1: Hero & Stats (White Background #ffffff)
   -------------------------------------------------------------------------- */
.oem-section-hero {
    background-color: #ffffff;
    padding-bottom: 60px;
}

.oem-hero-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
}

.oem-hero-title {
    font-size: 36px;
    font-weight: 700;
    color: #181514;
    margin: 0;
    line-height: 1.2;
    letter-spacing: -0.4px;
}

.oem-hero-desc {
    font-size: 15px;
    color: #555555;
    line-height: 1.65;
    margin: 0;
    max-width: 380px;
}

.oem-hero-img-wrap {
    width: 100%;
    overflow: hidden;
    border-radius: 4px;
    background: #fbfbfb;
}

.oem-hero-img-wrap img {
    width: 100%;
    height: 350px;
    display: block;
    object-fit: cover;
}

/* Stats Bar */
.oem-stats-bar {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding-top: 10px;
    align-items: center;
}

.oem-stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.oem-stat-icon {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oem-stat-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.oem-stat-text {
    display: flex;
    flex-direction: column;
}

.oem-stat-value {
    font-size: 16px;
    font-weight: 700;
    color: #181514;
    line-height: 1.2;
}

.oem-stat-unit {
    font-size: 13.5px;
    font-weight: 600;
    color: #181514;
}

.oem-stat-label {
    font-size: 11.5px;
    color: #777777;
    line-height: 1.35;
    margin-top: 2px;
}

/* --------------------------------------------------------------------------
   Section 2: Customization Options (Light Beige Background #f7f5f0)
   -------------------------------------------------------------------------- */
.oem-section-customization {
    background-color: #f7f5f0;
    padding: 70px 0 75px;
}

.oem-custom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.oem-custom-card {
    background-color: #ffffff;
    border: 1px solid #ebe6dc;
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.oem-custom-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.oem-custom-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.oem-custom-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.oem-custom-card:hover .oem-custom-card-img img {
    transform: scale(1.04);
}

.oem-custom-card-body {
    padding: 16px 18px 22px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    text-align: left;
}

.oem-custom-card-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #181514;
    margin: 0 0 7px 0;
    line-height: 1.3;
}

.oem-custom-card-desc {
    font-size: 12px;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Section 3: Product Development Process (White Background #ffffff)
   -------------------------------------------------------------------------- */
.oem-section-process {
    background-color: #ffffff;
    padding: 70px 0 78px;
}

.oem-process-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    margin-top: 30px;
}

/* Horizontal connecting line behind icons */
.oem-process-timeline::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 10%;
    right: 10%;
    height: 1px;
    background-color: #e5e0d8;
    z-index: 1;
}

.oem-process-step {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0 6px;
}

.oem-step-icon-wrap {
    width: 50px;
    height: 48px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 0 8px;
    position: relative;
    z-index: 2;
}

.oem-step-icon-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.oem-step-title {
    font-size: 14px;
    font-weight: 700;
    color: #181514;
    margin: 0 0 7px 0;
    line-height: 1.3;
}

.oem-step-desc {
    font-size: 12px;
    color: #666666;
    line-height: 1.45;
    margin: 0;
    max-width: 185px;
}

/* --------------------------------------------------------------------------
   Section 4: Private Label Programs (Light Beige Background #f7f5f0)
   -------------------------------------------------------------------------- */
.oem-section-private-label {
    background-color: #f7f5f0;
    padding: 75px 0 80px;
}

.oem-private-label-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 50px;
    align-items: center;
}

.oem-private-label-sub {
    font-size: 14.5px;
    color: #444444;
    margin: 0 0 22px 0;
    line-height: 1.4;
}

.oem-feature-list {
    list-style: none;
    padding: 0;
    margin: 0 0 28px 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.oem-feature-list li {
    font-size: 13.5px;
    color: #181514;
    font-weight: 500;
    line-height: 1.4;
    position: relative;
}

.oem-private-btn-wrap {
    margin-top: 10px;
}

.oem-private-img-wrap {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.oem-private-img-wrap img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* --------------------------------------------------------------------------
   Section 5: What We Need From You (White Background #ffffff)
   -------------------------------------------------------------------------- */
.oem-section-need {
    background-color: #ffffff;
    padding: 75px 0 90px;
}

.oem-need-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 30px;
}

.oem-need-col {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.oem-need-num {
    font-size: 15px;
    font-weight: 700;
    color: #c5a880;
    margin-bottom: 7px;
    line-height: 1;
}

.oem-need-title {
    font-size: 14px;
    font-weight: 700;
    color: #181514;
    margin: 0 0 7px 0;
    line-height: 1.3;
}

.oem-need-desc {
    font-size: 12px;
    color: #666666;
    line-height: 1.45;
    margin: 0;
}

/* --------------------------------------------------------------------------
   Responsive Adaptations
   -------------------------------------------------------------------------- */
@media (max-width: 992px) {
    .oem-hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .oem-stats-bar {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 16px;
    }
    .oem-custom-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .oem-process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 16px;
    }
    .oem-process-timeline::before {
        display: none;
    }
    .oem-private-label-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .oem-need-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px 16px;
    }
}

@media (max-width: 576px) {
    .oem-hero-title {
        font-size: 28px;
    }
    .oem-section-title {
        font-size: 24px;
    }
    .oem-stats-bar {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .oem-custom-grid {
        grid-template-columns: 1fr;
    }
    .oem-process-timeline {
        grid-template-columns: 1fr;
    }
    .oem-need-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
