:root {
    --truvill-navy: #102c46;
    --truvill-blue: #1769aa;
    --truvill-orange: #f59a23;
    --truvill-border: #d9e1e8;
    --truvill-muted: #607080;
}

.truvill-search {
    position: relative;
    width: 100%;
    z-index: 20;
}

.truvill-search__form {
    display: flex;
    min-height: 46px;
    margin: 0;
}

.truvill-search__input {
    width: 100%;
    min-width: 180px;
    margin: 0;
    padding: 11px 16px;
    color: #17212b;
    background: #fff;
    border: 1px solid var(--truvill-border);
    border-radius: 5px 0 0 5px;
    font-size: 15px;
    outline: 0;
}

.truvill-search__input:focus {
    border-color: var(--truvill-blue);
    box-shadow: 0 0 0 3px rgba(23, 105, 170, .14);
}

.truvill-search__button,
.truvill-filters button,
.truvill-quote-button {
    padding: 11px 20px;
    color: #fff;
    background: var(--truvill-orange);
    border: 0;
    border-radius: 0 5px 5px 0;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
}

.truvill-product-specs {
    margin: 20px 0;
    border-top: 1px solid var(--truvill-border);
}

.truvill-product-specs > div {
    display: grid;
    grid-template-columns: minmax(130px, 38%) 1fr;
    gap: 14px;
    padding: 10px 0;
    border-bottom: 1px solid var(--truvill-border);
}

.truvill-product-specs dt {
    color: var(--truvill-muted);
    font-weight: 600;
}

.truvill-product-specs dd {
    margin: 0;
    font-weight: 700;
}

.truvill-search--hero {
    max-width: 820px;
}

.truvill-search--hero .truvill-search__form {
    min-height: 58px;
}

.truvill-search--hero .truvill-search__input {
    padding-inline: 20px;
    font-size: 17px;
}

.truvill-search__suggestions {
    position: absolute;
    top: calc(100% + 6px);
    right: 0;
    left: 0;
    max-height: min(560px, 70vh);
    overflow-y: auto;
    background: #fff;
    border: 1px solid var(--truvill-border);
    border-radius: 7px;
    box-shadow: 0 16px 45px rgba(16, 44, 70, .18);
}

.truvill-suggestion {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 11px 14px;
    color: #17212b;
    border-bottom: 1px solid #edf1f4;
    text-decoration: none;
}

.truvill-suggestion:hover,
.truvill-suggestion:focus {
    background: #f5f8fb;
}

.truvill-suggestion img {
    width: 54px;
    height: 54px;
    flex: 0 0 54px;
    object-fit: contain;
    background: #f4f5f6;
    border-radius: 4px;
}

.truvill-suggestion__content {
    min-width: 0;
}

.truvill-suggestion strong,
.truvill-suggestion small {
    display: block;
}

.truvill-suggestion strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.truvill-suggestion small {
    margin-top: 4px;
    color: var(--truvill-muted);
}

.truvill-search__all,
.truvill-search__empty {
    display: block;
    padding: 14px;
    text-align: center;
}

.truvill-results {
    margin-block: 34px 70px;
}

.truvill-results__header {
    display: flex;
    gap: 24px;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 25px;
}

.truvill-results__header h1 {
    margin-bottom: 5px;
}

.truvill-results__header p {
    margin: 0;
    color: var(--truvill-muted);
}

.truvill-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.truvill-filters select,
.truvill-filters button {
    min-height: 42px;
    border-radius: 4px;
}

.truvill-filters select {
    padding: 8px 30px 8px 10px;
    border: 1px solid var(--truvill-border);
    background: #fff;
}

.truvill-results__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 20px;
}

.truvill-card {
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--truvill-border);
    border-radius: 7px;
}

.truvill-card__image {
    display: block;
    aspect-ratio: 4 / 3;
    background: #f5f6f7;
}

.truvill-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.truvill-card__body {
    padding: 17px;
}

.truvill-card__body h2 {
    margin: 6px 0 12px;
    font-size: 17px;
    line-height: 1.35;
}

.truvill-card__body p {
    margin: 4px 0;
    color: var(--truvill-muted);
    font-size: 14px;
}

