/* Fonts */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');

/* Default CSS */

* {
    box-sizing: border-box;
}

html {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
}

body {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--body-font);
    background: #ffffff;
}

img  {
    max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: var(--heading-font);
}

.error {
    color: red!important;
}
.success {
    color: green!important;
}
p {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    outline: none;
    border: none;
    font-weight: 400;
}

a:focus,
a:hover {
    text-decoration: none;
    outline: none;
}

title {
    text-transform: capitalize;
}

:root {
    --heading-font: "Outfit", sans-serif;
    --body-font: "Outfit", sans-serif;
    --primary-color: #367BF5;
    --secondary-color: #F3AA18;
    --black-color: #000;
    --lightblack: #222222;
    --white-color: #fff;
    --darkgrey: #868686;
    --lightgrey: #636363;
    --green: #069697;
    --red: #EA3D2F;
}

.green {
    color: var(--green) !important;
}

.lightblack {
    color: var(--lightblack) !important;
}

.blue {
    color: var(--primary-color) !important;
}

.red {
    color: var(--red) !important;
}

.btn-outline-primary {
    color: #ffffff;
    border-color: #ffffff;
    border-radius: 40px;
    padding: 0.8rem 2rem;
    font-size: 16px;
    font-weight: 300;
}
.btn-outline-primary:hover {
    background: #b11e1e;
    border-color: #b11e1e;
}

.pt-120 {
    padding-top: 120px;
}

.pb-120 {
    padding-bottom: 120px;
}
.pb-80 {
    padding-bottom: 80px;
}
.px-120 {
    padding-left: 120px;
    padding-right: 120px;
}
.form-control:focus,
.form-select:focus {
    box-shadow: none;
}
/* main css start */

.site-header {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    z-index: 11;
    padding-top: 20px;
}

.site-header .main-navabr .navbar {
    padding: 0 40px;
}
.site-header .navbar-brand {
    width: 100px;
    margin: 0px;
}
.site-header .navbar-brand:after {
    content: "";
    position: absolute;
    top: 0;
    right: -80px;
    display: none;
    background: rgba(255, 255, 255, 0.4);
    width: 1px;
    height: 100%;
}
.site-header .navbar-light .navbar-nav,
.site-header .navbar-light .navbar-nav .menu-dropdown,
.site-header .navbar-light .navbar-nav .nav-item {
    position: relative;
}
.site-header .navbar-light .navbar-nav .nav-link {
    position: relative;
    font-style: normal;
    font-weight: 300;
    font-size: 15px;
    line-height: 20px;
    color: #fff;
    padding-right: 1.2rem;
    padding-left: 1.2rem;
}
.site-header .navbar-light .navbar-nav .nav-item.search-input {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
}
.site-header .navbar-light .navbar-nav .nav-item.search-input input:focus {
    outline: 0;
    border: 0;
}
.site-header .navbar-light .navbar-nav .nav-item.search-input::after {
    content: "";
    position: absolute;
    top: -29px;
    left: 0;
    background: rgba(255, 255, 255, 0.4);
    width: 1px;
    height: 95px;
    display: none;
}
.site-header .navbar-light .navbar-nav .nav-item.search-input input {
    background: 0 0;
    color: #ffffff !important;
    width: 120px;
    position: relative;
    border: 0;
    font-size: 18px;
}
.site-header .navbar-light .navbar-nav .nav-item.search-input i {
    color: #fff;
    font-size: 18px;
}
.site-header .navbar-light .navbar-nav .nav-item.search-input input::-webkit-input-placeholder {
    color: #fff;
}
.site-header .navbar-light .navbar-nav .nav-item.search-input input::-ms-input-placeholder {
    color: #fff;
}
.site-header .navbar-light .navbar-nav .nav-item.search-input input::-moz-placeholder {
    color: #fff;
}
.site-header .navbar-light .navbar-nav .nav-item .megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    width: auto;
    padding: 10px 20px;
    box-shadow: 1px 2px 10px 0 rgb(0 0 0 / 10%);
    background: #fff;
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    -webkit-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transition: 0.3s 0;
    transition: 0.3s 0;
    opacity: 0;
    visibility: hidden;
    z-index: 999;
}
.site-header .navbar-light .navbar-nav .nav-item:hover .nav-link {
    background: #b11e1e;
}
.site-header .navbar-light .navbar-nav .nav-item:hover .megamenu {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    visibility: visible;
    opacity: 1;
}
.site-header .navbar-light .navbar-nav .nav-item:hover .megamenu > .sub-menu-item-name {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
    background-color: #fff;
}
.site-header .navbar-light .navbar-nav .megamenu > .sub-menu-item-name > ul {
    float: left;
    margin-right: 25px;
    width: 180px;
}
.site-header .navbar-light .navbar-nav .megamenu > .sub-menu-item-name > ul > li {
    display: block;
}
.site-header .navbar-light .navbar-nav .nav-item:hover .megamenu > .sub-menu-item-name ul li a {
    color: #000;
    display: block;
    font-size: 14px;
    font-weight: 400;
    line-height: 30px;
    padding: 0;
    text-transform: capitalize;
    word-break: break-word;
    white-space: normal;
}

.site-header #search-form2,
.site-header #search-form {
    display: none; 
    position: absolute;
    top: 56px;
    width: 200px;
    right: 0px;
   }
.site-header .navbar-light .navbar-nav.right-navbar li:not(:last-child) {
   margin-right: 10px;
}
.site-header #search-form2 .form-control,
.site-header #search-form .form-control {
   border-radius: 10px;
   padding: 0.6rem 1rem;
   background: rgba(255, 255, 255, 0.05);
   border-color: rgba(255, 255, 255, 0.4);
   color: #ffffff;
}
.site-header #search-form2 .form-control:focus,
.site-header #search-form .form-control:focus {
   box-shadow: none;
   outline: none;
}
.site-header #search-form2 .form-control::placeholder,
.site-header #search-form .form-control::placeholder {
   color: #f2f2f2;
}
.site-header #search-form .form-control { 
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}
.site-header .input-group .btn { 
    border-left: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}
.megamenu .sub-menu-item-name ul li.menu-title {
    border-bottom: 1px solid #f1f1f1;
    margin-bottom: 5px;
    padding-bottom: 5px;
}

.zf-banner-section .banner-carousel .slick-slide img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
}

