
:root{
  --sln-dark:#292e35;
  --sln-dark-2:#343a40;
  --sln-blue:#1f5f9e;
  --sln-green:#61ad3f;
  --sln-light:#f4f4f4;
  --sln-border:#ddd;
  --sln-text:#222;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--sln-text);
  background:#fff;
  font-size:14px;
}
a{text-decoration:none}
.top-header{
  background:#fff;
  border-bottom:1px solid #ddd;
}
.logo{
  width:48px;height:48px;object-fit:contain;
}
.company-name{font-size:17px;font-weight:700;line-height:1.1}
.small-meta{font-size:10px;color:#555}
.trust-badge{
  width:45px;height:45px;border-radius:50%;
  background:#f5c400;color:#111;
  display:flex;align-items:center;justify-content:center;
  font-size:7px;font-weight:800;text-align:center;
  border:2px solid #d9a800;
}
.header-btn{
  border:1px solid #555;
  background:#fff;
  color:#222;
  min-width:105px;
  height:34px;
  border-radius:3px;
  font-size:11px;
}
.header-btn.dark{background:#555;color:#fff;border-color:#555}
.main-nav{
  background:var(--sln-dark);
  color:#fff;
}
.main-nav .nav-link{
  color:#fff!important;
  font-size:12px;
  padding:11px 18px!important;
}
.search-box{
  height:30px;
  font-size:10px;
  border-radius:2px 0 0 2px;
}
.search-btn{
  height:30px;
  border:0;
  background:#555;
  color:#fff;
  font-size:10px;
  border-radius:0 2px 2px 0;
}
.category-strip{
  padding:12px 0 14px;
  background:#fff;
  border-bottom:1px solid #eee;
}
.category-item{
  width:100px;
  text-align:center;
  color:#222;
}
.category-img{
  width:55px;height:55px;border-radius:50%;
  object-fit:cover;
  border:1px solid #eee;
  background:#eee;
}
.category-name{
  font-size:10px;
  line-height:1.15;
  margin-top:5px;
}

/* =========================================================
   PRODUCT ACTION BUTTONS
========================================================= */

.product-actions {
    display: flex;
    gap: 8px;
    width: 100%;
    margin-top: 16px;
}


/* GET QUOTE */

.product-actions .quote-btn {
    flex: 1;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    min-height: 42px;

    padding: 0 10px;

    border-radius: 6px;

    background: #111827;

    color: #fff !important;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: all .25s ease;
}


.product-actions .quote-btn span {
    font-size: 15px;

    transition: transform .25s ease;
}


.product-actions .quote-btn:hover {
    background: #000;
}


.product-actions .quote-btn:hover span {
    transform: translateX(4px);
}


/* CALL BUTTON */

.product-actions .call-btn {
    flex: 0 0 82px;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;

    min-height: 42px;

    padding: 0 9px;

    border: 1px solid #111827;

    border-radius: 6px;

    background: #fff;

    color: #111827 !important;

    font-size: 12px;
    font-weight: 600;

    text-decoration: none;

    transition: all .25s ease;
}


.product-actions .call-btn span {
    font-size: 14px;
}


.product-actions .call-btn:hover {
    background: #111827;

    color: #fff !important;
}


/* MOBILE */

@media (max-width: 480px) {

    .product-actions {
        gap: 6px;
    }

    .product-actions .quote-btn {
        font-size: 11px;
    }

    .product-actions .call-btn {
        flex: 0 0 70px;

        font-size: 11px;
    }

}

/* =========================================================
   SLN CATEGORY SECTION
========================================================= */

.sln-category-section {
    padding: 65px 0;

    background: #f7f8fa;

    border-top: 1px solid #e8eaed;
    border-bottom: 1px solid #e8eaed;
}


/* =========================================================
   HEADER
========================================================= */

.sln-category-header {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    gap: 20px;

    margin-bottom: 30px;
}


.sln-category-header span {
    display: block;

    margin-bottom: 6px;

    color: #777;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;
}


.sln-category-header h2 {
    margin: 0;

    color: #15181c;

    font-size: 30px;

    font-weight: 750;

    line-height: 1.2;

    letter-spacing: -.6px;
}


.sln-category-view {
    display: inline-flex;

    align-items: center;

    gap: 7px;

    color: #15181c !important;

    font-size: 13px;

    font-weight: 600;

    text-decoration: none;

    white-space: nowrap;
}


.sln-category-view strong {
    font-size: 18px;

    transition: transform .25s ease;
}


.sln-category-view:hover strong {
    transform: translateX(5px);
}


/* =========================================================
   CATEGORY GRID
========================================================= */

.sln-category-scroll {
    display: grid;

    grid-template-columns:
        repeat(8, minmax(0, 1fr));

    gap: 12px;
}


/* =========================================================
   CATEGORY CARD
========================================================= */

.sln-category-card {
    position: relative;

    min-width: 0;

    min-height: 190px;

    padding: 18px 12px 15px;

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: space-between;

    background: #ffffff;

    border: 1px solid #e1e4e8;

    border-radius: 10px;

    color: #17191c !important;

    text-decoration: none;

    overflow: hidden;

    transition:
        transform .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}


.sln-category-card:hover {
    transform: translateY(-5px);

    border-color: #c8ccd1;

    box-shadow:
        0 12px 28px rgba(0,0,0,.08);
}


/* =========================================================
   IMAGE
========================================================= */

.sln-category-image {
    width: 105px;

    height: 105px;

    display: flex;

    align-items: center;

    justify-content: center;

    margin-bottom: 12px;

    border-radius: 50%;

    background: #f5f6f7;

    transition:
        transform .3s ease,
        background .3s ease;
}


.sln-category-image img {
    width: 78px;

    height: 78px;

    object-fit: contain;

    display: block;

    transition: transform .3s ease;
}


.sln-category-card:hover .sln-category-image {
    background: #eef0f2;

    transform: scale(1.04);
}


.sln-category-card:hover .sln-category-image img {
    transform: scale(1.08);
}


/* =========================================================
   CATEGORY NAME
========================================================= */

.sln-category-name {
    width: 100%;

    min-height: 40px;

    display: flex;

    align-items: center;

    justify-content: center;

    padding: 0 5px;

    text-align: center;

    color: #202327;

    font-size: 12px;

    font-weight: 650;

    line-height: 1.45;
}


/* =========================================================
   ARROW
========================================================= */

.sln-category-arrow {
    position: absolute;

    right: 10px;

    bottom: 9px;

    width: 22px;

    height: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: #f0f1f2;

    color: #333;

    font-size: 12px;

    opacity: 0;

    transform: translateX(-4px);

    transition: all .25s ease;
}


.sln-category-card:hover .sln-category-arrow {
    opacity: 1;

    transform: translateX(0);
}


/* =========================================================
   LARGE TABLET
========================================================= */

@media (max-width: 1200px) {

    .sln-category-scroll {
        grid-template-columns:
            repeat(4, 1fr);
    }

}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 767px) {

    .sln-category-section {
        padding: 50px 0;
    }

    .sln-category-header {
        align-items: flex-start;

        flex-direction: column;

        margin-bottom: 22px;
    }

    .sln-category-header h2 {
        font-size: 26px;
    }

    .sln-category-view {
        font-size: 12px;
    }

    .sln-category-scroll {
        display: flex;

        overflow-x: auto;

        gap: 12px;

        padding: 3px 2px 15px;

        scroll-snap-type: x mandatory;

        scrollbar-width: none;
    }

    .sln-category-scroll::-webkit-scrollbar {
        display: none;
    }

    .sln-category-card {
        flex: 0 0 155px;

        min-height: 185px;

        scroll-snap-align: start;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 480px) {

    .sln-category-section {
        padding: 42px 0;
    }

    .sln-category-header h2 {
        font-size: 24px;
    }

    .sln-category-card {
        flex: 0 0 150px;

        min-height: 178px;
    }

    .sln-category-image {
        width: 92px;
        height: 92px;
    }

    .sln-category-image img {
        width: 68px;
        height: 68px;
    }

    .sln-category-name {
        font-size: 11.5px;
    }

}

/* =========================================================
   PRODUCTS SECTION
========================================================= */

.products-section {
    padding: 70px 0;
    background: #f7f8fa;
    font-family: Arial, Helvetica, sans-serif;
}


/* =========================================================
   FEATURED PRODUCTS
========================================================= */

.feature-card {
    height: 100%;
    display: flex;
    background: #ffffff;
    border: 1px solid #e2e5e9;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: #cfd4da;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}


.feature-image-box {
    width: 45%;
    min-height: 290px;
    position: relative;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

.feature-img {
    width: 100%;
    height: 220px;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.feature-card:hover .feature-img {
    transform: scale(1.06);
}


.feature-body {
    width: 55%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}


.small-label {
    font-size: 10px;
    font-weight: 700;
    color: #6c757d;
    letter-spacing: 1.2px;
    margin-bottom: 7px;
}


.feature-title {
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    color: #17191c;
    margin: 0 0 8px;
}


.rating-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 12px;
}

.stars,
.product-rating span {
    color: #f5a623;
    font-size: 13px;
    letter-spacing: 1px;
}

.rating-text {
    font-size: 13px;
    font-weight: 600;
    color: #333;
}

.reviews {
    color: #777;
    font-size: 12px;
}


.price {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin-bottom: 14px;
}

.price span {
    font-size: 12px;
    font-weight: 400;
    color: #777;
}


.product-meta {
    color: #555;
    font-size: 12px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.product-meta strong {
    color: #252525;
    font-weight: 600;
}


.quote-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 11px 15px;
    border-radius: 6px;
    background: #111827;
    color: #fff !important;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.quote-btn span {
    font-size: 17px;
    line-height: 1;
    transition: transform 0.25s ease;
}

.quote-btn:hover {
    background: #000;
    color: #fff !important;
}

.quote-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   BADGES
========================================================= */

.product-badge,
.mini-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    background: #111827;
    color: #fff;
    padding: 5px 9px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: .4px;
}

.mini-badge {
    top: 10px;
    left: 10px;
    font-size: 9px;
    padding: 4px 7px;
}


/* =========================================================
   RANGE CARD
========================================================= */

.range-card {
    height: 100%;
    min-height: 290px;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    background: #111827;
    text-decoration: none;
    display: block;
    color: #fff;
}

.range-image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: .15;
}

.range-image img {
    width: 90%;
    height: 90%;
    object-fit: contain;
}

.range-content {
    position: relative;
    z-index: 2;
    height: 100%;
    padding: 28px 22px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.range-content > span {
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;
    color: #b8c0cc;
    margin-bottom: 8px;
}

.range-content h3 {
    font-size: 21px;
    line-height: 1.25;
    font-weight: 700;
    margin: 0 0 25px;
    color: #fff;
}

.range-arrow {
    font-size: 11px;
    font-weight: 600;
    color: #fff;
}

.range-arrow strong {
    margin-left: 8px;
    font-size: 16px;
    transition: transform .25s ease;
}

.range-card:hover .range-arrow strong {
    display: inline-block;
    transform: translateX(5px);
}


/* =========================================================
   PRODUCTS HEADING
========================================================= */

.products-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin: 50px 0 22px;
    padding-bottom: 15px;
    border-bottom: 1px solid #e0e3e7;
}

.section-label {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    color: #777;
    margin-bottom: 5px;
}

.products-heading h2 {
    margin: 0;
    color: #16181b;
    font-size: 27px;
    font-weight: 700;
}

.view-all-btn {
    color: #111827;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid #d7dbe0;
    padding: 9px 15px;
    border-radius: 6px;
    background: #fff;
    transition: all .25s ease;
}

.view-all-btn:hover {
    background: #111827;
    color: #fff;
    border-color: #111827;
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.product-card {
    height: 100%;
    background: #fff;
    border: 1px solid #e1e4e8;
    border-radius: 10px;
    overflow: hidden;
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: #cdd2d8;
    box-shadow: 0 10px 28px rgba(0, 0, 0, .08);
}


/* =========================================================
   PRODUCT IMAGE
========================================================= */

.product-image-box {
    height: 190px;
    position: relative;
    background: #fafafa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-bottom: 1px solid #eeeeee;
}

.product-img {
    width: 100%;
    height: 185px;
    object-fit: cover;
    transition: transform .35s ease;
}

.product-card:hover .product-img {
    transform: scale(1.07);
}


/* =========================================================
   PRODUCT BODY
========================================================= */

.product-body {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex: 1;
}


.product-title {
    font-size: 14px;
    line-height: 1.45;
    font-weight: 600;
    color: #1d2024;
    margin: 0 0 7px;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;

    min-height: 40px;
}


.product-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 5px;
}

.product-rating span {
    font-size: 11px;
}

.product-rating small {
    font-size: 10px;
    color: #666;
}


.product-body .price {
    font-size: 17px;
    margin-bottom: 8px;
}


.product-body .product-meta {
    font-size: 10.5px;
    line-height: 1.65;
    margin-bottom: 14px;
    min-height: 52px;
}


.product-body .quote-btn {
    margin-top: auto;
    padding: 9px 10px;
    font-size: 11px;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1199px) {

    .product-image-box {
        height: 175px;
    }

    .product-img {
        height: 130px;
    }

}


@media (max-width: 991px) {

    .feature-card {
        min-height: 270px;
    }

    .feature-image-box {
        width: 42%;
        min-height: 270px;
    }

    .feature-body {
        width: 58%;
        padding: 22px;
    }

    .range-card {
        min-height: 250px;
    }

}


@media (max-width: 767px) {

    .products-section {
        padding: 45px 0;
    }

    .feature-card {
        flex-direction: column;
    }

    .feature-image-box {
        width: 100%;
        height: 210px;
        min-height: 210px;
    }

    .feature-img {
        height: 160px;
    }

    .feature-body {
        width: 100%;
        padding: 20px;
    }

    .range-card {
        min-height: 230px;
    }

    .products-heading {
        align-items: flex-start;
        gap: 15px;
        flex-direction: column;
    }

    .products-heading h2 {
        font-size: 23px;
    }

}


@media (max-width: 480px) {

    .products-section {
        padding: 35px 0;
    }

    .product-image-box {
        height: 145px;
        padding: 15px;
    }

    .product-img {
        height: 110px;
    }

    .product-body {
        padding: 12px;
    }

    .product-title {
        font-size: 12px;
    }

    .product-body .price {
        font-size: 15px;
    }

    .product-body .product-meta {
        font-size: 9px;
    }

    .quote-btn {
        font-size: 10px;
    }

}
.range-card{
  min-height:125px;
  background:#6b7076;
  color:#fff;
  position:relative;
}
.range-card img{
  width:100%;height:125px;object-fit:cover;opacity:.55;
}
.range-overlay{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:11px;
  font-weight:700;
  padding:15px;
}

/* =========================================================
   WELCOME / COMPANY SECTION
========================================================= */

.welcome-section {
    padding: 85px 0;
    background: #ffffff;
    position: relative;
}


/* =========================================================
   MAIN GRID
========================================================= */

.welcome-grid {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 65px;
    align-items: center;
}


/* =========================================================
   LEFT CONTENT
========================================================= */

.welcome-content {
    padding-right: 20px;
}

.welcome-content .section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 8px;
}


.welcome-title {
    margin: 0;
    font-size: 42px;
    line-height: 1.1;
    font-weight: 800;
    letter-spacing: -1px;
    color: #111827;
}

.welcome-title span {
    font-weight: 400;
    color: #555;
}


.welcome-line {
    width: 55px;
    height: 3px;
    background: #111827;
    margin: 22px 0 22px;
}


.welcome-text {
    font-size: 14px;
    line-height: 1.8;
    color: #62676d;
    margin-bottom: 14px;
    max-width: 560px;
}


/* =========================================================
   CTA
========================================================= */

.welcome-cta {
    margin-top: 30px;
    padding: 20px;
    border: 1px solid #e1e4e8;
    border-radius: 10px;
    background: #f8f9fa;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}


.cta-label {
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.2px;
    color: #777;
    margin-bottom: 4px;
}

.cta-text {
    font-size: 12px;
    color: #333;
}


.welcome-btn {
    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    padding: 11px 18px;

    background: #111827;
    color: #fff !important;

    border-radius: 6px;
    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    transition: all .25s ease;
}

.welcome-btn span {
    font-size: 17px;
    transition: transform .25s ease;
}

.welcome-btn:hover {
    background: #000;
    color: #fff !important;
}

.welcome-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   COMPANY INFORMATION
========================================================= */

.company-info {
    width: 100%;
}


.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}


/* =========================================================
   INFO CARD
========================================================= */

.info-box {
    min-height: 105px;

    padding: 18px;

    display: flex;
    align-items: center;
    gap: 15px;

    background: #fff;

    border: 1px solid #e3e6e9;
    border-radius: 10px;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.info-box:hover {
    transform: translateY(-3px);

    border-color: #d2d6db;

    box-shadow:
        0 8px 22px rgba(0, 0, 0, .07);
}


/* =========================================================
   INFO ICON
========================================================= */

.info-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 8px;

    background: #f1f3f5;

    color: #111827;

    font-size: 17px;
}


.info-icon span {
    line-height: 1;
}


/* =========================================================
   INFO TEXT
========================================================= */

.info-content {
    min-width: 0;
}


.info-title {
    font-size: 10px;
    line-height: 1.4;

    color: #777;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: .5px;

    margin-bottom: 5px;
}


.info-value {
    font-size: 13px;
    line-height: 1.4;

    color: #1b1e22;

    font-weight: 700;
}


.gst-number {
    font-size: 12px;
    letter-spacing: .3px;
}


/* =========================================================
   VERIFIED
========================================================= */

.verified {
    display: flex;
    align-items: center;
    gap: 6px;

    font-size: 12px;

    color: #24272b;

    font-weight: 700;
}


.verified-dot {
    width: 18px;
    height: 18px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #111827;
    color: #fff;

    font-size: 10px;
}


/* =========================================================
   HIGHLIGHT CARD
========================================================= */

.info-highlight {
    min-height: 105px;

    padding: 18px;

    display: flex;
    align-items: center;
    gap: 15px;

    border-radius: 10px;

    background: #111827;
    color: #fff;

    grid-column: span 1;
}


.highlight-number {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
}


.highlight-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}


