﻿
#topsection {
    height: min(520px, 80vh);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

/* Default styles */
.text-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: clamp(1rem, 5vw, 3rem);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.description_text {
    align-content: center;
    padding: 14px 14px 16px 14px;
    color: #ffffff;
}

.light-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.dark-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 100%);
}

.dark-text {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.45) 100%);
}


.tile-section {
    margin: 0 0 1.5rem 0;
    color: #ffffff;
    font-family: 'Roboto', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: 0.02em; /* Using em for better scaling */
    text-align: left;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3), 0 4px 8px rgba(0, 0, 0, 0.2); /* Layered text shadow for better depth */
    line-height: 1.2; /* Improve readability */
}

.front-text {
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    font-size: 22px;
    font-weight: 500;
    text-align: center;
    color: #ffffff;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgb(0 0 0);
}


@media (max-width: 768px) {
    #topsection {
        height: min(400px, 70vh);
    }

    .landing {
        padding-left: 0px !important;
        padding-right: 0px !important
    }

    .front-text {
        font-size: 18px;
    }

    .text-overlay {
        padding: 1rem;
    }
}

@media (prefers-reduced-motion: reduce) {
    .text-overlay {
        backdrop-filter: none;
    }
}

.description-container {
    align-self: center;
    background-color: #f9f9f9; /* Soft background for better readability */
    border-radius: 8px; /* Rounded corners */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
    margin: 20px 0;
    word-wrap: break-word; /* Handle long words gracefully */
}

.description-text {
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
    font-size: 22px;
    font-weight: 500;
    color: #ffffff;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgb(0 0 0);
}

.filters-link {
    float: right;
    text-decoration: none;
    box-shadow: inset 0 0 0 2px #0707073b;
    background-color: transparent;
    color: #000;
    font-size: 0.8rem; /* Match breadcrumb text size */
    padding: .5rem;
}

    .filters-link:hover {
        background-color: #000;
        color: #ad974f; /* Optional hover effect */
    }

.backbtn {
    float: right;
}


.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding: 0;
    margin-top: .9rem;
    background-color: inherit;
}

.breadcrumb-item {
    font-size: .9rem; /* Smaller font size for a neat look */
    margin-right: 0.5rem;
}

    .breadcrumb-item a {
        text-decoration: none; /* Removes underlines */
        color: #4F7942; /* Default green color for links */
        transition: color 0.3s ease, text-decoration 0.3s ease;
    }

    .breadcrumb-item.active {
        color: #474e55;
        font-weight: 600;
    }

    .breadcrumb-item a:hover {
        color: #ec1c24; /* Change to a darker color on hover */
    }

    .breadcrumb-item i {
        margin-right: 0.25rem; /* Space between icon and text */
    }

    .breadcrumb-item::after {
        content: "›"; /* Separator symbol */
        color: #6c757d; /* Grey separator */
        font-size: 1.2rem;
        margin-left: 0.5rem;
    }

    .breadcrumb-item + .breadcrumb-item::before {
        content: none;
    }

    .breadcrumb-item + .breadcrumb-item {
        padding-left: .3rem;
    }

    .breadcrumb-item:last-child::after {
        content: ""; /* Remove separator for the last item */
    }

    .breadcrumb-item:last-child a {
        color: #343a40; /* Darker color for current page */
        font-weight: bold;
        pointer-events: none; /* Disable the last breadcrumb link */
    }

.enquiry-btn {
    display: inline-flex;
    gap: .4em .6em;
    padding: .5em 1.5em;
    border: 3px solid #5e0414;
    text-decoration: none;
    background-color: #5e0414;
    color: #fefefe;
    text-align: center;
    border-radius: 2em;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.45;
    box-sizing: border-box;
    transition: .15s linear;
    transition-property: background-color,color,transform;
    margin: 0;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit
}


.view-products {
    display: inline-flex;
    gap: .4em .6em;
    padding: .5em 1.1em;
    color: #013220;
    border: 3px solid #013220;
    text-decoration: none;
    background-color: transparent;
    text-align: center;
    border-radius: 2em;
    cursor: pointer;
    font-size: .9em;
    font-weight: 500;
    line-height: 1.35;
    box-sizing: border-box;
    transition: .15s linear;
    transition-property: background-color,color,transform;
    margin: 0;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit
}

    .view-products:hover {
        background-color: #013220;
        color: #fefefe;
        transform: scale(1.04);
        text-decoration: none;
    }


.enquiry-btn:hover {
    color: #ffff;
    transform: scale(1.04);
    text-decoration: none;
}

.usefilters-btn {
    display: inline-flex;
    gap: .4em .6em;
    padding: .5em 1.5em;
    border: 3px solid #030836;
    text-decoration: none;
    background-color: #030836;
    color: #fefefe;
    text-align: center;
    border-radius: 2em;
    cursor: pointer;
    font-size: 1em;
    font-weight: 500;
    line-height: 1.45;
    box-sizing: border-box;
    transition: .15s linear;
    transition-property: background-color,color,transform;
    margin: 0;
    white-space: nowrap;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    font-family: inherit
}

    .usefilters-btn:hover {
        color: #fefefe;
        transform: scale(1.04);
        text-decoration: none;
    }

