/* Schindler Product Page Scoped CSS */

:root {
    /* Schindler Brand Colors - Prefixed to avoid conflicts */
    --sch-primary-red: #ff6600;
    --sch-primary-red-hover: #cc5200;
    --sch-text-dark: #101010;
    --sch-text-secondary: #666666;
    --sch-text-light: #999999;
    --sch-bg-white: #ffffff;
    --sch-bg-light: #f8f8f8;
    --sch-bg-grey: #f0f0f0;
    --sch-border-light: #e0e0e0;

    /* Typography */
    --sch-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;

    /* Spacing */
    --sch-container-max: 1280px;
    --sch-section-padding: 80px;
    --sch-content-left-offset: 76px;
}

.sch-product-wrapper {
    font-family: var(--sch-font-family) !important;
    line-height: 1.6;
    color: var(--sch-text-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.sch-product-wrapper * {
    font-family: var(--sch-font-family) !important;
}

.sch-product-wrapper a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

.sch-product-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
}

.sch-product-wrapper ul,
.sch-product-wrapper ol {
    list-style: none;
}

.sch-container {
    max-width: var(--sch-container-max);
    margin: 0 !important;
    padding-left: var(--sch-content-left-offset) !important;
    padding-right: 16px !important;
}

/* ===== HERO SECTION ===== */
.sch-hero {
    background: var(--sch-bg-white);
    min-height: 720px;
    position: relative;
    margin-top: 60px;
}

.sch-hero-container {
    display: flex;
    flex-direction: row;
    min-height: 720px;
    max-width: 1920px;
    margin: 0;
}

.sch-hero-image {
    width: 480px;
    min-width: 480px;
    height: 720px;
    flex-shrink: 0;
    margin-left: var(--sch-content-left-offset);
    background: #1a1a1a;
    position: relative;
    overflow: hidden;
}

.sch-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.sch-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 48px;
    padding: 0 30px;
    max-width: 600px;
}

.sch-hero-content h1 {
    font-size: 42px;
    font-weight: 300;
    color: var(--sch-primary-red);
    margin-bottom: 0;
    line-height: 48px;
    letter-spacing: -0.5px;
}

.sch-hero-subtitle {
    font-size: 28px;
    font-weight: 300;
    color: var(--sch-primary-red);
    margin-top: 10px;
    margin-bottom: 0;
    line-height: 36px;
}

.sch-hero-divider {
    width: 56px;
    height: 2px;
    background: var(--sch-primary-red);
    margin-top: 50px;
    margin-bottom: 20px;
}

.sch-hero-description {
    font-size: 22px;
    font-weight: 300;
    color: var(--sch-text-dark);
    line-height: 30px;
    margin-top: 24px;
    margin-bottom: 0;
    max-width: 500px;
}

/* ===== BUTTONS ===== */
.sch-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    height: 44px;
    padding: 8px 28px;
    background: var(--sch-primary-red);
    color: #ffffff !important;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    border-radius: 0;
    margin-top: 24px;
    transition: background-color 0.2s ease;
    white-space: nowrap;
    text-decoration: none !important;
}

.sch-btn-primary:hover {
    background: var(--sch-primary-red-hover);
    color: #ffffff !important;
}

.sch-btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: var(--sch-bg-white);
    color: var(--sch-primary-red) !important;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.2s ease;
    text-decoration: none !important;
}

.sch-btn-white:hover {
    background: var(--sch-bg-light);
}

.sch-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    background: transparent;
    color: var(--sch-text-dark);
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--sch-border-light);
    transition: all 0.2s ease;
}

.sch-btn-outline:hover {
    border-color: var(--sch-primary-red);
    color: var(--sch-primary-red);
}

/* ===== SPECS SECTION ===== */
.sch-specs {
    padding: 40px 0;
    background: var(--sch-bg-white);
    border-bottom: 1px solid var(--sch-border-light);
}

.sch-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 600px;
}

