/* ============================================================
   LANDING WELTRUS CERAMIC SERIES — Header Banner
   ============================================================ */

.lwcs-header-banner {
    background-color: #1b9d4a;
    /* Vibrant solid green */
    padding: 100px 0;
    text-align: center;
}

.lwcs-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.lwcs-banner-title {
    font-size: clamp(28px, 5vw, 46px);
    font-weight: 700;
    color: #111827;
    /* Dark charcoal/black title text */
    margin-bottom: 24px;
    line-height: 1.25;
    letter-spacing: -0.5px;
}

.lwcs-banner-desc {
    font-size: clamp(15px, 1.8vw, 17px);
    color: #ffffff;
    /* White description text */
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    opacity: 0.95;
}

/* Responsive adjust */
@media (max-width: 768px) {
    .lwcs-header-banner {
        padding: 60px 0;
    }
}


/* ============================================================
   LANDING WELTRUS CERAMIC SERIES — Product Gallery
   ============================================================ */

.lwcs-gallery {
    padding: 80px 0;
    background-color: #f7f9fb;
    /* Light gray background to give contrast with white cards */
}

.lwcs-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.lwcs-gallery-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: #1b9d4a;
    /* Brand green */
}

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

.lwcs-gallery-card {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 50px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.lwcs-gallery-img-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 380px;
    /* High enough to display nicely */
    margin-bottom: 40px;
}

.lwcs-gallery-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    /* Ensures it looks good if png/webp has white bg */
}

.lwcs-gallery-caption {
    font-size: 14px;
    color: #4a5568;
    font-weight: 500;
    text-align: center;
}

/* Responsive adjust */
@media (max-width: 768px) {
    .lwcs-gallery {
        padding: 60px 0;
    }

    .lwcs-gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .lwcs-gallery-card {
        padding: 30px 20px;
    }

    .lwcs-gallery-img-box {
        height: 280px;
        margin-bottom: 25px;
    }
}


/* ============================================================
   LANDING WELTRUS CERAMIC SERIES — Products Info Grid
   ============================================================ */

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

.lwcs-info-header {
    text-align: center;
    margin-bottom: 50px;
}

.lwcs-info-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: #1b9d4a;
}

.lwcs-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lwcs-info-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 35px 30px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.lwcs-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.lwcs-card-top {
    border-bottom: 1px solid #edf2f7;
    padding-bottom: 20px;
}

.lwcs-card-model {
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    color: #1b9d4a;
    margin-bottom: 25px;
}

.lwcs-specs-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lwcs-spec-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    line-height: 1.4;
}

.lwcs-spec-label {
    color: #4a5568;
    font-weight: 500;
}

.lwcs-spec-value {
    color: #1a1a1a;
    font-weight: 700;
    text-align: right;
}

.lwcs-spec-value.text-green {
    color: #1b9d4a;
}

.lwcs-card-desc {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.6;
    margin: 25px 0;
    flex-grow: 1;
    /* Pushes the checklist down */
}

.lwcs-checklist {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lwcs-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13.5px;
    color: #4a5568;
    line-height: 1.5;
}

.lwcs-check-icon {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Style dynamic content from WYSIWYG editor inside .lwcs-info-card */
.lwcs-info-card h3:not(.lwcs-card-model) {
    font-size: 16px;
    font-weight: 500;
    color: #4a5568;
    /* background-color: #f8fafc; */
    padding: 10px 0px;
    border-radius: 6px;
    margin: 0 0 10px 0;
    /* border-left: 3px solid #1b9d4a; */
    border-bottom: 1px solid #eee;
    line-height: 1.4;
}

.lwcs-info-card p {
    font-size: 14.5px;
    color: #555555;
    line-height: 1.6;
    margin: 25px 0 20px 0;
    flex-grow: 1;
}

.lwcs-info-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 35px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lwcs-info-card ul li {
    position: relative;
    padding-left: 24px;
    font-size: 13.5px;
    color: #4a5568;
    line-height: 1.5;
}

.lwcs-info-card ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 2px;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%231b9d4a' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: contain;
}