.background_image {
    position: relative;
    overflow: hidden;
    height: fit-content;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: #fff;
    padding: 30px;
    background-color: rgba(0, 0, 0, 0.6);
}


/*new css testing for frontpage*/
#product_range .product-list .row {
    display: flex;
    flex-wrap: wrap;
}

#product_range .product-list .col-lg-6,
#product_range .product-list .col-md-6 {
    display: flex;
}

#product_range .product-list .card-link {
    display: flex;
    width: 100%;
}

#product_range .product-list .product-card-split {
    display: flex;
    background: #fff;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    height: 100%;
    width: 100%;
    transition: all 0.3s ease;
    overflow: hidden;
}

#product_range .product-list .split-image-container {
    width: 35%;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

#product_range .product-list .split-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    background: #f8f9fa;
}

    #product_range .product-list .split-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

#product_range .product-list .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
}

#product_range .product-list .split-content {
    width: 65%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#product_range .product-list .content-inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: 100%;
}

#product_range .product-list .title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
}

#product_range .product-list .description {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

#product_range .product-list .learn-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ad974f;
    font-weight: 500;
    font-size: 0.9375rem;
    margin-top: auto;
}

#product_range .product-list .arrow-icon {
    fill: currentColor;
    transition: transform 0.3s ease;
}

/* Hover Effects */
#product_range .product-list .product-card-split:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.15);
}

    #product_range .product-list .product-card-split:hover .split-image img {
        transform: scale(1.05);
    }

    #product_range .product-list .product-card-split:hover .learn-more {
        color: #911313;
    }

    #product_range .product-list .product-card-split:hover .arrow-icon {
        transform: translateX(4px);
    }

/* Desktop to Tablet transition - Image on top */
@media (min-width: 1220px) {
    #product_range .product-list .split-image img {
        object-position: left;
    }
}


@media (max-width: 1220px) {
    #product_range .product-list .product-card-split {
        flex-direction: column;
        min-height: 380px;
        height: auto;
    }

    #product_range .product-list .split-image img {
        object-position: top;
    }

    #product_range .product-list .split-image-container {
        height: 230px;
        width: 100%;
        min-height: 180px;
    }

    #product_range .product-list .split-image {
        position: relative;
        clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
    }

    #product_range .product-list .split-content {
        width: 100%;
        padding: 20px;
        flex: 1;
    }

    #product_range .product-list .title {
        font-size: 1.125rem;
    }

    #product_range .product-list .description {
        font-size: 0.875rem;
    }
}

/* Small Mobile Breakpoint */
@media (max-width: 575px) {

    #product_range .product-list .product-card-split {
        min-height: 320px;
    }

    #product_range .product-list .split-image-container {
        height: auto;
        min-height: 140px;
    }

    #product_range .product-list .split-content {
        padding: 12px;
    }
}

@media (max-width: 768px) {

    #topsection {
        min-height: min(500px, 70vh);
        height: auto;
        padding: .3rem;
        background-position: center;
        position: relative;
    }

    .tile-section {
        font-size: 1.6rem;
        letter-spacing: .5px;
        margin-bottom: .4rem;
        padding: 0px;
    }

    .border-line {
        margin-bottom: 1rem;
        margin: .5rem auto;
    }

    .description-container {
        padding: 15px;
    }

    .description-text {
        font-size: 17px;
        text-align: left;
    }

    .breadcrumb {
        line-height: 1.25rem;
    }

    .filters-link:not(.back-btn) {
        margin-bottom: .5rem;
        margin-top: 0rem;
    }

    #product_range .product-list .split-image-container {
        height: auto;
    }

    #product_range .product-list .split-image img {
        height: 290px;
        object-position: top;
    }
}


/*single product modal settings*/
.modal.fade .modal-dialog {
    transform: scale(0.8);
    transition: transform 0.3s ease-out;
}

.modal.show .modal-dialog {
    transform: scale(1);
}

.modal-open {
    overflow: auto;
}

#modalImage {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.3s ease, transform 0.3s ease;
    max-width: 100%;
    height: auto;
}

    #modalImage.show {
        opacity: 1;
        transform: scale(1);
    }

.modal-content {
    background-color: rgba(255, 255, 255, 0.95);
    border: none;
    box-shadow: 0 5px 15px rgb(0 0 0 / 72%);
}

.modal-header {
    position: sticky;
    top: 0;
    background: inherit;
    z-index: 1050;
    border-bottom: none;
    padding: 1rem 1.5rem;
}

