:root{
    --header-h: 76px;
    --primary: #0d6efd;
    --ink: #10233d;
    --muted: #62708a;
    --border: #dde6f2;
    --soft: #f6f9fe;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
    background:#f3f6fb;
    color:var(--ink);
    font-family:Arial,Helvetica,sans-serif;
    padding-top:var(--header-h);
}
a{text-decoration:none}

.site-header{
    position:fixed;
    inset:0 0 auto 0;
    z-index:1040;
    background:#fff;
    border-bottom:1px solid var(--border);
    min-height:var(--header-h);
}
.brand-logo{
    width:230px;
    max-width:62vw;
    height:auto;
}
.top-nav a{
    color:var(--ink);
    font-size:14px;
    font-weight:700;
    position:relative;
    padding-bottom:4px;
}
.top-nav a:hover{color:var(--primary)}
.top-nav a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:2px;
    background:var(--primary);
    transition:.2s ease;
}
.top-nav a:hover::after{width:100%}

.page-shell{
    min-height:calc(100vh - var(--header-h));
}

.muted-note{
    color:var(--muted);
    font-size:14px;
}
.soft-card,
.filter-panel,
.product-card,
.detail-card,
.seo-report-card,
.seo-reports-panel,
.compare-tray,
.admin-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:22px;
    box-shadow:0 8px 24px rgba(16,35,61,.05);
}

.hero-wrap{
    background:linear-gradient(180deg,#fff 0%,#eef4ff 100%);
    border-bottom:1px solid var(--border);
}
.hero-inner{padding:18px 0 8px}
.hero-slider .carousel-inner{
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 12px 36px rgba(16,35,61,.08);
}
.hero-slide{
    min-height:280px;
    padding:44px;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center;
}
.hero-copy{
    max-width:520px;
    background:rgba(255,255,255,.88);
    backdrop-filter:blur(10px);
    padding:22px 24px;
    border-radius:20px;
    border:1px solid rgba(255,255,255,.7);
}
.hero-copy h1,.hero-copy h2{
    font-size:34px;
    line-height:1.08;
    font-weight:800;
    margin:0 0 10px;
}
.hero-copy p{margin:0;color:var(--muted)}

.section-bar{padding:16px 0 4px}
.url-pill{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#fff;
    border:1px solid var(--border);
    border-radius:999px;
    padding:10px 14px;
    box-shadow:0 3px 14px rgba(16,35,61,.04);
    color:var(--muted);
    font-size:14px;
}

.seo-reports-wrap{padding:10px 0 0}
.seo-reports-panel{padding:18px}
.seo-report-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:16px;
}
.seo-report-card{
    padding:18px;
    cursor:pointer;
    transition:.2s ease;
}
.seo-report-card:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(16,35,61,.08)}
.seo-report-card .chip{
    display:inline-block;
    padding:6px 10px;
    border-radius:999px;
    background:#eef4ff;
    color:#1746a2;
    font-size:12px;
    font-weight:700;
    margin-bottom:12px;
}
.seo-report-card h3{
    font-size:18px;
    font-weight:800;
    margin:0 0 8px;
}
.seo-report-card p{
    color:var(--muted);
    font-size:14px;
    margin:0 0 12px;
}
.seo-report-card .cta{font-size:13px;font-weight:700;color:var(--primary)}

.layout-wrap{padding:18px 0 112px}
.filter-panel{
    position:sticky;
    top:92px;
    padding:18px;
}
.filter-panel h5{font-size:16px;font-weight:800;margin-bottom:12px}
.filter-panel .form-label{
    font-size:13px;
    color:var(--muted);
    margin-bottom:6px;
}
.filter-panel .form-select,
.filter-panel .form-control{
    border-radius:14px;
    min-height:44px;
}
.filter-panel .btn{
    border-radius:14px;
    min-height:44px;
    font-weight:700;
}