.zf-service-section {
    width: 100%;
    position: relative;
    background: #000000;
    z-index: 1;
    padding: 20px 0;
    box-shadow: 4px 4px 25px rgb(0 0 0 / 25%);
}
.zf-service-section .service-sec-box-fix {
    display: flex;
    align-items: center;
    justify-content: center;
}
.zf-service-section .service-sec-box-fix .left-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    border: 1px solid #ffffff;
    background: transparent;
    border-radius: 50%;
    margin-right: 20px;
    text-align: center;
}
.zf-service-section .service-sec-box-fix .left-icon img {
    width: 30px;
}
.zf-service-section .service-sec-box-fix .service-content h5 {
    font-style: normal;
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    color: #ffffff;
}
.zf-video-section {
    width: 100%;
    position: relative;
    background: rgba(23, 23, 23, 0.01);
}
.zf-video-section .videoshow-image img {
    width: 100%;
    height: 940px;
    object-fit: cover;
    object-position: center;
}
.zf-video-section .videoshow-image .play-btn {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    width: 66px;
    height: 66px;
    line-height: 66px;
    border: 2px solid #fff;
    border-radius: 50%;
    text-align: center;
    font-size: 20px;
    background: #ffffff;
}
.video-popup {
    margin: 0 auto;
    display: block;
    position: relative;
}
.video-popup video {
    width: 100%;
}
.video-popup .mfp-close {
    opacity: 1;
    color: #fff;
    background-color: #b11e1e;
}
.zf-product-section {
    position: relative;
    background: #2F2D2A;
    margin-top: -60px;
}
.zf-product-section .product-box.pt-140 {
    padding-top: 240px;
}
.zf-product-section .product-box {
    width: 100%;
    position: relative;
}
.zf-product-section .product-box .scroll-arrow {
    position: absolute;
    top: 160px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}
.zf-product-section .product-box .product-image:before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 80%) 18%, rgba(255, 255, 255, 0.3) 100%);
    left: 0;
    bottom: 0;
}
.zf-product-section .product-box .one-image {
    width: 100%;
    height: 800px;
    object-fit: cover;
    object-position: center;
}
.zf-product-section .product-box .two-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
    object-position: center;
}
.zf-product-section .product-box .third-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}
.zf-product-section .product-box .view-arrow {
    position: absolute;
    bottom: 8%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    text-align: center;
}
.zf-product-section .product-box .view-arrow a {
    font-size: 54px;
    line-height: 64px;
    text-transform: uppercase;
    font-weight: 300;
    color: #ffffff;
}
.zf-product-section .product-box .view-arrow a svg {
    margin-left: 15px;
}
.zf-blinds-project {
    position: relative;
    padding: 80px 0 0;
}
.zf-blinds-project::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 440px;
    background: #000000;
    top: 0;
    left: 0;
    z-index: -1;
}
.zf-blinds-project .sec-title {
    padding: 0 180px;
}
.zf-blinds-project .product-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 20%) 100%, rgba(255, 255, 255, 1) 100%);
    left: 0;
    bottom: 0;
}
.zf-blinds-project .product-image {
    margin-left: 5%;
}
.zf-product-offer .top-images img,
.zf-blinds-project .product-image img {
    width: 100%;
    height: 800px;
    object-fit: cover;
    object-position: center;
}
.zf-blinds-project .sec-title {
    padding-bottom: 40px;
}
.zf-blinds-project .sec-title p {
    color: #B11E1E;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 10px;
}
.zf-blinds-project .sec-title h1 {
    font-size: 48px;
    line-height: 60px;
    text-transform: uppercase;
    font-weight: 300;
    color: #ffffff;
    padding-bottom: 30px;
}

.zf-product-offer .top-images::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 60%) 100%, rgba(255, 255, 255, 1) 100%);
    left: 0;
    bottom: 0;
}
.zf-product-offer .Product-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    right: 10%;
    text-align: right;
}
.zf-product-offer .Product-info h2 {
    font-size: 48px;
    line-height: 60px;
    text-transform: uppercase;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.95);
    padding-bottom: 30px;
}
.zf-product-offer .bottom-images .right-image {
   width: 100%;
   height: 800px;
}
.zf-product-offer .bottom-images .product-image img {
    height: 800px;
    width: 100%;
    object-fit: cover;
    object-position: center;
}
.zf-product-offer .bottom-images .right-image .product-info {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 6%;
    z-index: 1;
}
.zf-product-offer .bottom-images .right-image .product-info h4 { 
    font-size: 42px;
    line-height: 54px;
    text-transform: uppercase;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    padding-bottom: 20px;
}
.zf-product-offer .bottom-images .right-image .product-info p { 
    font-size: 16px;
    line-height: 24px;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.8);
    padding-bottom: 20px;
}
.zf-product-offer .bottom-images .right-image .absolute-image {
    position: absolute;
    bottom: 0;
    right: 0;
}
.zf-shopnow-section {
    position: relative;
    padding: 80px 0 0;
}
.zf-shopnow-section .section-header h2 {
    text-transform: uppercase;
    font-weight: 300;
    padding-bottom: 10px;
    color: #000000;
}
.zf-shopnow-section .section-header p {
    color: #B11E1E;
    font-size: 20px;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 300;
}
.zf-shopnow-section .product-image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    object-position: center;
}
.zf-shopnow-section .product-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 20%) 100%, rgba(255, 255, 255, 1) 100%);
    left: 0;
    bottom: 0;
}
.zf-shopnow-section .product-name {
    position: absolute;
    left: 40px;
    bottom: 40px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.01);
    backdrop-filter: blur(22px);
    -webkit-backdrop-filter: blur(22px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 10px;
    font-size: 24px;
    line-height: 32px;
    font-weight: 300;
}
.zf-shopnow-section .product-image {
    width: 100%;
    display: block;
}
.zf-brand-section {
    background: #D9D9D9;
    padding: 80px 0;
}
.zf-brand-section .section-header h2 {
    text-align: center;
    font-size: 42px;
    line-height: 50px;
    color: #000000;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 25px;
}
.zf-brand-section .brand-carousel .slick-slide {
    display: block;
    margin: 0 15px;
}
.zf-brand-section .brand-carousel .slick-slide img {
    height: 80px;
    width: 100%;
    object-fit: contain;
    object-position: center;
}
.zf-brand-section .brand-carousel .slick-item {
    width: 100%;
    display: inline-block;
    padding: 10px;
    position: relative;
    background: #fff;
}
.zf-newsletter-section {
    position: relative;
    padding: 60px 0 0;
}
.zf-newsletter-section .container {
    border-bottom: 1px solid #eeeeee;
    margin-bottom: 20px;
    padding-bottom: 40px;
}
.zf-newsletter-section .sec-title p {
    text-transform: uppercase;
    font-weight: 300;
    padding-bottom: 10px;
    color: #000000;
    font-size: 20px;
    line-height: 28px;
}
.zf-newsletter-section .sec-title h2 {
    text-transform: uppercase;
    font-weight: 300;
    padding-bottom: 10px;
    color: #000000;
    font-size: 42px;
    line-height: 48px;
}
.zf-newsletter-section .NewsletterForm .form-control {
    padding: 0.75rem 1.4rem;
    border-radius: 40px;
}
.zf-newsletter-section .NewsletterForm .form-control:focus {
    box-shadow: none;
}
.zf-newsletter-section .NewsletterForm .btn.btn-primary:focus {
    box-shadow: none;
}
.zf-newsletter-section .NewsletterForm .btn.btn-primary:active:focus {
    box-shadow: 0 0 0 .2rem rgb(182 31 31 / 50%);
}
.zf-newsletter-section .NewsletterForm .btn.btn-primary:active {
    background-color: #b61f1f;
    border-color: #b61f1f;
}
.zf-newsletter-section .NewsletterForm .btn.btn-primary {
    color: #ffffff;
    border-color: #000000;
    border-radius: 40px;
    padding: 1rem 2rem;
    font-size: 16px;
    line-height: 14px;
    font-weight: 300;
    text-align: center;
    background-color: #000000;
    height: 50px;
    display: flex;
    align-items: center;
}
.zf-newsletter-section .row {
    align-items: flex-end;
}
.zf-newsletter-section .NewsletterForm {
    display: flex;
    justify-content: flex-end;
}
.zf-newsletter-section .NewsletterForm .form-group:not(:last-child) {
    flex: 1;
    margin-right: 15px;
}
.zf-footer {
    position: relative;
    padding: 20px 0;
}
.zf-footer .Quicklinks h4 {
    text-transform: uppercase;
    font-weight: 300;
    padding-bottom: 10px;
    color: #000000;
    font-size: 20px;
    line-height: 28px;
}
.zf-footer .Quicklinks li a {
    color: #868686;
    font-size: 16px;
    line-height: 30px;
    font-weight: 300;
    display: flex;
    align-items: center;
}
.zf-footer .Quicklinks li a i {
    width: 40px;
    height: 40px;
    line-height: 40px;
    border-radius: 50%;
    border: 1px solid #868686;
    text-align: center;
    flex-basis: 40px;
    margin-right: 10px;
}
.zf-footer .Quicklinks .social-icon a i {
    border-color: #000000;
}
.zf-footer .Quicklinks .social-icon a {
    color: #000000;
}
.zf-footer .logo-sec img {
    width: 100px;
}
.zf-footer .fcopyright p {
    color: #B61F1F;
    font-size: 16px;
    line-height: 24px;
    text-align: right;
}
.zf-footer .container.bottom-footer {
    border-top: 1px solid #eeeeee;
    padding-top: 30px;
    margin-top: 30px;
}
.zf-footer .container.bottom-footer .row {
    align-items: center;
}
/* About US Page Start */