.sch-spec-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sch-spec-label {
    font-size: 13px;
    color: var(--sch-text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sch-spec-value {
    font-size: 16px;
    font-weight: 500;
    color: var(--sch-text-dark);
}

/* ===== FEATURES SECTION ===== */
.sch-features {
    padding: var(--sch-section-padding) 0;
    background: var(--sch-bg-white);
}

.sch-section-title {
    font-size: 32px;
    font-weight: 300;
    color: var(--sch-text-dark);
    margin-bottom: 16px;
    line-height: 1.3;
}

.sch-section-description {
    font-size: 16px;
    font-weight: 300;
    color: var(--sch-text-secondary);
    max-width: 800px;
    margin-bottom: 60px;
    line-height: 1.7;
}

.sch-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.sch-feature-card {
    padding: 0;
}

.sch-feature-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    color: var(--sch-text-secondary);
}

.sch-feature-icon svg {
    width: 100%;
    height: 100%;
}

.sch-feature-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--sch-text-dark);
    margin-bottom: 12px;
}

.sch-feature-card p {
    font-size: 14px;
    font-weight: 300;
    color: var(--sch-text-secondary);
    line-height: 1.7;
}

/* ===== BROCHURE SECTION ===== */
.sch-brochure {
    padding: 60px 0;
    margin-top: 60px;
    background: var(--sch-bg-white);
    border-top: 1px solid var(--sch-border-light);
}

.sch-section-title-sm {
    font-size: 24px;
    font-weight: 300;
    color: var(--sch-text-dark);
    margin-bottom: 24px;
}

.sch-download-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--sch-primary-red);
    padding: 16px 0;
    transition: opacity 0.2s ease;
}

.sch-download-link:hover {
    opacity: 0.8;
}

.sch-download-link svg {
    flex-shrink: 0;
}

.sch-download-link span {
    font-weight: 500;
}

.sch-download-link .file-info {
    font-weight: 300;
    color: var(--sch-text-secondary);
}

/* ===== CONTACT BANNER ===== */
.sch-contact-banner {
    background: var(--sch-bg-white);
}

.sch-contact-banner a {
    text-decoration: none !important;
}

.sch-contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 400px;
}

.sch-contact-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.sch-contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sch-contact-content {
    background: var(--sch-primary-red);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    height: 100%;
}

.sch-contact-content h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 16px;
    color: white;
}

.sch-contact-content p {
    font-size: 16px;
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 32px;
    max-width: 400px;
    color: white;
}

/* ===== UPGRADE SECTION ===== */
.sch-upgrade {
    padding: var(--sch-section-padding) 0;
    background: var(--sch-bg-white);
}

.sch-subsection-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--sch-text-dark);
    margin-bottom: 16px;
}

.sch-upgrade-description {
    font-size: 16px;
    font-weight: 300;
    color: var(--sch-text-secondary);
    max-width: 600px;
    margin-bottom: 24px;
    line-height: 1.7;
}

.sch-text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    color: var(--sch-primary-red);
}

.sch-text-link:hover {
    opacity: 0.8;
}

.sch-text-link svg {
    transition: transform 0.2s ease;
}

.sch-text-link:hover svg {
    transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
    .sch-hero-image {
        margin-left: var(--sch-content-left-offset);
    }

    .sch-hero-content {
        margin-left: 40px;
    }
}

@media (max-width: 1024px) {
    .sch-hero-container {
        flex-direction: column;
        min-height: auto;
    }

    .sch-hero-image {
        width: 100%;
        min-width: 100%;
        height: 500px;
        margin-left: 0;
    }

    .sch-hero-content {
        margin-left: 0;
        padding: 40px 24px;
        max-width: 100%;
    }

    .sch-container {
        padding: 0 16px !important;
    }

    .sch-hero-content h1 {
        font-size: 36px;
        line-height: 42px;
    }

    .sch-hero-subtitle {
        font-size: 22px;
        line-height: 28px;
    }

    .sch-hero-description {
        font-size: 18px;
        line-height: 26px;
    }

    .sch-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .sch-contact-container {
        grid-template-columns: 1fr;
        height: auto;
    }

    .sch-contact-image {
        height: 250px;
        min-height: unset;
    }

    .sch-contact-content {
        padding: 40px 24px;
    }
}

@media (max-width: 768px) {
    .sch-hero-content h1 {
        font-size: 32px;
    }

    .sch-section-title {
        font-size: 26px;
    }

    .sch-features-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sch-specs-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

@media (max-width: 480px) {
    .sch-hero-content h1 {
        font-size: 28px;
    }

    .sch-hero-subtitle {
        font-size: 18px;
    }
}