@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-size: inherit;
    text-decoration: none;
    list-style: none;
    color: inherit;
    font-family: inherit;
    font-weight: inherit;
    border: none;
    background-color: transparent;
}

:root {
    --white: #fff;
    --black: #000;
    --blue: #012F48;
    --dark-blue: #131B4B;
    --background-color: #f5f6fe;
    --light-blue: #E6EAFC;
    --light-orange: #FEF1EF;
    --orange: #EF682A;
    --gray: #6A7282;
    --dark-gray: #727272;
    --light-gray: #D1D5DC;
    --stroke: rgba(14, 14, 14, 0.2);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, .1);
    --shadow2: 0 20px 25px -5px rgba(0, 0, 0, .1);
}

img {
    max-width: 100%;
    object-fit: cover;
}

body {
    background-color: var(--background-color);
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--blue);
    margin: 0;
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1770px;
    margin: 0 auto;
    padding: 0 clamp(1rem, 0.575rem + 2.125vw, 3.125rem);
}

button {
    cursor: pointer;
}

input[type="search"] {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.price-wrapper p {
    margin: 0;
}

.btn {
    background-color: var(--orange);
    color: #fff;
    padding: 12px 24px;
    font-weight: 600;
    transition: all .3s ease-out;
    min-width: max-content;
    text-align: center;
    display: block;
}

.btn:hover {
    background-color: var(--blue);
}

.back-page {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    font-weight: 500;
    min-width: max-content;
}

header .btns {
    display: flex;
    gap: 10px;
}

header .btns .btn {
    display: flex;
}

header .btns .mobile_menu_btn {
    display: none;
}

header {
    padding: 16px 0;
    color: var(--white);
    background: var(--blue);
    position: relative;
    z-index: 99999;
}

header::after {
    content: '';
    position: absolute;
    inset: 0;
    width: 24%;
    background-color: var(--white);
    z-index: -1;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0% 100%);
}

header a {
    display: flex;
}

.back-page p {
    margin: 0;
}

ul li {
    margin-left: 0;
}

a {
    color: inherit;
}

header .menu-item {
    font-size: 18px;
}

header .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
}

header nav ul {
    display: flex;
    gap: 54px;
}

.header-bottom {
    padding: 24px 0;
    box-shadow: var(--shadow);
    position: relative;
    z-index: 99;
    background-color: var(--light-blue);
}

.header-bottom .row {
    display: flex;
    align-items: center;
    gap: 40px;
}

.header-bottom form {
    display: flex;
    flex-grow: 1;
}

.header-bottom .input-group {
    display: flex;
    align-items: center;
    background-color: #fff;
    position: relative;
    max-width: 225px;
}

.header-bottom .input-group:has(input[type="search"]) {
    flex-grow: 1;
    box-sizing: border-box;
    max-width: unset;
}

.header-bottom :is(input, select) {
    padding: 12px 24px;
    padding-right: 58px;
    border: 1px solid var(--stroke);
    width: 100%;
    max-width: 100%;
    height: 100%;
    height: 49px;
}

.icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 24px;
}

select {
    appearance: none;
}

.header-bottom .input-group input[type="search"] {
    padding-left: 58px;
    padding-right: 24px;
}

.header-bottom .input-group:has(input[type="search"]) .icon {
    left: 24px;
    right: unset;
}

/* Hero css */

.hero {
    background-color: var(--light-blue);
    position: relative;
    z-index: 1;
}

.hero .row {
    display: flex;
}

.hero .row .content {
    padding: 50px 0;
    width: 56%;
}

.hero .row .image {
    position: absolute;
    z-index: -1;
    top: 0;
    bottom: 0;
    right: 0;
    max-width: 50%;
}

.hero .row .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 77% 100%;
}

.hero .overlay {
    background: linear-gradient(90deg, rgba(230, 234, 252, 1) 0%, rgba(255, 255, 255, 0) 50%);
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(2.5rem, 2rem + 2.5vw, 5rem);
    font-weight: 600;
    line-height: clamp(3rem, 2.4rem + 3vw, 6rem);
    margin-bottom: 16px;
    font-style: italic;
}

.hero h2 {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    line-height: clamp(2.125rem, 1.825rem + 1.5vw, 3.625rem);
    margin: 0;
}