.lwcs-card-btn-wrapper {
    width: 100%;
}

.lwcs-card-btn-wrapper .lwcs-btn-quote {
    display: block;
    width: 100%;
    background-color: #1b9d4a;
    color: #ffffff;
    padding: 14px 0;
    text-align: center;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(27, 157, 74, 0.15);
    transition: all 0.3s ease;
}

.lwcs-card-btn-wrapper .lwcs-btn-quote:hover {
    background-color: #147a39;
    box-shadow: 0 6px 18px rgba(27, 157, 74, 0.25);
    transform: translateY(-2px);
}

/* Responsive adjust */
@media (max-width: 991px) {
    .lwcs-info-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .lwcs-products-info {
        padding: 60px 0;
    }

    .lwcs-info-grid {
        grid-template-columns: 1fr;
    }

    .lwcs-info-card {
        padding: 30px 20px;
    }
}


/* ============================================================
   LANDING WELTRUS CERAMIC SERIES — Highlights Section
   ============================================================ */

.lwcs-highlights {
    padding: 80px 0;
    background-color: #f7f9fb;
    /* Light gray background to contrast with white cards */
}

.lwcs-highlights-header {
    text-align: center;
    margin-bottom: 50px;
}

.lwcs-highlights-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: #1b9d4a;
}

.lwcs-highlights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lwcs-highlight-card {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.lwcs-highlight-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    margin-bottom: 25px;
    background-color: #f8fafc;
}

/* Subtle background coloring based on icon types matching mockup */
.lwcs-highlight-icon-wrapper.text-orange {
    background-color: #fffbeb;
}

.lwcs-highlight-icon-wrapper.text-red {
    background-color: #fff5f5;
}

.lwcs-highlight-icon-wrapper.text-pink {
    background-color: #fff5f5;
}

.lwcs-highlight-icon-wrapper.text-green {
    background-color: #f0fdf4;
}

.lwcs-highlight-icon-wrapper.text-purple {
    background-color: #f5f3ff;
}

.lwcs-highlight-icon-wrapper.text-blue {
    background-color: #eff6ff;
}

.lwcs-highlight-title {
    font-size: 18px;
    font-weight: 600;
    color: #1b9d4a;
    margin-bottom: 15px;
    line-height: 1.4;
}

.lwcs-highlight-desc {
    font-size: 14px;
    color: #666666;
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjust */
@media (max-width: 991px) {
    .lwcs-highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .lwcs-highlights {
        padding: 60px 0;
    }

    .lwcs-highlights-grid {
        grid-template-columns: 1fr;
    }

    .lwcs-highlight-card {
        padding: 30px 20px;
    }
}


/* ============================================================
   LANDING WELTRUS CERAMIC SERIES — Comparison Table
   ============================================================ */

.lwcs-compare {
    padding: 80px 0;
    background-color: #ffffff;
}

.lwcs-compare-header {
    text-align: center;
    margin-bottom: 50px;
}

.lwcs-compare-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 600;
    color: #1b9d4a;
}

.lwcs-table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
    border: 1px solid #e2e8f0;
}

.lwcs-compare-table,
.lwcs-table-responsive table {
    width: 100% !important;
    border-collapse: collapse !important;
    font-size: 14px;
    text-align: left;
    min-width: 900px;
    border: none !important;
}

.lwcs-compare-table th,
.lwcs-table-responsive th {
    background-color: #1b9d4a !important;
    color: #ffffff !important;
    font-weight: 600 !important;
    padding: 16px 20px !important;
    border: none !important;
    border-right: 1.5px solid rgba(255, 255, 255, 0.2) !important;
}

.lwcs-compare-table th:last-child,
.lwcs-table-responsive th:last-child {
    border-right: none !important;
}

