/* ============================================================
   LANDING HIGH VOLTAGE — FXB2 Circuit Breaker detail layout
   ============================================================ */

.lhv-detail-section {
    padding: 80px 0;
    background-color: #f8fafc;
}

.lhv-main-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 50px;
}

.lhv-grid-layout {
    display: grid;
    grid-template-columns: 1fr 1.8fr;
    gap: 45px;
    align-items: flex-start;
}

.lhv-image-col {
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 30px;
}

.lhv-image-wrapper {
    background-color: #f7f9fb;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lhv-product-image {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.lhv-content-col {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.lhv-product-title {
    font-size: clamp(22px, 3.5vw, 28px);
    font-weight: 700;
    color: #1b9d4a; /* Brand green */
    margin: 0;
    line-height: 1.3;
}

.lhv-features-card {
    background-color: #ffffff;
    border: 1.5px solid #edf2f7;
    border-radius: 10px;
    padding: 30px;
}

.lhv-features-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b9d4a; /* Brand green */
    margin: 0 0 20px 0;
}

.lhv-features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lhv-features-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14.5px;
    color: #4a5568;
    line-height: 1.6;
}

.lhv-features-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #1b9d4a; /* Brand green bullet */
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
}

.lhv-features-list li strong {
    color: #1a1a1a;
    font-weight: 700;
}

.lhv-badges-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.lhv-badge {
    background-color: #f0fdf4; /* Light green tint background */
    border: 1px solid #c6f6d5; /* Soft green border */
    color: #15803d; /* Dark green text */
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 6px;
    line-height: 1.4;
    transition: all 0.2s ease;
}

.lhv-badge:hover {
    background-color: #dcfce7;
    transform: translateY(-1px);
}