.modal-body {
    padding: 1rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.close {
    transition: transform 0.2s ease;
}

    .close:hover {
        transform: rotate(90deg);
    }

/* View Toggle Buttons */
.view-toggle {
    display: flex;
    gap: 10px;
    margin-bottom: 1.2rem;
    margin-top: 1rem;
    justify-content: flex-end;
}

    .view-toggle button {
        padding: 8px 12px;
        border: 1px solid #ddd;
        border-radius: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
    }

        .view-toggle button.active {
            background: #030836;
            color: #fff;
        }

.product-list .card-link {
    text-decoration: none;
    color: inherit;
}

.product-list .card .card-body {
    padding: 1rem;
}

.product-list .card .tags {
    padding-left: .5rem;
}

.product-list .card .card-image {
    padding: 0 !important;
    margin-left: 10px;
    margin-right: 10px;
    margin-top: .4rem;
}

.product-list .card {
    height: 100%;
    border: 1px solid #ddd;
    border-radius: 0px;
    transition: all 0.3s ease;
}



.filters-btn {
    background-color: #f8f9fa;
    border: 1px solid #000000;
    color: #495057;
    letter-spacing: 0.2px;
    padding: 0.5rem 1.2rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    height: 100%; /* This matches Bootstrap's default input height */
}

    .filters-btn:hover {
        background-color: #000000;
        color: #ffff;
        transform: translateY(-1px);
    }

    .filters-btn:active {
        transform: translateY(0px);
    }

    .filters-btn:focus {
        box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.25);
    }

.product-wrapper .form-control {
    height: 40px;
    border: 1px solid #000000;
    border-right: none;
    border-radius: 4px 0 0 4px;
    padding: 8px 16px;
    font-size: 15.2px;
    color: #000;
}

.product-wrapper .btn-icon {
    height: 40px;
    width: 50px;
    font-size: 18px;
    color: #ffffff;
    background-color: #000000;
    border: 1px solid #000000;
    border-radius: 0 4px 4px 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: .5rem;
}

.card-view .tags {
    justify-content: flex-start;
}

.list-view .tags {
    justify-content: flex-end;
}


.tag {
    display: inline-block;
    color: white;
    font-weight: 500;
    font-size: 10px;
    max-width: fit-content;
    padding: .4rem;
    text-align: left;
    align-items: center;
    background: #4F7942;
}


.product-list .card:hover {
    /*transform: translateY(-4px);*/
    box-shadow: 0 12px 24px -10px rgba(0, 0, 0, 0.15);
    border-color: #ad974f;
}

.product-list .card-body {
    padding: .3rem;
}

    .product-list .card-body h5 {
        font-size: 16px;
        font-weight: 600;
        color: #333;
        margin: 0 0 8px;
    }

    .product-list .card-body p {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.4;
    }

.product-list .card-image {
    width: auto;
    height: 250px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-bottom: 1rem;
}


.products-container {
    max-width: 100%;
    margin-top: 30px;
    margin-bottom: 40px;
}

.product-card .spec-item.lossnay-spec {
    text-align: center;
    justify-content: center;
    font-size:15px;
}


/* Tab styling */
.products-tabs {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 25px;
    width: 100%;
}

.products-tab {
    flex: 1;
    border: none;
    background: transparent;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .products-tab:hover {
        color: #007bff;
    }

    .products-tab.active {
        color: #007bff;
        font-weight: 600;
    }

    .products-tab:focus {
        outline: none;
    }

    .products-tab.active::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #007bff;
    }

/* Toolbar styles */
.products-toolbar {
    display: flex;
    margin-bottom: 20px;
    padding: 0 10px;
}

.filter-options select {
    padding: 8px 12px;
    font-size: 14px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    background-color: white;
    width: 220px;
}

/* Panel styles */
.products-panel {
    display: none;
}

    .products-panel.active {
        display: block;
    }

/* Product grid layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

    /* Product card styles */
    .products-grid .product-card {
        border: 1px solid #e9ecef;
        border-radius: 8px;
        overflow: hidden;
        background-color: white;
        transition: all 0.3s ease;
        box-shadow: 0 2px 5px rgba(0,0,0,0.05);
        height: 100%;
        display: flex;
        flex-direction: column;
        cursor: pointer;
        position: relative;
        text-decoration: none;
        color: inherit;
    }

        .products-grid .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
            border-color: #007bff;
        }

    .products-grid .product-image-container {
        height: 160px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 20px;
        background-color: #f8f9fa;
        border-bottom: 1px solid #e9ecef;
    }

        .products-grid .product-image-container img {
            max-height: 100%;
            max-width: 100%;
            object-fit: contain;
        }

    .products-grid .product-title {
        margin: 0;
        padding: 15px;
        font-size: 16px;
        font-weight: 600;
        color: #343a40;
        text-align: center;
        border-bottom: 1px solid #e9ecef;
        line-height: 1.4;
    }

    /* Product specs styling */
    .products-grid .product-key-specs {
        padding: 12px 15px;
        flex-grow: 1;
        display: flex;
        flex-direction: column;
    }

    .products-grid .spec-item {
        display: flex;
        justify-content: space-between;
        align-items: baseline;
        flex-wrap: wrap;
        font-size: 14px;
        color: #495057;
        line-height: 1.4;
        margin-bottom: 8px;
    }

    .products-grid .spec-label {
        font-weight: 500;
        color: #6c757d;
        margin-right: 10px;
    }

    .products-grid .spec-item.cooling {
        color: #2b4bdbbd;
    }

    .products-grid .spec-item.heating {
        color: #cc1e1eb8;
    }

