.products.products-container {
    margin-top: 50px;
}

.product-cart-wrap .product-card-bottom {
    position: absolute;
    bottom: 1.25rem;
    width: 85%;
    flex-direction: column;
    margin-top: 8px;
}

.product-cart-wrap:hover {
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid var(  --border-color);
    transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
}

.product-cart-wrap .product-img-action-wrap {
    position: relative;
    background-color: #fff;
    overflow: hidden;
    padding: 25px 25px 0 25px;
    width: 100%;
    aspect-ratio: 1 / 1.1;
    height: unset;
}


.product-cart-wrap .product-img-action-wrap .product-img {
    position: relative;
    overflow: hidden;
    border-radius: 0;
}

.product-cart-wrap .product-img-action-wrap .product-img a {
    overflow: hidden;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-cart-wrap .product-img-action-wrap .product-img a img {
    width: 100%;
}

.product-cart-wrap .product-img-action-wrap .product-img a img.hover-img {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    opacity: 0;
    visibility: hidden;
    transition: 0.25s opacity, 0.25s visibility,
    transform 1.5s cubic-bezier(0, 0, 0.2, 1),
    -webkit-transform 1.5s cubic-bezier(0, 0, 0.2, 1);
}

.product-cart-wrap .product-img-action-wrap .product-img-zoom a img {
    -webkit-transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
    transition: all 1.5s cubic-bezier(0, 0, 0.05, 1);
}

.product-cart-wrap:hover .product-img-action-wrap .product-action-1 {
    opacity: 1;
    visibility: visible;
}

.product-cart-wrap .product-img-action-wrap .product-action-1 {
    background-color: #fff;
    border-radius: 5px;
    border: 1px solid var(  --border-color);
}

.product-cart-wrap .product-action-1 {
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 9;
    -webkit-box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
    box-shadow: 20px 20px 40px rgba(0, 0, 0, 0.07);
}

.product-cart-wrap .product-action-1.show {
    visibility: visible;
    opacity: 1;
    bottom: 26px;
    left: unset;
    right: 20px;
    top: unset;
    -webkit-transform: none;
    transform: none;
}

.product-cart-wrap .product-action-1 button,
.product-cart-wrap .product-action-1 button.action-btn {
    width: 28px;
    height: 36px;
    line-height: 40px;
    text-align: center;
    position: relative;
    display: inline-block;
    border-right: 1px solid var(  --border-color);
}

.product-cart-wrap .product-action-1 button {
    color: var( --primary-color);
    border: none;
    background-color: #fff;
}

.product-cart-wrap .product-action-1 button.small,
.product-cart-wrap .product-action-1 button.action-btn.small {
    width: 32px;
    height: 32px;
    line-height: 32px;
}

.product-cart-wrap .product-action-1 button.small i,
.product-cart-wrap .product-action-1 button.action-btn.small i {
    font-size: 12px;
}

.product-cart-wrap .product-action-1 button:after,
.product-cart-wrap .product-action-1 button.action-btn:after {
    bottom: 100%;
    left: 50%;
    position: absolute;
    white-space: nowrap;
    border-radius: 5px;
    font-size: 11px;
    padding: 7px 10px;
    color: #ffffff;
    background-color: var( --primary-color);
    content: attr(aria-label);
    line-height: 1.3;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    -webkit-box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1);
    transition: opacity 0.3s ease, visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24),
    -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(-50%) translateY(0px);
    transform: translateX(-50%) translateY(0px);
}

.product-cart-wrap .product-action-1 button:before,
.product-cart-wrap .product-action-1 button.action-btn:before {
    content: "";
    position: absolute;
    left: calc(50% - 7px);
    bottom: 100%;
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
    border: 7px solid transparent;
    border-top-color: var( --primary-color);
    z-index: 9;
    margin-bottom: -13px;
    transition-delay: 0.1s;
    transition: opacity 0.3s ease, visibility 0.3s ease,
    transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24),
    -webkit-transform 0.3s cubic-bezier(0.71, 1.7, 0.77, 1.24);
    opacity: 0;
    visibility: hidden;
}

.product-cart-wrap .product-action-1 button:last-child,
.product-cart-wrap .product-action-1 button.action-btn:last-child {
    margin-right: 0;
}

.product-cart-wrap .product-action-1 button i,
.product-cart-wrap .product-action-1 button.action-btn i {
    font-size: 15px;
    margin-left: 1px;
}

