/* ============================================================
   LANDING THERMAL OVERLOAD RELAY — Products Section
   ============================================================ */

.ltor-products {
    padding: 80px 0;
    background-color: #ffffff;
}

.ltor-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
}

.ltor-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: #1b9d4a;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}

/* Green underline under header */
.ltor-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: #1b9d4a;
    border-radius: 2px;
}

.ltor-subtitle {
    font-size: clamp(14px, 1.6vw, 16px);
    color: #666666;
    line-height: 1.6;
    margin-top: 15px;
}

.ltor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.ltor-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ltor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ltor-img-wrapper {
    background-color: #eaedf1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.ltor-img-wrapper.large-product-img {
    height: 280px;
}

.ltor-img-wrapper.small-product-img {
    height: 280px;
}

.ltor-img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

/* Specific scaling for compact look on Card 2 */
.ltor-img-wrapper.small-product-img .ltor-img {
    max-height: 60%;
    max-width: 60%;
}

.ltor-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: #ff6a00; /* Vibrant orange */
    color: #ffffff;
    font-size: 11px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(255, 106, 0, 0.2);
}

.ltor-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.ltor-card-title {
    font-size: clamp(18px, 2.5vw, 21px);
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.4;
}

.ltor-card-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin-bottom: 24px;
    flex-grow: 1;
}

.ltor-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 0;
    border-top: 1px dashed #e2e8f0;
    margin-bottom: 24px;
}

.ltor-spec-item {
    display: flex;
    align-items: center;
    font-size: 13.5px;
    color: #4a5568;
}

.ltor-action-row {
    display: flex;
    justify-content: flex-end;
}

.ltor-btn-detail {
    display: inline-block;
    background-color: #1b9d4a;
    color: #ffffff;
    padding: 10px 24px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(27, 157, 74, 0.15);
    transition: all 0.2s ease;
}

.ltor-btn-detail:hover {
    background-color: #147a39;
    box-shadow: 0 6px 18px rgba(27, 157, 74, 0.25);
    transform: translateY(-1px);
}

/* Responsive adjust */
@media (max-width: 991px) {
    .ltor-grid {
        gap: 20px;
    }
    
    .ltor-card-body {
        padding: 24px;
    }
}

@media (max-width: 768px) {
    .ltor-products {
        padding: 60px 0;
    }
    
    .ltor-grid {
        grid-template-columns: 1fr;
    }
    
    .ltor-img-wrapper.large-product-img,
    .ltor-img-wrapper.small-product-img {
        height: 240px;
    }
}