.lhv-product-desc {
    font-size: 14.5px;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

/* Responsive adjust */
@media (max-width: 991px) {
    .lhv-main-card {
        padding: 35px;
    }
    
    .lhv-grid-layout {
        grid-template-columns: 1fr;
        gap: 35px;
    }
    
    .lhv-image-col {
        position: static;
        max-width: 450px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .lhv-main-card {
        padding: 24px 20px;
    }
    
    .lhv-features-card {
        padding: 20px;
    }
    
    .lhv-badges-wrapper {
        gap: 8px;
    }
    
    .lhv-badge {
        font-size: 12px;
        padding: 5px 10px;
    }
}


/* ============================================================
   LANDING HYDRAULIC MAGNETI — Specifications Section
   ============================================================ */

.lhm-spec-section {
    padding: 80px 0;
    background-color: #f8fafc; /* Alternating page color */
}

.lhm-spec-layout {
    display: flex;
    gap: 40px;
}

.lhm-spec-left {
    width: 70%;
    flex-shrink: 0;
}

.lhm-spec-right {
    width: 30%;
    flex-shrink: 0;
}

.lhm-left-block {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 40px;
    margin-bottom: 30px; /* Spacing for potential bottom blocks */
}

.lhm-section-title {
    font-size: 22px;
    font-weight: 700;
    color: #1b9d4a; /* Brand green */
    margin: 40px 0 20px 0;
    line-height: 1.3;
}

.lhm-spec-left .lhm-section-title:first-of-type {
    margin-top: 0;
}

/* Key specs grid */
.lhm-grid-specs {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.lhm-spec-card {
    background-color: #f4f8f5; /* Light green tint background */
    border-radius: 8px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid #e6f0e9;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.01);
}

.lhm-spec-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b9d4a; /* Brand green */
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.lhm-spec-card-value {
    font-size: 14.5px;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

/* Specs Table */
.lhm-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
    margin-bottom: 45px;
    -webkit-overflow-scrolling: touch;
}

.lhm-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 650px;
    font-size: 13.5px;
}

.lhm-table th {
    background-color: #f8fafc;
    color: #15803d; /* Brand green */
    font-weight: 700;
    padding: 14px 16px;
    border-bottom: 2px solid #edf2f7;
    text-align: left;
}

.lhm-table td {
    padding: 14px 16px;
    border-bottom: 1px solid #edf2f7;
    color: #4a5568;
    font-weight: 500;
}

.lhm-table tr:last-child td {
    border-bottom: none;
}

.lhm-table tr {
    transition: background-color 0.2s ease;
}

.lhm-table tr:hover {
    background-color: #f7fafc;
}

/* Time Delay Grid */
.lhm-delay-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.lhm-delay-card {
    background-color: #ffffff;
    border: 1.5px solid #1b9d4a; /* Brand green border */
    border-radius: 8px;
    padding: 25px 20px;
    text-align: left;
    transition: all 0.3s ease;
}

.lhm-delay-card:hover {
    box-shadow: 0 6px 20px rgba(27, 157, 74, 0.12);
    transform: translateY(-2px);
}

.lhm-delay-code {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

.lhm-delay-title {
    font-size: 15px;
    font-weight: 700;
    color: #1b9d4a; /* Brand green */
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.lhm-delay-desc {
    font-size: 13.5px;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* Responsive adjust */
@media (max-width: 991px) {
    .lhm-spec-layout {
        flex-direction: column;
        gap: 30px;
    }
    
    .lhm-spec-left, 
    .lhm-spec-right {
        width: 100%;
    }
    
    .lhm-spec-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .lhm-left-block {
        padding: 20px 15px;
    }

    .lhm-grid-specs, 
    .lhm-delay-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .lhm-spec-card {
        padding: 20px 15px;
    }
    
    .lhm-delay-card {
        padding: 20px 15px;
    }
}


/* Subtitles and Pole Grid */
.lhm-sub-title {
    font-size: 16px;
    font-weight: 700;
    color: #1b9d4a; /* Brand green */
    margin: 0 0 20px 0;
    line-height: 1.4;
}

.lhm-pole-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.lhm-pole-card {
    background-color: #f8fafc;
    border: 1px solid #edf2f7;
    border-left: 4px solid #1b9d4a; /* Thick green vertical line */
    border-radius: 6px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: all 0.2s ease;
}

.lhm-pole-card:hover {
    transform: translateX(2px);
    background-color: #f1f5f9;
}

.lhm-pole-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.lhm-pole-card-desc {
    font-size: 13.5px;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

/* Responsive Pole Grid */
@media (max-width: 991px) {
    .lhm-pole-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .lhm-pole-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}


/* Highlight Box and Application List */
.lhm-highlight-box {
    background-color: #fffbeb; /* Light yellow background */
    border-left: 4px solid #f59e0b; /* Yellow/Orange vertical border */
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 30px;
}

.lhm-highlight-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.lhm-highlight-desc {
    font-size: 14px;
    color: #4a5568;
    margin: 0;
    line-height: 1.6;
}

.lhm-app-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lhm-app-list li {
    position: relative;
    padding-left: 20px;
    font-size: 14.5px;
    color: #4a5568;
    line-height: 1.6;
}

.lhm-app-list li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #4a5568; /* Standard bullet gray */
    font-weight: bold;
    font-size: 18px;
    line-height: 1.2;
}


/* Sidebar Card and Content */
.lhm-spec-right {
    position: sticky;
    top: 30px;
    align-self: flex-start;
}

.lhm-sidebar-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 30px;
}

.lhm-sidebar-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b9d4a; /* Brand green */
    margin: 0 0 15px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf2f7;
    line-height: 1.3;
}

.lhm-sidebar-cats {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
}

.lhm-sidebar-cats li {
    position: relative;
    padding-left: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #edf2f7;
}

.lhm-sidebar-cats li:first-child {
    padding-top: 0;
}

.lhm-sidebar-cats li:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lhm-sidebar-cats li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #1b9d4a; /* Brand green dot */
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
}

.lhm-sidebar-cats li a {
    color: #2d3748;
    text-decoration: none;
    font-size: 14.5px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.lhm-sidebar-cats li a:hover {
    color: #1b9d4a;
}

.lhm-sidebar-cta {
    margin-bottom: 35px;
}

.lhm-cta-text {
    font-size: 14px;
    color: #4a5568;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.lhm-cta-btn {
    display: block;
    width: 100%;
    text-align: center;
    background-color: #1b9d4a; /* Brand green */
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
    border: none;
    box-shadow: 0 2px 5px rgba(27, 157, 74, 0.1);
}

.lhm-cta-btn:hover {
    background-color: #15803d;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(27, 157, 74, 0.25);
}

.lhm-sidebar-benefits {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lhm-sidebar-benefits li {
    position: relative;
    padding-left: 20px;
    font-size: 14px;
    color: #4a5568;
    line-height: 1.5;
}

.lhm-sidebar-benefits li::before {
    content: "•";
    position: absolute;
    left: 0;
    top: 0;
    color: #4a5568; /* Standard bullet gray */
    font-weight: bold;
    font-size: 16px;
    line-height: 1.2;
}

/* Override sticky on small screens */
@media (max-width: 991px) {
    .lhm-spec-right {
        position: static;
    }
    
    .lhm-sidebar-card {
        padding: 30px 20px;
    }
}