.hero h3 {
    font-size: clamp(1.125rem, 1rem + 0.625vw, 1.75rem);
    color: #000;
    line-height: clamp(1.75rem, 1.6375rem + 0.5625vw, 2.3125rem);
    margin: 0;
}

.hero h3 strong {
    color: var(--dark-blue);
    font-weight: 600;
}

.hero p {
    font-size: clamp(1rem, 0.8625rem + 0.6875vw, 1.6875rem);
    color: var(--gray);
    line-height: clamp(1.625rem, 1.4875rem + 0.6875vw, 2.3125rem);
}

.divider {
    border-bottom: 1px solid;
    border-color: var(--light-gray);
    margin: 24px 0;
    max-width: 650px;
}

.cta-btns {
    margin: 32px 0;
    flex-wrap: wrap;
}

.tags {
    display: flex;
    gap: 10px 24px;
    flex-wrap: wrap;
}

.cta-btns {
    display: flex;
    gap: 24px;
}

.cta-btns .btn {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem);
    padding: 18px 36px;
    box-shadow: var(--shadow);
    line-height: 24px;
}

.cta-btns .btn.blue {
    background-color: var(--blue);
}

.cta-btns .btn.blue:hover {
    background-color: var(--orange);
}

.cta-btns .btn.white {
    background-color: var(--white);
    color: var(--blue);
}

.cta-btns .btn.white:hover {
    background-color: var(--light-orange);
}

.tag {
    border: 1px solid var(--blue);
    padding: 5px 14px;
    border-radius: 5px;
    background-color: #D6EDFF;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* client-section css */

.client-section .row {
    display: flex;
    align-items: center;
    padding: 24px 0;
    justify-content: space-between;
}

.client-section h2 {
    font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
    min-width: max-content;
    color: var(--gray);
}

.client-section .slider_wrapper {
    max-width: 70%;
}

.client-section .slider_wrapper .image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.fact {
    display: flex;
    align-items: center;
    gap: clamp(0.5rem, 0.4rem + 0.5vw, 1rem);
    justify-content: center;
    padding-right: 30px;
    margin-right: 30px;
    border-right: 1px solid #131B4B;
    flex-grow: 1;
}

.fact:last-child {
    padding-right: 0px;
    margin-right: 0px;
    border-right: 0px;
}

.fact_content {
    display: flex;
    flex-direction: column;
}

.facts {
    background-color: #E6EAFC;
}

.facts .row {
    display: flex;
    align-items: center;
}

.facts .count {
    font-size: 30px;
    line-height: 1.2;
    font-weight: 600;
}

.facts .content {
    color: #6A7282;
    font-size: 20px;
    line-height: 1.2;
}

.facts img {
    width: 64px;
}

.title {
    padding: clamp(1.5625rem, 1.25rem + 1.5625vw, 3.125rem) 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-style: italic;
    width: fit-content;
    margin: 0 auto;
}

.title * {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    font-weight: 500;
    text-align: center;
}

.title span {
    min-width: 100px;
    height: 3px;
    background-color: var(--light-gray);
    position: relative;
    flex-grow: 1;
}

.title span img {
    position: absolute;
    top: 50%;
}

.title span:first-child img {
    transform: translate(-50%, -50%);
    left: 0;
}

.title span:last-child img {
    transform: translate(50%, -50%);
    right: 0;
}

.bold * {
    font-weight: 700;
}

.offers .title {
    width: 100%;
}

.blogs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 40px 20px;
}

.services .blogs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.short_desc {
    margin-bottom: 20px;
}

.short_desc ul {
    margin-left: 18px;
}

.short_desc li {
    list-style: disc;
}

.blogs h3 {
    font-size: 26px;
    font-weight: 700;
    font-family: 'open sans', sans-serif;
}

.blog {
    background-color: var(--white);
    box-shadow: var(--shadow2);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
}

.blog .image {
    height: 250px;
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 24px;
    background-color: var(--light-orange);
}

.blog img {
    width: 100%;
    height: 100%;
    object-fit: contain;

    mix-blend-mode: multiply;
}

.blog .content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 24px;
    flex-grow: 1;
}