.zf-page-header {
    width: 100%;
    position: relative;
}
.zf-page-header .header-image img {
    width: 100%!important;
    height: 600px;
    object-fit: cover;
    object-position: top center;
}
.zf-page-header .header-image:before {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    content: " ";
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8) 50%, rgba(0, 0, 0, 0.4) 100%);
    box-sizing: border-box;
}
.zf-page-header .header-breadcrumb {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 0 40px;
    text-align: center;
}
.zf-page-header .header-breadcrumb h1 {
    font-size: 80px;
    line-height: 90px;
    color: #ffffff;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.zf-page-header .header-breadcrumb p {
    color: #ffffff;
    font-size: 16px;
    max-width: 1200px;
    margin: 0 auto;
    padding-bottom: 20px;
    font-weight: 300;
}
.zf-page-header .list-unstyled .list-inline-item:not(:last-child) {
    margin-right: 0.6rem;
    border-right: 0.6px solid #ffffff;
    padding-right: 1rem;
    font-size: 16px;
    line-height: 20px;
}
.zf-page-header .list-unstyled li a {
    color: #ffffff;
}

.zf-about-section {
    position: relative;
    padding: 80px 80px 80px;
}
.zf-about-section .about-content h2 {
    font-size: 60px;
    line-height: 72px;
    color: #000000;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 20px;
}
.zf-about-section .about-content p {
    color: #868686; 
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
    padding-bottom: 20px;
}
.zf-Keyfacts-section {
    position: relative;
    padding: 120px 60px 120px 140px;
}
.zf-Keyfacts-section::after {
    content: '';
    background: #000000;
    position: absolute;
    width: 92%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: -1;
}

.zf-Keyfacts-section .Keyfacts-content h2 {
    color: #ffffff;
    font-size: 60px;
    line-height: 72px;
    padding-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
}
.zf-Keyfacts-section .Keyfacts-content ul li {
    margin-bottom: 25px;
    color: #ffffff;
    font-size: 18px;
    line-height: 30px;
    font-weight: 400;
}
.Keyfacts-content .list-inline li {
    padding-left: 40px;
    position: relative;
}

.Keyfacts-content .list-inline li img {
    position: absolute;
    left: 0;
    top: 3px;
}

.zf-key-product {
    position: relative;
    padding: 80px;
}
.zf-key-product .keyproduct-content h2 {
    font-size: 60px;
    line-height: 72px;
    padding-bottom: 20px;
    font-weight: 400;
    text-transform: uppercase;
}
.zf-key-product .keyproduct-content ul li > img {
    margin-right: 5px;
}
.zf-key-product .keyproduct-content ul li {
    background: rgba(177, 30, 30, 0.05);
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
    color: #000000;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.zf-key-product .keyproduct-content .list-inline li {
    padding-left: 40px;
    position: relative;
}

.zf-key-product  .keyproduct-content .list-inline li img {
    position: absolute;
    left: 12px;
    top: 16px;
}

.about-content .contact-form .form-control {
    border-color: #787878;
    border-radius: 0px;
    padding: 0.8rem 1rem;
    color: #868686;
}
.about-content .contact-form .form-control:focus {
    box-shadow: none;
    border-color: rgba(177, 30, 30, 0.8);
}
.about-content .contact-form .btn.btn-primary {
    color: #ffffff;
    border-color: #000000;
    border-radius: 40px;
    padding: 1rem 2rem;
    font-size: 16px;
    line-height: 14px;
    font-weight: 300;
    text-align: center;
    background-color: #000000;
    height: 50px;
    display: flex;
    align-items: center;
}

.zf-about-section .address-card {
    border: 1px solid rgba(0, 0, 0, 0.3);
    padding: 20px;
    width: 100%;
    height: 240px;
}
.address-card .card-header {
    display: flex;
    align-items: center;
    padding-bottom: 15px;
}
.address-card .card-header i {
    background: #B11E1E;
    width: 60px;
    height: 60px;
    line-height: 60px;
    text-align: center;
    color: #ffffff;
    font-size: 24px;
 }
 .address-card .card-header h4 {
    color: #000000;
    font-size: 22px;
    line-height: 28px;
    font-weight: 500;
    flex: 1;
    margin-left: 15px;
 }
 .address-card .card-body p {
    color: #868686;
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 10px;
    display: flex;
    justify-content: space-between;
}

.zf-locations-section {
    position: relative;
    padding: 120px 160px 80px;
    background: #F7F7F8;
}
.zf-locations-section .locations-image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    object-position: center;
}
.zf-locations-section .section-header h2 {
    font-size: 54px;
    line-height: 64px;
    color: #000000;
    font-weight: 300;
    text-transform: uppercase;
    padding-bottom: 40px;
    text-align: center;
}
.zf-locations-section .locations-content h4 {
    font-size: 36px;
    line-height: 42px;
    color: #000000;
    font-weight: 300;
    text-transform: uppercase;
    padding-bottom: 40px;
    text-align: left;
}
.zf-locations-section .locations-content .card-box {
    display: flex;
    align-items: flex-start;
    background: #F4F4F4;
    padding: 20px;
}
.zf-locations-section .locations-content .card-box .card-icon i {
    background: #B11E1E;
    width: 65px;
    height: 65px;
    line-height: 65px;
    text-align: center;
    color: #ffffff;
    font-size: 24px;
}
.zf-locations-section .locations-content .card-box .card-content {
    flex: 1;
    margin-left: 15px;
}
.zf-locations-section .locations-content .card-box .card-content p {
    color: #868686;
    font-size: 18px;
    line-height: 28px;
    display: flex;
    justify-content: space-between;
}
.zf-locations-section .locations-content .locations-inner {
    position: relative;
    border: 1px solid rgba(134, 134, 134, 0.2);
    background: #ffffff;
    padding: 40px;
}
.zf-locations-section .locations-content .location-bottom h6 {
    color: #000000;
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    padding-bottom: 20px;
}
.zf-locations-section .locations-content .location-bottom .btn-primary {
    border-radius: 40px;
    padding: 0.8rem 2rem;
    font-size: 16px;
    font-weight: 300;
    background: #000000;
    border-color: #000000;
}
.zf-locations-section .locations-content .location-bottom .btn-outline-primary {
    color: #000000;
    border-color: #000000;
}
.zf-locations-section .locations-content .location-bottom .btn-outline-primary:hover {
    color: #ffffff;
    background: #000000;
}

