/**
 * Manufacturer Detail Page - Premium Professional Design
 * 
 * Modern, high-quality CSS for all manufacturer detail screens.
 * Features: Clean design, smooth animations, responsive layout, premium aesthetics.
 */

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */

.manufacturer-detail-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

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

.manufacturer-hero-section {
    position: relative;
    padding: 120px 60px;
    margin: 0 0 100px 0;
    background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-secondary) 100%);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(28, 119, 166, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.manufacturer-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.manufacturer-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.manufacturer-logo-wrapper {
    width: 280px;
    height: 280px;
    margin: 0 auto 40px;
    border-radius: 50%;
    background: var(--color-background-primary);
    border: 8px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(28, 119, 166, 0.4),
        inset 0 2px 4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.manufacturer-logo-wrapper:hover {
    transform: scale(1.05);
    box-shadow: 
        0 25px 70px rgba(0, 0, 0, 0.35),
        0 0 50px rgba(28, 119, 166, 0.5);
}

.manufacturer-hero-logo {
    max-width: 75%;
    max-height: 75%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.manufacturer-hero-headline {
    font-family: var(--font-family-primary);
    font-size: 4rem;
    font-weight: 900;
    line-height: 1.1;
    margin: 0 0 40px 0;
    color: var(--color-background-primary);
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2);
    letter-spacing: -1.5px;
    position: relative;
    display: block;
    width: 100%;
}

.manufacturer-hero-headline::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-complementary-primary) 0%, 
        var(--color-complementary-secondary) 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(230, 126, 80, 0.6);
}

.manufacturer-hero-website-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 18px 40px;
    margin: 0 0 35px 0;
    background: var(--color-background-primary);
    color: var(--color-brand-primary);
    text-decoration: none;
    border-radius: 12px;
    font-family: var(--font-family-primary);
    font-size: 1.1rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.15),
        0 4px 8px rgba(0, 0, 0, 0.1);
    clear: both;
    width: auto;
}

.manufacturer-hero-website-link:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.2),
        0 6px 12px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.manufacturer-hero-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin: 0 0 30px 0;
    font-family: var(--font-family-primary);
    font-size: 1.3rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.95);
}

.manufacturer-hero-meta-item {
    white-space: nowrap;
}

.manufacturer-hero-meta-separator {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.manufacturer-hero-founders,
.manufacturer-hero-generations {
    font-family: var(--font-family-primary);
    font-size: 1.2rem;
    font-weight: 500;
    margin: 20px 0 0 0;
    color: rgba(255, 255, 255, 0.95);
}

.manufacturer-hero-founders-label,
.manufacturer-hero-generations-label {
    font-weight: 600;
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.manufacturer-hero-founders-value,
.manufacturer-hero-generations-value {
    font-weight: 700;
    color: var(--color-background-primary);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* ============================================
   DESCRIPTION SECTION
   ============================================ */

.manufacturer-description-section {
    margin: 0 0 100px 0;
}

.manufacturer-description-container {
    max-width: 1400px;
    margin: 0 auto;
}

.manufacturer-description-content {
    position: relative;
    padding: 70px 80px;
    background: linear-gradient(135deg, 
        var(--color-brand-primary) 0%, 
        var(--color-brand-secondary) 100%);
    border-radius: 24px;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.15),
        0 0 40px rgba(28, 119, 166, 0.2);
    overflow: hidden;
}

.manufacturer-description-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.manufacturer-description-text {
    position: relative;
    z-index: 1;
    font-family: var(--font-family-primary);
    font-size: 1.3rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    text-align: justify;
    text-justify: inter-word;
}

.manufacturer-description-text.timeline-event-title {
    font-size: 1.3rem;
    line-height: 2;
    color: rgba(255, 255, 255, 0.9);
}

/* ============================================
   TIMELINE SECTION
   ============================================ */

.manufacturer-timeline-section {
    margin: 0 0 100px 0;
}

.manufacturer-timeline-container {
    max-width: 1400px;
    margin: 0 auto;
}

.manufacturer-section-headline {
    font-family: var(--font-family-primary);
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 60px 0;
    color: var(--color-brand-primary);
    letter-spacing: -1px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 25px;
}

.manufacturer-section-headline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--color-complementary-primary) 0%, 
        var(--color-complementary-secondary) 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(230, 126, 80, 0.5);
}

.manufacturer-section-headline.manufacturer-facts-headline {
    color: var(--color-brand-primary);
    text-shadow: none;
}