.highlight-text strong {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .8px;
}


.highlight-text span {
    color: #aeb5bf;
    font-size: 10px;
    line-height: 1.4;
}


/* =========================================================
   RESPONSIVE - TABLET
========================================================= */

@media (max-width: 991px) {

    .welcome-section {
        padding: 65px 0;
    }

    .welcome-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .welcome-content {
        padding-right: 0;
    }

    .welcome-title {
        font-size: 38px;
    }

}


/* =========================================================
   RESPONSIVE - MOBILE
========================================================= */

@media (max-width: 767px) {

    .welcome-section {
        padding: 50px 0;
    }

    .welcome-title {
        font-size: 32px;
    }

    .welcome-text {
        font-size: 13px;
        line-height: 1.7;
    }

    .welcome-cta {
        align-items: flex-start;
        flex-direction: column;
    }

    .welcome-btn {
        width: 100%;
        justify-content: center;
    }

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

    .info-highlight {
        grid-column: span 1;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .welcome-title {
        font-size: 29px;
    }

    .info-box {
        min-height: 95px;
        padding: 14px;
    }

    .info-icon {
        width: 38px;
        height: 38px;
        font-size: 15px;
    }

    .info-title {
        font-size: 9px;
    }

    .info-value {
        font-size: 12px;
    }

}

/* =========================================================
   REVIEWS SECTION
========================================================= */

.reviews-section {
    padding: 0 0 80px;
    background: #f7f8fa;
}


/* =========================================================
   HEADER
========================================================= */

.reviews-header {
    background: #fff;
    border-top: 1px solid #e3e6e9;
    border-bottom: 1px solid #e3e6e9;
    padding: 30px 0;
}


.reviews-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}