.zf-modern-furniture-section {
    position: relative;
    background: #000000;
}
.zf-modern-furniture-section .furniture-content {
    padding: 80px;
}
.zf-modern-furniture-section .furniture-content h4 {
    font-size: 54px;
    line-height: 60px;
    color: #ffffff;
    font-weight: 300;
    text-transform: uppercase;
    padding-bottom: 40px;
}
.zf-modern-furniture-section .furniture-content p {
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    font-weight: 400;
    padding-bottom: 40px;
}
.zf-modern-furniture-section .furniture-image img {
    width: 100%;
    height: 680px;
    object-fit: cover;
    object-position: center;
}

.zf-testimonial-section {
    position: relative;
    padding: 80px 0;
}
.zf-testimonial-section .section-header h2 {
    text-align: center;
    font-size: 42px;
    line-height: 50px;
    color: #000000;
    font-weight: 300;
    text-transform: uppercase;
    padding-bottom: 40px;
}
.zf-testimonial-section .testimonial-carousel .client-image img {
    display: inline-block;
    width: 200px;
    height: 200px;
    border-radius: 100%;
    background: rgba(177, 30, 30, 0.05);
    padding: 10px;
    margin-bottom: 20px;
}
.zf-testimonial-section .testimonial-carousel .client-info h4 {
    font-size: 24px;
    line-height: 32px;
    font-weight: 600;
    padding-bottom: 4px;
}
.zf-testimonial-section .testimonial-carousel .client-say,
.zf-testimonial-section .testimonial-carousel .client-info p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 300;
    padding-bottom: 4px;
    color: #868686;
}
.zf-testimonial-section .testimonial-carousel .client-say::before {
    content: '';
    position: absolute;
    background-image: url(../img/home/Quote.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 83px;
    height: 70px;
    top: -40px;
    left: 0px;
}
.zf-testimonial-section .testimonial-carousel .client-say::after {
    content: '';
    position: absolute;
    background-image: url(../img/home/Quote2.png);
    background-repeat: no-repeat;
    background-size: contain;
    width: 83px;
    height: 70px;
    bottom: -10px;
    right: 0px;
}
.zf-testimonial-section .testimonial-carousel .slick-dots li button:before {
    font-size: 16px;
    color: #B11E1E;
}
.zf-testimonial-section .testimonial-carousel .slick-dots li.slick-active button:before {
    opacity: .75;
    color: #B11E1E;
}

.zf-testimonial-section .testimonial-carousel .slick-prev {
    width: 60px;
    height: 60px;
    top: 25%;
    left: 28%;
    z-index: 1;
}
.zf-testimonial-section .testimonial-carousel .slick-next {
    width: 60px;
    height: 60px;
    top: 25%;
    right: 28%;
    z-index: 1;
}
.zf-testimonial-section .testimonial-carousel .slick-prev:before {
    width: 60px;
    height: 60px;
    line-height: 54px;
    content: "\f177";
    font-weight: 500;
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    opacity: 1;
    font-size: 20px;
    color: #ffffff;
    border: 2px solid #B11E1E;
    background-color: #B11E1E;
    border-radius: 100%;
}
.zf-testimonial-section .testimonial-carousel .slick-next:before {
    width: 60px;
    height: 60px;
    line-height: 54px;
    content: "\f178";
    font-weight: 500;
    font-family: "Font Awesome 6 Pro";
    display: inline-block;
    opacity: 1;
    font-size: 20px;
    color: #ffffff;
    border: 2px solid #B11E1E;
    background-color: #B11E1E;
    border-radius: 100%;
}

.zf-dallasounty-section {
    position: relative;
    padding: 120px 0;
}
.zf-dallasounty-section .dallasounty-content h2 {
    font-size: 36px;
    line-height: 48px;
    color: #ffffff;
    font-weight: 300;
    text-align: center;
}
.zf-interest-section {
    position: relative;
    padding: 80px 0;
}
.zf-interest-section .section-header h2 {
    text-align: center;
    font-size: 42px;
    line-height: 50px;
    color: #000000;
    font-weight: 300;
    text-transform: uppercase;
    padding-bottom: 40px;
}
.zf-interest-section .interest-box {
    position: relative;
    width: 100%;
    display: block;
}
.zf-interest-section .interest-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 80%, rgba(0, 0, 0, 0) 100%);
}
.zf-interest-section .interest-box img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    object-position: center;
}

.zf-interest-section .interest-box .caption-text { 
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    padding: 0 15px;
}
.zf-interest-section .interest-box .caption-text h5 { 
    color: #ffffff;
    font-size: 24px;
    line-height: 36px;
    padding-bottom: 30px;
    position: relative;
    text-align: center;
}
.zf-interest-section .interest-box .caption-text::after { 
    content: '';
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    width: 80%;
    height: 1px;
    left: 10%;
    bottom: 35px;
}
.zf-interest-section .interest-box .caption-text a {
    color: #ffff;
    text-align: center;
    display: block;
    width: 100%;
}

.zf-locations-section .section-header p {
    color: #868686;
    font-size: 20px;
    line-height: 28px;
    text-align: center;
    padding-bottom: 40px;
}
.zf-locations-section .section-header p a {
    color: #B11E1E;
}
.zf-about-section .location-bottom .btn-primary {
    border-radius: 40px;
    padding: 0.8rem 2rem;
    font-size: 16px;
    font-weight: 300;
    background: #000000;
    border-color: #000000;
}
.zf-about-section .location-bottom .btn-outline-primary {
    color: #000000;
    border-color: #000000;
}
.zf-about-section .location-bottom .btn-outline-primary:hover {
    color: #ffffff;
    border-color: #ffffff;
}
.zf-nearby-section {
    width: 100%;
    position: relative;
}
.zf-nearby-section .section-header h2 {
    font-size: 54px;
    line-height: 64px;
    color: #000000;
    font-weight: 300;
    text-transform: uppercase;
    padding-bottom: 40px;
}
.zf-nearby-section  .address-card .card-header {
    filter: drop-shadow(10px 0px 50px rgba(41, 35, 91, 0.05));
    background: #ffffff;
    margin-bottom: 40px;
    padding-bottom: 0px;
}