/* Responsive adjustments */
@media (max-width: 1200px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    }
}

@media (max-width: 992px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 15px;
    }

    .products-tabs {
        flex-wrap: wrap;
        overflow-x: auto;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    .products-tab {
        flex: 0 0 auto;
        min-width: 130px;
        white-space: nowrap;
        font-size: 14px;
        padding: 12px 15px;
    }

    .products-grid .product-image-container {
        height: 140px;
    }

    .products-grid .product-title {
        font-size: 15px;
        padding: 12px 10px;
    }

    .products-grid .product-key-specs {
        padding: 10px 12px;
    }

    .products-grid .spec-item {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .product-wrapper .form-control {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 12px;
    }

    .products-toolbar {
        flex-direction: column;
        gap: 10px;
    }

    .filter-options select {
        width: 100%;
    }

    .products-grid .product-image-container {
        height: 120px;
    }
}


/* List View Styles */
.product-list .list-view .col-12,
.product-list .list-view .col-sm-6,
.product-list .list-view .col-lg-4,
.product-list .list-view .col-xl-3 {
    width: 50%;
    max-width: 50%;
    flex: 0 0 50%;
}

.product-list .list-view .card {
    position: relative;
    flex-direction: row;
    align-items: center;
    padding: 14px;
    height: 100%;
}

.product-list .list-view .card-image {
    width: 250px;
    height: 180px;
    margin: 0;
    margin-right: 1.5rem;
    flex-shrink: 0;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

.product-list .list-view .card-body {
    flex: 1;
    padding: 0;
    min-height: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.product-list .list-view .tags {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    justify-content: flex-end;
}

@media (max-width: 1300px) {
    .back-btn {
        float: none !important;
        margin-top: 1rem;
    }
}

@media (max-width: 768px) {
    .product-list .list-view .card {
        flex-direction: column;
    }

    .tags {
    }

    .filters-btn {
        margin-top: 1rem;
    }

    .product-list .list-view .card-image {
        width: 100%;
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .product-list .list-view .tags {
        position: static;
        justify-content: center;
        margin-bottom: 0.5rem;
    }

    .product-list .list-view .card-body {
        min-height: auto;
    }
}

.toast-notification {
    position: fixed;
    top: 30px;
    right: 20px;
    background-color: #333;
    color: white;
    padding: 15px 25px;
    border-radius: 5px;
    display: none;
    z-index: 1000;
    animation: slideIn 0.5s, fadeOut 0.5s 2.5s;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}

    .toast-notification.show {
        display: flex;
        align-items: center;
    }

    .toast-notification i {
        margin-right: 10px;
        color: #4CAF50;
    }


@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.loading-spinner {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 30px;
}

.fa-spinner {
    color: #007bff;
}

/* Error handling */
#linkedProducts .product-error {
    padding: 15px;
    background-color: #f8d7da;
    color: #721c24;
    border-radius: 4px;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .detailed-modal .spec-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    }
}

@media (max-width: 768px) {
    #linkedProducts .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    }

    #linkedProducts .modal-content-grid {
        grid-template-columns: 1fr;
    }

    #linkedProducts .modal-image-container {
        height: 150px;
    }

    #linkedProducts .products-tabs {
        flex-wrap: wrap;
        overflow-x: auto;
        scrollbar-width: thin;
        -webkit-overflow-scrolling: touch;
    }

    #linkedProducts .products-tab {
        flex: 0 0 auto;
        min-width: 130px;
        white-space: nowrap;
    }

    .detailed-modal .modal-top-section {
        flex-direction: column;
    }

    .detailed-modal .modal-image-column,
    .detailed-modal .modal-desc-column {
        width: 100%;
    }

    .detailed-modal .modal-image-column {
        margin-bottom: 20px;
    }

    .detailed-modal .modal-image-container {
        height: 160px;
    }

    .related-products-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 10px;
        padding: 10px;
    }
}

@media (max-width: 576px) {
    #linkedProducts .products-grid {
        grid-template-columns: 1fr;
    }

    .detailed-modal .spec-grid-container {
        grid-template-columns: 1fr;
    }

    .related-products-grid {
        grid-template-columns: 1fr 1fr;
    }

    .fullscreen-image-content {
        padding: 30px 10px; /* Less padding on small screens */
    }

    .fullscreen-image-close {
        top: 10px;
        right: 10px;
    }
}


/* Add spacing between cards */
.product-list .row {
    margin: 0 -15px;
}

.product-list [class*='col-'] {
    padding: 10px;
}