.manufacturer-timeline {
    position: relative;
    padding: 60px 0;
    margin-top: 40px;
}

.manufacturer-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, 
        var(--color-brand-primary) 0%, 
        var(--color-brand-secondary) 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 20px rgba(28, 119, 166, 0.4);
}

.timeline-event {
    position: relative;
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.timeline-event:nth-child(odd) {
    flex-direction: row;
}

.timeline-event:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-event::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--color-complementary-primary);
    border: 5px solid var(--color-background-primary);
    box-shadow: 
        0 0 20px rgba(230, 126, 80, 0.6),
        0 0 40px rgba(230, 126, 80, 0.3);
    z-index: 2;
}

.timeline-event-year {
    flex: 0 0 140px;
    text-align: center;
    font-family: var(--font-family-primary);
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--color-background-primary);
    background: linear-gradient(135deg, 
        var(--color-brand-primary) 0%, 
        var(--color-brand-secondary) 100%);
    padding: 25px 30px;
    border-radius: 16px;
    border: 3px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(28, 119, 166, 0.3);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
}

.timeline-event-content {
    flex: 1;
    background: linear-gradient(135deg, 
        var(--color-brand-primary) 0%, 
        var(--color-brand-secondary) 100%);
    padding: 40px 50px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.2),
        0 0 20px rgba(28, 119, 166, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.timeline-event-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.timeline-event-content:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.25),
        0 0 30px rgba(28, 119, 166, 0.4);
    border-color: rgba(255, 255, 255, 0.25);
}

.timeline-event-content:hover::before {
    opacity: 1;
}

.timeline-event-title {
    font-family: var(--font-family-primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    color: var(--color-background-primary);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 24px;
    line-height: 1.4;
}

.timeline-event-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 5px;
    height: 24px;
    background: linear-gradient(180deg, 
        var(--color-complementary-primary) 0%, 
        var(--color-complementary-secondary) 100%);
    border-radius: 3px;
    box-shadow: 0 0 12px rgba(230, 126, 80, 0.6);
}

.timeline-event-description {
    font-family: var(--font-family-primary);
    font-size: 1.15rem;
    line-height: 1.8;
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    position: relative;
    z-index: 1;
}

.timeline-event-description.timeline-event-title {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    padding-left: 0;
}

.timeline-event-description.timeline-event-title::before {
    display: none;
}

/* ============================================
   RECOMMENDATIONS SECTION
   ============================================ */

.manufacturer-recommendations-section {
    margin: 0 0 100px 0;
}

.manufacturer-recommendations-container {
    max-width: 1400px;
    margin: 0 auto;
}

.manufacturer-recommendations-table-wrapper {
    position: relative;
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(135deg, 
        rgba(28, 119, 166, 0.08) 0%, 
        rgba(21, 137, 184, 0.08) 100%);
    border-radius: 20px;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.1),
        0 0 30px rgba(28, 119, 166, 0.15);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.manufacturer-recommendations-table-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 0%, 
        rgba(28, 119, 166, 0.1) 0%, 
        transparent 70%);
    pointer-events: none;
    border-radius: 20px;
}

.manufacturer-recommendations-table-wrapper::-webkit-scrollbar {
    height: 14px;
}

.manufacturer-recommendations-table-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 7px;
    margin: 0 10px;
}

.manufacturer-recommendations-table-wrapper::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, 
        var(--color-brand-primary) 0%, 
        var(--color-brand-secondary) 100%);
    border-radius: 7px;
    box-shadow: 0 0 10px rgba(28, 119, 166, 0.4);
}

.manufacturer-recommendations-table-wrapper::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, 
        var(--color-brand-secondary) 0%, 
        var(--color-brand-accent) 100%);
}

.manufacturer-recommendations-table {
    width: 100%;
    min-width: 1000px;
    background: linear-gradient(135deg, 
        rgba(28, 119, 166, 0.35) 0%, 
        rgba(21, 137, 184, 0.35) 100%);
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(28, 119, 166, 0.2);
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
}

.manufacturer-recommendations-table .widget-div-table-header {
    background: linear-gradient(135deg, 
        var(--color-brand-primary) 0%, 
        var(--color-brand-secondary) 100%);
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.manufacturer-recommendations-table .widget-div-table-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, 
        var(--color-brand-primary) 0%, 
        var(--color-brand-secondary) 50%, 
        var(--color-brand-primary) 100%);
    box-shadow: 0 0 20px rgba(28, 119, 166, 0.6);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

