/* Container for the whole section */
.steel-products {
    width: var(--container-width);
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 32px 24px 48px 24px;
}

/* Header styles */
.steel-products__header {
    text-align: left;
    margin-bottom: 40px;
    position: relative;
    width: 100%;
}

.steel-products__title {
    color: var(--color-primary);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    line-height: 1.1;
}

.steel-products__divider {
    display: block;
    margin: 0 0 1rem 0;
    width: 160px;
    height: auto;
    position: relative;
    left: 0;
}

.steel-products__divider-svg {
    width: 100%;
    height: auto;
}

.steel-products__subtitle {
    color: var(--color-secondary);
    font-size: 0.9rem;
    margin-bottom: 0;
    margin-top: 0;
    font-weight: 400;
    position: relative;
    left: 0;
}

/* Product list */
.steel-products__list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Product card */
.steel-products__card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 0;
    overflow: visible;
    gap: 32px;
    padding: 32px;
    margin: 0;
    min-height: 280px;
}

.steel-products__image {
    width: 320px;
    height: 240px;
    object-fit: cover;
    border-radius: 0;
    flex-shrink: 0;
    background: #eee;
}

.steel-products__content {
    flex: 1;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    align-items: flex-start;
}

.steel-products__card-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 0 16px 0;
    color: #282828;
    line-height: 1.1;
}

.steel-products__desc {
    font-size: 0.8rem !important;
    color: #282828;
    margin-bottom: 20px;
    line-height: 1.5;
    font-weight: 300;
}

.steel-products__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E94B4B;
    color: #fff;
    font-weight: 700;
    font-size: 0.8rem !important;
    padding: 10px 15px !important;
    border-radius: 0;
    text-decoration: none;
    transition: background 0.2s;
    gap: 8px;
    white-space: nowrap;
    margin-top: 0;
    width: auto;
    align-self: flex-start;
}

.steel-products__btn-arrow {
    transition: transform 0.2s ease;
}

.steel-products__btn:hover {
    background: var(--color-secondary);
}

.steel-products__btn:hover .steel-products__btn-arrow {
    transform: translateX(4px);
}

/* Responsive styles */
@media (max-width: 1200px) {
    .steel-products {
        max-width: 100%;
        padding: 24px 16px 32px 16px;
    }
    
    .steel-products__card {
        flex-direction: column;
        align-items: stretch;
        gap: 24px;
        padding: 24px;
    }
    
    .steel-products__image {
        width: 100%;
        height: 200px;
    }
    
    .steel-products__content {
        padding: 0;
    }
}