.truvill-card__type {
    color: var(--truvill-blue);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.truvill-card__link {
    display: inline-block;
    margin-top: 14px;
    font-weight: 700;
}

.truvill-no-results {
    padding: 50px 25px;
    background: #f5f8fb;
    border-radius: 8px;
    text-align: center;
}

.truvill-quote-button {
    display: inline-block;
    margin-top: 12px;
    border-radius: 5px;
    text-decoration: none;
}

.truvill-pagination {
    margin-top: 35px;
}

.truvill-pagination ul {
    display: flex;
    gap: 6px;
    justify-content: center;
    list-style: none;
}

@media (max-width: 1024px) {
    .truvill-results__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .truvill-results__header { align-items: start; flex-direction: column; }
}

@media (max-width: 720px) {
    .truvill-search__button { padding-inline: 14px; }
    .truvill-results__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
    .truvill-filters { width: 100%; }
    .truvill-filters select { width: 100%; }
}

@media (max-width: 430px) {
    .truvill-results__grid { grid-template-columns: 1fr; }
}

/* Search catalog v1.2 */
.truvill-catalog{--tc:#31a7a8;--tc-dark:#289896;--action:#e88b19;--ink:#212121;--muted:#667685;--line:#d8e0e7;--soft:#f5f7f7;color:var(--ink)}
.truvill-catalog *{box-sizing:border-box}.truvill-catalog__search{margin-bottom:30px;padding:34px clamp(20px,4vw,42px);background:linear-gradient(105deg,#edf7f7,#f8fbfb);border:1px solid #cfe8e8;border-radius:7px}
.truvill-catalog__search>p{margin:0 0 4px;color:var(--tc);font-size:12px;font-weight:800;letter-spacing:.08em;text-transform:uppercase}.truvill-catalog__search h1{margin:0 0 16px;color:var(--ink);font-size:clamp(28px,4vw,42px)}
.truvill-catalog__search form{display:flex;max-width:850px;height:54px;box-shadow:0 5px 18px rgba(49,167,168,.1)}.truvill-catalog__search input{width:100%;padding:0 18px;background:#fff;border:1px solid #a8d4d4;border-right:0;border-radius:5px 0 0 5px;font-size:16px}.truvill-catalog__search button{padding:0 28px;color:#fff;background:var(--action);border:1px solid var(--action);border-radius:0 5px 5px 0;font-weight:800}
.truvill-catalog__layout{display:grid;grid-template-columns:270px minmax(0,1fr);gap:24px}.truvill-catalog__filters{align-self:start;padding:22px;background:#fff;border:1px solid var(--line);border-radius:7px;box-shadow:0 5px 18px rgba(16,44,70,.07);position:sticky;top:16px}
.truvill-filter-heading{display:flex;align-items:center;justify-content:space-between;margin-bottom:18px}.truvill-filter-heading h2{margin:0;color:var(--ink);font-size:22px}.truvill-filter-heading button{display:none;background:none;border:0;font-size:22px}
.truvill-catalog__filters label{display:block;margin-bottom:14px}.truvill-catalog__filters label>span{display:block;margin-bottom:6px;color:var(--ink);font-size:12px;font-weight:800;text-transform:uppercase}.truvill-catalog__filters select{width:100%;height:43px;padding:0 11px;background:#fff;border:1px solid var(--line);border-radius:4px}
.truvill-filter-actions{display:grid;grid-template-columns:1fr 1fr;gap:8px;margin-top:18px}.truvill-filter-actions button,.truvill-filter-actions a{display:grid;place-items:center;height:43px;border-radius:4px;font-weight:800;text-decoration:none}.truvill-filter-actions button{color:#fff;background:var(--action);border:1px solid var(--action)}.truvill-filter-actions a{color:var(--tc);background:#fff;border:1px solid var(--tc)}
.truvill-catalog__header{display:flex;align-items:center;justify-content:space-between;gap:18px;margin-bottom:14px}.truvill-catalog__header h2{margin:0;color:var(--ink);font-size:21px}.truvill-catalog__header p{margin:3px 0 0;color:var(--muted);font-size:14px}.truvill-catalog__toolbar{display:flex;gap:10px}.truvill-catalog__toolbar>button{display:none;height:40px;padding:0 14px;color:#fff;background:var(--tc);border:0;border-radius:4px;font-weight:800}.truvill-catalog__toolbar select{height:40px;padding:0 32px 0 10px;background:#fff;border:1px solid var(--line);border-radius:4px}
.truvill-product-list{display:grid;gap:14px}.truvill-product-row{display:grid;grid-template-columns:280px minmax(0,1fr);min-height:225px;overflow:hidden;background:#fff;border:1px solid var(--line);border-radius:7px;box-shadow:0 4px 14px rgba(16,44,70,.06)}.truvill-product-row.is-exact{border-left:4px solid var(--tc)}
.truvill-product-row__image{position:relative;display:grid;place-items:center;padding:14px;background:#f2f4f5}.truvill-product-row__image>span{position:absolute;top:12px;left:12px;padding:5px 8px;color:#fff;background:var(--tc);border-radius:3px;font-size:11px;font-weight:800;text-transform:uppercase}.truvill-product-row__image img{width:100%;height:190px;object-fit:contain}
.truvill-product-row__body{display:grid;grid-template-columns:minmax(0,1fr) 190px;gap:20px;padding:22px}.truvill-product-row__main>small{display:inline-block;margin-bottom:8px;color:var(--tc-dark);font-size:11px;font-weight:850;letter-spacing:.05em;text-transform:uppercase}.truvill-product-row h3{margin:0 0 9px;font-size:clamp(19px,2vw,25px);line-height:1.2}.truvill-product-row h3 a{color:var(--ink);text-decoration:none}
.truvill-product-row__meta{display:flex;flex-wrap:wrap;gap:7px 17px;margin-bottom:14px;color:var(--muted);font-size:14px}.truvill-product-row__meta strong{color:var(--ink)}.truvill-product-spec-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));margin:0;border-top:1px solid var(--line);border-left:1px solid var(--line)}.truvill-product-spec-grid>div{display:grid;grid-template-columns:115px minmax(0,1fr);min-height:43px;border-right:1px solid var(--line);border-bottom:1px solid var(--line)}.truvill-product-spec-grid dt,.truvill-product-spec-grid dd{margin:0;padding:10px}.truvill-product-spec-grid dt{background:var(--soft);font-weight:700}.truvill-product-spec-grid dd{color:var(--tc-dark);font-weight:650;overflow-wrap:anywhere}
.truvill-product-row__actions{display:flex;flex-direction:column;justify-content:center;gap:9px;border-left:1px solid var(--line);padding-left:20px}.truvill-product-row__actions a{display:block;padding:11px 12px;color:var(--tc);background:#fff;border:1px solid var(--tc);border-radius:4px;text-align:center;text-decoration:none;font-weight:800}.truvill-product-row__actions a.is-primary{color:#fff;background:var(--action);border-color:var(--action)}.truvill-product-row__actions small{color:#438153;text-align:center}
.truvill-catalog .truvill-pagination ul{display:flex;justify-content:center;gap:6px;margin-top:25px;list-style:none}.truvill-catalog .truvill-pagination a,.truvill-catalog .truvill-pagination span{display:grid;place-items:center;min-width:38px;height:38px;background:#fff;border:1px solid var(--line);border-radius:4px}.truvill-catalog .truvill-pagination .current{color:#fff;background:var(--tc);border-color:var(--tc)}
@media(max-width:1100px){.truvill-catalog__layout{grid-template-columns:230px minmax(0,1fr)}.truvill-product-row{grid-template-columns:230px minmax(0,1fr)}.truvill-product-row__body{grid-template-columns:1fr}.truvill-product-row__actions{flex-direction:row;border:0;border-top:1px solid var(--line);padding:14px 0 0}.truvill-product-row__actions a{flex:1}.truvill-product-row__actions small{display:none}.truvill-product-spec-grid{grid-template-columns:1fr}}
@media(max-width:760px){.truvill-catalog__layout{display:block}.truvill-catalog__filters{position:fixed;z-index:99999;top:0;bottom:0;left:0;width:min(340px,90vw);border-radius:0;transform:translateX(-105%);transition:.2s;overflow:auto}.truvill-catalog__filters.is-open{transform:translateX(0)}.truvill-filter-heading button,.truvill-catalog__toolbar>button{display:block}.truvill-catalog__header{align-items:flex-start}.truvill-catalog__toolbar{flex-direction:column}.truvill-product-row{grid-template-columns:1fr}.truvill-product-row__body{padding:17px}.truvill-product-row__actions{flex-direction:column}.truvill-product-spec-grid>div{grid-template-columns:105px 1fr}.truvill-catalog__search button{padding:0 16px}}

/* Search and quote page top chrome */
.truvill-search-page .hero-section{display:none!important}
.truvill-search-page .site-main{padding-top:clamp(42px,5vw,76px)}
.truvill-search-page #header{background:#fff;color:#102c46}
.truvill-search-page #header [data-row]{background:#fff;box-shadow:0 1px 0 rgba(16,44,70,.1)}
.truvill-search-page #header .menu>li>a,
.truvill-search-page #header [data-id*=menu] a,
.truvill-search-page #header .ct-header-text,
.truvill-search-page #header .ct-icon-container{color:#102c46!important}
.truvill-search-page #wpadminbar{background:#1d2327}
.truvill-search-page #wpadminbar a,
.truvill-search-page #wpadminbar .ab-item{color:#f0f0f1!important}

/* Catalog row v1.2.2 */
.truvill-product-row{grid-template-columns:240px minmax(0,1fr);min-height:0}
.truvill-product-row__image{min-height:220px}
.truvill-product-row__image img{height:210px;max-height:100%}
.truvill-product-row__body{grid-template-columns:minmax(0,1fr) 178px;align-items:stretch;gap:22px}
.truvill-product-row__main{min-width:0}
.truvill-product-row h3{max-width:100%;overflow-wrap:anywhere}
.truvill-product-facts{display:grid;grid-template-columns:repeat(3,minmax(140px,1fr));gap:8px;margin:16px 0 0}
.truvill-product-facts>div{min-width:0;padding:10px 11px;background:#f7f9fa;border:1px solid var(--line);border-radius:4px}
.truvill-product-facts dt,.truvill-product-facts dd{margin:0}
.truvill-product-facts dt{color:var(--muted);font-size:11px;font-weight:800;letter-spacing:.03em;text-transform:uppercase}
.truvill-product-facts dd{margin-top:4px;color:var(--ink);font-size:14px;font-weight:700;line-height:1.35;overflow-wrap:anywhere}
.truvill-product-row__actions{padding-left:22px}
.truvill-product-row__actions a{min-height:48px;display:grid;place-items:center}
@media(max-width:1180px){.truvill-product-row{grid-template-columns:220px minmax(0,1fr)}.truvill-product-row__body{grid-template-columns:1fr}.truvill-product-row__actions{flex-direction:row;border-left:0;border-top:1px solid var(--line);padding:14px 0 0}.truvill-product-row__actions a{flex:1}.truvill-product-facts{grid-template-columns:repeat(2,minmax(140px,1fr))}}
@media(max-width:760px){.truvill-search-page .site-main{padding-top:34px}.truvill-catalog__search{padding:26px 18px}.truvill-catalog__search h1{font-size:30px}.truvill-product-row{grid-template-columns:1fr}.truvill-product-row__image{min-height:190px}.truvill-product-row__image img{height:180px}.truvill-product-facts{grid-template-columns:1fr}.truvill-product-row__actions{flex-direction:column}}

/* Enhanced WooCommerce product detail pages */
.truvill-product-detail-page{
    --tp-teal:#31a7a8;
    --tp-teal-dark:#289896;
    --tp-navy:#102c46;
    --tp-text:#212121;
    --tp-muted:#667789;
    --tp-line:#dce5ec;
    --tp-soft:#f5f9fa;
    --tp-orange:#e88b19;
}
.truvill-product-detail-page .truvill-product-title{margin:0 0 22px;color:var(--tp-navy);font-size:clamp(34px,4.5vw,64px);line-height:1.08}
.truvill-product-detail-page.single-product .summary .price:empty,
.truvill-product-detail-page.single-product .summary p.price:empty{display:none!important}
.truvill-product-detail-page.single-product .product_meta{color:var(--tp-muted)}
.truvill-product-detail-page .truvill-product-specs--quick{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    margin:20px 0;
    overflow:hidden;
    background:#fff;
    border:1px solid var(--tp-line);
    border-radius:10px;
    box-shadow:0 10px 26px rgba(16,44,70,.06)
}
.truvill-product-detail-page .truvill-product-specs--quick>div{
    display:block;
    min-width:0;
    padding:14px 15px;
    border-right:1px solid var(--tp-line);
    border-bottom:1px solid var(--tp-line)
}
.truvill-product-detail-page .truvill-product-specs--quick>div:nth-child(2n){border-right:0}
.truvill-product-detail-page .truvill-product-specs--quick>div:nth-last-child(-n+2){border-bottom:0}
.truvill-product-detail-page .truvill-product-specs--quick dt{
    margin:0;
    color:var(--tp-muted);
    font-size:12px;
    font-weight:800;
    letter-spacing:.04em;
    text-transform:uppercase
}
.truvill-product-detail-page .truvill-product-specs--quick dd{
    margin:4px 0 0;
    color:var(--tp-navy);
    font-size:15px;
    font-weight:800;
    overflow-wrap:anywhere
}
.truvill-product-detail-page .truvill-product-quote{
    margin:20px 0 0;
    padding:16px;
    background:var(--tp-soft);
    border-left:4px solid var(--tp-teal);
    border-radius:8px
}
.truvill-product-detail-page .truvill-product-quote .truvill-quote-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    padding:13px 22px;
    color:#fff;
    background:var(--tp-orange);
    border:0;
    border-radius:7px;
    text-decoration:none;
    font-weight:900;
    text-transform:uppercase
}
.truvill-product-detail-page .truvill-product-quote p{
    margin:12px 0 0;
    color:var(--tp-muted);
    font-size:14px
}
.truvill-product-summary{
    margin:18px 0 22px;
    color:var(--tp-text)
}
.truvill-product-summary dl{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:0;
    margin:0;
    overflow:hidden;
    background:#fff;
    border:1px solid var(--tp-line);
    border-radius:10px;
    box-shadow:0 10px 26px rgba(16,44,70,.06)
}
.truvill-product-summary dl>div{
    min-width:0;
    padding:13px 15px;
    border-right:1px solid var(--tp-line);
    border-bottom:1px solid var(--tp-line)
}
.truvill-product-summary dl>div:nth-child(2n){border-right:0}
.truvill-product-summary dl>div:nth-last-child(-n+2){border-bottom:0}
.truvill-product-summary dt,
.truvill-product-summary dd{margin:0}
.truvill-product-summary dt{
    color:var(--tp-muted);
    font-size:12px;
    font-weight:850;
    letter-spacing:.04em;
    text-transform:uppercase
}
.truvill-product-summary dd{
    margin-top:4px;
    color:var(--tp-navy);
    font-size:15px;
    font-weight:850;
    overflow-wrap:anywhere
}
.truvill-product-summary__button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:48px;
    margin-top:16px;
    padding:13px 22px;
    color:#fff!important;
    background:var(--tp-orange);
    border-radius:7px;
    text-decoration:none!important;
    font-weight:900;
    text-transform:uppercase
}
.truvill-product-detail{
    display:grid;
    grid-template-columns:minmax(0,1fr) 330px;
    gap:28px;
    clear:both;
    margin:44px auto 0
}
.truvill-product-panel,
.truvill-product-side-card,
.truvill-related-card{
    overflow:hidden;
    background:#fff;
    border:1px solid var(--tp-line);
    border-radius:14px;
    box-shadow:0 12px 28px rgba(16,44,70,.06)
}
.truvill-product-panel+.truvill-product-panel,
.truvill-product-side-card+.truvill-product-side-card{margin-top:20px}
.truvill-product-panel h2,
.truvill-related-products h2{
    margin:0;
    color:var(--tp-navy);
    font-size:22px;
    line-height:1.2
}
.truvill-product-panel h2{
    padding:20px 22px;
    background:linear-gradient(90deg,rgba(49,167,168,.10),rgba(255,255,255,0));
    border-bottom:1px solid var(--tp-line)
}
.truvill-product-panel__body{padding:22px}
.truvill-product-panel__body p:first-child{margin-top:0}
.truvill-product-muted{color:var(--tp-muted)}
.truvill-product-table{
    width:100%;
    border-collapse:collapse;
    overflow:hidden;
    border:1px solid var(--tp-line);
    border-radius:10px
}
.truvill-product-table th,
.truvill-product-table td{
    padding:13px 15px;
    border-bottom:1px solid var(--tp-line);
    text-align:left;
    vertical-align:top
}
.truvill-product-table th{
    width:32%;
    color:var(--tp-navy);
    background:#f7fafb;
    font-weight:900
}
.truvill-product-table tr:last-child th,
.truvill-product-table tr:last-child td{border-bottom:0}
.truvill-compat-list{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:10px;
    padding:0;
    margin:0 0 16px;
    list-style:none
}
.truvill-compat-list li{
    padding:12px 14px;
    color:var(--tp-navy);
    background:var(--tp-soft);
    border:1px solid var(--tp-line);
    border-radius:8px;
    font-weight:800
}
.truvill-product-faq details{padding:15px 0;border-bottom:1px solid var(--tp-line)}
.truvill-product-faq details:last-child{border-bottom:0}
.truvill-product-faq summary{color:var(--tp-navy);cursor:pointer;font-weight:900}
.truvill-product-faq p{color:var(--tp-muted)}
.truvill-product-side-card{padding:22px}
.truvill-product-side-card h3{
    margin:0 0 12px;
    color:var(--tp-navy);
    font-size:20px
}
.truvill-product-side-card p{color:var(--tp-muted)}
.truvill-product-side-card ul{
    padding-left:18px;
    margin:10px 0 0;
    color:var(--tp-muted)
}
.truvill-product-side-card .truvill-quote-button{
    display:flex;
    align-items:center;
    justify-content:center;
    width:100%;
    min-height:48px;
    margin-top:14px;
    color:#fff;
    background:var(--tp-orange);
    border-radius:7px;
    text-decoration:none;
    font-weight:900;
    text-transform:uppercase
}
.truvill-related-products{
    clear:both;
    margin:44px auto 0
}
.truvill-related-products h2{font-size:28px}
.truvill-related-products__grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
    margin-top:20px
}
.truvill-related-card__image{
    position:relative;
    display:grid!important;
    place-items:center;
    height:190px;
    overflow:hidden;
    background:linear-gradient(145deg,#eef5f6,#fff);
    border-bottom:1px solid var(--tp-line);
    text-decoration:none!important
}
.truvill-related-card__image img{
    width:100%;
    height:175px;
    object-fit:contain;
    display:block;
    position:static!important;
    margin:0!important
}
.truvill-related-card__body{
    position:relative!important;
    display:block!important;
    padding:16px 16px 18px;
    background:#fff;
    z-index:2
}
.truvill-related-card h3{
    position:static!important;
    margin:0 0 8px!important;
    color:var(--tp-navy);
    font-size:16px;
    line-height:1.25;
    transform:none!important
}
.truvill-related-card h3 a{
    color:inherit!important;
    text-decoration:none!important
}
.truvill-related-card p{
    position:static!important;
    margin:0!important;
    color:var(--tp-muted);
    font-size:13px;
    transform:none!important
}
@media(max-width:980px){
    .truvill-product-detail{grid-template-columns:1fr}
    .truvill-compat-list,
    .truvill-related-products__grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:640px){
    .truvill-product-detail-page .truvill-product-specs--quick,
    .truvill-product-summary dl,
    .truvill-compat-list,
    .truvill-related-products__grid{grid-template-columns:1fr}
    .truvill-product-summary dl>div,
    .truvill-product-summary dl>div:nth-child(2n),
    .truvill-product-summary dl>div:nth-last-child(-n+2){border-right:0;border-bottom:1px solid var(--tp-line)}
    .truvill-product-summary dl>div:last-child{border-bottom:0}
    .truvill-product-detail-page .truvill-product-specs--quick>div,
    .truvill-product-detail-page .truvill-product-specs--quick>div:nth-child(2n),
    .truvill-product-detail-page .truvill-product-specs--quick>div:nth-last-child(-n+2){border-right:0;border-bottom:1px solid var(--tp-line)}
    .truvill-product-detail-page .truvill-product-specs--quick>div:last-child{border-bottom:0}
    .truvill-product-table th,
    .truvill-product-table td{display:block;width:100%}
    .truvill-product-table th{border-bottom:0}
}

/* Product-category introduction, rendered above the WooCommerce product loop. */
.truvill-category-intro{
    max-width:1200px;
    margin:0 auto 30px;
    padding:24px 28px;
    color:var(--tp-navy);
    background:linear-gradient(90deg,rgba(49,167,168,.10),rgba(255,255,255,.96));
    border:1px solid var(--tp-line);
    border-left:4px solid var(--tp-teal);
    border-radius:12px;
    box-shadow:0 10px 24px rgba(16,44,70,.05)
}
.truvill-category-intro h2{
    margin:0 0 10px;
    color:var(--tp-navy);
    font-size:24px;
    line-height:1.25
}
.truvill-category-intro__content{color:var(--tp-muted);line-height:1.7}
.truvill-category-intro__content p{margin:0 0 10px}
.truvill-category-intro__content p:last-child{margin-bottom:0}
@media(max-width:640px){
    .truvill-category-intro{margin-bottom:22px;padding:20px}
    .truvill-category-intro h2{font-size:21px}
}