.product-cart-wrap .product-action-1 button:hover,
.product-cart-wrap .product-action-1 button.action-btn:hover {
    color: var( --secondary-color-hover);
}

.product-cart-wrap .product-action-1 button:hover:after,
.product-cart-wrap .product-action-1 button.action-btn:hover:after {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateX(-50%) translateY(-8px);
    transform: translateX(-50%) translateY(-8px);
}

.product-cart-wrap .product-action-1 button:hover:before,
.product-cart-wrap .product-action-1 button.action-btn:hover:before {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateY(-8px);
    transform: translateY(-8px);
}

.product-cart-wrap .product-action-1 button:hover i,
.product-cart-wrap .product-action-1 button.action-btn:hover i {
    color: var( --secondary-color-hover);
}

.product-cart-wrap
.product-img-action-wrap
.product-action-1
.add-to-cart-easy.disabled {
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
}

.product-cart-wrap .product-badges {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-cart-wrap .product-badges.product-badges-mrg {
    margin: 0 0 10px;
}

.product-cart-wrap .product-badges.product-badges-position {
    position: absolute;
    left: 0;
    top: 0px;
    z-index: 9;
}

.product-cart-wrap .product-badges span {
    display: inline-block;
    font-size: 12px;
    line-height: 1;
    border-radius: 10px 0 10px 0;
    color: #fff;
    padding: 9px 20px 10px 20px;
}

.product-cart-wrap .product-badges span:last-child {
    margin-right: 0px;
}

.product-cart-wrap .product-badges span.hot {
    background-color: #f74b81;
}

.product-cart-wrap .product-badges span.new {
    background-color: var( --primary-color);
}

.product-cart-wrap .product-badges span.sale {
    background-color: #67bcee;
}

.product-cart-wrap .product-badges span.best {
    background-color: #f59758;
}

.product-cart-wrap .product-content-wrap .product-category {
    margin-bottom: 5px;
}

.product-cart-wrap .product-content-wrap .product-category a {
    color: #adadad;
    font-size: 12px;
}

.product-cart-wrap .product-content-wrap .product-category a:hover {
    color: var( --primary-color);
}

.product-cart-wrap .product-content-wrap h2 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 5px;
}

.product-cart-wrap .product-content-wrap h2 a {
    color: #253d4e;
}

.product-cart-wrap .product-content-wrap h2 a:hover {
    color: var( --primary-color);
}

.product-cart-wrap .product-content-wrap .product-price {
    padding-top: 0.313rem;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
}

.product-cart-wrap .product-content-wrap .product-price span {
    font-size: 18px;
    font-weight: bold;
    color: var( --primary-color);
}

.product-cart-wrap .product-content-wrap .product-price span.new-price {
    color: var( --primary-color);
}

.product-cart-wrap .product-content-wrap .product-price span.old-price {
    font-size: 12px;
    color: #adadad;
    margin: 0 0 0 7px;
    text-decoration: line-through;
}

.product-cart-wrap .product-content-wrap .rating-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
}

.product-cart-wrap .product-content-wrap .rating-result > span {
    display: block;
    overflow: hidden;
    margin-left: 5px;
}

.product-cart-wrap .product-content-wrap .rating-result::before {
    font-family: "uicons-regular-straight" !important;
    font-size: 11px;
    letter-spacing: 2px;
    content: "\f225" "\f225" "\f225" "\f225" "\f225";
    color: #ff9900;
}

.product-cart-wrap .product-card-bottom .add-cart .add-to-cart-easy i {
    margin: 0 0.5rem 0 0.5rem;
}

.product-cart-wrap .product-card-bottom .add-cart .add-to-cart-easy.disabled {
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
}

.product-cart-wrap .product-content-wrap .add-to-cart {
    width: 44px;
    height: 44px;
    line-height: 44px;
    border-radius: 5px;
    background-color: #f5f5f5;
    text-align: center;
    display: block;
    color: #253d4e;
    font-size: 16px;
    position: absolute;
    bottom: 25px;
    right: 20px;
    font-weight: 300;
}

.product-cart-wrap .product-content-wrap .add-to-cart:hover {
    background-color: var( --primary-color);
    color: #fff;
}

.product-cart-wrap .product-content-wrap .add-to-cart img {
    width: 20px;
    display: inline-block;
    margin-top: 11px;
}