.blog ul {
    background-color: var(--light-orange);
    padding: 16px;
    color: var(--gray);
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 16px;
}

.blog ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog ul li::before {
    content: "";
    display: block;
    background-image: url(/wp-content/uploads/2026/03/check-icon.svg);
    background-size: contain;
    background-repeat: no-repeat;
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.blog .price-wrapper {
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.blog .price-wrapper span {
    font-size: clamp(1.125rem, 0.95rem + 0.875vw, 2rem);
    font-weight: 700;
    font-family: 'open sans', sans-serif;
}

.blog .price-wrapper p {
    color: var(--gray);
}

.blog .btn {
    /* margin-top: 24px; */
}

.blog .btn_wrapper {
    margin-top: auto;
}

.blog .divider {
    margin: 0;
}

.services .title {
    width: 100%;
}

.service_wrapper {
    padding: 150px 0 100px 0;
}

.service_wrapper .grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 48px;
}

.tabs-btns {
    display: flex;
    flex-wrap: wrap;
    width: fit-content;
}

.tabs-btns button {
    padding: 12px 24px;
    border: 1px solid var(--stroke);
    background-color: var(--white);
    color: var(--dark-gray);
    flex-grow: 1;
}

.tabs-btns button.active {
    background-color: var(--blue);
    color: var(--white);
    border-color: var(--blue);
}

.tabs:last-child .blog .image {
    padding: 0;
    overflow: hidden;
}


.tabs:last-child .blog .image img {
    object-fit: cover;
}

.service_wrapper form {
    display: flex;
    flex-grow: 1;
    color: var(--dark-gray);
}

.service_wrapper .input-group {
    display: flex;
    align-items: center;
    background-color: #fff;
    position: relative;
}

.service_wrapper .input-group:has(input[type="search"]) {
    flex-grow: 1;
}

.service_wrapper :is(input, select) {
    padding: 12px 24px !important;
    padding-right: 58px !important;
    border: 1px solid var(--stroke) !important;
    width: 100% !important;
    max-width: 100% !important;
    height: 100% !important;
}

.wpforms-error {
    text-align: left;
    margin-top: 10px !important;
}

.service_wrapper .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 24px;
}

.service_wrapper select {
    appearance: none;
}

.service_wrapper .input-group input[type="search"] {
    padding-left: 58px !important;
    padding-right: 24px !important;
}

.service_wrapper .input-group:has(input[type="search"]) .icon {
    left: 24px;
    right: unset;
}

.tabs-btns {
    margin-bottom: 24px;
}

.tab-content {
    display: none;
    margin-top: 40px;
}

.tab-content.active {
    display: block;
    margin-top: 40px;
}

.services .tabs {
    padding-bottom: 80px;
}

.sr-only {
    clip-path: inset(50%);
    white-space: nowrap;
    border-width: 0;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    position: absolute;
    overflow: hidden;
}

.service_wrapper .title {
    padding: 0 0 40px 0;
}

.sticky {
    position: sticky;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service_wrapper aside form {
    border-radius: 24px;
    box-shadow: var(--shadow2);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: center;
    background-color: var(--light-blue);
}

div.wpforms-container-full form.wpforms-form .wpforms-title {
    font-size: clamp(1.5rem, 1.2rem + 1.5vw, 3rem);
    line-height: clamp(1.8125rem, 1.455rem + 1.7875vw, 3.6rem);
    color: var(--blue);
    font-weight: 500;
}

div.wpforms-container-full form.wpforms-form .wpforms-description {
    font-size: clamp(1.125rem, 1.05rem + 0.375vw, 1.5rem);
    line-height: clamp(1.375rem, 1.3rem + 0.375vw, 1.75rem);
    color: var(--gray);
}

div.wpforms-container-full form.wpforms-form .wpforms-head-container {
    padding: 0 0 32px 0;
}

.wpforms-container div.wpforms-field,
.wp-core-ui div.wpforms-container .wpforms-field {
    padding: 0 0 24px 0;
}

.service_wrapper aside form .btn {
    background-color: var(--orange) !important;
    color: #fff !important;
    font-weight: 600 !important;
    transition: all .3s ease-out;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 18px 36px !important;
    font-size: clamp(1rem, 0.9rem + 0.5vw, 1.5rem) !important;
    border-radius: 0 !important;
    height: unset !important;
    margin: 0 auto;
    text-transform: unset !important;
}

/* .service_wrapper aside form .btn::after {
    content: '';
    display: block;
    position: static !important;
    border: none !important;
    width: 28px;
    height: 28px;
    background: url(/wp-content/uploads/2026/03/phone-icon.svg);
    background-size: cover;
} */

.auther_wrapper {
    background-color: #fff;
    border: 1px solid #E2E8F0;
    padding: 32px;
    border-radius: 24px;
    color: var(--gray);
    font-size: 18px;
}

.auther_wrapper img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    object-position: top;
}