@media (max-width: 768px) {
    .steel-products {
        padding: 20px 12px 28px 12px;
    }
    
    .steel-products__title {
        font-size: 1.75rem;
    }
    
    .steel-products__card-title {
        font-size: 1.25rem;
    }
    
    .steel-products__desc {
        font-size: 0.75rem;
    }
    
    .steel-products__btn {
        font-size: 0.9rem;
        padding: 10px 20px;
        width: auto;
    }
    
    .steel-products__card {
        padding: 20px;
        min-height: auto;
    }
    
    .steel-products__image {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .steel-products {
        padding: 16px 8px 24px 8px;
    }
    
    .steel-products__title {
        font-size: 1.5rem;
    }
    
    .steel-products__card-title {
        font-size: 1.1rem;
    }
    
    .steel-products__desc {
        font-size: 0.7rem;
    }
    
    .steel-products__btn {
        font-size: 0.85rem;
        padding: 8px 14px;
        width: auto;
    }
    
    .steel-products__card {
        padding: 16px;
    }
    
    .steel-products__image {
        height: 160px;
    }
}

/* Large screen styles */
@media (min-width: 1400px) {
    .steel-products {
        max-width: 1400px;
        padding: 48px 32px 64px 32px;
    }
    
    .steel-products__header {
        margin-bottom: 48px;
    }
    
    .steel-products__title {
        font-size: 2.5rem;
    }
    
    .steel-products__divider {
        width: 200px;
    }
    
    .steel-products__subtitle {
        font-size: 1rem;
    }
    
    .steel-products__list {
        gap: 48px;
    }
    
    .steel-products__card {
        gap: 48px;
        padding: 40px;
        min-height: 320px;
    }
    
    .steel-products__image {
        width: 400px;
        height: 280px;
    }
    
    .steel-products__card-title {
        font-size: 1.75rem;
    }
    
    .steel-products__desc {
        font-size: 1rem;
    }
    
    .steel-products__btn {
        font-size: 1.05rem;
        padding: 14px 32px;
        width: auto;
    }
}

@media (min-width: 1600px) {
    .steel-products {
        max-width: 1600px;
        padding: 64px 40px 80px 40px;
    }
    
    .steel-products__header {
        margin-bottom: 56px;
    }
    
    .steel-products__title {
        font-size: 2.75rem;
    }
    
    .steel-products__divider {
        width: 240px;
    }
    
    .steel-products__list {
        gap: 56px;
    }
    
    .steel-products__card {
        gap: 56px;
        padding: 48px;
        min-height: 360px;
    }
    
    .steel-products__image {
        width: 480px;
        height: 320px;
    }
    
    .steel-products__card-title {
        font-size: 2rem;
    }
    
    .steel-products__desc {
        font-size: 1.1rem;
    }
    
    .steel-products__btn {
        font-size: 1.1rem;
        padding: 16px 36px;
        width: auto;
    }
}

/* Extra large screen styles */
@media (min-width: 1920px) {
    .steel-products {
        width: var(--container-width);
        max-width: var(--container-max-width);
        padding: 80px 48px 96px 48px;
        margin: 0 auto;
    }
    
    .steel-products__header {
        margin-bottom: 64px;
        width: 100%;
    }
    
    .steel-products__title {
        font-size: 3rem;
        letter-spacing: -1.5px;
    }
    
    .steel-products__divider {
        width: 280px;
        margin-bottom: 1.5rem;
    }
    
    .steel-products__subtitle {
        font-size: 1.1rem;
        max-width: 600px;
    }
    
    .steel-products__list {
        gap: 64px;
        width: 100%;
    }
    
    .steel-products__card {
        gap: 64px;
        padding: 56px;
        min-height: 400px;
        transition: transform 0.3s ease;
        width: 100%;
    }
    
    .steel-products__card:hover {
        transform: translateY(-4px);
    }
    
    .steel-products__image {
        width: 560px;
        height: 360px;
        transition: transform 0.3s ease;
    }
    
    .steel-products__card:hover .steel-products__image {
        transform: scale(1.02);
    }
    
    .steel-products__card-title {
        font-size: 2.25rem;
        margin-bottom: 24px;
        letter-spacing: -0.5px;
    }
    
    .steel-products__desc {
        font-size: 1.2rem;
        line-height: 1.6;
        margin-bottom: 32px;
        max-width: 800px;
    }
    
    .steel-products__btn {
        font-size: 1.15rem;
        padding: 18px 40px;
        width: auto;
    }
    
    .steel-products__btn:hover {
        transform: translateX(8px);
    }
}

/* Ultra-wide screen styles */
@media (min-width: 2560px) {
    .steel-products {
        width: var(--container-width);
        max-width: var(--container-max-width);
        padding: 96px 56px 112px 56px;
    }
    
    .steel-products__header {
        margin-bottom: 72px;
        width: 100%;
    }
    
    .steel-products__title {
        font-size: 3.5rem;
    }
    
    .steel-products__divider {
        width: 320px;
    }
    
    .steel-products__subtitle {
        font-size: 1.2rem;
        max-width: 700px;
    }
    
    .steel-products__list {
        gap: 72px;
        width: 100%;
    }
    
    .steel-products__card {
        gap: 72px;
        padding: 64px;
        min-height: 440px;
        width: 100%;
    }
    
    .steel-products__image {
        width: 640px;
        height: 400px;
    }
    
    .steel-products__card-title {
        font-size: 2.5rem;
    }
    
    .steel-products__desc {
        font-size: 1.3rem;
        line-height: 1.7;
        max-width: 900px;
    }
    
    .steel-products__btn {
        font-size: 1.2rem;
        padding: 20px 48px;
        width: auto;
    }
}