.product-hero {
    display: flex;
    flex-wrap: wrap;
    padding: 3rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.product-image-container {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.product-image-large {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-details {
    flex: 1;
    min-width: 300px;
    padding: 1rem 2rem;
}

.product-title {
    color: var(--primary-blue);
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.product-subtitle {
    color: var(--secondary-blue);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.product-badges {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.badge {
    display: inline-block;
    background-color: var(--fresh-green);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.9rem;
    margin-right: 0.8rem;
    margin-bottom: 0.8rem;
}

.product-description-item {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.features-list {
    list-style-type: none;
}

.features-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
}

.features-list li:before {
    content: "✓";
    color: var(--fresh-green);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.cta-button {
    display: inline-block;
    background-color: var(--accent-gold);
    color: var(--secondary-blue);
    padding: 0.8rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #d69a00;
}

.section {
    padding: 3rem 2rem;
}

.section-blue {
    background-color: var(--primary-blue);
    color: var(--light-text);
}

.section-title-produckt {
    text-align: center;
    margin-bottom: 2rem;
    position: relative;
}

.section-title-produckt::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 0.5rem auto;
}

.specifications {
    max-width: 800px;
    margin: 0 auto;
}

.spec-row {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding: 1rem 0;
}

.spec-label {
    flex: 1;
    font-weight: bold;
}

.spec-value {
    flex: 2;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    height: 200px;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-products {
    max-width: 1200px;
    margin: 0 auto;
}

.related-title {
    text-align: center;
    color: var(--primary-blue);
    margin-bottom: 2rem;
    position: relative;
}

.related-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: var(--accent-gold);
    margin: 0.5rem auto;
}

.products-row {
    display: flex;
    overflow-x: auto;
    gap: 1.5rem;
    padding-bottom: 1rem;
}

.product-card-related {
    min-width: 250px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card-related:hover {
    transform: translateY(-5px);
}

.product-card-image {
    height: 180px;
    background-color: #e0e0e0;
}

.product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card-info {
    padding: 1rem;
}

.product-card-title {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}
/* Order Process Section */
.order-process-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
    background-color: #F9F9F9;
}

/* Section header */
.section-header {
    text-align: center;
    color: #236192;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-header::after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background-color: #eaaa00;
    margin: 0.5rem auto;
}

/* Process steps container */
.process-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin: 0 auto;
}

/* Individual process step */
.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    position: relative;
}

/* Vertical connector line */
.step-connector {
    position: absolute;
    top: 70px;
    left: 40px;
    width: 2px;
    height: calc(100% + 3rem);
    background-color: #eaaa00;
    z-index: 0;
}

/* Circle icon */
.step-icon {
    width: 80px;
    height: 80px;
    background-color: #236192;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 32px;
    flex-shrink: 0;
    z-index: 1;
    border: 3px solid #F9F9F9;
}

/* Step content */
.step-content {
    flex: 1;
}

.step-title {
    color: #236192;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.step-text {
    color: #333;
    line-height: 1.6;
    font-size: 1.1rem;
}
/* Responsive design */
@media (max-width: 768px) {
    .process-step {
        gap: 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
    
    .step-connector {
        top: 60px;
        left: 30px;
    }
}

@media (max-width: 480px) {
    .process-step {
        gap: 0.8rem;
    }
    
    .step-icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
    
    .step-connector {
        top: 50px;
        left: 25px;
    }
    
    .step-title {
        font-size: 1.2rem;
    }
    
    .step-text {
        font-size: 1rem;
    }
}


@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 1rem;
    }
    
    nav ul {
        margin-top: 1rem;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 0.5rem;
    }
    
    .language-switch {
        margin-top: 1rem;
        margin-left: 0;
    }
    
    .product-details {
        padding: 1rem 0;
    }
}