.auther_wrapper .auther {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: clamp(1.375rem, 1.25rem + 0.625vw, 2rem);
    line-height: clamp(1.625rem, 1.45rem + 0.875vw, 2.5rem);
    font-family: 'open sans', sans-serif;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--blue);
}

.text-left.title {
    text-align: left;
}

.services .search-bar :is(input, select) {
    height: 50px;
}

.service_wrapper .feilds {
    display: grid;
    gap: 24px;
}

.mobile_nav {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 999999;
    background-color: var(--white);
    color: var(--blue);
    padding: 50px;
    width: 300px;
    display: block !important;
    transform: translateX(100%);
    transition: all 0.3s ease-in-out;
}

.mobile_nav.active {
    transform: translateX(0);
}

.close-btn {
    position: absolute;
    inset: 20px 20px auto auto;
}

.mobile_nav ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.mobile_menu_overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999998;
    display: none;
}

.mobile_menu_overlay.active {
    display: block;
}

@media (max-width: 1599px) {

    .container {
        max-width: 1440px;
    }

    header nav ul {
        gap: 35px;
    }

    .hero .row .content {
        width: 50%;
    }

    .tags {
        gap: 10px;
    }

    .cta-btns {
        gap: 10px;
    }

    .cta-btns .btn {
        padding: 12px 24px;
    }

    .divider {
        margin: 12px 0;
    }

    .fact {
        flex-grow: 1;
    }

    .blog .btn {
        margin-top: 0;
    }

    .blog .content {
        gap: 16px;
        padding: 16px;
    }

    .blog .price-wrapper {
        gap: 8px;
    }

    .blog ul {
        padding: 10px;
        gap: 0;
        font-size: 16px;
    }

    .blog .price-wrapper {
        flex-wrap: wrap;
    }

    .service_wrapper .blogs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 1399px) {

    header nav ul {
        gap: 25px;
    }

    .container {
        max-width: 1280px;
    }

    .header-bottom .row {
        gap: 16px;
        flex-direction: column;
        align-items: unset;
    }

    .blogs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service_wrapper .grid {
        grid-template-columns: 1fr;
    }

    .service_wrapper .feilds {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
    }
}

@media (max-width: 1199px) {
    .fact {
        padding-right: 15px;
        margin-right: 15px;
    }
    .facts .content {
        font-size: 16px;
    }
    .container {
        max-width: 1140px;
    }

    header::after {
        display: none;
    }

    header .logo img {
        filter: brightness(0) invert(1);
    }

    header .row {
        gap: 30px;
    }

    header nav ul {
        font-size: 14px;
        gap: 20px;
    }
}

@media (max-width: 991px) {

    .container {
        max-width: 960px;
    }

    header nav {
        display: none;
    }

    header .btns .mobile_menu_btn {
        display: flex;
    }

    .search-bar {
        flex-wrap: wrap;
        gap: 8px;
    }

    .header-bottom .input-group {
        flex-grow: 1;
        max-width: unset;
    }

    .hero .row {
        flex-direction: column;
    }

    .hero .row .image {
        position: static;
        max-width: 100%;
        padding-bottom: 32px;
    }

    .hero .row .content {
        width: 100%;
    }

    .hero .overlay {
        display: none;
    }

    .client-section .row {
        flex-direction: column;
        gap: 15px;
    }

    .client-section .slider_wrapper {
        max-width: 100%;
    }

    .blogs {
        gap: 16px;
    }

    .service_wrapper {
        padding: 100px 0 20px 0;
    }
    .fact {
        justify-content: start;
        padding-right: 0;
        margin-right: 0;
        border-right: none;
    }
    .facts .row {
        align-items: start;
    }
}