.reviews-label {
    display: block;

    font-size: 10px;
    font-weight: 700;

    letter-spacing: 1.6px;

    color: #777;

    margin-bottom: 5px;
}


.reviews-header h2 {
    margin: 0 0 5px;

    font-size: 28px;
    line-height: 1.2;

    font-weight: 700;

    color: #15181c;
}


.reviews-header p {
    margin: 0;

    font-size: 12px;

    color: #777;
}


.reviews-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    padding: 10px 16px;

    background: #fff;

    border: 1px solid #d8dce1;
    border-radius: 6px;

    color: #111827 !important;

    text-decoration: none;

    font-size: 12px;
    font-weight: 600;

    white-space: nowrap;

    transition: all .25s ease;
}


.reviews-view-all span {
    font-size: 16px;
    transition: transform .25s ease;
}


.reviews-view-all:hover {
    background: #111827;
    color: #fff !important;

    border-color: #111827;
}


.reviews-view-all:hover span {
    transform: translateX(4px);
}


/* =========================================================
   RATING SUMMARY
========================================================= */

.rating-summary-wrapper {
    padding: 28px 0;
}


.rating-summary {
    display: grid;

    grid-template-columns:
        0.7fr
        1.4fr
        1fr;

    background: #fff;

    border: 1px solid #e0e3e7;

    border-radius: 12px;

    overflow: hidden;
}