.product-cart-wrap .product-card-bottom {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin-top: 15px;
}

.product-cart-wrap .product-card-bottom .add-cart {
    cursor: pointer;
}


.product-cart-wrap .product-card-bottom .add-cart .add {
    position: relative;
    display: inline-block;
    padding: 6px 20px 6px 20px;
    background-color: #def9ec;
    font-size: 14px;
    font-weight: 700;
}

.product-cart-wrap .product-card-bottom .add-cart .add:hover {
    background-color: var( --primary-color);
    color: #fff;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

.product-cart-wrap .product-stock .status-bar {
    background-color: #ededed;
    margin: 0px 0 10px;
    border-radius: 5px;
}

.product-cart-wrap .product-stock .status-bar .sold-bar {
    background-image: linear-gradient(235deg, var( --primary-color) 0%, #77ccfd 100%);
    border-radius: 4px;
    height: 8px;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-33 {
    width: 33.333333333333%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-10 {
    width: 10%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-40 {
    width: 40%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-6 {
    width: 6.6666666666667%;
}

.product-cart-wrap .product-stock .status-bar .sold-bar.sold-bar-width-42 {
    width: 42.857142857143%;
}

.product-cart-wrap .product-stock .product-stock-status {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.product-cart-wrap .product-stock .product-stock-status .sold {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    margin-right: 20px;
}

.product-cart-wrap .product-stock .product-stock-status .available {
    -ms-flex-negative: 0;
    flex-shrink: 0;
}

.product-cart-wrap
.product-stock
.product-stock-status
.stock-status-same-style
span {
    font-size: 15px;
}

.product-cart-wrap
.product-stock
.product-stock-status
.stock-status-same-style
span.label {
    color: #253d4e;
}

.product-cart-wrap
.product-stock
.product-stock-status
.stock-status-same-style
span.value {
    font-weight: 700;
    color: #333;
}

.product-cart-wrap .progress {
    height: 5px;
}

.product-cart-wrap:hover .product-img-action-wrap .product-img a img.hover-img {
    opacity: 1;
    visibility: visible;
}


.product-cart-wrap:hover .product-img-zoom a img {
    -webkit-transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
    transform: scale3d(1.05, 1.05, 1.05) translateZ(0);
}

.product-cart-wrap.small {
    border: 0;
    text-align: center;
}

.product-cart-wrap.small .rating-result {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.product-cart-wrap.small .product-content-wrap {
    padding: 5px 15px 0 15px;
}

.product-cart-wrap.small .product-price {
    padding-top: 0;
}

.product-cart-wrap.small:hover {
    -webkit-box-shadow: none;
    box-shadow: none;
}

.product-cart-wrap.small h2 {
    border-bottom: 0;
    padding: 0;
    margin-bottom: 0;
}

.product-cart-wrap.small .product-badges span {
    font-size: 10px;
}

.product-cart-wrap.style-2 {
    border: 0;
    padding-bottom: 25px;
}

.product-cart-wrap.style-2:hover {
    border: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.product-cart-wrap.style-2 .product-img-action-wrap {
    padding: 0;
    position: relative;
    z-index: 1;
    max-height: unset;
}

.product-cart-wrap.style-2 .product-img-action-wrap img {
    border-radius: 15px;
}

.product-cart-wrap.style-2 .product-content-wrap {
    position: relative;
    margin-top: -90px;
    z-index: 3;
    padding: 0;
    max-width: 86%;
    margin-left: auto;
    margin-right: auto;
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}

.product-cart-wrap.style-2 .product-content-wrap .deals-content {
    margin: 0 auto;
    background-color: #fff;
    border-radius: 10px;
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    padding: 25px 30px;
}

.product-cart-wrap.style-2 .product-content-wrap .deals-countdown-wrap {
    position: absolute;
    top: -80px;
    width: 100%;
    text-align: center;
}

.product-cart-wrap.style-2:hover .product-content-wrap {
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
    transition: 0.3s;
    -moz-transition: 0.3s;
    -webkit-transition: 0.3s;
    -o-transition: 0.3s;
}

.product-cart-wrap {
    position: relative;
    background-color: #fff;
    border: 1px solid #ececec;
    border-radius: 10px;
    overflow: hidden;
    height: 100%;
    transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
}

.product-cart-wrap .product-content-wrap .product-title a {
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.product-cart-wrap .product-content-wrap .product-title a:hover {
    color: var( --primary-color);
}

.product-cart-wrap .product-content-wrap h2 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.product-cart-wrap .product-card-bottom .add-cart .add {
    width: 100%;
    text-align: center;
    color: var( --primary-color);
    border: none;
}

.product-cart-wrap .product-card-bottom {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: 0;
    width: 100%;
    flex-direction: column;
    margin-top: 8px;
}

.product-component {
    margin-bottom: 100px;
}

.product-component .product-price {
    padding-bottom: 5px;
    font-family: "Quicksand", sans-serif;
}

@media (max-width: 768px) {
    .product-cart-wrap .product-content-wrap h2 a {
        font-size: 11px;
    }
}

/* @media only screen and (max-width: 500px) { */
.product-component {
    margin-bottom: 4.688rem;
}

.product-component .product-cart-wrap .product-img-action-wrap {
    padding: 0;
}

.product-component .product-cart-wrap .product-img-action-wrap .sale {
    padding: 5px 15px 5px 15px;
}

.product-component
.product-cart-wrap
.product-content-wrap
.product-price
span.new-price {
    font-size: 14px;
}

.product-component
.product-cart-wrap
.product-content-wrap
.product-price
span.old-price {
    font-size: 12px;
}

.product-component .product-cart-wrap .product-content-wrap {
    margin-top: 10px;
    margin-bottom: 20px;
    padding: 0 5% 0 5%;
}

.product-component
.product-cart-wrap
.product-card-bottom
.add-cart
.add-to-cart-easy {
    font-size: 11px;
}

/* } */

@media only screen and (max-width: 370px) {
    .product-cart-wrap .product-content-wrap .product-title a {
        font-size: 12px;
    }

    /* .product-component {
        width: max-content;
    } */

    .product-component
    .product-cart-wrap
    .product-content-wrap
    .product-price
    span.new-price {
        font-size: 12px;
    }

    .product-component
    .product-cart-wrap
    .product-content-wrap
    .product-price
    span.old-price {
        font-size: 12px;
    }

    .product-component .product-cart-wrap .product-card-bottom .add-cart .add-to-cart-easy {
        font-size: 10px;
    }

    .product-cart-wrap .product-card-bottom .add-cart .add {
        padding: 6px 14px 6px 14px;
    }

    .product-cart-wrap .product-card-bottom .add-cart .add-to-cart-easy i {
        margin: 0 0.2rem 0 0.2rem;
    }

}

/* Package style */
.packages {
    margin-top: 50px;
}

.packages .pointer {
    cursor: pointer;
}

.package .img-wrapper {
    height: 200px;
}

.package .img-wrapper a {
    height: 100%;
}

.package img {
    height: 100%;
    object-fit: cover;
}


.packages .package {
    position: relative;
    background-color: #fff;
    border: 1px solid #ececec;
    border-radius: 15px;
    overflow: hidden;
    height: 115%;
    transition: 0.2s;
    -moz-transition: 0.2s;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
}

.packages .col {
    margin-bottom: 100px;
}

.packages .package .discount-label {
    position: absolute;
    top: 0;
    left: 0;
    background-color: #67bcee;
    color: #fff;
    padding: 5px 10px;
    border-radius: 0 0 15px 0;
    font-size: 14px;
    font-weight: 900;
}

.packages .package img,
.packages .package .image-placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #f5f5f5;
}

/* If an image is not available, we use this class */
.packages .package .image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999;
}

/* Optional: add a hover effect on the package */
.packages .package:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.packages .package .package-title {
    color: #253d4e;
    font-size: 1.5rem;
    font-weight: 700;
}

.packages .package .package-description {
    font-size: 0.875rem;
}

.packages .package .price-before {
    font-size: 0.875rem;
    color: #adadad;
    text-decoration: line-through;
    margin-bottom: 10px;
}

.packages .package .price-after {
    color: #253d4e;
    font-size: 1.1rem;
    font-weight: 900;
}

.packages .package .add-to-cart {
    position: absolute;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    bottom: 15px;
    display: inline-block;
    padding: 6px 20px 6px 20px;
    border-radius: 20px;
    border: initial;
    background-color: #def9e9;
    font-size: 14px;
    font-weight: 700;
    width: 85%;
    color: var( --primary-color);
}

.packages .package .add-to-cart.disabled {
    cursor: not-allowed;
    opacity: 0.5;
    text-decoration: none;
}

.packages .package .add-to-cart:hover {
    background-color: var( --primary-color);
    color: #fff;
    -webkit-transform: translateY(-3px);
    transform: translateY(-3px);
    -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
    box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.05);
}

@media only screen and (min-width: 350px) {
    .packages .package .package-description {
        font-size: 1rem;
    }
}

.product-img-action-wrap {
    height: 150px;
}

.product-img,
.product-img a {
    height: 100%;
}

.product-img img {
    height: 221px;
      object-fit: contain;
    width: 100%;
}

@media (max-width: 480px) {
    .product-img-action-wrap {
        height: 150px;
    }
}

/*.product-img img {*/
/*    height: 250px; !* Set the desired fixed height *!*/
/*    object-fit: cover;*/
/*    width: 100%; !* Ensures the image takes the full width of the container *!*/
/*}*/

@media (max-width: 768px) {
    .product-component {
        padding: 0;
    }

    .product-cart-wrap {
        margin-bottom: 10px;
    }
}

@media (min-width: 768px) and (max-width: 992px) {
    .product-component {
        padding: 10px;
    }

    .product-cart-wrap {
        margin-bottom: 15px;
    }
}

.add-cart-mobile {
    display: none;
}

@media (max-width: 768px) {
    .add-cart-mobile {
        display: block;
    }

    /* .add-cart {
        display: none;
    } */

    .product-cart-wrap:hover .product-img-action-wrap .product-action-1 {
        visibility: visible;
        opacity: 1;
        transform: none;
    }

    .product-cart-wrap .product-action-1 {
        visibility: hidden !important;
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        display: none;
    }
}

.wrapper-buttons {
    display: flex;
    gap: 1rem;
    /* justify-content: center; */
    /* align-items: center; */
    padding: 2px 13px;
    /* left:0; */

}

.wrapper-buttons .add-to-favorites-mobile,
.wrapper-buttons .remove-from-favorites-mobile {
    display: block;
    z-index: 999;
    position: relative;
}

.wrapper-buttons .add-to-favorites-mobile span {
    color: #ff0000;
}

.add-to-favorites-mobile.clicked .add-to-favorites-icon-popup {
    color: #ff0000;
}

.wrapper-buttons button {
    display: inline-block;
    font-weight: 700;
}

.wrapper-buttons .add-to-cart-easy {
    color: var( --primary-color);
    background-color: #def9ec;
    border: 1px solid #c6ddd2;

}

.wrapper-buttons .add-to-favorites-mobile,
.wrapper-buttons .remove-from-favorites-mobile {
    padding: 4px;
    background-color: #f3eef1;
    border: none;
    border-radius: 50%;
    width: 25px;
    height: 25px;
}

.wrapper-buttons .add-to-cart-easy {
    padding: 6px 20px 6px 20px;
}

.product-component .custom-cart {
    background-color: var( --primary-color) !important;
    color: #fff !important;
    border: none !important;
    width: 20px !important;
    height: 20px !important;
    cursor: pointer !important;
    transition: background-color 0.3s !important;
}

.add-to-cart-easy:hover{
    background-color: var( --secondary-color) !important;
    color: contrast-color(var(--secondary-color) max);
}


.card-product-detail
{
    border-radius: 10%;
}

.product-component  .product-price span.new-price {
    color: var( --primary-color);
}

.product-component  .product-price span.old-price {
    font-size: 12px;
    color: #adadad;
    margin: 0 0 0 7px;
    text-decoration: line-through;
}

.product-badges {

color: white;
font-weight: bold;
border-radius: 10%;
}

.truncate-2-lines {
display: -webkit-box; 
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;  
-webkit-line-clamp: 2; 
line-height: 1.2;
/* max-height: calc(1.2em * 2); */

}
.product-card .product-brand
{
font-size: .75rem;
opacity: 1;
color: rgba(117,117,117);
font-weight: 700;

}

.wrapper-buttons:lang(en) {

right:0;

}

.wrapper-buttons:lang(ar) {

left:0;

}

.icon-saudi_riyal {
display: inline-block;
text-decoration: none !important;
}

.icon-saudi_riyal::before {
text-decoration: none !important;
display: inline-block;
}
  