.manufacturer-recommendations-table .widget-div-table-header-cell {
    background: transparent;
    color: var(--color-background-primary);
    border-color: rgba(255, 255, 255, 0.15);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 24px 28px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.manufacturer-recommendations-table .widget-div-table-header-cell img {
    height: 20px;
    width: auto;
    display: block;
}

.manufacturer-recommendations-table .widget-div-table-header-cell:hover {
    background: rgba(255, 255, 255, 0.1);
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

.manufacturer-recommendations-table .widget-div-table-body-row {
    background: linear-gradient(135deg, 
        rgba(28, 119, 166, 0.35) 0%, 
        rgba(21, 137, 184, 0.35) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.manufacturer-recommendations-table .widget-div-table-body-row:hover {
    background: linear-gradient(135deg, 
        rgba(28, 119, 166, 0.45) 0%, 
        rgba(21, 137, 184, 0.45) 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.15),
        0 0 15px rgba(28, 119, 166, 0.2);
    z-index: 1;
}

.manufacturer-recommendations-table .widget-div-table-body-cell {
    color: var(--color-background-primary);
    border-color: rgba(255, 255, 255, 0.08);
    padding: 22px 28px;
    font-size: 1.1rem;
    line-height: 1.7;
    vertical-align: middle;
    white-space: normal;
    word-wrap: break-word;
    transition: all 0.3s ease;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.manufacturer-recommendations-table .widget-div-table-body-row:hover .widget-div-table-body-cell {
    color: var(--color-background-primary);
}

.manufacturer-recommendations-table .widget-div-table-body-cell strong {
    color: var(--color-background-primary);
    font-weight: 700;
    font-size: 1.2rem;
    display: block;
    margin-bottom: 8px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
    position: relative;
    padding-left: 16px;
}

.manufacturer-recommendations-table .widget-div-table-body-cell strong::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    background: linear-gradient(180deg, 
        var(--color-brand-primary) 0%, 
        var(--color-brand-secondary) 100%);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(28, 119, 166, 0.5);
}

.manufacturer-recommendations-table .widget-div-table-body-cell:first-child {
    font-weight: 600;
    min-width: 220px;
}

.manufacturer-recommendations-table .widget-div-table-body-cell:nth-child(2) {
    min-width: 180px;
    font-weight: 600;
    color: var(--color-background-primary);
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.manufacturer-recommendations-table .widget-div-table-body-cell:nth-child(3),
.manufacturer-recommendations-table .widget-div-table-body-cell:nth-child(4) {
    text-align: center;
    font-weight: 700;
    min-width: 140px;
}

.manufacturer-recommendations-table .widget-div-table-body-cell:nth-child(5) {
    font-weight: 700;
    color: var(--color-background-primary);
    min-width: 160px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.manufacturer-recommendations-table .widget-div-table-body-cell:last-child {
    max-width: 400px;
    font-size: 1.05rem;
    line-height: 1.75;
}


/* ============================================
   BACK BUTTON SECTION
   ============================================ */

.manufacturer-back-section {
    text-align: center;
    margin: 0 0 100px 0;
}

.manufacturer-back-container {
    max-width: 1400px;
    margin: 0 auto;
}

.manufacturer-back-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 60px;
    background: linear-gradient(135deg, 
        var(--color-brand-primary) 0%, 
        var(--color-brand-secondary) 100%);
    color: var(--color-background-primary);
    text-decoration: none;
    border-radius: 12px;
    font-family: var(--font-family-primary);
    font-size: 1.3rem;
    font-weight: 700;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 10px 30px rgba(28, 119, 166, 0.3),
        0 5px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.15);
    min-height: 64px;
}

.manufacturer-back-button:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 15px 40px rgba(28, 119, 166, 0.4),
        0 8px 20px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, 
        var(--color-brand-secondary) 0%, 
        var(--color-brand-accent) 100%);
}

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

/* Tablet Landscape (1024px - 1366px) */
@media (max-width: 1366px) {
    .manufacturer-detail-container {
        padding: 0 15px;
    }
    
    .manufacturer-hero-section {
        padding: 100px 50px;
        margin-bottom: 80px;
    }
    
    .manufacturer-description-content {
        padding: 60px 70px;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) {
    .manufacturer-detail-container {
        padding: 0 10px;
    }
    
    .manufacturer-hero-section {
        padding: 80px 40px;
        margin-bottom: 70px;
    }
    
    .manufacturer-logo-wrapper {
        width: 240px;
        height: 240px;
        margin-bottom: 35px;
    }
    
    .manufacturer-hero-headline {
        font-size: 3rem;
        margin-bottom: 35px;
        display: block;
        width: 100%;
    }
    
    .manufacturer-hero-meta {
        font-size: 1.2rem;
    }
    
    .manufacturer-description-content {
        padding: 50px 60px;
    }
    
    .manufacturer-description-text {
        font-size: 1.2rem;
        line-height: 1.95;
    }
    
    .manufacturer-section-headline {
        font-size: 2.5rem;
        margin-bottom: 50px;
    }
    
    .manufacturer-timeline {
        margin-top: 50px;
        padding: 50px 0;
    }
    
    .manufacturer-timeline::before {
        left: 30px;
    }
    
    .timeline-event {
        flex-direction: row !important;
        padding-left: 90px;
        margin-bottom: 60px;
        gap: 30px;
    }
    
    .timeline-event::before {
        left: 30px;
    }
    
    .timeline-event-year {
        flex: 0 0 110px;
        font-size: 1.9rem;
        padding: 20px 25px;
    }
    
    .timeline-event-content {
        padding: 35px 40px;
    }
    
    .timeline-event-title {
        font-size: 1.6rem;
    }
    
    .timeline-event-description {
        font-size: 1.1rem;
    }
    
    .manufacturer-recommendations-table-wrapper {
        padding: 25px;
    }
    
    .manufacturer-recommendations-table {
        min-width: 950px;
    }
}

/* Mobile Landscape & Large Mobile (576px - 767px) */
@media (max-width: 767px) {
    .manufacturer-hero-section {
        padding: 60px 30px;
        margin-bottom: 60px;
        border-radius: 20px;
    }
    
    .manufacturer-logo-wrapper {
        width: 200px;
        height: 200px;
        margin-bottom: 30px;
        border-width: 6px;
    }
    
    .manufacturer-hero-headline {
        font-size: 2rem;
        margin-bottom: 25px;
        letter-spacing: -1px;
        display: block;
        width: 100%;
    }
    
    .manufacturer-hero-headline::after {
        width: 80px;
        height: 3px;
    }
    
    .manufacturer-hero-meta {
        font-size: 1.1rem;
        flex-direction: column;
        gap: 10px;
    }
    
    .manufacturer-hero-meta-separator {
        display: none;
    }
    
    .manufacturer-hero-founders,
    .manufacturer-hero-generations {
        font-size: 1.1rem;
    }
    
    .manufacturer-description-content {
        padding: 45px 40px;
        border-radius: 20px;
    }
    
    .manufacturer-description-text {
        font-size: 1.15rem;
        line-height: 1.9;
    }
    
    .manufacturer-section-headline {
        font-size: 2rem;
        margin-bottom: 40px;
        padding-bottom: 20px;
    }
    
    .manufacturer-section-headline::after {
        width: 70px;
        height: 3px;
    }
    
    .manufacturer-timeline {
        margin-top: 40px;
        padding: 40px 0;
    }
    
    .manufacturer-timeline::before {
        left: 20px;
        width: 3px;
    }
    
    .timeline-event {
        flex-direction: row !important;
        padding-left: 70px;
        margin-bottom: 50px;
        gap: 25px;
    }
    
    .timeline-event::before {
        left: 20px;
        width: 20px;
        height: 20px;
        border-width: 4px;
    }
    
    .timeline-event-year {
        flex: 0 0 90px;
        font-size: 1.6rem;
        padding: 18px 20px;
    }
    
    .timeline-event-content {
        padding: 30px 35px;
    }
    
    .timeline-event-title {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }
    
    .timeline-event-description {
        font-size: 1.05rem;
        line-height: 1.75;
    }
    
    .manufacturer-recommendations-table-wrapper {
        margin-top: 50px;
        padding: 20px;
    }
    
    .manufacturer-recommendations-table {
        min-width: 900px;
    }
    
    .manufacturer-recommendations-table .widget-div-table-header-cell {
        padding: 18px 20px;
        font-size: 0.9rem;
    }
    
    .manufacturer-recommendations-table .widget-div-table-header-cell img {
        height: 18px;
    }
    
    .manufacturer-recommendations-table .widget-div-table-body-cell {
        padding: 18px 20px;
        font-size: 1.05rem;
    }
    
    .manufacturer-back-button {
        padding: 18px 50px;
        font-size: 1.2rem;
        min-height: 60px;
    }
}

/* Small Mobile (max 575px) */
@media (max-width: 575px) {
    .manufacturer-detail-container {
        padding: 0;
    }
    
    .manufacturer-hero-section {
        padding: 50px 25px;
        margin: 0 10px 50px 10px;
        border-radius: 16px;
    }
    
    .manufacturer-logo-wrapper {
        width: 180px;
        height: 180px;
        margin-bottom: 25px;
        border-width: 5px;
    }
    
    .manufacturer-hero-headline {
        font-size: 1.7rem;
        margin-bottom: 20px;
        display: block;
        width: 100%;
    }
    
    .manufacturer-hero-headline::after {
        width: 70px;
        height: 3px;
    }
    
    .manufacturer-hero-meta {
        font-size: 1rem;
    }
    
    .manufacturer-hero-founders,
    .manufacturer-hero-generations {
        font-size: 1rem;
    }
    
    .manufacturer-description-content {
        padding: 40px 30px;
        margin: 0 10px;
        border-radius: 16px;
    }
    
    .manufacturer-description-text {
        font-size: 1.1rem;
        line-height: 1.85;
    }
    
    .manufacturer-section-headline {
        font-size: 1.7rem;
        margin-bottom: 35px;
        padding: 0 10px 18px 10px;
    }
    
    .manufacturer-section-headline::after {
        width: 60px;
        height: 3px;
    }
    
    .manufacturer-timeline {
        margin-top: 35px;
        padding: 35px 0;
    }
    
    .manufacturer-timeline::before {
        left: 18px;
    }
    
    .timeline-event {
        padding-left: 60px;
        margin-bottom: 40px;
        gap: 20px;
    }
    
    .timeline-event::before {
        left: 18px;
        width: 18px;
        height: 18px;
    }
    
    .timeline-event-year {
        flex: 0 0 75px;
        font-size: 1.4rem;
        padding: 15px 18px;
    }
    
    .timeline-event-content {
        padding: 25px 30px;
    }
    
    .timeline-event-title {
        font-size: 1.35rem;
        margin-bottom: 12px;
        padding-left: 20px;
    }
    
    .timeline-event-title::before {
        width: 4px;
        height: 20px;
    }
    
    .timeline-event-description {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    .manufacturer-recommendations-table-wrapper {
        margin-top: 40px;
        padding: 15px;
        margin: 40px 10px 0 10px;
    }
    
    .manufacturer-recommendations-table {
        min-width: 850px;
    }
    
    .manufacturer-recommendations-table .widget-div-table-header-cell {
        padding: 14px 16px;
        font-size: 0.85rem;
    }
    
    .manufacturer-recommendations-table .widget-div-table-header-cell img {
        height: 16px;
    }
    
    .manufacturer-recommendations-table .widget-div-table-body-cell {
        padding: 14px 16px;
        font-size: 1rem;
    }
    
    .manufacturer-back-button {
        padding: 16px 40px;
        font-size: 1.15rem;
        min-height: 56px;
        width: calc(100% - 20px);
        margin: 0 10px;
    }
}

/* Extra Small Mobile (max 400px) */
@media (max-width: 400px) {
    .manufacturer-hero-headline {
        font-size: 1.5rem;
        display: block;
        width: 100%;
    }
    
    .manufacturer-logo-wrapper {
        width: 160px;
        height: 160px;
    }
    
    .manufacturer-section-headline {
        font-size: 1.5rem;
        padding-bottom: 15px;
    }
    
    .manufacturer-section-headline::after {
        width: 50px;
        height: 3px;
    }
    
    .timeline-event-year {
        flex: 0 0 65px;
        font-size: 1.2rem;
        padding: 12px 15px;
    }
    
    .timeline-event-content {
        padding: 22px 25px;
    }
    
    .timeline-event-title {
        font-size: 1.25rem;
        padding-left: 18px;
    }
    
    .timeline-event-description {
        font-size: 0.95rem;
    }
    
    .manufacturer-recommendations-table {
        min-width: 800px;
    }
    
    .manufacturer-recommendations-table .widget-div-table-header-cell {
        padding: 12px 14px;
        font-size: 0.8rem;
    }
    
    .manufacturer-recommendations-table .widget-div-table-header-cell img {
        height: 14px;
    }
    
    .manufacturer-recommendations-table .widget-div-table-body-cell {
        padding: 12px 14px;
        font-size: 0.95rem;
    }
}