/* =========================================================
   OVERALL RATING
========================================================= */

.overall-rating {
    padding: 30px;

    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;

    text-align: center;

    border-right: 1px solid #e6e8eb;
}


.rating-caption {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.3px;

    color: #777;

    margin-bottom: 7px;
}


.big-rating {
    font-size: 48px;

    line-height: 1;

    font-weight: 800;

    color: #111827;
}


.big-rating span {
    font-size: 17px;

    font-weight: 400;

    color: #777;
}


.rating-stars {
    margin-top: 10px;

    color: #f4a623;

    font-size: 19px;

    letter-spacing: 2px;
}


.rating-stars span {
    color: #d9dde2;
}


.review-count {
    margin-top: 8px;

    font-size: 11px;

    color: #777;
}


.review-count strong {
    color: #333;
}


/* =========================================================
   RATING BREAKDOWN
========================================================= */

.rating-breakdown {
    padding: 30px;
}


.breakdown-title {
    margin-bottom: 18px;

    font-size: 12px;

    font-weight: 700;

    color: #202328;
}


.rating-row {
    display: grid;

    grid-template-columns: 45px 1fr 35px;

    align-items: center;

    gap: 10px;

    margin-bottom: 10px;
}


.star-label {
    font-size: 10px;

    color: #666;

    font-weight: 600;
}


.review-bar {
    height: 7px;

    background: #edf0f2;

    border-radius: 10px;

    overflow: hidden;
}


.review-bar span {
    display: block;

    height: 100%;

    background: #111827;

    border-radius: 10px;
}


.percentage {
    font-size: 10px;

    text-align: right;

    color: #777;
}


/* =========================================================
   SATISFACTION
========================================================= */

.satisfaction {
    padding: 30px;

    border-left: 1px solid #e6e8eb;

    display: flex;
    flex-direction: column;

    justify-content: center;
}


.satisfaction-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;

    text-align: center;
}


.satisfaction-item {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 8px;
}


.satisfaction-circle {
    width: 62px;
    height: 62px;

    border: 1px solid #111827;

    border-radius: 50%;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #fff;
}