/* Optional: Responsive design for smaller screens */
@media (max-width: 767px) {
    .view-toggle {
        display: none !important;
    }

    #productData.list-view .col-md-6 {
        width: 100%; /* Full width for small screens */
        padding: 0 10px; /* Reduce column padding */
    }

    #productData.list-view .card {
        flex-direction: column; /* Stack items vertically on small screens */
        align-items: flex-start; /* Align content to the left */
        max-width: 100%; /* Full width on smaller screens */
    }

    #productData.list-view .card-image-wrapper {
        width: 100%; /* Full width image wrapper */
        margin-bottom: 10px; /* Space between image and text */
    }

    #productData.list-view .card-footer {
        display: none; /* Hide the footer content (View Product) */
    }
}

.landing .card-image {
    width: 150px !important; /* Fixed width for the image area */
    height: 150px !important; /* Full height of the card */
    background-size: cover !important; /* Make sure the entire image is visible */
}


.suggested-products h4,
.product-wrapper h4,
.materials h4 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2d3e50;
    text-align: left;
}



/* Product - group series page */
.product_details h4 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: left;
}

.product_details h5 {
    margin-top: .7rem;
    font-size: 1rem;
    line-height: 22px;
    font-weight: 500;
}

.product_details p {
    margin-top: .7rem;
    font-size: .94rem;
    color: #756F6F;
    line-height: 22px;
}

    .product_details p:after {
        content: attr(data-footnote);
        display: block;
        margin-top: 1em;
        color: #666;
        font-size: 0.875em;
    }

.product_image {
    float: right;
    margin-left: 1rem;
    margin-top: 1rem;
}

    .product_image img {
        width: 340px;
        height: auto;
        background-color: #faf9f700; /* Ensure it blends with your page background */
        object-fit: contain;
        padding: 1px; /* Add spacing between image and border */
    }

.product-list .product-card-brand {
    position: absolute;
    right: -10px;
    top: -20px;
    background: #ff4444;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    font-size: 14px;
    width: 50px;
    height: 50px;
    padding: 15px 0 0 0;
}

.product-list .btn-success {
    align-items: center;
    border-radius: .4rem;
    flex-shrink: 0;
    font-size: 13px;
    color: #ffffff;
    font-weight: 400;
}

#ad a.view-btn:hover .view-btn.text {
    cursor: pointer;
    text-decoration: none;
}

.product-list .card-image-overlay span {
    display: inline-block;
}


.product-list .ad-btn {
    text-transform: uppercase;
    width: 150px;
    height: 40px;
    border-radius: 80px;
    font-size: 16px;
    line-height: 35px;
    text-align: center;
    border: 3px solid #e6de08;
    display: block;
    text-decoration: none;
    margin: 20px auto 1px auto;
    color: #000;
    overflow: hidden;
    position: relative;
    background-color: #e6de08;
}

    .product-list .ad-btn:hover {
        background-color: #e6de08;
        color: #1e1717;
        border: 2px solid #e6de08;
        background: transparent;
        transition: all 0.3s ease;
        box-shadow: 12px 15px 20px 0px rgba(46,61,73,0.15);
    }

.product-list .ad-title h5 {
    text-transform: uppercase;
    font-size: 18px;
}

.action-buttons {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    clear: right;
    margin-top: 20px;
    gap: 10px;
    z-index: 900;
    background: white;
    padding: 10px 0;
}

    .action-buttons .btn {
        margin-right: 0;
        margin-bottom: 0;
        flex: 0 1 auto;
        display: flex;
        align-items: center;
        justify-content: center;
        min-width: 160px;
        text-align: center;
    }


/* On smaller devices, make buttons take full width and stack */
@media (max-width: 767px) {
    .action-buttons {
        flex-direction: column;
        width: 100%;
    }

        .action-buttons .btn {
            width: 100%;
            margin-right: 0;
        }

            /* Remove margin from last button */
            .action-buttons .btn:last-child {
                margin-bottom: 0;
            }
}

/* Medium sized devices - two buttons per row if needed */
@media (min-width: 768px) and (max-width: 991px) {
    .action-buttons {
        justify-content: flex-start;
    }

        .action-buttons .btn {
            flex: 0 1 calc(50% - 5px); /* Two per row with gap considered */
        }
}



#shortDescription .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
}

    #shortDescription .btn:hover {
        background: #f8f9fa;
    }

/* Update your existing features-container styles */
#shortDescription .features-container {
    margin-top: 10px;
}

.features-container.show {
    display: block; /* Show when active */
}


#shortDescription .accordion-item {
    margin-bottom: 10px;
}

#shortDescription .accordion-header {
    max-width: 40%;
    padding: 10px;
    cursor: pointer;
    border: none;
    text-align: left;
    font-size: 14px;
    font-weight: bold;
    border-radius: 5px 5px 0 0;
}

#shortDescription .accordion-content {
    padding: 10px;
    background-color: #fafafa;
    border-top: 1px solid #ddd;
    display: none;
}

    #shortDescription .accordion-content.active {
        display: block;
    }