.product-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}
.product-card{
    overflow:hidden;
    transition:.22s ease;
}
.product-card:hover{
    transform:translateY(-3px);
    box-shadow:0 14px 34px rgba(16,35,61,.1);
}
.product-media{
    position:relative;
    background:#f8fbff;
    border-bottom:1px solid var(--border);
    padding:10px;
}
.product-media .product-image-container{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:10px;
}
.product-media img{
    width:100%;
    height:150px;
    object-fit:contain;
    display:block;
}
.product-badge{
    position:absolute;
    top:12px;
    left:12px;
    background:rgba(13,110,253,.94);
    color:#fff;
    font-size:12px;
    font-weight:800;
    padding:6px 10px;
    border-radius:999px;
}
.product-content{padding:14px;display:flex;flex-direction:column;gap:8px;flex:1}
.product-title{
    font-size:18px;
    font-weight:800;
    margin:0;
    line-height:1.2;
}
.product-sub{
    color:var(--muted);
    font-size:12px;
    margin:0;
}
.spec-row{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:8px;
    margin-bottom:0;
}
.spec-tile{
    background:#f8fbff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:8px 10px;
}
.spec-tile small{
    display:block;
    color:var(--muted);
    font-size:10px;
    text-transform:uppercase;
    letter-spacing:.03em;
    margin-bottom:3px;
}
.spec-tile strong{font-size:13px}
.price-row{
    display:flex;
    justify-content:space-between;
    gap:12px;
    align-items:center;
    margin-bottom:14px;
}
.price-row .mop{
    font-size:22px;
    font-weight:800;
}
.price-row .mrp{
    color:var(--muted);
    text-decoration:line-through;
}
.product-badges{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
    margin-top:-2px;
}
.tonnage-chip,
.capacity-chip{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:6px 10px;
    border-radius:999px;
    background:#eef4ff;
    color:#1746a2;
    font-size:12px;
    font-weight:700;
}
.capacity-chip{
    background:#f3f6fb;
    color:#516077;
}
.product-desc{
    margin:0;
    color:var(--muted);
    font-size:12px;
    line-height:1.45;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.check-wrap{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:0;
    padding:8px 10px;
    background:#f8fbff;
    border:1px solid var(--border);
    border-radius:14px;
}
.check-wrap input{width:18px;height:18px}
.card-actions{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    margin-top:2px;
}
.card-actions .btn{
    flex:1 1 140px;
    border-radius:14px;
    font-weight:700;
}

.feature-tags{
    display:flex;
    flex-wrap:wrap;
    gap:8px;
}
.feature-tag{
    display:inline-flex;
    align-items:center;
    gap:6px;
    padding:7px 10px;
    border-radius:999px;
    background:#eef4ff;
    color:#1746a2;
    font-size:12px;
    font-weight:700;
}
.feature-tag.gray{
    background:#f3f6fb;
    color:#516077;
}

.compare-tray{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:1030;
    border-radius:22px 22px 0 0;
    margin:0 12px 12px;
    overflow:hidden;
}
.tray-inner{
    display:flex;
    align-items:center;
    gap:16px;
    padding:12px;
}
.compare-items{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    gap:12px;
    flex:1;
}
.compare-slot{
    display:flex;
    align-items:center;
    gap:10px;
    background:#f8fbff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:10px;
    position:relative;
    min-height:74px;
}
.compare-slot img{
    width:52px;height:38px;object-fit:contain;background:#fff;border-radius:10px;border:1px solid var(--border)
}
.compare-slot .slot-text{min-width:0}
.compare-slot .slot-text strong{
    display:block;
    font-size:13px;
    line-height:1.2;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.compare-slot .slot-text span{
    display:block;
    color:var(--muted);
    font-size:12px;
}
.compare-slot .remove-btn{
    position:absolute;
    top:6px;
    right:8px;
    border:none;
    background:transparent;
    font-size:20px;
    line-height:1;
    color:#8d99ad;
}
.compare-actions{
    display:flex;
    align-items:center;
    gap:10px;
}
.compare-actions .btn{
    min-height:46px;
    font-weight:700;
    border-radius:14px;
}

.compare-page-top{
    padding:20px 0 0;
}
.compare-head{
    margin-bottom:14px;
}
.compare-top-actions{
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:12px;
    flex-wrap:wrap;
}
.compare-selected-wrap{
    position:sticky;
    top:calc(var(--header-h) + 12px);
    z-index:1020;
}
.compare-product-card{
    display:flex;
    flex-direction:column;
    overflow:hidden;
    border-radius:18px;
}
.compare-product-media{
    padding:8px;
}
.compare-product-media img{
    height:118px;
}
.compare-product-content{
    padding:12px;
    gap:6px;
}
.product-short-desc{
    color:var(--muted);
    font-size:12px;
    line-height:1.4;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.compare-table-shell{
    margin-bottom:14px;
}
.compare-table-scroll{
    max-height:calc(100vh - 340px);
    overflow:auto;
}
.compare-table-wrap{
    overflow:visible;
}
.compare-table{
    margin:0;
}
.compare-table thead th{
    vertical-align:top;
    background:#f8fbff;
    position:sticky;
    top:0;
    z-index:3;
}
.compare-table tbody td:first-child,
.compare-table thead th:first-child{
    position:sticky;
    left:0;
    z-index:4;
    background:#fff;
}
.compare-table tbody tr td:first-child{
    background:#fdfefe;
}
.compare-thumb{
    width:110px;
    height:76px;
    object-fit:contain;
    background:#fff;
    border:1px solid var(--border);
    border-radius:14px;
    padding:6px;
    display:block;
    margin-bottom:8px;
}
.compare-product-title{
    font-weight:800;
    margin-bottom:4px;
}
.compare-mini .btn{border-radius:10px}
.compare-section{
    background:#eef4ff;
    font-weight:800;
    color:#1746a2;
}
.compare-label{
    font-weight:700;
    color:var(--ink);
}
.compare-value{
    color:#23314a;
}

.detail-layout{padding:22px 0 110px}
.detail-card{
    overflow:hidden;
}
.detail-hero{
    width:100%;
    min-height:420px;
    object-fit:contain;
    background:#f8fbff;
    border-right:1px solid var(--border);
}
.detail-body{padding:26px}
.detail-body .badge{border-radius:999px;padding:.5rem .7rem}
.detail-list{
    list-style:none;
    padding:0;
    margin:0;
}
.detail-list li{
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding:12px 0;
    border-bottom:1px solid var(--border);
    font-size:14px;
}
.detail-list li b{font-weight:800}
.detail-list li span{text-align:right;color:#22324b}
.spec-card{
    height:100%;
    background:#f8fbff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:16px;
}
.spec-card h3{
    font-size:16px;
    margin:0 0 12px;
    font-weight:800;
}
.spec-card .spec-line{
    display:flex;
    justify-content:space-between;
    gap:12px;
    padding:10px 0;
    border-bottom:1px dashed #dce5f0;
    font-size:14px;
}
.spec-card .spec-line:last-child{border-bottom:0}
.spec-card .spec-line span{color:#22324b;text-align:right}
.badge-soft{
    display:inline-flex;
    align-items:center;
    border-radius:999px;
    padding:7px 10px;
    background:#eef4ff;
    color:#1746a2;
    font-size:12px;
    font-weight:700;
}

.admin-card .table thead th{background:#f7faff}
.table thead th{background:#f7faff}
@media (max-width: 1199.98px){
    .product-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .seo-report-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
    .compare-items{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media (max-width: 991.98px){
    .filter-panel{position:relative;top:auto}
    .detail-hero{min-height:320px;border-right:0;border-bottom:1px solid var(--border)}
}
@media (max-width: 767.98px){
    body{padding-top:72px}
    .hero-slide{min-height:250px;padding:22px}
    .hero-copy h1,.hero-copy h2{font-size:27px}
    .product-grid{grid-template-columns:1fr}
    .seo-report-grid{grid-template-columns:1fr}
    .compare-items{grid-template-columns:1fr}
    .tray-inner{flex-direction:column;align-items:stretch}
    .compare-actions{justify-content:flex-end}
    .detail-body{padding:20px}
    .spec-row{grid-template-columns:1fr}
}



.hero-banner{
    width:100%;
    height:auto !important;
    max-height:250px;
    object-fit:contain;
    display:block;
}

.hero-slider .carousel-inner{
    border-radius:24px;
    overflow:hidden;
}

.carousel-item{
    background:#fff;
}

.carousel-indicators button{
    width:12px;
    height:12px;
    border-radius:50%;
}


.advisor-box{
    background:#fff;
    padding:25px;
    border-radius:18px;
    box-shadow:0 3px 15px rgba(0,0,0,.08);
}

.search-grid{
    display:grid;
    grid-template-columns:
        repeat(auto-fit,minmax(220px,1fr));
    gap:15px;
}

.search-card{
    display:block;
    padding:18px;
    background:#fff;
    border-radius:12px;
    text-decoration:none;
    font-weight:600;
    color:#222;
    box-shadow:0 3px 12px rgba(0,0,0,.08);
    transition:.3s;
}

.search-card:hover{
    transform:translateY(-5px);
}

@media(max-width:768px){

    .search-grid{
        grid-template-columns:1fr 1fr;
    }

}

```css
/* =====================================
   POPULAR SEARCHES
===================================== */

.popular-searches-wrap{
    pa
dding:20px 0;
    background:#f3f6fb;
}

.popular-header{
    margin-bottom:18px;
}

.popular-header h2{
    font-size:28px;
    font-weight:800;
    color:#10233d;
    margin-bottom:5px;
}

.popular-header p{
    color:#62708a;
    margin:0;
    font-size:14px;
}

.popular-search-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:16px;
}

.popular-search-card{
    background:#fff;
    border:1px solid var(--border);
    border-radius:18px;
    padding:18px;
    display:flex;
    align-items:center;
    gap:15px;
    text-decoration:none;
    transition:all .25s ease;
    box-shadow:0 4px 14px rgba(16,35,61,.04);
}

.popular-search-card:hover{
    transform:translateY(-4px);
    border-color:var(--primary);
    box-shadow:0 10px 25px rgba(16,35,61,.08);
}

.popular-icon{
    width:54px;
    height:54px;
    border-radius:14px;
    background:linear-gradient(135deg,#0d6efd,#4f8dfd);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    flex-shrink:0;
}

.popular-search-card strong{
    display:block;
    color:#10233d;
    font-size:15px;
    font-weight:800;
    margin-bottom:4px;
}

.popular-search-card span{
    display:block;
    color:#62708a;
    font-size:12px;
}

@media (max-width:1199px){
    .popular-search-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }
}

@media (max-width:767px){
    .popular-search-grid{
        grid-template-columns:1fr;
    }

    .popular-header h2{
        font-size:22px;
    }

    .popular-search-card{
        padding:14px;
    }
}
```