.satisfaction-circle strong {
    font-size: 12px;

    color: #111827;
}


.satisfaction-item > span {
    font-size: 9px;

    font-weight: 600;

    color: #777;

    text-transform: uppercase;

    letter-spacing: .5px;
}


/* =========================================================
   REVIEW HEADING
========================================================= */

.review-heading {
    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin: 28px 0 18px;

    padding-bottom: 14px;

    border-bottom: 1px solid #e0e3e7;
}


.review-heading h3 {
    margin: 0;

    font-size: 22px;

    font-weight: 700;

    color: #15181c;
}


.review-heading-count {
    font-size: 11px;

    color: #777;
}


/* =========================================================
   REVIEW CARD
========================================================= */

.review-card {
    background: #fff;

    border: 1px solid #e0e3e7;

    border-radius: 10px;

    padding: 20px;

    height: 100%;

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        border-color .25s ease;
}


.review-card:hover {
    transform: translateY(-4px);

    border-color: #d0d5da;

    box-shadow:
        0 10px 25px rgba(0, 0, 0, .07);
}


/* =========================================================
   REVIEW USER
========================================================= */

.review-top {
    display: flex;

    align-items: center;

    gap: 11px;
}


.review-avatar {
    width: 43px;
    height: 43px;

    flex-shrink: 0;

    border-radius: 50%;

    background: #111827;

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 14px;

    font-weight: 700;
}


.review-user {
    min-width: 0;
}


.review-name {
    font-size: 13px;

    font-weight: 700;

    color: #202328;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;
}


.review-place {
    margin-top: 2px;

    font-size: 10px;

    color: #888;
}


.review-stars {
    margin-top: 3px;

    font-size: 11px;

    color: #f4a623;

    letter-spacing: 1px;
}


.review-stars span {
    color: #d8dce0;
}


.verified-review {
    margin-left: auto;

    width: 21px;
    height: 21px;

    border-radius: 50%;

    background: #111827;

    color: #fff;

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 10px;
}


/* =========================================================
   PRODUCT NAME
========================================================= */

.review-product {
    margin-top: 20px;

    padding: 9px 11px;

    background: #f6f7f8;

    border-radius: 5px;

    font-size: 11px;

    font-weight: 600;

    color: #34383d;
}


/* =========================================================
   REVIEW FEEDBACK
========================================================= */

.review-feedback {
    display: flex;

    flex-wrap: wrap;

    gap: 12px;

    margin-top: 14px;

    padding-bottom: 12px;

    border-bottom: 1px solid #edf0f2;
}


.review-feedback div {
    display: flex;

    flex-direction: column;

    gap: 2px;
}


.review-feedback span {
    font-size: 9px;

    color: #999;

    text-transform: uppercase;

    letter-spacing: .4px;
}


.review-feedback strong {
    font-size: 10px;

    color: #333;
}


/* =========================================================
   REVIEW TEXT
========================================================= */

.review-text {
    margin: 14px 0 0;

    font-size: 11px;

    line-height: 1.7;

    color: #62676d;
}


.review-date {
    margin-top: 15px;

    padding-top: 11px;

    border-top: 1px solid #edf0f2;

    font-size: 9px;

    color: #999;

    font-weight: 600;
}


/* =========================================================
   BOTTOM BUTTON
========================================================= */

.reviews-bottom {
    text-align: center;

    margin-top: 25px;
}


.view-reviews-btn {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    padding: 11px 20px;

    background: #111827;

    color: #fff !important;

    border-radius: 6px;

    text-decoration: none;

    font-size: 12px;

    font-weight: 600;

    transition: all .25s ease;
}


.view-reviews-btn span {
    font-size: 16px;

    transition: transform .25s ease;
}


.view-reviews-btn:hover {
    background: #000;

    color: #fff !important;
}


