.products-overview,
.product-detail-main {
    max-width: 1180px;
    width: 100%;
    margin: 0 auto;
    padding: 34px 24px 52px;
}

.products-overview h1,
.product-detail-main h1 {
    margin: 0 0 12px;
    color: #003a70;
    font-size: 36px;
    line-height: 1.15;
}

.products-overview > p,
.product-lede {
    color: #173d5f;
    font-size: 18px;
    line-height: 1.55;
}

.product-category-hero {
    margin: 24px 0 30px;
    background: #06121d;
    box-shadow: 0 10px 26px rgba(0, 58, 112, 0.16);
}

.product-category-hero img {
    display: block;
    width: 100%;
    height: auto;
}

.product-category-grid,
.product-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.product-category-card,
.product-card,
.product-feature-group,
.product-documents {
    background: #ffffff;
    border-top: 4px solid #003a70;
    box-shadow: 0 10px 26px rgba(0, 58, 112, 0.10);
}

.product-card-body,
.product-feature-group,
.product-documents {
    padding: 20px;
}

.product-category-card {
    overflow: hidden;
}

.product-category-card-body {
    padding: 20px;
}

.product-category-image {
    display: block;
    background: #06121d;
}

.product-category-image img {
    display: block;
    width: 100%;
    aspect-ratio: 1.69 / 1;
    object-fit: cover;
}

.product-category-card h2,
.product-card h2,
.product-feature-group h2,
.product-documents h2,
.product-section-heading {
    margin: 0 0 10px;
    color: #003a70;
    line-height: 1.2;
}

.product-category-card a,
.product-card a {
    color: #003a70;
}

.product-link,
.product-quote-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 8px;
    padding: 10px 16px;
    background: #d15a0d;
    color: #ffffff !important;
    font-weight: 800;
    text-decoration: none;
}

.product-card-image {
    display: block;
    background: #eef3f7;
}

.product-card-image img {
    display: block;
    width: 100%;
    height: 170px;
    object-fit: contain;
}

.product-section-heading {
    margin-top: 34px;
}

.product-breadcrumb {
    margin-bottom: 14px;
    color: #42617a;
    font-size: 15px;
}

.product-breadcrumb a {
    color: #003a70;
}

.product-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 26px;
    align-items: start;
}

.product-detail-content,
.product-detail-aside {
    display: grid;
    gap: 18px;
}

.product-detail-image {
    display: block;
    width: 100%;
    height: auto;
    background: #eef3f7;
}

.product-feature-group ul,
.product-documents ul {
    margin: 0;
    padding-left: 22px;
}

.product-feature-group li {
    margin: 6px 0;
}

.product-spec-list {
    display: grid;
    gap: 8px;
    margin: 0;
}

.product-spec-list div {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #dbe4ea;
}

.product-spec-list dt {
    color: #003a70;
    font-weight: 800;
}

.product-spec-list dd {
    margin: 0;
}

.product-documents li {
    margin: 8px 0;
}

.product-documents span {
    display: block;
    color: #5d7180;
    font-size: 13px;
}

@media (max-width: 800px) {
    .products-overview,
    .product-detail-main {
        padding: 26px 16px 40px;
    }

    .product-detail-layout {
        grid-template-columns: 1fr;
    }

    .product-detail-aside {
        order: -1;
    }

    .product-spec-list div {
        grid-template-columns: 1fr;
        gap: 2px;
    }
}
