/* 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: #b11e1e;
    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;
}
.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 img {
    position: relative;
}
.zf-product-section .product-box .product-image img: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: 440px;
    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 h2 {
    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: 50px 0 0;
}
.zf-shopnow-section .zf-divider {
  width: 48px;
  height: 2px;
  background: #f70500;
  margin: 0 auto 20px;
}
.zf-shopnow-section .section-header h2 {
    text-transform: uppercase;
    font-weight: 300;
    padding-bottom: 10px;
    color: #000000;
        font-size: 36px;
}
.zf-shopnow-section .section-header p {
    color: #666666;
    font-size: 20px;
    line-height: 24px;
    padding-bottom: 20px;
    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;
    max-width: 84%;
}
.zf-shopnow-section .product-image {
    width: 100%;
    display: block;
}
.zf-brand-section {
    background: #f8f9fa;
    padding: 60px 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 .section-header p {
    text-align: center;
    color: #868686;
}
.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,
.zf-testimonial-section .testimonial-carousel .slick-next:before {
    content: "";
    display: inline-block;

    width: 60px;
    height: 60px;

    background-color: #B11E1E;
    border: 2px solid #B11E1E;
    border-radius: 50%;

    background-repeat: no-repeat;
    background-position: center;
    background-size: 20px;
}
.zf-testimonial-section .testimonial-carousel .slick-prev:before {
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' fill='white'>\
<path d='M41.4 233.4c-12.5 12.5-12.5 32.8 0 45.3l192 192c12.5 12.5 32.8 12.5 45.3 0s12.5-32.8 0-45.3L109.3 256 278.6 86.6c12.5-12.5 12.5-32.8 0-45.3s-32.8-12.5-45.3 0l-192 192z'/>\
</svg>");
}
.zf-testimonial-section .testimonial-carousel .slick-next:before {
    background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512' fill='white'>\
<path d='M278.6 278.6c12.5-12.5 12.5-32.8 0-45.3l-192-192c-12.5-12.5-32.8-12.5-45.3 0s-12.5 32.8 0 45.3L210.7 256 41.4 425.4c-12.5 12.5-12.5 32.8 0 45.3s32.8 12.5 45.3 0l192-192z'/>\
</svg>");
}


.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;
        transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.zf-listing-section .product-item:hover img {
    transform: scale(1.08);
}
.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;
        z-index: 2;
}
.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;
     z-index: 1;
}
.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;
}

/* === 12-1-2026 CSS Start */
  
  
.hero-section {
    background-color: #000000;
    color: #ffffff;
    padding: 50px 0;
    display: flex;
    align-items: center;
    }
.main-heading {
    font-size: 3.5rem; 
    font-weight: 700;
    line-height: 1.2;
        word-wrap: break-word;
}
.sub-heading {
    font-size: 1.5rem;
    color: #d1d1d1; 
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    }
.description {
    font-size: 1.1rem;
    color: #a8a8a8; 
    line-height: 1.6;
    }