/* Style the table-like structure */
#shortDescription .product-details {
    width: 50%;
    gap: 10px;
    font-size: 14px;
}

#shortDescription .product-detail-row {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 4px 0;
    border-bottom: 1px solid #ddd;
}

    /* Alternating row colors */
    #shortDescription .product-detail-row:nth-child(odd) {
        background-color: #f9f9f9; /* Light gray for odd rows */
    }

    #shortDescription .product-detail-row:nth-child(even) {
        background-color: #ffffff; /* White for even rows */
    }

.feature-category {
    font-weight: bold;
    flex: 1;
}

.feature-detail {
    flex: 2;
    text-align: left;
}

/*suggested products */
.suggested-products {
    margin-top: 20px;
    margin-bottom: 30px;
}

    .suggested-products h4 {
        margin-bottom: 20px;
    }

.suggested-products-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

    .suggested-products-list.has-desc {
        grid-template-columns: repeat(2, 1fr);
    }

.suggested-products .product-card {
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s, box-shadow 0.2s;
    height: 100%; /* Ensure full height */
    display: flex; /* Enable flexbox */
    align-items: center; /* Center content vertically */
}

    .suggested-products .product-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

.suggested-products .product-card-content {
    display: flex;
    align-items: center; /* Center items vertically */
    gap: 15px;
    width: 100%; /* Take full width */
}

.suggested-products .product-image {
    width: 120px;
    height: 120px;
    object-fit: contain;
    border-radius: 4px;
    flex-shrink: 0; /* Prevent image from shrinking */
}

.suggested-products.case-study .product-image {
    object-fit: cover;
}

.suggested-products .product-info {
    flex: 1;
    min-width: 0; /* Prevents text overflow */
    display: flex;
    flex-direction: column;
    justify-content: center; /* Center text vertically */
}

.suggested-products .product-title {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #333;
    line-height: 1.3;
}

.suggested-products .product-description {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.4;
    overflow: hidden;
}

/* Responsive adjustments */
@media (max-width: 1400px) {
    .suggested-products-list {
        grid-template-columns: repeat(3, 1fr);
    }

        .suggested-products-list.has-desc {
            grid-template-columns: repeat(2, 1fr);
        }
}

@media (max-width: 992px) {
    .suggested-products-list {
        grid-template-columns: repeat(2, 1fr);
    }

        .suggested-products-list.has-desc {
            grid-template-columns: repeat(2, 1fr);
        }
}

@media (max-width: 768px) {
    .suggested-products-list {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

        .suggested-products-list.has-desc {
            grid-template-columns: 1fr
        }

    .suggested-products .product-image {
        width: 100px;
        height: 100px;
    }
}



#controls {
    display: none;
    margin: 0 auto;
    padding: 15px 0 0 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Button Navigation */
.controllers-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    position: sticky;
    top: 0;
    background: white;
    padding: 2px 0 10px 10px;
    border-bottom: 1px solid #eee;
    z-index: 10;
}

.controller-tab {
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    padding: 8px 16px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
    cursor: pointer;
}

    .controller-tab:hover {
        background-color: #e9e9e9;
        color: #222;
    }

    .controller-tab.active {
        background-color: #0066cc;
        color: white;
        border-color: #0052a3;
    }

.controllers-content {
    position: relative;
}

.controller-category {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px;
    margin-bottom: 30px;
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.controller-category-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
}

.controller-category-desc {
    font-size: 16px;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

/* Grid Layout for Cards */
.controller-grid {
    display: grid;
    margin-bottom: 25px;
    grid-template-columns: repeat(auto-fill, minmax(calc(25% - 15px), 1fr));
    gap: 20px;
}

.controller-card-wrapper {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}

    .controller-card-wrapper:hover {
        text-decoration: none !important;
    }

.controller-card-compact {
    border: 1px solid #e6e6e6;
    border-radius: 6px;
    overflow: hidden;
    transition: all 0.25s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}

    .controller-card-compact:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-color: #ccc;
        text-decoration: none;
    }