.zf-modern-furniture .modern-content {
    position: relative;
    filter: drop-shadow(10px 0px 50px rgba(41, 35, 91, 0.05));
    background: #ffffff;
    padding: 40px;
}
.zf-modern-furniture .modern-content h2 {
    color: #000000;
    font-size: 36px;
    line-height: 42px;
    font-weight: 400;
    padding-bottom: 20px;
}
.zf-modern-furniture .modern-content p {
    color: #6B6B6B;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}
.zf-modern-furniture .modern-image {
    position: absolute;
    left: -45px;
    z-index: -1;
    top: -50px;
}
.zf-interest-section.StunningFinds .interest-box {
    margin-bottom: 40px;
}
.zf-interest-section.StunningFinds .interest-box img {
    width: 100%;
    height: 400px;
}
.zf-interest-section.StunningFinds .interest-box::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3) 80%, rgba(0, 0, 0, 0) 100%);
}
.zf-interest-section.StunningFinds .interest-box .caption-text::after {
    display: none;
}
.zf-nearby-section .promotions-images {
    padding: 0px 80px;
}

.zf-farmers-branch-section .branch-content h2 {
    font-size: 54px;
    line-height: 64px;
    color: #000000;
    font-weight: 300;
    text-transform: uppercase;
    padding-bottom: 40px;
}
.zf-farmers-branch-section .branch-content p {
    color: #6B6B6B;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
}
.zf-about-section .careers-box .careers-text {
    width: calc(100% - 50px);
    margin: 0 auto;
    background: #ffffff;
    padding: 25px;
    filter: drop-shadow(10px 0px 50px rgba(41, 35, 91, 0.05));
    margin-top: -80px;
}
.zf-about-section .careers-box .careers-text h4 {
    font-size: 24px;
    line-height: 24px;
    text-transform: uppercase;
    font-weight: 500;
    padding-bottom: 20px;
}
.zf-about-section .careers-box .careers-text p {
    color: #6B6B6B;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    padding-bottom: 30px;
    height: 160px;
    display: -webkit-box;
    -webkit-line-clamp: 5; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.zf-about-section .careers-box .careers-text .btn-outline-primary {
    color: #000000;
    border-color: #000000;
}
.zf-about-section .careers-box .careers-text .btn-outline-primary:hover {
    color: #ffffff;
    border-color: #ffffff;
}
.zf-about-section .careers-text.mt-4 p {
    color: #6B6B6B;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    text-align: center;
    padding-bottom: 15px;
}
.zf-about-section .careers-text.mt-4 p a { 
    color: #b11e1e;
    font-weight: bold;
}
.zf-interest-section.StunningFinds {
    padding-top: 0px;
}

.zf-shippinginfo-section h2 {
    color: #000000;
    font-size: 24px;
    line-height: 30px;
    background: #F7E8E8;
    display: block;
    width: max-content;
    padding: 10px 20px;
    margin-bottom: 20px;
}
.zf-shippinginfo-section p {
    color: #868686;
    font-size: 18px;
    line-height: 28px;
    padding-bottom: 20px;
}
.zf-shippinginfo-section .section-header h1 {
    color: #000000;
    font-size: 36px;
    line-height: 42px;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 20px;
}

.zf-financing-section .financing-card {
    position: relative;
    background: #ffffff;
    filter: drop-shadow(10px 0px 50px rgba(41, 35, 91, 0.05));
    padding: 80px;
    text-align: center;
}
.zf-financing-section .financing-card .sec-title {
    font-size: 36px;
    line-height: 48px;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 20px;
}

.zf-accidental-section .financing-card {
    position: relative;
    text-align: center;
    background: rgba(177, 30, 30, 0.1);
    padding: 60px;
}
.zf-accidental-section .financing-card .sec-title {
    font-size: 42px;
    line-height: 54px;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 20px;
}
.zf-accidental-section .financing-card p {
    color: #868686;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
}

.zf-customer-gallary-section .section-header h4 {
    font-size: 42px;
    line-height: 54px;
    text-transform: uppercase;
    font-weight: 400;
    padding-bottom: 10px;
}
.zf-customer-gallary-section .section-header p {
    color: #868686;
    font-size: 16px;
    line-height: 28px;
    font-weight: 400;
    padding-bottom: 20px;
}
.zf-customer-gallary-section .section-header .btn {
    color: #ffffff;
    background-color: #000000;
    border-color: #000000;
    border-radius: 40px;
    padding: 1rem 2rem;
    font-size: 16px;
    line-height: 14px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
}
.zf-customer-gallary-section .gallary-card .gallery-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
}
.zf-customer-gallary-section .gallary-card .gallery-text {
    width: calc(100% - 100px);
    background: #ffffff;
    padding: 25px;
    filter: drop-shadow(10px 0px 50px rgba(41, 35, 91, 0.05));
    margin-top: -80px;
    margin-bottom: 40px;
}
.zf-customer-gallary-section .gallary-card .gallery-text h4 {
    font-size: 24px;
    line-height: 30px;
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: space-between;
}
.zf-customer-gallary-section .gallary-card .gallery-text h4 span,
.zf-customer-gallary-section .gallary-card .gallery-text p {
    color: #868686;
    font-size: 16px;
    line-height: 24px;
}

.zf-shippinginfo-section .furniture-list {
    counter-reset: list-counter;
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}
.zf-shippinginfo-section .furniture-list li {
    counter-increment: list-counter;
    margin-bottom: 1em;
    position: relative;
    padding: 1.4em 2em;
    background: #F4F4F4;
    color: #868686;
}
.zf-shippinginfo-section .furniture-list li::before {
    content: counter(list-counter) ". ";
    position: absolute;
    left: 15px;
    color: #868686; 
    font-weight: bold; 
}

.zf-category-section .gallery-card {
    margin-bottom: 20px;
    overflow: hidden;
}
.zf-category-section .gallery-image img {
    width: 100%;
    height: 100% !important;
    object-fit: contain;
    object-position: center;
}
.zf-category-section .gallery-text a {
        display: none;
    transition: opacity 0.3s ease;
    /* width: 100px; */
    /* height: 100px; */
    /* line-height: 100px; */
    border-radius: 40px;
    padding: 0.6rem 1rem;
    text-align: center;
    font-size: 14px;
    color: #ffffff;
    border: 1px solid rgba(238, 237, 237, 0.4);
}
.zf-category-section .gallery-card:hover .gallery-text {
    transform: translate(-50%, -50%);
}
.zf-category-section .gallery-card:hover .gallery-text a {
    display: inline-block;
    opacity: 1;
}
.zf-category-section .gallery-text {
    position: absolute;
    top: 50%; 
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 10px;
    transition: top 0.3s ease, opacity 0.3s ease;
}
.zf-category-section .gallery-card:hover .gallery-text {
    top: 45%; 
    opacity: 1; 
}
.zf-category-section .gallery-card .gallery-image::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 30%) 100%, rgba(255, 255, 255, 1) 100%);
    left: 0;
    bottom: 0;
}
.zf-category-section .gallery-text h4 {
    font-size: 24px !important;
    line-height: 32px !important;
    font-weight: 300;
    padding-bottom: 20px;
    text-transform: uppercase;
}
.zf-listing-section .section-header .show-filters .btn {
    border: 1px solid #000000;
    border-radius: 40px;
    padding: 0.6rem 1rem;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}