@media (max-width: 768px) {
    .main-heading { font-size: 2.5rem; margin-bottom: 30px; }
    .hero-section { padding: 50px 0; }
}
.z-showroom-section {
    padding: 40px 0;
    display: flex;
    align-items: center;
        background: #f8f9fa;
}
.z-showroom-card {
        background: transparent;
    border-radius: 12px;
    overflow: hidden;
    border: none;
}
.z-content-area {
       padding: 40px 20px 0px;
}
.z-sub-heading {
    color: #a71d2a;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 2px;
    margin-bottom: 10px;
}
.z-main-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 25px;
}
.z-desc-text {
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}
.z-details-list {
    list-style: none;
    padding: 0;
    margin-bottom: 35px;
}
.z-details-list li {
    display: flex;
    align-items: flex-start; 
    margin-bottom: 25px;
}
.z-details-list svg {
    width: 24px;  
    height: 24px; 
    fill: #a71d2a; 
    margin-right: 15px;
    margin-top: 3px; 
    flex-shrink: 0; 
}
.z-detail-content strong {
    display: block;
    color: #222;
    font-size: 1.05rem;
    margin-bottom: 2px;
}
.z-detail-content span {
    color: #555;
    font-size: 0.95rem;
}
.z-btn-outline {
    border: 2px solid #111;
    color: #111;
    padding: 12px 35px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex; 
    align-items: center;
}
.z-btn-outline svg {
    width: 20px;
    height: 20px;
    fill: currentColor; 
    margin-left: 10px;
    transition: transform 0.3s ease;
}
.z-btn-outline:hover {
    background-color: #111;
    color: #fff;
}
.z-btn-outline:hover svg {
    transform: translateX(5px); 
}
.z-map-wrapper {
    height: 100%;
    min-height: 550px;
    width: 100%;
}
.z-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}
.z_balance{
    margin-top: 20px;
}
@media (max-width: 991px) {
    .z-showroom-section { padding: 40px 0; }
    .z-content-area { padding: 40px 25px; }
    .z-map-wrapper { min-height: 350px; }
}
.z-serving-section {
    padding: 80px 0;
    background-color: #ffffff;
}
.z-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.z-serving-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #111;
    margin-bottom: 15px;
}
.z-serving-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.8;
}
.z-city-item {
    display: flex;
    align-items: center;
    justify-content: start;
    background-color: #f8f9fa;
      padding: 12px 8px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
}
.z-city-name {
    font-weight: 600;
    color: #222;
    font-size: 1.1rem;
}
.z-city-item svg {
    width: 22px;
    height: 22px;
    fill: #a71d2a;
    margin-right: 6px;
    transition: all 0.3s ease;
}
.z-city-item:hover {
    background-color: #a71d2a;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(167, 29, 42, 0.2);
}
.z-city-item:hover .z-city-name {
    color: #ffffff;
}
.z-city-item:hover svg {
    fill: #ffffff;
}
.z-footer-text {
    text-align: center;
    margin-top: 50px;
    font-size: 1rem;
    color: #666;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    padding-left:15px;
    padding-right:15px;
}
@media (max-width: 991px) {
    .z-serving-title { font-size: 1.8rem; }
}
.z-faq-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 60px 0;
}
.z-faq-heading {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: 600;
    text-align: center;
    color: #333;
}
.z-faq-item {
    margin-bottom: 15px;
}
.z-faq-input {
    display: none;
}
.z-faq-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-weight: 500;
    color: #333;
    transition: all 0.3s ease;
    user-select: none;
}
.z-faq-label:hover {
    border-color: #666; 
    background-color: #f9f9f9;
}
.z-faq-label::after {
    content: '';
    width: 10px;
    height: 10px;
    border-right: 2px solid #333;
    border-bottom: 2px solid #333;
    transform: rotate(45deg); 
    transition: transform 0.4s ease;
}
.z-faq-content-wrapper {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s ease-out;
}
.z-faq-answer-box {
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.4s ease;
}
.z-faq-answer-inner {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 20px 25px;
    margin-top: 10px; 
    color: #555;
    line-height: 1.6;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
.z-faq-input:checked + .z-faq-label::after {
    transform: rotate(225deg);
}
.z-faq-input:checked + .z-faq-label {
    border-color: #333;
}
.z-faq-input:checked ~ .z-faq-content-wrapper {
    grid-template-rows: 1fr;
}
.z-faq-input:checked ~ .z-faq-content-wrapper .z-faq-answer-box {
    opacity: 1;
    transform: translateY(0);
}
.product-name {
    height: auto !important; 
    min-height: 60px; 
    padding: 15px 20px; 
    display: flex;
    flex-direction: column; 
    justify-content: center;
    background: rgba(0, 0, 0, 0.7); 
}
.main-cat {
    font-size: 24px; 
    font-weight: 700; 
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 5px;
    color: #fff; 
}
.sub-cat {
    font-size: 14px; 
    font-weight: 400;
    opacity: 0.9;
    color: #fff;
    line-height: 1.4;
    text-transform: capitalize;
}
@media (max-width: 768px) {
    .main-cat {
        font-size: 18px; 
    }
    .sub-cat {
        font-size: 11px; 
        line-height: 1.2;
    }
    .product-name {
        padding: 10px 15px;
    }
}
.zf-shipping-section {
    background-color: #000000;
    color: #ffffff;
    padding: 80px 20px;
    text-align: center;
    font-family: 'Outfit', sans-serif;
}
.zf-container-narrow {
    max-width: 800px; 
    margin: 0 auto;
}
.zf-shipping-title {
    font-size: 2.8rem; 
    font-weight: 700; 
    margin: 0 0 25px 0; 
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.zf-shipping-text {
    font-size: 1.25rem;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
    font-weight: 300;
}
@media (max-width: 768px) {
.zf-shipping-section {
    padding: 60px 20px;
}
.zf-shipping-title {
    font-size: 2rem;
    margin-bottom: 20px;
}
.zf-shipping-text {
    font-size: 1.1rem;
}
}
.zf-testimonial-section {
    padding: 80px 20px;
    background-color: #fff;
}
.zf-section-header {
    text-align: center;
    margin-bottom: 50px;
}
.zf-sub-title {
    color: #a71d2a;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    display: block;
    margin-bottom: 10px;
}
.zf-main-title {
    font-size: 2.5rem;
    color: #111;
    margin: 0 0 15px 0;
    font-weight: 700;
}
.zf-header-desc {
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    font-size: 1.1rem;
}
.zf-slider-container {
    position: relative;
    padding: 20px 0;
}
.zf-slider-mask {
    overflow: hidden;
    width: 100%;
    position: relative;
}
.zf-slider-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
}
.zf-slide {
    flex-shrink: 0;
    padding: 0 15px;
    box-sizing: border-box;
}
.zf-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 40px 35px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
    height: 100%;
    position: relative;
    border: 1px solid #eee;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}
.zf-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}
.zf-card-top-accent {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #a71d2a;
}
.zf-quote-icon {
    font-size: 60px;
    color: #f0f0f0;
    font-family: serif;
    line-height: 0.5;
    margin-bottom: 20px;
    display: block;
}
.zf-stars {
    color: #f59e0b;
    font-size: 18px;
    margin-bottom: 20px;
    letter-spacing: 2px;
}
.zf-review-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 30px;
    flex-grow: 1;
}
.zf-user-box {
    display: flex;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 20px;
}
.zf-user-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 15px;
    flex-shrink: 0;
}
.zf-user-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.zf-user-info h5 {
    margin: 0;
    font-size: 16px;
    color: #111;
    font-weight: 700;
}
.zf-user-info span {
    font-size: 13px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.zf-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    z-index: 10;
}
.zf-nav-btn:hover {
    background: #a71d2a;
    color: #fff;
    border-color: #a71d2a;
}
.prev-btn {
    left: -25px;
}
.next-btn {
    right: -25px;
}
@media (max-width: 1400px){
    
}
@media (max-width: 1300px) {
    .prev-btn {
        left: -10px;
    }

    .next-btn {
        right: -10px;
    }
}