.view-reviews-btn:hover span {
    transform: translateX(4px);
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .rating-summary {
        grid-template-columns: 1fr 1.5fr;
    }

    .overall-rating {
        border-bottom: 1px solid #e6e8eb;
    }

    .satisfaction {
        grid-column: span 2;

        border-left: 0;

        border-top: 1px solid #e6e8eb;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .reviews-section {
        padding-bottom: 55px;
    }

    .reviews-header {
        padding: 25px 0;
    }

    .reviews-header-inner {
        flex-direction: column;

        align-items: flex-start;

        gap: 18px;
    }

    .reviews-header h2 {
        font-size: 24px;
    }

    .reviews-view-all {
        width: 100%;

        justify-content: center;
    }


    .rating-summary {
        grid-template-columns: 1fr;
    }

    .overall-rating {
        border-right: 0;

        border-bottom: 1px solid #e6e8eb;
    }

    .rating-breakdown {
        border-bottom: 1px solid #e6e8eb;
    }

    .satisfaction {
        grid-column: auto;

        border-top: 0;
    }


    .review-heading {
        flex-direction: column;

        align-items: flex-start;

        gap: 8px;
    }

    .review-heading h3 {
        font-size: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 400px) {

    .rating-summary-wrapper {
        padding: 20px 0;
    }

    .overall-rating,
    .rating-breakdown,
    .satisfaction {
        padding: 22px 18px;
    }

    .big-rating {
        font-size: 42px;
    }

    .satisfaction-circle {
        width: 55px;
        height: 55px;
    }

    .review-card {
        padding: 16px;
    }

}

/* =========================================================
   CONTACT SECTION
========================================================= */

.contact-section {
    padding: 80px 0;

    background: #f7f8fa;
}


/* =========================================================
   MAIN CONTACT WRAPPER
========================================================= */

.contact-wrapper {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    border-radius: 14px;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e0e3e7;

    box-shadow:
        0 12px 35px rgba(0, 0, 0, .06);
}


/* =========================================================
   LEFT CONTACT INFORMATION
========================================================= */

.contact-info {
    padding: 45px;

    background: #111827;

    color: #fff;
}


.contact-label {
    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.8px;

    color: #aeb5bf;

    margin-bottom: 7px;
}


.contact-title {
    margin: 0;

    font-size: 38px;

    line-height: 1.1;

    font-weight: 800;

    letter-spacing: -.8px;
}


.contact-title span {
    font-weight: 400;

    color: #b5bcc6;
}


.contact-intro {
    margin: 18px 0 30px;

    max-width: 480px;

    font-size: 12px;

    line-height: 1.8;

    color: #b8bec7;
}


/* =========================================================
   CONTACT PERSON
========================================================= */

.contact-person {
    display: flex;

    align-items: center;

    gap: 13px;

    padding-bottom: 22px;

    margin-bottom: 22px;

    border-bottom: 1px solid rgba(255,255,255,.1);
}


.contact-icon {
    width: 42px;
    height: 42px;

    flex-shrink: 0;

    border-radius: 50%;

    background: rgba(255,255,255,.1);

    display: flex;

    align-items: center;
    justify-content: center;

    font-size: 16px;

    color: #fff;
}


.contact-person-name {
    font-size: 14px;

    font-weight: 700;

    color: #fff;
}


.contact-person-role {
    margin-top: 3px;

    font-size: 10px;

    color: #aeb5bf;
}


/* =========================================================
   CONTACT DETAILS
========================================================= */

.contact-detail {
    display: flex;

    align-items: flex-start;

    gap: 14px;

    margin-bottom: 23px;
}


.detail-icon {
    width: 35px;
    height: 35px;

    flex-shrink: 0;

    border-radius: 7px;

    background: rgba(255,255,255,.08);

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff;

    font-size: 14px;
}


.detail-label {
    margin-bottom: 5px;

    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1.1px;

    color: #8f98a4;
}


.detail-text {
    font-size: 11px;

    line-height: 1.7;

    color: #d4d8dd;
}


.detail-link {
    font-size: 12px;

    color: #fff !important;

    font-weight: 600;

    text-decoration: none;
}


.detail-link:hover {
    text-decoration: underline;
}


.direction-link {
    display: inline-flex;

    align-items: center;

    gap: 6px;

    margin-top: 8px;

    font-size: 10px;

    font-weight: 600;

    color: #fff !important;

    text-decoration: none;
}


.direction-link span {
    font-size: 15px;

    transition: transform .25s ease;
}


.direction-link:hover span {
    transform: translateX(4px);
}


/* =========================================================
   SOCIAL
========================================================= */

.contact-social {
    margin-top: 28px;

    padding-top: 22px;

    border-top: 1px solid rgba(255,255,255,.1);

    display: flex;

    align-items: center;

    justify-content: space-between;
}


.social-label {
    font-size: 9px;

    font-weight: 700;

    letter-spacing: 1px;

    color: #8f98a4;
}


.social-links {
    display: flex;

    gap: 7px;
}


.social-links a {
    width: 30px;
    height: 30px;

    border: 1px solid rgba(255,255,255,.15);

    border-radius: 5px;

    display: flex;

    align-items: center;
    justify-content: center;

    color: #fff !important;

    text-decoration: none;

    font-size: 11px;

    font-weight: 700;

    transition: all .25s ease;
}


.social-links a:hover {
    background: #fff;

    color: #111827 !important;
}


/* =========================================================
   FORM SIDE
========================================================= */

.contact-form-wrapper {
    padding: 45px;

    background: #fff;
}


.form-header {
    margin-bottom: 27px;
}


.form-label {
    display: block;

    margin-bottom: 6px;

    font-size: 10px;

    font-weight: 700;

    letter-spacing: 1.5px;

    color: #777;
}


.form-header h3 {
    margin: 0 0 7px;

    font-size: 27px;

    font-weight: 700;

    color: #15181c;
}


.form-header p {
    margin: 0;

    font-size: 12px;

    line-height: 1.6;

    color: #777;
}


/* =========================================================
   FORM GROUP
========================================================= */

.form-group {
    margin-bottom: 17px;
}


.form-group label {
    display: block;

    margin-bottom: 7px;

    font-size: 10px;

    font-weight: 700;

    color: #333;
}


.contact-form .form-control,
.phone-input {
    width: 100%;

    border: 1px solid #dfe3e7;

    border-radius: 7px;

    background: #fafbfc;

    color: #222;

    font-size: 12px;

    transition:
        border-color .2s ease,
        box-shadow .2s ease,
        background .2s ease;
}


.contact-form .form-control {
    padding: 12px 13px;
}


.contact-form textarea.form-control {
    min-height: 125px;

    resize: vertical;
}


.contact-form .form-control::placeholder {
    color: #a0a5aa;
}


.contact-form .form-control:focus,
.phone-input:focus-within {
    outline: none;

    background: #fff;

    border-color: #111827;

    box-shadow:
        0 0 0 3px rgba(17,24,39,.06);
}


/* =========================================================
   PHONE INPUT
========================================================= */

.phone-input {
    display: flex;

    align-items: center;

    overflow: hidden;
}


.country-code {
    padding: 12px 13px;

    border-right: 1px solid #dfe3e7;

    color: #555;

    font-size: 12px;

    font-weight: 600;

    background: #f4f5f6;
}


.phone-input input {
    width: 100%;

    padding: 12px 13px;

    border: 0;

    outline: 0;

    background: transparent;

    color: #222;

    font-size: 12px;
}


.phone-input input::placeholder {
    color: #a0a5aa;
}


/* =========================================================
   SUBMIT BUTTON
========================================================= */

.contact-submit {
    width: 100%;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 5px;

    padding: 13px 20px;

    border: 0;

    border-radius: 7px;

    background: #111827;

    color: #fff;

    font-size: 12px;

    font-weight: 600;

    cursor: pointer;

    transition: all .25s ease;
}


.contact-submit span {
    font-size: 17px;

    transition: transform .25s ease;
}


.contact-submit:hover {
    background: #000;
}


.contact-submit:hover span {
    transform: translateX(5px);
}


/* =========================================================
   FORM NOTE
========================================================= */

.form-note {
    margin-top: 13px;

    text-align: center;

    font-size: 9px;

    color: #999;

    line-height: 1.5;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 38px;
    }

    .contact-form-wrapper {
        padding: 38px;
    }

}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .contact-section {
        padding: 50px 0;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 28px 22px;
    }

    .contact-title {
        font-size: 32px;
    }

    .form-header h3 {
        font-size: 23px;
    }

    .contact-social {
        align-items: flex-start;

        flex-direction: column;

        gap: 12px;
    }

}