.zf-listing-section .section-header .shop-results {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
.zf-listing-section .section-header .shop-results .form-select {
    width: 180px;
    border: 1px solid #000000;
    border-radius: 40px;
    padding: 0.6rem 1rem;
    color: #000000;
    font-size: 16px;
    font-weight: 500;
}
.zf-listing-section .section-header .shop-results .form-select:focus {
    box-shadow: none;
}


.zf-listing-section .product-card {
    margin-bottom: 20px;
    overflow: hidden;
}
.zf-listing-section .product-item img {
    width: 100%;
    height: 340px;
    object-fit: contain;
    object-position: center;
}
.zf-listing-section .product-image-hover .btn {
    display: none;
    transition: opacity 0.3s ease;
    text-align: center;
    font-size: 16px;
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 40px;
    padding: 0.7rem 2rem;
    margin-bottom: 15px;
}
.zf-listing-section .product-image-hover .btn:hover {
    background: #ffffff;
    color: #000000;
}
.zf-listing-section .product-card:hover .product-image-hover {
    transform: translate(-50%, -50%);
}
.zf-listing-section .product-card:hover .product-image-hover a {
    display: block;
    opacity: 1;
}
.zf-listing-section .product-image-hover {
    position: absolute;
    top: 60%; 
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    width: 100%;
    padding: 10px;
    transition: top 0.3s ease, opacity 0.3s ease;
    display: flex;
    justify-content: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.zf-listing-section .product-card:hover .product-image-hover {
    top: 50%; 
    opacity: 1; 
}
.zf-listing-section .product-card .product-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgb(0 0 0 / 30%) 100%, rgba(255, 255, 255, 1) 100%);
    left: 0;
    bottom: 0;
}
.zf-listing-section .product-text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}
.zf-listing-section .product-text .product-info h5 {
    color: #000000;
    font-size: 22px;
    line-height: 28px;
    padding-bottom: 5px;
}
.zf-listing-section .product-text .p-d-price {
    color: #676767;
    display: inline-block;
    font-size: 18px;
}
.zf-listing-section .product-text .price-line-through {
    /*margin-left: 12px;*/
    vertical-align: inherit;
    color: #bb2f2f;
    font-size: 18px;
    text-decoration: line-through;
}

.zf-listing-section .product-text .relatedp-d-price {
    color: #bb2f2f;
    display: inline-block;
    font-size: 18px;
}
.zf-listing-section .product-text .relatedprice-line-through {
    /*margin-left: 12px;*/
    vertical-align: inherit;
    color: #676767;
    font-size: 18px;
    text-decoration: line-through;
}

.zf-listing-section .product-text .originalrelatedp-d-price {
    color: #676767;
    display: inline-block;
    font-size: 18px;
}

.zf-listing-section .product-text .product-rating i {
    color: #FFC700;
}
.zf-listing-section .load-more .btn {
    color: #ffffff;
    border-color: #000000;
    border-radius: 40px;
    padding: 0.8rem 2rem;
    font-size: 16px;
    font-weight: 300;
    text-align: center;
    background-color: #000000;
}

/*USE CSS for Slider*/
.zf-product-details-section {
    position: relative;
    padding: 80px 80px;
}
.zf-product-details-section .vehicle-detail-banner .car-slider-desc {
    max-width: 180px;
    margin: 0 auto;
}
.zf-product-details-section .banner-slider .slider.slider-for {
    max-width: 82%;
    padding-right: 15px;
}
.zf-product-details-section .banner-slider .slider.slider-nav {
    max-width: 18%;
}
.zf-product-details-section .banner-slider .slider.slider-for,
.zf-product-details-section .banner-slider .slider.slider-nav {
    width: 100%;
    float: left;
}
.zf-product-details-section .banner-slider .slider.slider-nav {
    height: 610px;
    overflow: hidden;
}
.zf-product-details-section .product-thumbnail .slider.slider-nav {
    height: 620px;
    overflow: hidden;
}
.zf-product-details-section .slider-banner-image {
    height: 510px;
}
.zf-product-details-section .slider-banner-image img,
.zf-product-details-section .slider-nav .slick-slide .thumbnail-image .thumbImg img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border: 1px solid #ccc;
    padding: 14px;
}
.zf-product-details-section .slider-nav .slick-slide.slick-current .thumbnail-image .thumbImg {
    border: 1px solid #9b9b9b;
}
.zf-product-details-section .slider-nav .slick-slide.slick-current span {
    color: #9b9b9b;
}
.zf-product-details-section .slider-nav .slick-slide {
    text-align: center;
}
.zf-product-details-section .slider-nav .slick-slide span {
    font-size: 14px;
    display: block;
    padding: 5px 0 15px;
}

.zf-product-details-section .slider-banner-image img, .zf-product-details-section .slider-nav .slick-slide.thumbnail-image .thumbImg img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    padding: 20px;
}
.zf-product-details-section .slider-nav .slick-slide.thumbnail-image .thumbImg {
    max-width: 100%;
    height: 145px;
    margin: 0 auto;
    border: 1px solid #ebebeb;
    background: #f5f5f5;
    cursor: pointer;
}
.zf-product-details-section .slider-nav .slick-slide.slick-current.thumbnail-image .thumbImg {
    border: 2px solid #dddddd;
}
.zf-product-details-section .slider-nav .slick-slide .thumbnail-image .thumbImg {
    max-width: 100%;
    height: 142px;
    margin: 0 auto;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}
.zf-product-details-section .product-info {
    padding: 20px 40px;
}
.zf-product-details-section .product-info .sec-title h4 {
    font-size: 42px;
    line-height: 54px;
    font-weight: 300;
    padding-bottom: 10px;
    /*text-transform: uppercase;*/
}
.zf-product-details-section .product-info .product-rating i {
    color: #FFC700;
} 
.zf-product-details-section .product-price .p-d-price {
    color: #676767;
    display: inline-block;
    font-size: 20px;
    text-decoration: line-through;
}
.zf-product-details-section .product-price .price-line-through {
    margin-left: 12px;
    vertical-align: inherit;
    color: #bb2f2f;
    font-size: 20px;
}
.zf-product-details-section .product-info .select-option {
    margin: 20px 0;
}
.zf-product-details-section .product-info .select-option .form-select {
    border-radius: 40px;
    padding: 0.6rem 1rem;
    border-color: #000000;
    font-size: 16px;
}