@media (max-width: 768px) {
    .zf-main-title {
        font-size: 1.8rem;
    }

    .zf-card {
        padding: 30px 20px;
    }

    /* Mobile par buttons thode chote aur andar */
    .zf-nav-btn {
        width: 35px;
        height: 35px;
    }

    .prev-btn {
        left: -10px;
    }

    .next-btn {
        right: -10px;
    }
}
/* === 13-1-2026 CSS Start */
.za-hero-wrapper {
    padding: 30px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center; 
    height: 100%; 
    background-color: #fff;
}
.za-hero-title {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    font-family: sans-serif;
}
.za-hero-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}
.za-hero-contact-box {
    background-color: #f4f4f4;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 5px solid #B11E1E;
    display: flex;
    flex-wrap: wrap; 
    gap: 20px;
}
.za-hero-info-item {
    flex: 1; 
    min-width: 200px;
    font-size: 16px;
}
.za-hero-label {
    font-weight: 700;
    color: #B11E1E;
    display: block;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 0.5px;
}
.za-hero-value {
    color: #333;
}
.za-hero-btn-container {
    margin-top: 10px;
}
.za-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #B11E1E;
    color: #fff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}
.za-hero-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.za-hero-btn:hover {
    background-color: #b43535;
    color: #fff;
}
.za-hero-btn:hover .za-hero-arrow {
    transform: translateX(6px); 
}
@media (min-width: 992px) {
    .za-hero-wrapper {
        padding-left: 50px;
    }
}
.za-about-section {
    background-color: #fff;
    overflow: hidden; 
}
.za-about-image-wrapper {
    position: relative;
    padding-left: 20px; 
    padding-bottom: 20px;
}
.za-about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
    z-index: 2;
}
.za-about-image-decoration {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80%;
    height: 80%;
    background-color: #f4f4f4; 
    z-index: 1;
    border-radius: 4px;
}
.za-about-content-wrapper {
    padding-left: 30px; 
}
.za-about-subheading {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #777;
    margin-bottom: 10px;
    font-weight: 600;
}
.za-about-main-heading {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}
.za-about-desc-text {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 30px;
}
.za-about-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px; 
    margin-bottom: 40px;
}
.za-about-feature-card {
    display: flex;
    align-items: flex-start;
}
.za-about-check-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 24px;
    height: 24px;
    background-color: #B11E1E;
    color: #fff;
    border-radius: 50%;
    font-size: 14px;
    margin-right: 12px;
    flex-shrink: 0; 
}
.za-about-feature-text {
    font-size: 15px;
    color: #333;
    font-weight: 500;
    line-height: 1.4;
}
.za-about-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #B11E1E;
    color: #fff;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    border-radius: 4px;
    transition: all 0.3s ease;
}
.za-about-btn-arrow {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}
.za-about-btn:hover {
    background-color: #bc3939;
    color: #fff;
    transform: translateY(-2px);
}
.za-about-btn:hover .za-about-btn-arrow {
    transform: translateX(5px);
}
@media (max-width: 991px) {
    .za-about-content-wrapper {
        padding-left: 0;
        margin-top: 30px;
    }
    .za-about-features-grid {
        grid-template-columns: 1fr; 
        gap: 15px;
    }
    .za-about-image-decoration {
        display: none; 
    }
}
.z-text-header-wrap {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px
}
.z-main-h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
    text-transform: capitalize;
    line-height: 1.2
}
.z-sub-h3 {
    font-size: 22px;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px
}
.z-intro-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6
}
.z-text-footer-wrap {
    text-align: center;
    max-width: 900px;
    margin: 50px auto 0
}
.z-footer-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.8
}
@media (max-width:768px) {
    .z-main-h2 {
        font-size: 28px
    }
    .z-sub-h3 {
        font-size: 18px
    }
}
.za-directions-section {
    background-color: #fff;
}
.za-dir-subtitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}
.za-dir-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.2;
}
.za-dir-intro {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}
.za-dir-box {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #B11E1E;
    transition: transform 0.3s ease;
}
.za-dir-box:hover {
    transform: translateX(5px);
}
.za-dir-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.za-dir-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background-color: #fff;
    border-radius: 50%;
    margin-right: 12px;
    color: #B11E1E;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.za-route-name {
    font-size: 18px;
    font-weight: 700;
    color: #B11E1E;
    margin: 0;
}
.za-route-desc {
    font-size: 15px;
    color: #444;
    line-height: 1.6;
    margin: 0;
}
.za-map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    background: #fff;
    height: 100%;
}
.za-map-container iframe {
    display: block;
    min-height: 400px;
}
@media (max-width: 991px) {
    .za-dir-title {
        font-size: 28px;
    }
    .za-map-container iframe {
        height: 400px !important;
    }
}
.za-brands-section {
    background-color: #f9f9f9;
}
.za-brands-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.za-main-h2 {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.2;
    text-transform: capitalize;
}
.za-sub-title {
    font-size: 18px;
    font-weight: 600;
    color: #B11E1E;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.za-brands-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}
.za-brand-card {
    background-color: #fff;
    padding: 40px 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid #eee;
    height: 100%;
    position: relative;
    overflow: hidden;
}
.za-brand-icon {
    width: 80px;
    height: 80px;
    background-color: #fff;
    border: 2px solid #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px auto;
    color: #333;
    transition: all 0.4s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.za-brand-icon svg {
    width: 36px;
    height: 36px;
    transition: transform 0.4s ease;
}
.za-brand-name {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
}
.za-brand-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(177, 30, 30, 0.15);
    border-color: #ffe5e5;
}
.za-brand-card:hover .za-brand-icon {
    background-color: #B11E1E;
    border-color: #B11E1E;
    color: #fff;
    box-shadow: 0 8px 20px rgba(177, 30, 30, 0.4);
    transform: scale(1.1);
}
.za-brand-card:hover .za-brand-name {
    color: #B11E1E;
}
@media (max-width: 768px) {
    .za-main-h2 {
        font-size: 28px;
    }
}
.za-contact-simple {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
}
.za-contact-head {
    max-width: 800px;
    margin: 0 auto 50px auto;
}
.za-main-title {
    font-size: 38px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}
.za-sub-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    opacity: 0.9;
}
.za-desc {
    font-size: 16px;
    color: #cccccc;
    line-height: 1.6;
}
.za-info-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 50px;
}
.za-info-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 200px;
}
.za-icon-white {
    color: #ffffff;
    margin-bottom: 15px;
}
.za-label {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 5px;
}
.za-link, 
.za-text {
    font-size: 16px;
    color: #eeeeee;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.za-link:hover {
    color: #ffffff;
    opacity: 0.8;
}
@media (max-width: 768px) {
    .za-info-row {
        gap: 30px;
        flex-direction: column;
    }
}
.za-hours-card {
    border-radius: 12px;
    overflow: hidden;
}
.za-hours-img-wrap {
    height: 100%;
    min-height: 450px; 
    position: relative;
}
.za-store-img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    display: block;
}
.za-hours-content {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}
.za-icon-box {
    width: 60px;
    height: 60px;
    background-color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #B11E1E;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 20px;
}
.za-hours-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 5px;
    line-height: 1.2;
}
.za-hours-sub {
    font-size: 16px;
    font-weight: 600;
    color: #B11E1E;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}
.za-hours-desc {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}
.za-time-list {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #B11E1E; 
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.za-time-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 500;
    color: #333;
}
.za-time-item:last-child {
    margin-bottom: 0;
}
.za-day {
    font-weight: 700;
    color: #1a1a1a;
    min-width: 140px; 
}
.za-line {
    flex-grow: 1;
    height: 1px;
    background-image: linear-gradient(to right, #ccc 33%, rgba(255,255,255,0) 0%);
    background-position: bottom;
    background-size: 6px 1px;
    background-repeat: repeat-x;
    margin: 0 15px;
}
.za-time {
    color: #B11E1E;
    font-weight: 700;
    text-align: right;
}

@media (max-width: 991px) {
    .za-hours-img-wrap {
        min-height: 300px; 
    }
    .za-hours-content {
        padding: 30px 20px;
    }
    .za-time-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
        margin-bottom: 20px;
        border-bottom: 1px dashed #eee;
        padding-bottom: 10px;
    }
    .za-time-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    .za-line {
        display: none; 
    }
    .za-time {
        text-align: left;
    }
}


@media (max-width: 576px) {
    .z-faq-label {
       padding: 12px 16px;
    }
    .z-btn-outline {
       margin-bottom: 20px;
     }
    .z-content-area {
        padding: 0px 5px 0px;
    }
    .z-faq-container {
        padding: 15px;
    }
}

/* 30-04-2026 CSS Start */

.zf-banner-section .banner-caption {
       position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 1140px;
        z-index: 111111111111;
            word-wrap: break-word;
}

.zf-banner-section .banner-caption h2 {
             font-size: 140px;
    line-height: 160px;
    font-weight: normal;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgb(246 10 1 / 10%);
        word-wrap: break-word;
}

.zf-banner-section .banner-caption p span,
.zf-banner-section .banner-caption h2 span {
    color: #f70500;
}

.zf-banner-section .banner-caption p {
    font-size: 60px;
    line-height: 72px;
    font-weight: normal;
    color: #ffffff;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgb(246 10 1 / 10%);
        word-wrap: break-word;
}
.zf-banner-section .banner-carousel .slick-slide::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    background: rgba(0, 0, 0, 0.2); /* overlay color */
    pointer-events: none;
}
@media (max-width: 1520px) {
    .zf-banner-section .banner-caption p {
    font-size: 42px;
    line-height: 60px;
    }
.zf-banner-section .banner-caption h2 {
    font-size: 100px;
    line-height: 120px;
}
}
@media (max-width: 1200px) {
    .zf-banner-section .banner-caption {
    max-width: 1040px;
    padding: 0 40px;
}
.zf-banner-section .banner-caption h2 {
    font-size: 72px;
    line-height: 84px;
}
.zf-banner-section .banner-caption p {
        font-size: 28px;
        line-height: 38px;
    }
}

@media (max-width: 878px) {
.zf-banner-section .banner-caption h2 {
        font-size: 60px;
        line-height: 72px;
    }
}

@media (max-width: 676px) {
    .zf-banner-section .banner-caption h2 {
        font-size: 48px;
        line-height: 60px;
    }
.zf-banner-section .banner-caption {
        padding: 0 20px;
    }
}

@media (max-width: 576px) {
    .site-header:before {
    width: 100%;
    height: 140px !important;
    }
    .zf-banner-section .banner-caption h2 {
        font-size: 36px;
        line-height: 42px;
    }
}


/* 01-05-2026 CSS Start */
.zf-product-section .product-box .product-image,
.zf-shopnow-section .product-image {
  overflow: hidden;
}
 .zf-product-section .product-box .product-image img,
.zf-shopnow-section .product-image img {
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}
.zf-product-section .product-box .product-image:hover img,
.zf-shopnow-section .product-image:hover img {
  transform: scale(1.04);
}