@media (max-width: 767px) {
    .container {
        max-width: 640px;
    }

    .blogs {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .title {
        gap: 12px;
    }

    .title span {
        min-width: 50px;
    }

    .service_wrapper .blogs {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .services .tabs {
        padding-bottom: 60px;
    }

    .service_wrapper {
        padding: 70px 0 20px 0;
    }

    .service_wrapper .grid {
        gap: 32px;
    }

    .services .search-bar .input-group {
        flex-grow: 1;
    }
}

@media (max-width:575px) {

    header .btns .btn {
        padding: 8px 16px;
    }

    .container {
        max-width: 100%;
    }

    .tags .tag {
        font-size: 13px;
        padding: 4px 8px;
    }

    .tags img {
        width: 8px;
        height: 8px;
    }

    .hero .row .content {
        padding: 32px 0;
    }

    .title span {
        min-width: 30px;
    }

    .services .tabs {
        padding-bottom: 40px;
    }

    .service_wrapper {
        padding: 40px 0 20px 0;
    }

    .service_wrapper .grid {
        gap: 0px;
    }

    .service_wrapper .feilds {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .title span {
        height: 1px;
    }

    .title img {
        width: 12px;
        height: 12px;
    }

    .service_wrapper aside form p:not(:last-child) {
        margin-bottom: 16px;
    }

    .service_wrapper aside form .btn {
        margin-top: 16px;
    }

    .auther_wrapper {
        padding: 16px;
        border-radius: 16px;
        font-size: 14px;
    }

    .auther_wrapper .auther {
        font-size: 18px;
    }

    .service_wrapper aside form {
        border-radius: 16px;
        padding: 16px;
    }

    .service_wrapper aside form .btn {
        gap: 8px;
        padding: 12px 24px;
        font-size: 16px;
        margin-top: 16px;
    }

    .service_wrapper .feilds {
        gap: 10px;
    }

    .service_wrapper .blog {
        border-radius: 16px;
    }

    .client-section .row {
        align-items: start;
    }
}

.brief-description {
    margin-top: 30px;
}




/* add css */

.no-product-found {
        text-align: center;
        padding: 40px;
        font-size: 18px;
        color: #666;
    }

    .products-wrapper {
        position: relative;

    }

    #product-loader {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.7);
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 5;
    }

    .spinner {
        width: 45px;
        height: 45px;
        border: 4px solid #ddd;
        border-top: 4px solid #0b3b4a;
        border-radius: 50%;
        animation: spin 0.8s linear infinite;
    }

    @keyframes spin {
        0% {
            transform: rotate(0deg);
        }

        100% {
            transform: rotate(360deg);
        }
    }

    .title_badge {
        display: flex;
        justify-content: space-between;
    }

    .text_54 {
        font-size: clamp(1.625rem, 1.275rem + 1.75vw, 3.375rem) !important;
    }

    @media (min-width: 1600px) {
        .tag {
            min-width: 400px;
        }
    }

    .grow {
        flex-grow: 1;
    }

    .blog_filter {
        display: flex;
        gap: 20px;
        margin-left: 20px;
    }

    .blog_filter label {
        display: flex;
        align-items: center;
        min-width: max-content;
        gap: 10px;
    }

    .blog_filter label,
    input {
        cursor: pointer;
        accent-color: var(--blue);
    }

    .blog_filter label span {
        min-width: max-content;
    }

    .mt-20 {
        margin-top: 20px;
    }

    .price-wrapper>span {
        display: flex;
    }

    .price-wrapper {
        flex-wrap: wrap;
    }

    
    .image {
    position: relative;
}

.best-seller-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff6600;
    color: #fff;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    z-index: 10;
}

  .price-wrapper del {
        text-decoration: line-through;
        color: #9ca3af;
        margin-right: 8px;
    }

    .price-wrapper ins {
        text-decoration: none;
        font-weight: 700;
        color: #0b3b4a;
    }

    .old-price {
        text-decoration: line-through;
        color: #9ca3af;
        margin-right: 8px;
    }

    .sale-price {
        font-weight: 700;
        color: #000;
    }