.addcart-form {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    margin-bottom: 40px;
    padding-bottom: 40px;
}
.addcart-form .quantity {
    display: flex;
    border: 1px solid #000000;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  }
  .addcart-form .quantity button {
    color: #000000;
    border: none;
    cursor: pointer;
    font-size: 18px;
    width: 40px;
    height: auto;
    text-align: center;
    background: #ffffff;
    padding: 0.8rem 1rem;
    border-radius: 40px;
  }
  .addcart-form  .btn-primary {
    /* flex: 1; */
    padding: 0.8rem 2rem;
    border-radius: 40px;
    margin-left: 20px;
    background: #000000;
    border-color: #000000;
  }
  
  .addcart-form .input-box {
    width: 40px;
    text-align: center;
    border: none;
    padding: 8px 10px;
    font-size: 16px;
    outline: none;
  }
  
  .addcart-form .input-box::-webkit-inner-spin-button,
  .addcart-form .input-box::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  .addcart-form .input-box[type="number"] {
    -moz-appearance: textfield;
  }
  .add-wishlist .btn-outline-primary {
    border-color: #000000;
    color: #000000;
    padding: 0.6rem 2rem;
  }
  .add-wishlist .btn-outline-primary:hover {
    border-color: #ffffff;
    color: #ffffff;
  }

  .tabs-navigation .nav-tabs .nav-link {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    padding-bottom: 15px;
    color: #000000;
    border: none;
    position: relative;
} 
.tabs-navigation .nav-tabs {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
}
.tabs-navigation .nav-tabs .nav-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 4px;
    width: 0;
    background-color: #000000;
    transition: width 0.3s ease-in-out;
    border-radius: 2px;
}
.tabs-navigation .nav-tabs .nav-link.active::after {
    width: 100%; 
}
.tabs-navigation .nav-tabs .nav-item.show .nav-link, 
.tabs-navigation .nav-tabs .nav-link.active {
    background-color: transparent;
}
.tab-content .tab-pane h4 {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    padding-bottom: 10px;
    color: #000000;
}
.related-carousel .slick-slide {
    margin: 0px 10px;
}
.zf-listing-section .section-header h2 {
    font-size: 42px;
    line-height: 54px;
    font-weight: 300;
    text-transform: uppercase;
}
.zf-login-section {
    position: relative;
    padding: 80px 80px;
}
.zf-login-section .login-form {
    position: relative;
    border: 1px solid #868686;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 20px;
}
.zf-login-section .login-form .sec-title h4 {
    color: #000000;
    font-size: 30px;
    line-height: 36px;
    text-transform: uppercase;
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #868686;
}
.zf-login-section .login-form label {
    color: #868686;
    margin-bottom: 0.5rem;
}
.zf-login-section .login-form .btn-primary {
    background: #000000;
    border-color: #000000;
    padding: 0.6rem 2rem;
    border-radius: 40px;
    font-size: 16px;
    line-height: 28px;
}
.zf-login-section .login-form .form-control {
    border-radius: 20px;
    padding: 0.6rem 1rem;
    resize: none;
}
.zf-wishlist-section .wishlist-table {
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    background: #ffffff;
    padding: 30px;
}
 .wishlist-table thead th {
    color: #000000;
    font-size: 18px;
    line-height: 24px;
    text-transform: uppercase;
    padding-bottom: 20px;
    padding-top: 0px;
}
 .wishlist-table tbody td {
    color: #000000;
    font-size: 18px;
    line-height: 24px;
   vertical-align: middle;
   padding: 30px 0px;
   position: relative;
}
 .wishlist-table .remove-list {
    position: absolute;
    top: 10px;
    left: 102px;
}
 .wishlist-table .remove-list a {
    color: #ff0000;
}
.wishlist-table .wish-image,
 .wishlist-table .wish-image img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    object-position: center;
}
 .wishlist-table tbody td .btn {
    background: #000000;
    color: #ffffff;
    font-size: 16px;
    line-height: 24px;
    border-radius: 40px;
    padding: 0.6rem 1.4rem;
}
.wishlist-table .qty {
    display: flex;
    align-items: center;
    border: 1px solid #000000;
    padding: 0.6rem 1rem;
    border-radius: 40px;
    width: 140px;
}
.wishlist-table .qty .count {
    color: #000;
    display: inline-block;
    vertical-align: top;
    font-size: 16px;
    line-height: 24px;
    padding: 0 2px;
    min-width: 35px;
    text-align: center;
    border: none;
}
.wishlist-table .qty .plus {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    color: #000;
    width: 30px;
    text-align: center;
    border-radius: 50%;
    }
    .wishlist-table .qty .minus {
    cursor: pointer;
    display: inline-block;
    vertical-align: top;
    color: #000;
    width: 30px;
    text-align: center;
    line-height: 0.8;
    border-radius: 50%;
    background-clip: padding-box;
}
.wishlist-table .qty input {
    width: 60px;
}
.wishlist-table .qty input::-webkit-outer-spin-button,
.wishlist-table .qty input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.wishlist-table .qty input:disabled{
    background-color:white;
}
.proceed-checkout .apply-coupon .btn-theme {
    color: #ffffff;
    border-color: #000000;
    border-radius: 40px;
    padding: 1rem 1rem;
    font-size: 16px;
    line-height: 14px;
    font-weight: 300;
    text-align: center;
    background-color: #000000;
    flex-basis: 200px;
    margin-left: 15px;
}
.proceed-checkout .apply-coupon .form-control {
    border-radius: 40px;
    font-size: 16px;
    line-height: 24px;
    color: #000000;
    padding: 0.5rem 1rem;
}
.all-cart-buttons button:last-child, .all-cart-buttons button:nth-child(2) {
    float: right;
    margin-left: 5px;
}
.all-cart-buttons button, 
.amount-totals .button, 
.buttons-set .button {
    background: #000;
    border: 0;
    color: #fff;
    cursor: pointer;
    display: inline-block;
    padding: 1rem 1.4rem;
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    border-radius: 40px;
}
.proceed-checkout .amount-totals p {
    color: #000000;
    font-size: 16px;
    line-height: 24px;
    font-weight: 400;
    padding-bottom: 10px;
}
.proceed-checkout .amount-totals p span {
 float: right;
}

.zf-product-warranty .section-header h2 {
    text-transform: uppercase;
    font-weight: 300;
    padding-bottom: 10px;
    color: #000000;
    font-size: 42px;
    line-height: 48px;
}
.zf-product-warranty .product-warranty-box {
    padding: 0px 0px 20px;
    text-align: left;
    border-bottom: 1px solid #d7d7d7;
    margin-bottom: 30px;
}
.zf-product-warranty .product-warranty-box h4 {
    text-transform: uppercase;
    font-weight: 300;
    padding-bottom: 15px;
    color: #000000;
    font-size: 36px;
    line-height: 44px;
}
.zf-product-warranty .product-warranty-box p {
    color: #000000;
    font-size: 18px;
    line-height: 24px;
    font-weight: 400;
    padding-bottom: 15px;
}
.zf-product-warranty .product-warranty-box p.red-c {
    color: #B11E1E;
    font-weight: bold;
    margin-top: 10px;
}
.zf-product-warranty .product-warranty-box .btn-theme {
    color: #ffffff;
    border-color: #000000;
    border-radius: 40px;
    padding: 0.8rem 1.2rem;
    font-size: 14px;
    line-height: 14px;
    font-weight: 300;
    text-align: center;
    background-color: #000000;
    margin-left: 15px;
}