.controller-img-small {
    height: 170px;
    overflow: hidden;
    background-color: #ffff;
    border-bottom: 1px solid #66666621;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .controller-img-small img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

.controller-card-compact:hover .controller-img-small img {
    transform: scale(1.05);
}

.controller-img-small.no-img {
    background-color: #eef2f7;
}

    .controller-img-small.no-img i {
        font-size: 40px;
        color: #3b3b3b47;
    }

.controller-content-compact {
    padding: 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

    .controller-content-compact h6 {
        font-size: 18px;
        margin: 0 0 10px 0;
        color: #333;
        font-weight: 600;
    }

    .controller-content-compact p {
        margin: 0 0 15px 0;
        font-size: 14px;
        color: #666;
        line-height: 1.4;
        flex-grow: 1;
    }

.controller-link-small {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #0066cc;
    font-weight: 500;
    margin-top: auto;
}

    .controller-link-small i {
        margin-left: 5px;
    }

.controller-card-compact:hover .controller-link-small i {
    transform: translateX(4px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .controllers-buttons {
        overflow-x: auto;
        padding-bottom: 15px;
        align-content: center;
        flex-wrap: wrap;
    }

    .controller-tab {
        white-space: nowrap;
    }

    .controller-grid {
        grid-template-columns: repeat(auto-fill, minmax(calc(33.333% - 14px), 1fr));
    }

    .controller-category {
        padding: 20px 15px;
    }
}

@media (max-width: 768px) {
    .controller-grid {
        grid-template-columns: repeat(auto-fill, minmax(calc(50% - 10px), 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .controller-grid {
        grid-template-columns: 1fr;
    }
}

.subcategory-section {
    margin-bottom: 30px;
    padding-top: 15px;
    border-top: 1px solid #eaeaea;
}

.subcategory-title {
    font-size: 17px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.subcategory-desc {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

/* Add some space between subcategories */
.subcategory-section + .subcategory-section {
    margin-top: 10px;
}

/* Style the first subcategory differently if needed */
.subcategory-section:first-of-type {
    border-top: none;
    padding-top: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .subcategory-title {
        font-size: 18px;
    }

    .subcategory-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .subcategory-title {
        font-size: 17px;
    }
}


/* Media query for responsiveness */
@media (max-width: 600px) {
    #shortDescription .product-details, #shortDescription .product-detail-row strong {
        width: 100%;
    }

    #shortDescription .product-detail-row {
        align-items: flex-start;
        align-self: center;
    }
}


@media (max-width:768px) {
    .product_image {
        float: none;
        text-align: center;
        margin-left: 0rem;
        margin-top: 1rem;
        margin-bottom: .5rem;
    }



    .product_details h4 {
        font-size: 1.5rem;
    }

    .product_details h5 {
        margin-top: .7rem;
        font-size: 1rem;
        line-height: 20px;
    }

    .product_details p {
        margin-top: .5rem;
        font-size: .93rem;
        color: #756F6F;
        line-height: 21px;
    }
}

#commercial-faq {
    margin-top: 40px;
    color: #333;
    padding: 0 15px;
}

    #commercial-faq h4 {
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 20px;
        color: #2d3e50;
        text-align: left;
    }

    #commercial-faq .accordion-button-container {
        width: 100%;
        padding: 12px 15px;
        background-color: transparent;
        color: #555;
        font-size: 1rem;
        font-weight: 400;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border: 1px solid #55555561;
        border-radius: 0;
        background-color: #f8f9fa;
    }

        #commercial-faq .accordion-button-container:hover {
            background-color: #e9ecef;
        }

    #commercial-faq .accordion-question {
        flex: 1;
    }

    #commercial-faq .dropdown-icon {
        font-size: 14px;
        color: inherit;
    }

    #commercial-faq .accordion-item {
        margin-bottom: 8px;
    }

    #commercial-faq .accordion-body {
        padding: 10px 15px;
        background-color: #ffffff;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #555;
        border-bottom: 1px solid #55555561;
        display: none; /* Initially hide the body */
    }

    /* Show the content when the accordion item is active */
    #commercial-faq .accordion-item.active .accordion-body {
        display: block;
    }

    #commercial-faq .dropdown-icon i {
        font-size: 18px;
    }

/* Simple media query for mobile */
@media (max-width: 768px) {
    #commercial-faq .accordion-button-container {
        font-size: 0.9rem;
        padding: 8px 12px;
    }

    #commercial-faq .accordion-body {
        font-size: 0.85rem;
    }

    .btn-outline-secondary {
        font-size: .92rem
    }
 
}

.features-wrapper {
    clear: right;
}

.features-content {
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid #33333330;
}

.features-container {
    transition: all 0.3s ease;
}

.features-content {
    margin-top: 1rem;
    background: #fff;
    border: 1px solid #33333330;
    border-radius: 0 0 0.5rem 0.5rem;
}

.features-header {
    padding: 8px 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: #D9D9D9;
}

    .features-header:hover h5, .features-header:hover .toggle-btn {
        color: #dc3545;
    }

.header-content {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .header-content h5 {
        margin: 0;
        font-size: 0.9rem;
        font-weight: 500;
        color: #58595b;
    }

        .header-content h5:hover {
            color: #dc3545;
        }

.toggle-btn {
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    cursor: pointer;
}

.features-table {
    padding-left: 16px;
    padding-right: 16px;
}

/* Group One Section */
.group-one {
    margin-top: 9px;
    padding-left: 24px;
}

    .group-one .section-title {
        margin-top: 10px;
    }

.group-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    padding-bottom: 10px;
}

.group-item {
    display: flex;
    flex-direction: column;
}

.section-title {
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    padding: 5px 16px;
    background-color: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
    margin: 0 -16px; /* Negative margin to extend full width */
    margin-top: 0px !important;
    margin-left: -16px;
    margin-right: -16px;
}

.section-content {
    padding: 16px;
}

/* Specification Rows */
.spec-row {
    display: flex;
    align-items: baseline;
    padding: 8px 0;
}

    .spec-row:last-child {
        border-bottom: none;
    }