/* ========================================================= SLN ENTERPRISES - LARGE PREMIUM FOOTER Completely isolated from existing footer styles ========================================================= */ .sln-footer { width: 100% !important; background: #101722 !important; color: #ffffff !important; padding: 80px 0 0 !important; margin: 0 !important; font-family: Arial, Helvetica, sans-serif !important; } /* ========================================================= MAIN GRID ========================================================= */ .sln-footer .sln-footer-grid { display: grid !important; grid-template-columns: 1.45fr 0.75fr 1fr 1fr !important; column-gap: 70px !important; row-gap: 50px !important; padding-bottom: 70px !important; } /* ========================================================= BRAND ========================================================= */ .sln-footer .sln-footer-brand { padding-right: 40px !important; } .sln-footer .sln-footer-logo { display: block !important; margin: 0 0 22px !important; padding: 0 !important; color: #ffffff !important; font-size: 34px !important; font-weight: 800 !important; line-height: 1.2 !important; letter-spacing: -1px !important; } .sln-footer .sln-footer-logo span { color: #aeb7c3 !important; font-weight: 400 !important; } .sln-footer .sln-footer-brand p { display: block !important; max-width: 420px !important; margin: 0 0 30px !important; padding: 0 !important; color: #aeb7c3 !important; font-size: 15px !important; font-weight: 400 !important; line-height: 1.9 !important; } /* ========================================================= CONTACT BUTTON ========================================================= */ .sln-footer .sln-footer-button { display: inline-flex !important; align-items: center !important; justify-content: center !important; gap: 12px !important; min-height: 48px !important; padding: 0 22px !important; border: 1px solid rgba(255,255,255,.25) !important; border-radius: 6px !important; background: transparent !important; color: #ffffff !important; font-size: 14px !important; font-weight: 600 !important; line-height: 1 !important; text-decoration: none !important; transition: all .25s ease !important; } .sln-footer .sln-footer-button span { font-size: 20px !important; transition: transform .25s ease !important; } .sln-footer .sln-footer-button:hover { background: #ffffff !important; color: #101722 !important; border-color: #ffffff !important; } .sln-footer .sln-footer-button:hover span { transform: translateX(5px) !important; } /* ========================================================= COLUMN ========================================================= */ .sln-footer .sln-footer-column { display: flex !important; flex-direction: column !important; align-items: flex-start !important; } /* ========================================================= COLUMN TITLE ========================================================= */ .sln-footer .sln-footer-column h3 { position: relative !important; display: block !important; margin: 0 0 28px !important; padding: 0 0 14px !important; color: #ffffff !important; font-size: 18px !important; font-weight: 700 !important; line-height: 1.3 !important; text-transform: capitalize !important; letter-spacing: 0 !important; } .sln-footer .sln-footer-column h3::after { content: "" !important; position: absolute !important; left: 0 !important; bottom: 0 !important; width: 42px !important; height: 3px !important; background: #ffffff !important; border-radius: 5px !important; } /* ========================================================= LINKS ========================================================= */ .sln-footer .sln-footer-column a { display: block !important; width: auto !important; margin: 0 0 16px !important; padding: 0 !important; color: #adb5c0 !important; font-size: 15px !important; font-weight: 400 !important; line-height: 1.55 !important; text-decoration: none !important; transition: all .25s ease !important; } .sln-footer .sln-footer-column a:hover { color: #ffffff !important; transform: translateX(5px) !important; } /* ========================================================= VIEW ALL ========================================================= */ .sln-footer .sln-view-all { margin-top: 5px !important; color: #ffffff !important; font-weight: 700 !important; } .sln-footer .sln-view-all span { display: inline-block !important; margin-left: 6px !important; font-size: 18px !important; transition: transform .25s ease !important; } .sln-footer .sln-view-all:hover span { transform: translateX(5px) !important; } /* ========================================================= BOTTOM ========================================================= */ .sln-footer .sln-footer-bottom { display: flex !important; align-items: center !important; justify-content: space-between !important; min-height: 90px !important; padding: 0 !important; border-top: 1px solid rgba(255,255,255,.14) !important; } .sln-footer .sln-copyright { color: #8f99a6 !important; font-size: 14px !important; line-height: 1.6 !important; } .sln-footer .sln-copyright strong { color: #d8dce1 !important; font-weight: 600 !important; } /* ========================================================= SOCIAL ========================================================= */ .sln-footer .sln-footer-share { display: flex !important; align-items: center !important; gap: 12px !important; } .sln-footer .sln-footer-share > span { margin-right: 8px !important; color: #9ba4b0 !important; font-size: 13px !important; font-weight: 600 !important; text-transform: uppercase !important; letter-spacing: 1px !important; } .sln-footer .sln-footer-share a { display: flex !important; align-items: center !important; justify-content: center !important; width: 42px !important; height: 42px !important; margin: 0 !important; padding: 0 !important; border: 1px solid rgba(255,255,255,.18) !important; border-radius: 6px !important; background: transparent !important; color: #ffffff !important; font-size: 14px !important; font-weight: 700 !important; text-decoration: none !important; transition: all .25s ease !important; } .sln-footer .sln-footer-share a:hover { background: #ffffff !important; color: #101722 !important; border-color: #ffffff !important; transform: translateY(-3px) !important; } /* ========================================================= TABLET ========================================================= */ @media (max-width: 991px) { .sln-footer { padding-top: 60px !important; } .sln-footer .sln-footer-grid { grid-template-columns: 1fr 1fr !important; column-gap: 45px !important; padding-bottom: 55px !important; } .sln-footer .sln-footer-brand { grid-column: span 2 !important; padding-right: 0 !important; } .sln-footer .sln-footer-brand p { max-width: 650px !important; } } /* ========================================================= MOBILE ========================================================= */ @media (max-width: 767px) { .sln-footer { padding-top: 50px !important; } .sln-footer .sln-footer-grid { grid-template-columns: 1fr 1fr !important; gap: 40px 25px !important; } .sln-footer .sln-footer-logo { font-size: 30px !important; } .sln-footer .sln-footer-brand p { font-size: 14px !important; } .sln-footer .sln-footer-column h3 { font-size: 16px !important; } .sln-footer .sln-footer-column a { font-size: 14px !important; } .sln-footer .sln-footer-bottom { flex-direction: column !important; align-items: flex-start !important; justify-content: center !important; gap: 20px !important; padding: 25px 0 !important; } } /* ========================================================= SMALL MOBILE ========================================================= */ @media (max-width: 480px) { .sln-footer .sln-footer-grid { grid-template-columns: 1fr !important; gap: 35px !important; } .sln-footer .sln-footer-brand { grid-column: auto !important; } .sln-footer .sln-footer-logo { font-size: 28px !important; } .sln-footer .sln-footer-column h3 { font-size: 17px !important; } .sln-footer .sln-footer-column a { font-size: 15px !important; } .sln-footer .sln-footer-share { width: 100% !important; justify-content: space-between !important; } }
.welcome{
  padding:20px 0;
}
.section-label{
  font-size:11px;
  color:#555;
  letter-spacing:.2px;
}
.welcome-title{
  color:#174c7c;
  font-size:20px;
  font-weight:700;
  margin:3px 0 8px;
}
.welcome-text{
  font-size:10px;
  line-height:1.55;
  color:#444;
}
.info-box{
  min-height:58px;
  display:flex;
  gap:10px;
  align-items:flex-start;
  padding:5px 0;
}
.info-icon{
  width:35px;height:35px;
  border:1px solid #eee;
  background:#f7f7f7;
  display:flex;align-items:center;justify-content:center;
  color:#555;
  font-size:17px;
  flex:none;
}
.info-title{font-size:10px;font-weight:700}
.info-value{font-size:9px;color:#555}
.rating-section{
  background:#fff;
  padding:0 0 25px;
}
.rating-head{
  background:#f4f4f4;
  padding:12px 0;
  border-top:1px solid #eee;
  border-bottom:1px solid #eee;
}
.rating-title{font-size:18px;font-weight:700}
.rating-summary{
  padding:22px 0;
  background:#f7f7f7;
}
.big-rating{font-size:20px;font-weight:700}
.stars{color:#f4b400;font-size:22px;letter-spacing:1px}
.review-bar{
  height:9px;
  background:#e7ebee;
  position:relative;
  overflow:hidden;
}
.review-bar span{
  display:block;height:100%;background:#69ae45;
}
.review-card{
  padding:18px 8px;
  min-height:130px;
}
.avatar{
  width:28px;height:28px;
  border-radius:50%;
  background:#eee;
  display:flex;align-items:center;justify-content:center;
  font-size:10px;font-weight:700;
}
.review-name{font-size:10px;font-weight:700}
.review-place{font-size:8px;color:#777}
.review-stars{color:#f4b400;font-size:12px}
.review-text{font-size:9px;color:#444;line-height:1.45}
.contact-section{
  background:var(--sln-dark);
  color:#fff;
  padding:18px 0;
}
.contact-title{font-size:16px;font-weight:700}
.contact-text{font-size:10px;line-height:1.55}
.contact-form{
  background:#fff;
  border-radius:3px;
  padding:15px 20px;
  color:#222;
}
.form-control{
  font-size:10px;
  border-radius:3px;
  min-height:36px;
}
.form-control::placeholder{color:#999}
textarea.form-control{min-height:75px}
.footer{
  background:#fff;
  padding:15px 0 20px;
}
.footer-title{font-size:10px;font-weight:700;margin-bottom:7px}
.footer a,.footer p{
  display:block;
  color:#555;
  font-size:9px;
  margin:3px 0;
}
.social{
  display:inline-flex;
  width:16px;height:16px;
  align-items:center;justify-content:center;
  background:#315a93;color:#fff;
  font-size:9px;margin-right:5px;border-radius:2px;
}
.page-banner{
  background:var(--sln-dark);
  color:#fff;
  padding:35px 0;
}
.page-banner h1{font-size:27px;font-weight:700}
.breadcrumb{font-size:11px;margin:0}
.inner-section{padding:35px 0}
.card-clean{
  border:1px solid #e2e2e2;
  border-radius:5px;
  padding:20px;
  height:100%;
}
.detail-img{
  width:100%;
  height:390px;
  object-fit:cover;
  border-radius:5px;
  background:#eee;
}
.detail-title{font-size:25px;font-weight:700}
.detail-price{font-size:20px;font-weight:700;color:#174c7c}
.spec-table td{font-size:11px;padding:7px;border-bottom:1px solid #eee}
@media(max-width:767px){
  .company-name{font-size:14px}
  .header-btn{min-width:80px;font-size:9px}
  .category-strip .container{overflow-x:auto;flex-wrap:nowrap!important;justify-content:flex-start!important}
  .category-item{flex:none}
  .main-nav .navbar-collapse{padding-bottom:8px}
  .search-wrap{margin-top:5px}
  .feature-img{height:115px}
  .feature-card{min-height:115px}
  .feature-body{padding:6px}
  .product-img{height:150px}
  .welcome{padding:25px 12px}
  .detail-img{height:280px}
}