.checkout-table thead th {
    color: #000000;
    font-size: 20px;
    font-weight: 500;
    width: 50%;
    padding-bottom: 20px;
    padding-top: 20px;
}
.checkout-table table .p-quantity {
    text-align: center;
    width: 50px
}
.checkout-table table .p-total {
    width: 90px
}
.checkout-table tbody tr,
.checkout-table tfoot {
    border-top: 1px solid #f2f2f2;
    width: 100%
}
.checkout-table tbody td.p-name {
    word-break: break-word;
    width: 80%
}
.checkout-table tbody td {
    padding-top: 20px;
    padding-bottom: 20px;
    color: #7d7d7d;
    border: none;
}
.checkout-table tfoot td {
    color: #7d7d7d;
    padding: 2px 10px;
    text-align: right
}
.checkout-table tfoot tr:first-child,
.checkout-table tfoot tr:last-child,
.dt strong,
.faq-accordian .card.faq-card .btn-collapse {
    font-size: 16px
}
.checkout-buttons {
    margin: 12px 2px;
    overflow: hidden;
    padding: 20px 30px
}
.checkout-buttons.place-order-button {
    margin: 12px 2px;
    overflow: hidden;
    padding: 0
}
.checkout-table tbody td.g-total{
    font-size: 20px;
    color: #000;
}

.zf-faqs-section .section-header h2 {
    font-size: 54px;
    line-height: 64px;
    color: #000000;
    font-weight: 300;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.zf-faqs-section .faqs-card .sec-title h4 {
    font-size: 24px;
    line-height: 36px;
    color: #000000;
    font-weight: 300;
    text-transform: uppercase;
    padding-bottom: 10px;
}
.zf-faqs-section .faqs-card {
    margin-bottom: 40px;
}
.zf-faqs-section .faqs-card .accordion-flush .accordion-item {
    margin-bottom: 20px;
    border: none;
}
 .zf-faqs-section .faqs-card .accordion-button:focus {
    box-shadow: none;
    background-color: #ffffff;
} 
.zf-faqs-section .faqs-card .accordion-flush .accordion-item .accordion-button, 
.zf-faqs-section .faqs-card .accordion-flush .accordion-item .accordion-button.collapsed {
    border-radius: 10px;
    border: 1px solid #868686;
    margin-bottom: 10px;
}
.zf-faqs-section .faqs-card .accordion-body {
    background: #fff;
    box-shadow: 1px 2px 8px #ddd;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #ddd;
}
.zf-faqs-section  .accordion-button:not(.collapsed) {
    color: #000000;
    background-color: #ffffff;
}
.zf-faq-info .faq-box {
    position: relative;
    border: 1px solid #868686;
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 20px;
    width: 100%;
    height: 320px;
}
.zf-faq-info .faq-box h2 {
    color: #000000;
    font-size: 24px;
    line-height: 36px;
    text-transform: uppercase;
    padding-bottom: 15px;
    font-weight: 300;
}
.zf-faq-info .faq-box p {
    color: #868686;
}



/* Progress bar */

.zf-progress-bar .progress-bar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: #f0f0f0;
    z-index: 9999;
  }
  .zf-progress-bar .progress-bar {
    height: 100%;
    background-color: black;
    transition: all 0.3s ease;
  }
  .zf-progress-bar .progress-circle-container {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zf-progress-bar .progress-circle {
    width: 70px;
    height: 70px;
}
.zf-progress-bar .scroll-to-top {
    position: absolute;
    height: 100%;
    width: 100%;
    background-color:#B61F1F;
    border-radius: 50%;
    cursor: pointer;
    transition: opacity 0.3s ease;
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}
.zf-progress-bar .progress-background {
    fill: transparent;
    stroke: #ededed;
    stroke-width: 5;
    stroke-dasharray: none;
}
.zf-progress-bar .progress-circle-bar {
    fill: none;
    stroke: black;
    stroke-width: 5;
    stroke-dasharray: 283;
    stroke-dashoffset: 0;
    transform-origin: center;
    transition: stroke-dashoffset 0.3s ease;
}
.zf-progress-bar .scroll-to-top svg {
    display: block;
    width: 20px;
    height: 20px;
    stroke: white;
    transition: all 0.1s ease;
}

/* Star Rating Styles */
#star-rating .star {
    font-size: 24px;
    cursor: pointer;
    color: #ddd;
}

#star-rating .star.selected {
    color: gold;
}

.review-stars span.star-filled {
    color: gold;
}

.review-stars span.star-empty {
    color: #ddd;
}

.ps-breadcrumb {
    background: #333333;
    padding: 15px 0;
}
.ps-breadcrumb .breadcrumb-item a {
    color: #ffffff;
}

.ps-breadcrumb .breadcrumb-item.active {
    color: #c33;
}
.breadcrumb-item+.breadcrumb-item::before {
    color: rgb(255 255 255 / 75%);
}
#reviews-list .review-item:not(:last-child) {
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.review-stars span {
    font-size: 24px;
}

.add-wishlist .btn-outline-danger {
    padding: 0.6rem 2rem;
    border-radius: 40px;
}


#podium-prompt {
  min-width: 300px;
  min-height: 80px;
  border: none;
}


/* === 31-12-2024 CSS Start */

/* #searchModal1 .modal-content {
    background: transparent;
}
.search-wrapper .form-group .form-control {
    background: #ffffff;
    padding: 0.8rem 1rem;
    padding-left: 40px;
    border-color: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    position: relative;
    color: #000000;
}
.search-wrapper .form-group::after {
    content: "\f002";
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-family: "Font Awesome 6 Pro";
    color: #000000;
}
.search-wrapper .form-group .form-control:focus {
    box-shadow: none;
}
.search-wrapper .form-group .form-control::placeholder {
    color: #000000
}
.search-wrapper .dropdown-content {
    display: block;
    position: absolute;
    top: 70px;
    background: #ffffff;
    padding: 1.2rem;
    min-width: 100%;
    box-shadow: 0 8px 16px 0 rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    height: 420px;
    overflow-y: auto;
}
.search-wrapper .form-group .btn-theme {
    position: absolute;
    top: 12.5%;
    right: 10px;
    padding: 0.4rem 1rem;
    background: #000000;
    color: #ffffff;
    line-height: 25px;
    font-size: 1rem;
}
.search-wrapper .dropdown-content .dropdown-list h4 {
    color: #ffffff;
    font-size: 20px;
    line-height: 30px;
    font-weight: 600;
    padding-bottom: 15px;
    text-align: left;
}
.search-wrapper .dropdown-content .list-inline li {
    text-align: left;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #ddd;
}
.search-wrapper .dropdown-content .dropdown-list li a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 10px;
    font-weight: 400;
    display: flex;
    align-items: center;
}
.search-wrapper .dropdown-content .list-inline .suggestion {
    color: hsl(185.77deg 100% 10.2%);
    font-size: 14px;
}
.search-wrapper .dropdown-content .list-inline .rui-product {
    color: #002f34a3;
    font-size: 12px;
    text-transform: uppercase;
} */

.wishlist-count,
.cart-count {
      position: absolute;
    top: -6px;
    right: 0px;
    background: red;
    color: white;
    font-size: 12px;
    font-weight: bold;
    /* padding: 2px 6px; */
    border-radius: 50%;
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
}
.link-text {
    color: #B61F1F;
}
.variations-image {
    height: 100px;
    width: 100%;
    object-fit: cover;
    border: 1px solid #ccc;
    padding: 6px;
}
.product-info .btn.btn-outline-secondary {
    background: #000000;
    border-color: #000000; 
    color: #ffffff;
    padding: 0.5rem 1rem;
}
  