.spec-label {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 17px;
    color: #333;
    margin-right: 10px;
    font-weight: 600;
}


.type .spec-label {
}

.spec-value {
    flex: 1;
    font-size: 15px;
    color: #475569;
}

/* Responsive Design */
@media (max-width: 768px) {
    .features-header {
        background-color: #474e55;
        color: #ffff;
    }

        .features-header:hover h5, .features-header:hover .toggle-btn {
            color: #ffff
        }

        .features-header h5 {
            color: #ffff;
        }

    .group-one {
        padding-left: 0px;
    }

    .group-grid {
        grid-template-columns: 2fr;
        gap: 16px;
    }

    .section-content {
        padding-left: 16px;
    }

    .spec-row {
        flex-direction: column;
        gap: 4px;
    }

    .spec-label {
        width: 100%;
    }

    .features-table {
        /*padding: 12px;*/
    }
}



@media (min-width: 576px) and (max-width: 767px) {
}

@media (min-width: 768px) and (max-width: 991px) {
}

@media (min-width: 992px) and (max-width: 1199px) {
}


/* Force card view below 1619px breakpoint */
@media (max-width: 1619px) {
    /* Hide list view toggle button */

    .product-list .card:not(.card-image) {
        padding: .5rem;
    }

    #listViewBtn {
        display: none !important;
    }

    /* Force card view */
    .product-list .row.list-view {
        display: flex;
        flex-wrap: wrap;
    }

    /* Reset any list-view specific styles */
    .product-list .list-view .card {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .product-list .list-view .card-image {
        width: 100% !important;
        height: 200px !important;
        margin-right: 0 !important;
        margin-bottom: 1rem !important;
    }

    .product-list .list-view .card-body {
        padding: 0.3rem !important;
    }

    .product-list .list-view .tags {
        position: absolute !important;
        top: 15px !important;
        right: 15px !important;
        margin-top: 0 !important;
    }

    /* Force all columns to display 4 per row like card view */
    .product-list .list-view .col-12,
    .product-list .list-view .col-sm-6,
    .product-list .list-view .col-lg-4,
    .product-list .list-view .col-xl-3 {
        width: 25% !important;
        max-width: 25% !important;
        flex: 0 0 25% !important;
    }
}

/* Tablet view adjustments */
@media (max-width: 991px) {
    .product-list .list-view .col-12,
    .product-list .list-view .col-sm-6,
    .product-list .list-view .col-lg-4,
    .product-list .list-view .col-xl-3,
    .product-list .card-view .col-12,
    .product-list .card-view .col-sm-6,
    .product-list .card-view .col-lg-4,
    .product-list .card-view .col-xl-3 {
        width: 33.333% !important;
        max-width: 33.333% !important;
        flex: 0 0 33.333% !important;
    }
}

/* Small tablet view adjustments */
@media (max-width: 768px) {
    .product-list .list-view .col-12,
    .product-list .list-view .col-sm-6,
    .product-list .list-view .col-lg-4,
    .product-list .list-view .col-xl-3,
    .product-list .card-view .col-12,
    .product-list .card-view .col-sm-6,
    .product-list .card-view .col-lg-4,
    .product-list .card-view .col-xl-3 {
        width: 50% !important;
        max-width: 50% !important;
        flex: 0 0 50% !important;
    }
}

/* Mobile view adjustments */
@media (max-width: 576px) {
    .product-list .list-view .col-12,
    .product-list .list-view .col-sm-6,
    .product-list .list-view .col-lg-4,
    .product-list .list-view .col-xl-3,
    .product-list .card-view .col-12,
    .product-list .card-view .col-sm-6,
    .product-list .card-view .col-lg-4,
    .product-list .card-view .col-xl-3 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

/*summary blocks - new pages: Peter*/
.summary-block {
    margin-bottom: 40px;
}

    /* Make sure summary blocks are flex containers */
    .summary-block .row {
        display: flex;
        align-items: center;
    }

    /* Adjust spacing for text content */
    .summary-block .content {
        padding-right: 20px;
    }

    /* Style headings in the content */
    .summary-block h2 {
        color: #333;
        font-size: 1.5rem;
        margin-bottom: 15px;
        font-weight: 500;
    }

    /* Style paragraphs in the content */
    .summary-block p {
        color: #666;
        line-height: 1.6;
    }

    /* Image container */
    .summary-block .image-container {
        text-align: right;
        padding-left: 15px;
    }

    /* Image styling */
    .summary-block .key-image {
        max-width: 100%;
        height: auto;
        border-radius: 4px;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    }

/* Responsive adjustments */
@media (max-width: 767.98px) {
    .summary-block .row {
        flex-direction: column-reverse;
    }

    .summary-block .content {
        padding-right: 0;
        margin-top: 20px;
    }

    .summary-block .image-container {
        text-align: center;
        padding-left: 0;
    }
}

/* Optional hover effect */
.summary-block:hover {
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}