.lwcs-compare-table td,
.lwcs-table-responsive td {
    padding: 16px 20px !important;
    color: #4a5568 !important;
    border: none !important;
    border-bottom: 1px solid #edf2f7 !important;
    border-right: 1px solid #edf2f7 !important;
}

.lwcs-compare-table td:last-child,
.lwcs-table-responsive td:last-child {
    border-right: none !important;
}

.lwcs-compare-table tbody tr:last-child td,
.lwcs-table-responsive tbody tr:last-child td {
    border-bottom: none !important;
}

.lwcs-compare-table .text-bold,
.lwcs-table-responsive td:first-child {
    font-weight: 700 !important;
    color: #1a1a1a !important;
}

/* Hover style on rows for premium experience */
.lwcs-compare-table tbody tr,
.lwcs-table-responsive tbody tr {
    transition: background-color 0.2s ease;
}

.lwcs-compare-table tbody tr:hover,
.lwcs-table-responsive tbody tr:hover {
    background-color: #f7fafc !important;
}

@media (max-width: 768px) {
    .lwcs-compare {
        padding: 60px 0;
    }
}


/* ============================================================
   LANDING WELTRUS CERAMIC SERIES — Scenarios Section
   ============================================================ */

.lwcs-scenarios {
    padding: 80px 0;
    background-color: #f7f9fb;
    /* Alternating section color */
}

.lwcs-scenarios-header {
    text-align: center;
    margin-bottom: 50px;
}

.lwcs-scenarios-title {
    font-size: clamp(24px, 4vw, 32px);
    font-weight: 700;
    color: #1b9d4a;
    /* Brand green */
}

.lwcs-scenarios-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 50px;
    row-gap: 40px;
}

.lwcs-scenario-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.lwcs-scenario-number {
    font-size: clamp(38px, 5vw, 48px);
    font-weight: 700;
    color: #b3dfc1;
    /* Soft light pastel green */
    line-height: 1;
    flex-shrink: 0;
}

.lwcs-scenario-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.lwcs-scenario-title {
    font-size: 18px;
    font-weight: 700;
    color: #1b9d4a;
    /* Brand green matching title */
    margin: 0;
    line-height: 1.3;
}

.lwcs-scenario-desc {
    font-size: 14.5px;
    color: #4a5568;
    /* Charcoal text */
    line-height: 1.6;
    margin: 0;
}

/* Responsive adjust */
@media (max-width: 991px) {
    .lwcs-scenarios-grid {
        column-gap: 30px;
        row-gap: 30px;
    }
}

@media (max-width: 768px) {
    .lwcs-scenarios {
        padding: 60px 0;
    }

    .lwcs-scenarios-grid {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .lwcs-scenario-card {
        gap: 15px;
    }
}


/* ============================================================
   LANDING WELTRUS CERAMIC SERIES — CTA Banner Section
   ============================================================ */

.lwcs-cta {
    background-color: #1b9d4a;
    /* Vibrant solid green background */
    padding: 90px 0;
    text-align: center;
}

.lwcs-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.lwcs-cta-title {
    font-size: clamp(26px, 4.5vw, 38px);
    font-weight: 700;
    color: #111827;
    /* Dark charcoal/black title text */
    margin-bottom: 24px;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.lwcs-cta-desc {
    font-size: clamp(15px, 1.8vw, 17px);
    color: #ffffff;
    /* White description text */
    line-height: 1.7;
    margin: 0 0 35px 0;
    font-weight: 400;
    opacity: 0.95;
}

.lwcs-cta-btn {
    display: inline-block;
    background-color: #147a39;
    /* Solid dark green */
    color: #ffffff !important;
    padding: 14px 36px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(20, 122, 57, 0.2);
}

.lwcs-cta-btn:hover {
    background-color: #0f5d2b;
    box-shadow: 0 6px 18px rgba(20, 122, 57, 0.35);
    transform: translateY(-2px);
}

/* Responsive adjust */
@media (max-width: 768px) {
    .lwcs-cta {
        padding: 60px 0;
    }
}
