/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap');

/* Theme Color */
:root {
    --clr-black: #2C2B2B;
    --clr-black-200: #020202;
    --clr-white-300: #F8F8F8;
    --clr-white-400: #EDEDED;
    --clr-black-300: #6A6A6A;

    --ff-body: "Manrope", sans-serif;
    --ff-heading: "Tropiline", serif;
}

@font-face {
    font-family: 'Tropiline';
    src: url(../fonts/Tropiline-Light.ttf) format("truetype");
    font-weight: 300;
}

@font-face {
    font-family: 'Tropiline';
    src: url(../fonts/Tropiline-Regular.ttf) format("truetype");
    font-weight: 400;
}

@font-face {
    font-family: 'Tropiline';
    src: url(../fonts/Tropiline-SemiBold.ttf) format("truetype");
    font-weight: 600;
}

@font-face {
    font-family: 'Tropiline';
    src: url(../fonts/Tropiline-bold.ttf) format("truetype");
    font-weight: 700;
}

@font-face {
    font-family: 'Tropiline';
    src: url(../fonts/Tropiline-ExtraBold.ttf) format("truetype");
    font-weight: 800;
}

@font-face {
    font-family: 'Tropiline';
    src: url(../fonts/Tropiline-Black.ttf) format("truetype");
    font-weight: 900;
}


/* Browser Reset */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    padding: 0;
    margin: 0;
    font: inherit;
}

ul,
ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}

html:focus-within {
    scroll-behavior: smooth;
}

a:focus,
a:hover {
    outline: none;
}

a {
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    -webkit-transition: all 0.4s ease-in-out;
    transition: all 0.4s ease-in-out;
}

body {
    font-family: var(--ff-body);
    text-rendering: optimizeSpeed;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--clr-black);
}

.container {
    max-width: 1280px;
}

.clear {
    clear: both;
}



p {
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 0;
    color: var(--clr-black-300);

}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--ff-body);
    margin-bottom: 0;
}

img,
picture,
svg {
    max-width: 100%;
    display: block;
}

/* Utility Classes */
.overlay::before {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    background-color: rgba(27, 27, 27, 0.72);
    z-index: 0;
    top: 0;
    left: 0;
    opacity: 0.32;
    transition: all 0.3s ease-in-out;
}

.site__adventure .overlay::before {
    opacity: 0.72;

}

.bg-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: relative;
    z-index: -1;
}

/* Custom Properties */
.custom-pad {
    padding: 80px 0;
}

.custom-button {
    display: inline-flex;
    align-items: center;
    border: 0.5px solid #fff;
    color: var(--clr-white-300);
    font-family: var(--ff-body);
    font-weight: 300;
    font-size: 14px;
    padding: 5px 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
    height: 40px;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 3.2px;
}

.custom-button:hover {
    background-color: var(--clr-white-400);
    color: var(--clr-black);
    border: 1px solid var(--clr-black);
}

.custom-button.black:hover {
    background-color: var(--clr-black);
    color: var(--clr-white-400);
}

.custom-button.color {
    background-color: var(--clr-white-300);
    color: var(--clr-black);
    border: 0.2px solid var(--clr-black)
}

.custom-button.black {
    background-color: transparent;
    color: var(--clr-black);
    border: 0.2px solid var(--clr-black)
}

.custom-button.no-border {
    border: none;
    background-color: transparent;
    color: var(--clr-black);
    padding: 0px !important;
    margin: 10px 0px !important;
    font-family: var(--ff-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 25.95px;
    letter-spacing: 2px;
    text-align: left;
}

.custom-button.deep-black {
    border: none;
    background-color: #000;
    color: var(--clr-white-300);
    letter-spacing: 2.5px;
    font-size: 12px;
}

.custom-button.color:hover {
    background-color: transparent;
    color: var(--clr-white-300);
    border: 0.2px solid var(--clr-white-300);
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--clr-black-200);
    border: 0.5px solid var(--clr-black);
    padding: 20px;
}

.swiper-button-next.small,
.swiper-button-prev.small {
    padding: 14px;
    height: 25px;
}

.swiper-button-next::after,
.swiper-button-prev:after {
    display: none;
}

.site__custom-heading .heading-big h2 {
    color: #EDEDED;
    text-align: center;
    font-size: 78px;
    font-family: var(--ff-heading);
    font-weight: 700;
    letter-spacing: 0.4px;
    text-transform: uppercase;
}

.site__custom-heading .heading-small h4 {
    font-family: var(--ff-heading);
    text-align: center;
    margin-top: -43px;
    font-size: 34px;
    letter-spacing: 3.5px;
    text-transform: uppercase;
}


/* header */

.dilna-logo {
    padding: 6px 0px;
}

.dilna-logo img {
    height: 60px !important;
}

.nav-item .nav-link {
    font-family: var(--ff-body);
    text-transform: uppercase;
    font-weight: 500;
    font-size: 16px;
    color: var(--clr-black-200);
    position: relative;
    line-height: 58px;
}

.site__header .nav-item .nav-link::before {
    position: absolute;
    background-color: #1d1d1d;
    height: 2px;
    width: 0%;
    top: 50px;
    left: 7px;
    content: "";
}

.site__header .nav-item .nav-link:hover::before {
    width: 79%;
    transition: 0.3s all;
}

.site__user .nav-item .nav-link:hover::before {
    width: 0%;
}

.nav-link img {
    height: 18px;
}

.fixed__header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    box-shadow: 0px 13px 35px -12px rgba(35, 35, 35, 0.15);
    animation: menusticky 0.7s ease-in-out;
}

.site__header {
    transition: all 0.5s ease-in-out;
    background-color: #fff;
    position: relative;
}

.site__header .navbar-nav {
    display: flex;
    gap: 16px;
    align-items: center;
}

.site__header .site__user ul {
    display: flex;
    gap: 22px;
    margin: 0 25px 0 12px;
    align-items: center;
}

.page__header-nav {
    position: inherit;
}

.site__header .site__user {
    display: flex;
    gap: 25px;
    padding-left: 25px;
}

.site__header .dilna__site-brand-logo img {
    height: 140px;
    object-fit: contain;
    width: 100%;
}

.site__header .dilna__site-brand-logo {
    margin-bottom: -50px;
    z-index: 9999;
}

/* Sticky Menu Animation*/
@-webkit-keyframes menusticky {
    0% {
        margin-top: -120px;
        opacity: 0;
    }

    50% {
        margin-top: -64px;
        opacity: 0;
    }

    100% {
        margin-top: 0;
        opacity: 1;
    }
}

@keyframes menusticky {
    0% {
        margin-top: -120px;
        opacity: 0;
    }

    50% {
        margin-top: -64px;
        opacity: 0;
    }

    100% {
        margin-top: 0;
        opacity: 1;
    }
}


/* banner */

.banner-horizental .swiper-slide .slider-inner .swiper-content .title-area .tag {
    color: #ffffff;
    font-weight: 900;
    font-size: 24px;
    padding: 40px 0;
    margin-bottom: 10px;
    margin-top: 40px;
}

.banner-image img {
    height: 600px;
    object-position: right;
    object-fit: cover;
}

.swiper-content .title-area h4 {
    color: #fff;
    font-size: 30px;
    font-family: var(--ff-heading);
    font-weight: 700;
    line-height: 1.3;
    text-transform: uppercase;
    text-decoration: none;
}

.swiper-content p {
    font-size: 16px;
    width: 100%;
    margin: 20px 0px 33px 0px;
    font-weight: 400;
    line-height: 22px;
    color: #E9E9E9;
}

.banner-swiper-wrap .slider-pagination-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: unset;
    right: unset;
    bottom: 80px;
    left: 50% !important;
    transform: translateX(-50%);
    width: 500px;
    z-index: 1;
}

.site__hero_slider .swiper-scrollbar-drag {
    background: #fff !important;
}

.banner-swiper-wrap .slider-pagination-area .slide-range {
    font-size: 14px;
    font-weight: 500;
    margin: 0 15px;
    color: #ffffff;
    line-height: 0;
    position: absolute;
    font-size: 20px;
}

.banner-swiper-wrap .slider-pagination-area .slide-range.one {
    left: -50px;
}

.banner-swiper-wrap .slider-pagination-area .slide-range.three {
    right: -50px;
}

.banner-swiper-wrap .slider-pagination-area .swiper-pagination {
    bottom: 0 !important;
    width: 500px !important;
    height: 1px;
}

.banner-swiper-wrap .slider-pagination-area .swiper-pagination .swiper-pagination-progressbar-fill {
    background: #ffffff;
}

.banner-swiper-wrap .swiper-button-next,
.banner-swiper-wrap .swiper-button-prev {
    background: var(--clr-white-300);
}

.blog-swiper-wrap .swiper-button-next {

    right: -20px;
    top: 42%;
    border: none;
    box-shadow: 2px 1px 6px #d1d1d1;
}

.blog-swiper-wrap .swiper-button-prev {
    left: -20px;
    top: 42%;
    border: none;
    box-shadow: -1px 1px 6px #d1d1d1;
}

.blog-swiper-wrap {
    position: relative;
}



.swiper-button-wrapper-2 {
    position: absolute;
    top: 55%;
    width: 100%;
    left: 0px;
    right: 0px;
}

.slider-inner img {
    height: 545px;
    object-fit: cover;
    width: 100%;
}

.slider-inner {
    height: 545px;
}

.content-image img {
    height: 545px;
    object-fit: cover;
}

.site__hero {
    position: relative;
    overflow: hidden;
}

.content-image {
    position: absolute;
    top: 0px;
}

.swiper-content {
    top: 50%;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 999;
    transform: translateY(-50%);
}

/* banner */

/* cta */
.pop__up-card .content__box {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 16px;
}

.pop__up-card .content__box h3 {
    color: #fff;
    font-size: 26px;
    line-height: 34px;
}

.site__cta-content h4 {
    color: var(--clr-white-300);
    text-transform: uppercase;
    font-family: var(--ff-heading);
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 30px;
}

.site__cta-content p {
    color: var(--clr-white-300);
    padding-bottom: 23px;
    line-height: 21px;
    padding-top: 8px;
}

.site__cta-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    display: flex;
    padding-top: 107px;
    justify-content: center;
}

section.site__cta {
    position: relative;
}



/* .yt-video > iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 358px;
} */
.site__cta-wrap .site__cta-content {
    display: flex;
    flex-direction: column;
    align-items: baseline;
    justify-content: center;
    height: 100%;
}

.pop__up-card {
    display: flex;
    width: 100%;
    position: relative;
}

.pop__up-card .icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.pop__up-card .bg__img img {
    width: 100%;
    object-fit: cover;
}

/* cta */

/* adventure */

.site__adventure-content {
    text-align: center;
}

.site__adventure-content h4 {
    color: var(--clr-white-300);
    text-transform: uppercase;
    font-family: var(--ff-heading);
    font-weight: 600;
    letter-spacing: 1.5px;
    font-size: 30px;
}

.site__adventure-content p {
    color: var(--clr-white-300);
    padding-bottom: 23px;
    line-height: 21px;
    padding-top: 8px;
}

.site__adventure-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.site__cta-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.site__adventure-brand-wrap {
    display: flex;
    align-items: center;
    gap: 50px;
    width: 100%;
    padding: 60px 0;
}

.site__adventure-brand-img img {
    height: 380px;
    object-fit: contain;
}

.site__adventure-content {
    text-align: center;
}

.site__adventure-icon {
    padding-right: 10px;
}

.site__adventure {
    position: relative;
}

/* adventure */

/* category */

.site__grid {
    position: relative;
    width: 100%;
}

.site__grid-wrap {
    display: grid;
    column-gap: 16px;
    row-gap: 16px;
}

.site__grid-Box img {
    height: 300px;
    object-fit: cover;
    width: 100%;
    transition: all 0.3s ease-in-out;
}

.site__grid-Box:hover img {
    transform: scale(1.1);
    transition: all 0.3s ease-in-out;
}

.site__grid-Box .overlay:hover::before {
    opacity: 0.22;
    transition: all 0.3s ease-in-out;
}

.site__grid-Box {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease-in-out;
}

.site__grid-Box-1 {
    grid-column-start: 2;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 2;
}

.site__grid-Box-1 img {
    object-position: top;
}

.site__grid-Box-2 {
    grid-column-start: 5;
    grid-column-end: 7;
    grid-row-start: 1;
    grid-row-end: 2;
}

.site__grid-Box-3 {
    grid-column-start: 1;
    grid-column-end: 4;
    grid-row-start: 2;
    grid-row-end: 3;
}

.site__grid-Box-4 {
    grid-column-start: 4;
    grid-column-end: 7;
    grid-row-start: 2;
    grid-row-end: 3;
}

.site__grid-Box-0 {
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}

.site__grid-content {
    position: absolute;
    bottom: 50px;
    left: 30px;
}

.site__grid-content h4 {
    font-size: 30px;
    font-family: var(--ff-heading);
    margin-bottom: 30px;
}

.site__grid-content h4 a {
    color: var(--clr-white-300);
    text-transform: capitalize;
}

.site__grid-content h4::before {
    position: absolute;
    content: "";
    top: 38px;
    left: 0px;
    background-color: #CEA74A;
    height: 2px;
    width: 40px;
}

/* category */

/* leather-bag */

.site__leather-bag .site__custom-heading .heading-big h2 {
    text-align: left !important;
}

.site__leather-bag .custom-button.black {
    margin-top: 16px;
}

.site__leather-bag .site__custom-heading .heading-small h4 {
    text-align: left !important;
    margin-left: 24px;
}

.site__leather-bag {
    position: relative;
    overflow: hidden;
}

.site__leather-bag-swiper-wrap .swiper-button-wrapper {
    position: absolute;
    top: 150px;
    right: 140px;
}

.site__leather-bag-swiper-wrap .swiper-button-next {
    top: 0px;
    right: 0px;
    padding: 14px;
    height: 25px;
}

.site__leather-bag-swiper-wrap .swiper-button-prev {
    left: -68px;
}

.site__hero_slider .swiper-button-next,
.site__hero_slider .swiper-button-prev {
    color: #ffffff;
    border: 0.5px solid #ffffff;
    padding: 20px;
    z-index: 9;
}

.site__leather-bag-swiper-wrap {
    margin-left: 123px;
}

.site__leather-bag-swiper-wrap .swiper-slide a .site__belt-content {
    position: absolute;
    background-color: #f6f8f9;
    width: 261px;
    content: '';
    padding: 5px 15px;
    opacity: 0;
    bottom: -20px;
    height: 90px;
    transition: .5s ease-in-out;
    left: 0px;
    width: 100%;
}

.site__adventure-background-image img {
    width: 100%;
}

.site__leather-bag-swiper-wrap .swiper-slide {
    position: relative;
}

/* leather-bag */


/* site__leather-best-seller-swiper */

.site__leather-best-seller-swiper .site__belt-content p {
    font-size: 15px;
    line-height: 25px;
    padding: 0px 0px 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 54px;
}

.site__leather-best-seller-swiper .price-wrap {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    padding-top: 5px;

}

.site__leather-best-seller-swiper .site__belt-content {
    text-align: center;
    padding-top: 0px;
    padding: 0px 0px 9px;
    margin-bottom: 10px;
    text-align: left;
}


.site__leather-best-seller-swiper .price-wrap h6 {
    font-size: 18px;
    color: var(--clr-black);
    font-weight: 600;
}

.site__leather-best-seller-swiper .belt-price {
    font-size: 15px;
    color: #000;
    font-weight: 600;
    font-family: var(--ff-heading);
    letter-spacing: 1px;
}

.site__leather-best-seller-swiper .site__leathe-new h6 {
    color: var(--clr-white-300);
    font-size: 12px;
}

.site__leather-best-seller-swiper .site__leathe-new {
    position: absolute;
    top: 0px;
    background-color: #000;
    padding: 2px 19px 4px;
}

.site__leather-best-seller-swiper .belt-box {
    margin-bottom: 22px;
    margin-right: 10px;
}

.site__leather-best-seller-swiper .site__leather-belt {
    position: relative;
}

.site__leather-best-seller-swiper .site__belt-content h4 {
    font-size: 20px;
    color: var(--clr-black);
    font-weight: 700;
    padding-top: 8px;
    font-family: var(--ff-heading);
    line-height: 28px;
    margin-bottom: 7px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 64px;
}

.site__leather-best-seller-swiper .swiper-slide img {
    height: 300px;
    width: 100%;
    object-fit: cover;
}

.site__leather-best-seller-swiper .slider-pagination-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: unset;
    right: unset;
    bottom: 80px;
    left: 50% !important;
    transform: translateX(-50%);
    width: 500px;
    z-index: 1;
}

.site__leather-best-seller-swiper .swiper-pagination-belt .slide-range {
    font-size: 14px;
    font-weight: 500;
    margin: 0 15px;
    color: #ffffff;
    line-height: 0;
    position: absolute;
    font-size: 20px;
}

.site__leather-best-seller-swiper .swiper-pagination-progressbar {
    position: relative !important;
    margin: 0 auto;
    height: 1px;
    width: 300px;
}

.site__leather-best-seller-swiper .swiper-pagination-progressbar-fill {
    background-color: #000;
    height: 1px;
}

.site__leather-best-seller-swiper .site__leather-bag .swiper-pagination-progressbar {
    position: relative !important;
    margin: 0 auto;
    height: 1px;
    width: 300px;
}

.site__leather-best-seller-swiper .site__leather-bag .swiper-pagination-progressbar-fill {
    background-color: #000;
    height: 1px;
}

/* leather-belt */
.site__belt-content {
    padding-top: 15px;
}

.site__belt-content p {
    font-size: 15px;
    line-height: 25px;
    padding: 0px 0px 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 53px;
}

.price-wrap {
    display: flex;
    gap: 12px;
    align-items: center;
    padding-bottom: 12px;
    padding-top: 5px;

}

.swiper.leather-bag-swiper .site__belt-content {
    text-align: center;
    box-shadow: 0px 0px 4px #d1d1d17d;
    padding-top: 0px;
    padding: 0px 15px 9px;
    margin-bottom: 0px;
}

.price-wrap h6 {
    font-size: 18px;
    color: var(--clr-black);
    font-weight: 600;
}

.belt-price {
    font-size: 15px;
    color: #000;
    font-weight: 600;
    font-family: var(--ff-heading);
    letter-spacing: 1px;
}

.site__leathe-new h6 {
    color: var(--clr-white-300);
    font-size: 12px;
}

.site__leathe-new {
    position: absolute;
    top: 0px;
    background-color: #000;
    padding: 2px 19px 4px;
}

.belt-box {
    margin-bottom: 22px;
    margin-right: 10px;
}

.belt-box img {
    width: 100%;
}

.site__leather-belt {
    position: relative;
}

.site__belt-content h4 {
    font-size: 20px;
    color: var(--clr-black);
    font-weight: 700;
    padding-top: 8px;
    font-family: var(--ff-heading);
    line-height: 28px;
    margin-bottom: 7px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 64px;
}

.swiper.site__leather-belt-swiper .swiper-slide img {
    height: auto;
    width: 100%;
    object-fit: cover;
}

.site__leather-belt-swiper .slider-pagination-area {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: unset;
    right: unset;
    bottom: 80px;
    left: 50% !important;
    transform: translateX(-50%);
    width: 500px;
    z-index: 1;
}

.site__leather-belt-swiper .swiper-pagination-belt .slide-range {
    font-size: 14px;
    font-weight: 500;
    margin: 0 15px;
    color: #ffffff;
    line-height: 0;
    position: absolute;
    font-size: 20px;
}

.site__leather-belt .swiper-pagination-progressbar {
    position: relative !important;
    margin: 0 auto;
    height: 1px;
    width: 300px;
}

.site__leather-belt .swiper-pagination-progressbar-fill {
    background-color: #000;
    height: 1px;
}

.site__leather-bag .swiper-pagination-progressbar {
    position: relative !important;
    margin: 0 auto;
    height: 1px;
    width: 300px;
}

.site__leather-bag .swiper-pagination-progressbar-fill {
    background-color: #000;
    height: 1px;
}

/* attachment */

.site__attachment.custom-pad {
    background-color: var(--clr-white-400);
}

.site__attachment-wrap {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.site__attachment-content {
    width: 100%;
    padding-right: 50px;
}

.site__attachment .row .col-lg-9:nth-last-child(1) .site__attachment-wrap .site__attachment-content {
    margin-right: 50px;
    margin-left: 0px;
}

.site__attachment-image:nth-child(2) img {
    height: 340px;
}

.site__attachment-image:nth-child(1) img {
    height: 300px;
}

.site__attachment-image:nth-child(4) img {
    height: 340px;
}

.site__attachment-image:nth-child(3) img {
    height: 300px;
}

.site__attachment-content h2 {
    font-family: var(--ff-heading);
    font-weight: 600;
    text-transform: uppercase;
    line-height: 48px;
    color: #4B4B4B;
    letter-spacing: 1.5px;
    width: 50%;
}

.site__attachment-content p {
    line-height: 19px;
    color: var(--clr-black-300);
    padding: 8px 0px 26px;
}

/* attachment */

/* why-choose-us */

.site__choose-box .site__choose {
    position: relative;
}

.site__choose-box .icon-bg img {
    height: 50px;
}

.site__choose-box .icon-image {
    position: absolute;
    top: -10px;
    left: 10px;
}

.site__choose-box .choose-icon {
    position: relative;
}

.icon-image img {
    height: 45px;
}

.site__choose-box .content-part {
    background-color: var(--clr-white-300);
    box-shadow: 3px 5px 8px #eeeaea;
    padding: 40px 33px 24px;
}

.site__choose-box .content-part h5 {
    font-size: 18px;
    font-family: var(--ff-heading);
    padding-bottom: 10px;
}

.site__choose-box .content-part p {
    line-height: 20px;
    color: var(--clr-black-300);
    height: 60px;
}

.site__about-choose .site__choose-box .content-part p {
    height: 106px !important;
}

.site__choose-box .choose-icon {
    position: absolute;
    top: -16px;
}

.site__choose-box {
    position: relative;
    margin-bottom: 95px;
}

.site__choose-box {
    position: relative;
    margin-bottom: 95px;
}

.site__choose-box:nth-child(2),
.site__choose-box:nth-child(4) {
    margin-top: 125px;
    margin-bottom: 63px;
}

.site__choose-box:nth-child(1),
.site__choose-box:nth-child(3) {
    margin-top: -5px;
}

.site__about-choose .site__choose-box:nth-child(1),
.site__about-choose .site__choose-box:nth-child(3) {
    margin-bottom: 82px;
    margin-top: 16px;
}

.site__choose-wrap .row .col-lg-4:nth-last-child(1) .site__choose-list .site__choose-box {
    margin-right: 0px;
    margin-left: 40px;
}

.site__choose {
    position: relative;
}

.choose-bg img {
    height: 630px;
    width: 100%;
}

.site__about-choose .choose-image img {
    height: 490px;
    width: 100%;
}

.choose-bg {
    position: absolute;
    left: 18%;
    width: 64%;
    top: 17%;
}

.choose-image-content {
    position: absolute;
    top: 50%;
    left: 5%;
    right: 5%;
}

.choose-image-content h5 {
    color: var(--clr-white-300);
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    font-family: var(--ff-heading);
    font-weight: 500;

}

.choose-image {
    position: relative;
    left: -16px;
    margin-bottom: 60px;
}

.choose-image::after {
    position: absolute;
    border: 2px solid #fff;
    top: 5%;
    left: 5%;
    content: "";
    height: 91%;
    width: 91%;
}

.choose-image-content {
    position: absolute;
    top: 50%;
    left: 7%;
    right: 6%;
    width: 80%;
}

.choose-image-content h5 {
    color: var(--clr-white-300);
    text-transform: uppercase;
    text-align: center;
    font-size: 14px;
    font-family: var(--ff-heading);
    font-weight: 500;
}

/* why-choose-us */

/* footer */

.site__footer {
    background-color: #111111;
    padding-top: 72px;
    padding-bottom: 14px;
}

.site__footer-nav {
    width: 100%;
}

.site__footer-nav ul li .nav-link::before {
    position: absolute;
    content: "\f054";
    left: -14px;
    right: 0px;
    top: 0px;
    font-family: "fontawesome";
    opacity: 0;
    transition: all 0.1s ease-in-out;
}

.site__footer-nav ul li .nav-link:hover::before {
    opacity: 1;
    transition: all 0.1s ease-in-out;
}

.site__footer-nav-wrap .row .col-lg-2 .site__footer-nav ul li .nav-link:hover::before {
    display: none;
}

.site__footer-nav .site__footer-title h3 {
    font-family: var(--ff-heading);
    font-size: 20px;
    text-transform: capitalize;
    line-height: 45px;
    color: var(--clr-white-300)
}

.site__footer-nav .site__footer-nav-list .nav-item .nav-link {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 30px;
    color: var(--clr-white-300);
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.site__footer-nav .site__footer-nav-list .nav-item .nav-link .site__footer-list-icon {
    padding-right: 8px;
}

.site__footer-nav .site__footer-nav-list .nav-item .nav-link .site__footer-list-icon i {
    font-size: 16px;
}

.site__footer-form .form-control {
    background-color: transparent;
    border: transparent;
    border-bottom: 1px solid var(--clr-white-300) !important;
    border-radius: 0px;
    font-size: 12px;
    padding-left: 0px;
    box-shadow: none;
    padding-top: 20px;
    color: #fff;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.75);
    opacity: 1;
    font-size: 14px;
    letter-spacing: 1.0px;
}

.site__footer-nav p {
    color: var(--clr-white-300);
    font-size: 16px;
    line-height: 28px;
}

.site__footer-socials {
    display: flex;
    gap: 12px;
}

.site__footer-bottom-wrap h6,
.site__footer-socials li a {
    color: var(--clr-white-300);
    font-size: 14px;
}

.site__footer-bottom {
    margin-top: 32px;
    border-top: 2px solid var(--clr-white-300);
    padding-top: 20px;
    width: 100%;
}

/* footer */


/* about */

.site__about .about-text p {
    font-family: var(--ff-heading);
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
    color: #000;
    text-transform: capitalize;
}

.site__about-content {
    position: relative;
}

.site__about-content .about-box {
    position: absolute;
    bottom: 15%;
    left: 50%;
    transform: translate(50%, 0%);
    background-color: #fff;
    padding: 20px;
    width: 25%;
}

.site__about-content .about-box h6 {
    font-family: var(--ff-body);
    padding-bottom: 10px;
    text-transform: uppercase;
    font-size: 14px;
}

.site__about-content .about-box h4 {
    font-family: var(--ff-heading);
    font-size: 30px;
    line-height: 30px;
    padding-bottom: 10px;
}

.site__about-content .about-box p {
    line-height: 27px;
    padding-bottom: 20px;
    font-family: var(--ff-body);
}

.site__define-text {
    padding-top: 46px;
}

.site__define-text h4 {
    font-family: var(--ff-heading);
    font-size: 34px;
    font-weight: 600;
    line-height: 39px;
    text-align: left;
}

.site__define-text h4 {
    font-family: var(--ff-heading);
    font-family: Tropiline;
    font-size: 34px;
    font-weight: 600;
    line-height: 39px;
    text-align: left;
}

.site__define-text p {
    font-family: var(--ff-body);
    font-weight: 400;

    text-align: left;
    margin-top: 20px;
}

/* blog */

.blog-main {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.blog-main .blog-slide {
    width: 48%;
}

.blog-slide a img {
    width: 100%;
}

.blog_contact_form .form-button .custom-button {
    font-size: 14px;
}

.social-share-buttons a i {
    color: #000;
    font-size: 20px;
}

.blog-anchor-wrap {
    display: flex;
    gap: 0px;
    padding: 5px 0px;
    flex-direction: column;
}

.blog-anchor {
    color: #ff5e3a;
}

.blog-main .blog-slide .blog-anchor a {
    font-size: 11px;
    text-transform: uppercase;
    border-right: 1px solid var(--clr-black-300);
    padding: 0px 12px;
    color: var(--clr-black-300);
    letter-spacing: 1.5px;
    font-family: var(--ff-body);
    font-weight: 400;
}

.blog-date a {
    color: var(--clr-secondary) !important;
    font-size: 13px;
}

.blog-main .blog-slide .blog-heading a {
    padding-bottom: 5px;
    font-family: var(--ff-heading);
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 2px;
    text-align: left;
    color: #000;
    text-transform: capitalize;
}

.blog-main .blog-slide p {
    display: block;
    font-size: 15px;
    font-weight: 300;
    line-height: 23.95px;
    text-align: left;
    padding-top: 7px;
    text-transform: capitalize;
}

.blog-main .blog-slide .custom-button {
    height: 40px;
    padding: 0px 30px;
}

.blog-slide .custom-button {
    margin: 30px 0px;
}

.recent-post-box {

    margin-bottom: 20px;
}

.image-flex {
    display: flex;
    align-items: center;
    gap: 17px;
}

.recent-post-box .blog-date ul li {
    list-style: disc;
    color: #5b5b5b;
    padding: 7px 0px;
    font-size: 13px;
    font-weight: 600;
    line-height: 13px;
}

.recent-post-box .blog-date {
    padding-top: 0px;
}


.recent-post-box-para {
    width: 100%;
}

.recent-post-box p {
    font-family: var(--ff-heading);
    letter-spacing: 1.5px;
    font-size: 13px;
    line-height: 19px;
}

.post-heading h4 {
    font-family: var(--ff-heading);
    font-size: 22px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 2px;
    text-align: left;
    padding-bottom: 10px;
    background: #F5F5F5;
    padding: 5px 10px;
    margin-bottom: 20px;
}

.blog_contact_form .form-control::placeholder {
    color: var(--clr-black-300);
    font-size: 14px;
}

.form-control {
    border-radius: 0px;
    margin-bottom: 30px;
    border-bottom: 1px solid #747474 !important;
    border: transparent;
    padding-left: 0px;
    background-color: transparent;
}

.blog_contact_form {
    background: #F5F5F5;
    padding: 30px;
}

.blog_contact_form .form-group textarea {
    resize: none;
    height: 140px;
}

.project-filters li a {
    font-family: var(--ff-body);
    font-size: 13px;
    font-weight: 400;
    line-height: 33px;
    letter-spacing: 1px;
    text-align: left;
    color: var(--clr-black-300);
}

.blog-sidebar h4 {
    font-family: var(--ff-heading);
    font-size: 22px;
    font-weight: 600;
    line-height: 38px;
    letter-spacing: 2px;
    text-align: left;
    padding-bottom: 10px;
    background: #F5F5F5;
    padding: 5px 10px;
    margin-bottom: 20px;
}

.social-share-buttons a {
    background-color: #f0f0f0;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(8px);
}

.social-share-buttons {
    margin-bottom: 18px;
}

.project-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 17px;
}

.project-filters li {
    background-color: #F5F5F5;
    padding: 0px 6px;
}

.project-filter-wrap h4 {
    font-family: var(--ff-heading);
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: 1px;
    text-align: left;
}

.general-content-all h4 {
    font-family: var(--ff-heading);
    font-size: 23px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 1px;
    text-align: left;
    padding: 20px 0px;
    text-transform: capitalize;
}

.general-content-all ul li {
    list-style: disc;
    color: var(--clr-black);
    margin-left: 12px;
}

.general-content-all ul li a {
    color: #787878;
    font-family: var(--ff-heading);
    font-size: 15px;
    font-weight: 400;
    line-height: 23px;
    letter-spacing: 1px;
    text-align: left;
}

.generic-content-main h2 {
    font-family: var(--ff-heading);
    font-size: 23px;
    font-weight: 600;
    line-height: 28px;
    letter-spacing: 1px;
    text-align: left;
    margin-top: 20px;
    padding-bottom: 10px;
}

.page-numbers li a {
    color: #000;
}

.page-numbers {
    padding: 8px 12px;
    border: 1px solid #000;
    color: #000;
}

.page-numbers.current {
    color: #fff;
    background: #000;
    padding: 8px 12px;
}

.pagination {
    justify-content: center;
}

.blog-date ul {
    display: flex;
    gap: 20px;
}

.blog-date ul li {
    list-style: disc;
    color: #686868;
    padding: 7px 0px;
}

.blog-date ul li:nth-child(1) {
    list-style: none;
}

.blog-main .blog-slide .blog-anchor a:nth-child(1) {
    padding-left: 0px !important;
}

.blog-main .blog-slide .blog-anchor a:nth-last-child(1) {
    border: none;
}


.blog-swiper-wrap .blog-slide .blog-heading a {
    font-family: var(--ff-heading);
    font-size: 21px;
    font-weight: 600;
    line-height: 27px;
    letter-spacing: 1px;
    text-align: left;
    color: #000;
}


.blog-heading {
    padding-top: 12px;
}

.blog-date {
    padding-top: 8px;
}

.blog-sidebar {
    position: sticky;
    top: 105px;
}

.recent-post-box p {
    font-family: var(--ff-heading);
    letter-spacing: 1.5px;
    font-size: 13px;
}

.blog_contact_form h4 {
    font-weight: 600;
    font-family: var(--ff-heading);
    padding: 0;
}

.blog_contact_form .form-control {
    margin-bottom: 10px;
}

.blog_contact_form .wpcf7-response-output {
    margin: 12px 0 0 !important;
    border: 1px solid #000;
}

.blog_contact_form {
    background: #F5F5F5;
    padding: 28px 30px;
}

.form-button .wpcf7-spinner {
    position: absolute;
}

.get-in-touch-form .wpcf7-response-output {
    border: 1px solid #000 !important;
    margin: 15px 0 0 !important;
}

.generic-content-main h2 {
    font-family: var(--ff-heading);
    text-transform: capitalize;
}

.general-content-all p {
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.blog-details-tag-share {
    margin-top: 14px;
}



/* sustainable */

.sustainable-about-text {
    transform: translate(5%, 28%);
    text-transform: capitalize;
}

.sustainable-about-text h4 {
    font-family: var(--ff-heading);
    font-size: 30px;
    font-weight: 400;
    line-height: 35px;
    text-transform: capitalize;
}

.site__sustainability-wrap {
    display: flex;
    gap: 35px 150px;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;

}

.sustainability-box {
    width: 24%;
    text-align: center;
    align-items: center;
    display: flex;
    flex-direction: column;
}

/* faq */

.faq-about-text h4 {
    font-family: var(--ff-heading);
    font-size: 35px;
    font-weight: 400;
    line-height: 35.31px;
    text-align: left;
}

.faq-about-text {
    padding-bottom: 32px;
}

.about-qus {
    padding-bottom: 20px;
}

.about-qus h4 {
    font-family: var(--ff-heading);
    font-size: 25px;
    font-weight: 400;
    line-height: 30.26px;
    text-align: left;
    padding-bottom: 10px;
}

.about-qus-wrap {
    padding-left: 40px;
}

.site__faq-taxk-box {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #F0F0F0;
    box-shadow: 0px 0px 10px 0px #0000001f;
    padding: 30px;
    gap: 10px;
}

.site__faq-task-wrap {
    display: flex;
    gap: 30px;
}


.site__faq-taxk-box img {
    height: 35px;
}

.site__faq-taxk-box h4 {
    font-family: var(--ff-heading);
    font-weight: 500;
}


.accordion-button {
    background-color: transparent !important;
}

.accordion-button::after {
    font-family: 'Fontawesome 6';
    content: "\2b";
    background-image: none;
    font-size: 30px;
    font-weight: 700;
}

.accordion-button:not(.collapsed)::after {
    font-family: 'Fontawesome';
    content: "\f068";
    background-image: none;
    font-size: 23px;
    top: 23px;
    position: absolute;
    right: 20px;
    color: #000;
    font-weight: 400;
}

.accordion-button {
    font-family: var(--ff-heading);
    font-size: 22px;
    font-weight: 400;
    line-height: 27.24px;
    text-align: left;
    color: #000 !important;
}

.shop-breadcrumb {
    position: absolute;
    bottom: 0px;
    left: 50px;
}

.breadcrumb .active {
    padding-left: 17px;
}

.shop-breadcrumb li {
    position: relative;
    padding-inline: 6px 20px;
    font-size: 18px;
    text-transform: capitalize;
    font-weight: 500;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
}

.shop-breadcrumb li:nth-child(1)::before {
    position: absolute;
    font-family: "font awesome 6 free";
    font-weight: 900;
    content: "\f054";
    color: #ffffff;
    font-size: 10px;
    right: 0;
}

.shop-breadcrumb li:nth-child(2)::before {
    position: absolute;
    font-family: "font awesome 6 free";
    font-weight: 900;
    content: "\f054";
    color: #ffffff;
    font-size: 10px;
    right: 0;
}

.shop-breadcrumb li:nth-last-child(1)::before {
    display: none;
}

.breadcrumb li a {
    color: #fff;
}

.sustainability-box img {
    height: 110px;
    padding: 12px;
}

.sustainability-text h4 {
    font-family: var(--ff-heading);
    font-weight: 600;
    padding-bottom: 8px;
}

.sustainability-text p {
    letter-spacing: 0.5px;
    text-transform: capitalize;
    height: 70px;
}

/* contact */

.contact-information {
    position: absolute;
    top: 36px;
    right: 9px;
    padding-left: 25px;
}

.contact-information a {
    color: #FFFFFF;
}

.contact-information a:hover {
    color: #6A6A6A;
}


.contact-information h4 {
    font-family: var(--ff-heading);
    font-size: 32px;
    font-weight: 400;
    line-height: 35px;
    text-align: left;
    color: #fff;
}

.contact-information p {
    font-family: var(--ff-body);
    font-size: 16px;
    font-weight: 300;
    line-height: 22px;
    text-align: left;
    color: #fff;
    padding: 12px 0px;
    padding-bottom: 30px;
}

.contact-info-box-icon {
    background: #FFFFFF26;
    color: #fff;
    padding: 6px 11px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    width: 40px;
    height: 40px;
}

.contact-info-box a {
    display: inline-flex;
    gap: 18px;
}

.contact-info-box {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-bottom: 20px;
}

.contact-right-side {
    position: relative;
}

.get-in-touch-form {
    background-color: #F5F5F5;
    padding: 40px 25px;
    height: 100%;
}

.get-in-touch-text h4 {
    font-family: var(--ff-heading);
    font-size: 35px;
    font-weight: 400;
    line-height: 35.31px;
    text-align: left;
}

.get-in-touch-form form {
    padding-top: 30px;
}

.get-in-touch-text p {
    padding-top: 14px;
}

.form-control {
    border-radius: 0px;
    margin-bottom: 30px;
}

.form-group label {
    padding-bottom: 10px;
}

.form-group textarea {
    resize: none;
    height: 200px;
}

.contact-bg img {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.get-in-touch-form {
    background-color: #F5F5F5;
    padding: 25px;
}


.get-in-touch-form .wpcf7-form-control {
    background-color: #fff;
    border: transparent !important;
    border-radius: 0px;
    margin-bottom: 15px;
    border: transparent;
    padding-left: 10px;
    height: 45px;
    color: #000;
    width: 100%;
    outline: none;
}

.get-in-touch-form .form-group .wpcf7-textarea {
    resize: none;
    height: 120px;
    width: 100%;
}

.form-button .custom-button {
    background-color: #000;
    color: #E0E0E0;
    letter-spacing: 0.5px;
    font-size: 14px;
    display: block;
    font-weight: 400;
    text-align: center;
    padding: 6px 25px;
    text-transform: capitalize;
    width: fit-content;
    font-family: var(--ff-body);
    text-transform: uppercase;
    letter-spacing: 3.2px;
}

.form-group.form-button p {
    line-height: 10px;
}

.site__footer-nav .wpcf7-response-output {
    margin: 10px 0 0 !important;
    border: 1px solid #fff !important;
    color: #fff;
    padding: 5px !important;
}

.contact-info-box-para p {
    padding: 0px;
}

.site__define-wrap .site__define-text {
    padding: 40px 40px 0;
}



.contact-right-side .overlay::before {
    opacity: 0.52;
}

.site__about-choose .choose-bg {
    position: absolute;
    left: 18%;
    width: 63%;
    top: 13%;
}

.site__about-choose .choose-bg img {
    height: 758px;
}

.site__about-choose .site__choose-box:nth-child(2),
.site__about-choose .site__choose-box:nth-child(4) {
    margin-top: 150px;
    margin-bottom: 14px;
}

/* .site__about-choose .site__choose-wrap .row .col-lg-4:nth-last-child(1) .site__choose-list .site__choose-box {
  margin-right: 0px !important;
  margin-left: -24px !important;
} */

/* .site__about-choose .site__choose-box:nth-child(2),
.site__about-choose .site__choose-box:nth-child(4) {
  margin-right: 0px !important;
} */


.sit__choose-box-wrap {
    margin-right: 40px;
}



.picZoomer-pic-wp {
    position: relative;
    overflow: hidden;
    text-align: center;
}

.picZoomer-pic-wp:hover .picZoomer-cursor {
    display: block;
}

.picZoomer-zoom-pic {
    position: absolute;
    top: 0;
    left: 0;
}

.picZoomer-zoom-wp {
    display: none;
    position: absolute;
    z-index: 999;
    overflow: hidden;
    border: 1px solid #eee;
    height: 460px;
    margin-top: -19px;
}

.picZoomer-cursor {
    display: none;
    cursor: crosshair;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 50%;
    border: 1px solid #eee;
    background-color: rgba(0, 0, 0, .1);
}

.picZoomCursor-ico {
    width: 23px;
    height: 23px;
    position: absolute;
    top: 40px;
    left: 40px;
    background: url(images/zoom-ico.png) left top no-repeat;
}

.my_img {
    vertical-align: middle;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 100%;
}

.piclist li {
    display: inline-block;
    width: 90px;
    height: 114px;
    border: 1px solid #eee;
}

.piclist li img {
    width: 97%;
    height: auto;
}

/* custom style */
.picZoomer-pic-wp,
.picZoomer-zoom-wp {
    border: 1px solid #eee;
}

/*===pic-Zoom===*/
._boxzoom .zoom-thumb {
    width: 90px;
    display: inline-block;
    vertical-align: top;
    margin-top: 0px;
}

._boxzoom .zoom-thumb ul.piclist {
    padding-left: 0px;
    top: 0px;
}

._boxzoom ._product-images {
    width: 80%;
    display: inline-block;
}

._boxzoom ._product-images .picZoomer {
    width: 100%;
}

._boxzoom ._product-images .picZoomer .picZoomer-pic-wp img {
    left: 0px;
}

._boxzoom ._product-images .picZoomer img.my_img {
    width: 100%;
}

.piclist li img {
    height: 100px;
    object-fit: cover;
}

/*======products-details=====*/
._product-detail-content {
    background: #fff;
    padding: 15px;
    border: 1px solid lightgray;
}

._product-detail-content p._p-name {
    color: black;
    font-size: 20px;
    border-bottom: 1px solid lightgray;
    padding-bottom: 12px;
}

.p-list span {
    margin-right: 15px;
}

.p-list span.price {
    font-size: 25px;
    color: #318234;
}

._p-qty>span {
    color: black;
    margin-right: 15px;
    font-weight: 500;
}

._p-qty .value-button {
    display: inline-flex;
    border: 0px solid #ddd;
    margin: 0px;
    width: 30px;
    height: 35px;
    justify-content: center;
    align-items: center;
    background: #fd7f34;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #fff;
}

._p-qty .value-button {
    border: 0px solid #fe0000;
    height: 35px;
    font-size: 20px;
    font-weight: bold;
}

._p-qty input#number {
    text-align: center;
    border: none;
    border-top: 1px solid #fe0000;
    border-bottom: 1px solid #fe0000;
    margin: 0px;
    width: 50px;
    height: 35px;
    font-size: 14px;
    box-sizing: border-box;
}

._p-add-cart {
    margin-left: 0px;
    margin-bottom: 15px;
}

.p-list {
    margin-bottom: 10px;
}

._p-features>span {
    display: block;
    font-size: 16px;
    color: #000;
    font-weight: 500;
}

._p-add-cart .buy-btn {
    background-color: #fd7f34;
    color: #fff;
}

._p-add-cart .btn {
    text-transform: capitalize;
    padding: 6px 20px;
    /* width: 200px; */
    border-radius: 52px;
}

._p-add-cart .btn {
    margin: 0px 8px;
}

/*=========Recent-post==========*/
.title_bx h3.title {
    font-size: 22px;
    text-transform: capitalize;
    position: relative;
    color: #fd7f34;
    font-weight: 700;
    line-height: 1.2em;
}

.title_bx h3.title:before {
    content: "";
    height: 2px;
    width: 20%;
    position: absolute;
    left: 0px;
    z-index: 1;
    top: 40px;
    background-color: #fd7f34;
}

.title_bx h3.title:after {
    content: "";
    height: 2px;
    width: 100%;
    position: absolute;
    left: 0px;
    top: 40px;
    background-color: #ffc107;
}

.common_wd .owl-nav .owl-prev,
.common_wd .owl-nav .owl-next {
    background-color: #fd7f34 !important;
    display: block;
    height: 30px;
    width: 30px;
    text-align: center;
    border-radius: 0px !important;
}

.owl-nav .owl-next {
    right: -10px;
}

.owl-nav .owl-prev,
.owl-nav .owl-next {
    top: 50%;
    position: absolute;
}

.common_wd .owl-nav .owl-prev i,
.common_wd .owl-nav .owl-next i {
    color: #fff;
    font-size: 14px !important;
    position: relative;
    top: -1px;
}

.common_wd .owl-nav {
    position: absolute;
    top: -21%;
    right: 4px;
    width: 65px;
}

.owl-nav .owl-prev i,
.owl-nav .owl-next i {
    left: 0px;
}

._p-qty .decrease_ {
    position: relative;
    right: -5px;
    top: 3px;
}

._p-qty .increase_ {
    position: relative;
    top: 3px;
    left: -5px;
}

/*========box========*/
.sq_box {
    padding-bottom: 5px;
    border-bottom: solid 2px #fd7f34;
    background-color: #fff;
    text-align: center;
    padding: 15px 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.item .sq_box span.wishlist {
    right: 5px !important;
}

.sq_box span.wishlist {
    position: absolute;
    top: 10px;
    right: 20px;
}

.sq_box span {
    font-size: 14px;
    font-weight: 600;
    margin: 0px 10px;
}

.sq_box span.wishlist i {
    color: #adb5bd;
    font-size: 20px;
}

.sq_box h4 {
    font-size: 18px;
    text-align: center;
    font-weight: 500;
    color: #343a40;
    margin-top: 10px;
    margin-bottom: 10px !important;
}

.sq_box .price-box {
    margin-bottom: 15px !important;
}

.sq_box .btn {
    border-radius: 50px;
    padding: 5px 13px;
    font-size: 15px;
    color: #fff;
    background-color: #fd7f34;
    font-weight: 600;
}

.sq_box .price-box span.price {
    text-decoration: line-through;
    color: #6c757d;
}

.sq_box span {
    font-size: 14px;
    font-weight: 600;
    margin: 0px 10px;
}

.sq_box .price-box span.offer-price {
    color: #28a745;
}

.sq_box img {
    object-fit: cover;
    height: 150px !important;
    margin-top: 20px;
}

.sq_box span.wishlist i:hover {
    color: #fd7f34;
}

.product-color span,
.cable-config span {
    font-size: 14px;
    font-weight: 400;
    color: #86939E;
    margin-bottom: 20px;
    display: inline-block;
}

/* Product Color */
.product-color {
    margin-bottom: 30px;
}

.color-choose div {
    display: inline-block;
}

.color-choose input[type="radio"] {
    display: none;
}

.color-choose input[type="radio"]+label span {
    display: inline-block;
    width: 40px;
    height: 40px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
}

.color-choose input[type="radio"]+label span {
    border: 2px solid #FFFFFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
}


.color-choose input[type="radio"]#cream+label span {
    background-color: #B25A2A;
}

.color-choose input[type="radio"]#black+label span {
    background-color: #323232;
}

.color-choose input[type="radio"]:checked+label span {
    background-image: url(images/check-icn.svg);
    background-repeat: no-repeat;
    background-position: center;
}

/* Cable Configuration */
.cable-choose {
    margin-bottom: 20px;
}

.cable-choose button {
    border: 2px solid #E1E8EE;
    border-radius: 6px;
    padding: 13px 20px;
    font-size: 14px;
    color: #5E6977;
    background-color: #fff;
    cursor: pointer;
    transition: all .5s;
}

.cable-choose button:hover,
.cable-choose button:active,
.cable-choose button:focus {
    border: 2px solid #86939E;
    outline: none;
}

.cable-config {
    margin-bottom: 20px;
}

.cable-config a {
    color: #358ED7;
    text-decoration: none;
    font-size: 12px;
    position: relative;
    margin: 10px 0;
    display: inline-block;
}

.cable-config a:before {
    content: "?";
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 2px solid rgba(53, 142, 215, 0.5);
    display: inline-block;
    text-align: center;
    line-height: 16px;
    opacity: 0.5;
    margin-right: 5px;
}

/* Product Price */

.product-price span {
    font-size: 26px;
    font-weight: 300;
    color: #43474D;
    margin-right: 20px;
}

.cart-btn {
    display: inline-block;
    background-color: #7DC855;
    border-radius: 6px;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 30px;
    transition: all .5s;
}

.cart-btn:hover {
    background-color: #64af3d;
}

/* Responsive */
@media (max-width: 940px) {

    .left-column,
    .right-column {
        width: 100%;
    }

    .left-column img {
        width: 300px;
        right: 0;
        top: -65px;
        left: initial;
    }
}

@media (max-width: 535px) {
    .left-column img {
        width: 220px;
        top: -85px;
    }
}

.right-column .shop-breadcrumb {
    position: relative;
    top: 0px;
    left: -8px;
    margin: 20px 0px;
}

.product-description h2 {
    font-family: var(--ff-heading);
    margin-bottom: 18px;
}

.product-description h4 {
    font-size: 17px;
    font-family: var(--ff-body);
}

.product-color h4 {
    margin-top: 20px;
    font-size: 14px;
    color: #575757;
}

.right-column .shop-breadcrumb li {
    color: #000;
}

.right-column .shop-breadcrumb li a {
    color: #000;
}

.right-column .shop-breadcrumb li:nth-child(2)::before {
    color: #000
}

.right-column .shop-breadcrumb li:nth-child(1)::before {
    color: #000
}

.color-choose {
    margin-top: 19px;
}

.ps__tabs .nav-tabs .nav-link {
    border: none;
    margin-bottom: 30px;

}

.ps__tabs .nav-tabs .nav-link.active {
    border-bottom: 2px solid #000;
    padding-left: 0px;
}

.manufacturer-details-info-content-wrap {
    display: flex;
    justify-content: space-between;
    gap: 42px;
    width: 100%;
    margin-top: 20px;
}

.manufacturer-details-info-content {
    width: 50%;
}

.product-price p {
    width: 90%;
    margin-top: 10px;
    font-family: var(--ff-body);
    letter-spacing: 0.2px;
    font-size: 16px;
    color: #000;
}




.contact-info-box-para h6 {
    color: #fff;
    width: 63%;
    line-height: 25px;
}

.contact-info-box-icon i {
    color: #fff;
}

.contact-info-box-para a {
    color: #fff;
}

.size ul li {
    font-size: 14px;
    border: 1px solid #464545;
    border-radius: 50%;
    padding: 4px 15px;
    position: relative;
}

.size ul {
    display: flex;
    gap: 10px;
}

.close {
    position: absolute;
    right: 32px;
    top: 32px;
    width: 32px;
    height: 32px;
}

.close::after {
    transform: rotate(-35deg);
}

.close::before,
.close::after {
    position: absolute;
    left: 28px;
    content: ' ';
    height: 31px;
    width: 2px;
    background-color: #ca0303;
    top: -34px;
    z-index: 9;
}

.close::before {
    transform: rotate(35deg);
}

.manufacturer-details-info-content h4 {
    font-size: 20px;
    font-weight: 600;
    padding-bottom: 20px;
    font-family: var(--ff-body);
}

.manufacturer-details-info-content p {
    padding-bottom: 20px;
}

.manufacturer-details-info-content strong {
    color: #000 !important;
    padding-left: 10px;
}

/* Columns */
.left-column {
    width: 100%;
    position: relative;
}

/* Left Column */
.left-column img {
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: all 0.3s ease;
    height: 520px;
}

.left-column img.active {
    opacity: 1;
}


/* Right Column */

/* Product Description */
.product-description {
    margin-bottom: 20px;
}

.product-description span {
    font-size: 12px;
    color: #358ED7;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.product-description h1 {
    font-weight: 300;
    font-size: 52px;
    color: #43484D;
    letter-spacing: -2px;
}

.product-description p {
    font-size: 16px;
    font-weight: 300;
    color: #86939E;
    line-height: 24px;
}

/* Product Configuration */
.product-color span,
.cable-config span {
    font-size: 14px;
    font-weight: 400;
    color: #86939E;
    margin-bottom: 20px;
    display: inline-block;
}

/* Product Color */
.product-color {
    margin-bottom: 30px;
}

.color-choose div {
    display: inline-block;
}

.color-choose input[type="radio"] {
    display: none;
}

.color-choose input[type="radio"]+label span {
    display: inline-block;
    width: 30px;
    height: 30px;
    margin: -1px 4px 0 0;
    vertical-align: middle;
    cursor: pointer;
    border-radius: 50%;
}

.color-choose input[type="radio"]+label span {
    border: 2px solid #FFFFFF;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.33);
}

.color-choose input[type="radio"]#red+label span {
    background-color: #C91524;
}

.color-choose input[type="radio"]#blue+label span {
    background-color: #314780;
}

.color-choose input[type="radio"]#black+label span {
    background-color: #323232;
}

.color-choose input[type="radio"]:checked+label span {
    background-image: url(images/check-icn.svg);
    background-repeat: no-repeat;
    background-position: center;
}

/* Cable Configuration */
.cable-choose {
    margin-bottom: 20px;
}

.cable-choose button {
    border: 2px solid #E1E8EE;
    border-radius: 6px;
    padding: 13px 20px;
    font-size: 14px;
    color: #5E6977;
    background-color: #fff;
    cursor: pointer;
    transition: all .5s;
}

.cable-choose button:hover,
.cable-choose button:active,
.cable-choose button:focus {
    border: 2px solid #86939E;
    outline: none;
}

.cable-config a {
    color: #358ED7;
    text-decoration: none;
    font-size: 12px;
    position: relative;
    margin: 10px 0;
    display: inline-block;
}

.cable-config a:before {
    content: "?";
    height: 15px;
    width: 15px;
    border-radius: 50%;
    border: 2px solid rgba(53, 142, 215, 0.5);
    display: inline-block;
    text-align: center;
    line-height: 16px;
    opacity: 0.5;
    margin-right: 5px;
}

/* Product Price */

.product-price span {
    font-size: 26px;
    font-weight: 300;
    color: #43474D;
    margin-right: 20px;
}

.cart-btn {
    display: inline-block;
    background-color: #7DC855;
    border-radius: 6px;
    font-size: 16px;
    color: #FFFFFF;
    text-decoration: none;
    padding: 12px 30px;
    transition: all .5s;
}

.cart-btn:hover {
    background-color: #64af3d;
}

/* Responsive */
@media (max-width: 940px) {

    .left-column,
    .right-column {
        width: 100%;
    }

    .left-column img {
        width: 300px;
        right: 0;
        top: -65px;
        left: initial;
    }
}

@media (max-width: 535px) {
    .left-column img {
        width: 220px;
        top: -85px;
    }
}

.right-column .shop-breadcrumb {
    position: relative;
    top: 10px;
    left: -8px;
}

.right-column .shop-breadcrumb li {
    color: #000;
}

.right-column .shop-breadcrumb li a {
    color: #000;
}

.right-column .shop-breadcrumb li:nth-child(2)::before {
    color: #000
}

.right-column .shop-breadcrumb li:nth-child(1)::before {
    color: #000
}

.color-choose {
    margin-top: 40px;
}

.ps__tabs .nav-tabs .nav-link {
    border: none;
    margin-bottom: 30px;

}

.ps__tabs .nav-tabs .nav-link.active {
    border-bottom: 2px solid #000;
    padding-left: 0px;
}

.manufacturer-details-info-content-wrap {
    display: flex;
    justify-content: space-between;
    gap: 42px;
    width: 100%;
}

.manufacturer-details-info-content {
    width: 50%;
}

.contact-info-box-para h6 {
    color: #fff;
    width: 63%;
    line-height: 25px;
}

.contact-info-box-icon i {
    color: #fff;
}

.contact-info-box-para a {
    color: #fff;
}

.recent-post-box-image img {
    height: 65px;
    object-fit: cover;
}

.recent-post-box-para a {
    color: #000;
}

.page-numbers {
    padding-left: 16px !important;
    color: #000;
    font-family: var(--ff-heading);
}

.generic-content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
}

.blog-breadcrumb {
    padding: 14px 50px;
    background-color: rgba(215, 215, 215, 0.18);
    width: 91%;
    margin-left: 6px;
    z-index: -1;
    position: relative;
    margin-bottom: 60px;
}

.blog-breadcrumb li:nth-child(1)::before {
    color: #000;
}

.blog-breadcrumb .breadcrumb li a {
    color: #000;
}

.blog-breadcrumb {
    bottom: -15px;
}

.blog-breadcrumb .breadcrumb {
    margin: 0px;
}

.blog-breadcrumb li {
    color: #000;
}

.shop-breadcrumb li:nth-child(2)::before {
    color: #000;
}

.blog-breadcrumb li {
    position: relative;
    padding-inline: 6px 14px;
}




.product-listing-box {
    width: 31%;
    text-align: center;
    position: relative;
}

.site__product-listing-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px;

}

.site__product-sidebar {
    margin-right: 0px;
    margin-top: 30px;
    font-family: var(--ff-heading);
}

.product-listing-box-content h4 {
    font-family: var(--ff-heading);
    font-size: 16px;
    font-weight: 500;
    line-height: 21.42px;
    text-align: center;
    margin: 8px 0px;
    color: #000;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient:
        vertical;
    overflow:
        hidden;
    text-overflow: ellipsis;
    height: 45px;
}

.product-listing-box-content .price-wrap {
    justify-content: center;
}

.product-listing-box-content .price-wrap h6 {
    font-size: 16px;
}

.product-listing-box-content .belt-price {
    font-size: 13px;
    color: #909090;
}


.side-divider label {
    color: #000000;
    font-size: 16px;
    font-weight: 400;
}

.side-divider input {
    margin-right: 0px;
}

.sorting-list {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0px;
}

.site__product-list h6 {
    font-size: 22px;
    font-family: var(--ff-heading);
    font-weight: 600;
}

.price.side-divider:nth-last-child(1) {
    border: none;
}

.sorting-list .dropdown-toggle {
    background-color: transparent;
    border: 1px solid #000;
    padding: 5px 12px;
}

.site__recent-post-wrap {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px;
}

.site__recent-post-wrap .product-listing-box {
    width: 23%;
}

.sorting-list .dropdown-menu li a {
    color: #000;
    padding: 8px;
}

input[type="radio"] {
    accent-color: #000;
}

input[type="checkbox"] {
    accent-color: #000;
}

.sorting-list select {
    background-color: transparent;
    border: 1px solid #000;
    padding: 6px 11px;
}


.dropdown-toggle::after {
    margin-left: 10px;
    font-size: 14px;

}

.site__product-list .sorting-list .dropdown-menu {
    display: none !important;
}

.site__product-list .sorting-list .dropdown-toggle>.dropdown-menu.show {
    display: block !important;
}



.product-price .custom-button.deep-black {
    border: none;
    background-color: #000;
    color: var(--clr-white-300);
    letter-spacing: 0.5px;
    font-size: 17px;
    display: block;
    font-weight: 700;
    text-align: center;
    padding-top: 12px;
    padding-bottom: 40px;
    text-transform: capitalize;

}

.ps__tabs .nav-item .nav-link {
    font-family: var(--ff-heading);
}

.site__user .nav-link img {
    height: 18px;
}

.product-listing-box img {
    height: 400px !important;
    object-fit: cover;
    width: 100%;
}

.price-range-slider {

    .range-value {
        margin: 0;

        input {
            width: 100%;
            background: none;
            color: #000;
            font-size: 16px;
            font-weight: initial;
            box-shadow: none;
            border: none;
            margin: 20px 0 20px 0;
        }
    }

    .range-bar {
        border: none;
        background: #000;
        height: 3px;
        width: 96%;
        margin-left: 8px;

        .ui-slider-range {
            background: #000;
        }

        .ui-slider-handle {
            border: none;
            border-radius: 25px;
            background: #fff;
            border: 2px solid #000;
            height: 17px;
            width: 17px;
            top: -0.52em;
            cursor: pointer;
        }

        .ui-slider-handle+span {
            background: #000;
        }
    }
}

/*--- /.price-range-slider ---*/

.orderby {
    background-color: #fbfbfbc4;
    border: transparent;
    box-shadow: 0px 1px 7px #d1d1d17d;
    padding: 10px 12px;
    font-family: var(--ff-heading);
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    font-size: 15px;
    letter-spacing: 0.5px;
    text-transform: capitalize;
}

.woocommerce .woocommerce-result-count,
.woocommerce-page .woocommerce-result-count {
    float: left;
    font-family: var(--ff-heading);
    color: #000;
}

/**   CUSTOM MENU SINGLE DROPDOWN */
@media (min-width: 991px) {
    .custom__nav .dropdown-toggle+.caret {
        display: none !important;
    }

    .bottom-bar {
        padding: 0;
    }

    .sub-menu-toggle {
        display: none !important;
    }

    .custom__nav {
        padding: 0;
    }

    .custom__nav .nav-item.dropdown {
        position: unset !important;
    }

    .custom__nav .nav-item.dropdown .dropdown-menu {
        display: flex !important;
        width: calc(100vw - 10%);
        text-align: center;
        left: 50%;
        flex-wrap: wrap;
        height: auto;
        overflow-y: unset;
    }

    .custom__nav .menu-item-has-children.dropdown .dropdown-menu {
        background-color: var(--clr-blue-100);
        border-radius: 0;
        border-bottom: 2px solid var(--clr-primary);
        top: 100%;
        visibility: hidden;
        display: block;
        transform-origin: 50% 0;
        -webkit-transform: perspective(3000px) rotateX(-90deg) translate(-50%);
        -moz-transform: perspective(3000px) rotateX(-90deg) translate(-50%);
        -ms-transform: perspective(3000px) rotateX(-90deg) translate(-50%);
        -o-transform: perspective(3000px) rotateX(-90deg) translate(-50%);
        transition: all 0.3s ease-in-out;
        border: none !important;
        padding: 0;
        box-shadow: 1px 1px 20px rgba(0, 0, 0, 0.14);
        background-color: #f7f7f7;
    }

    .custom__nav .menu-item-has-children.dropdown:hover .dropdown-menu {
        visibility: visible;
        display: unset;
        transition: all 0.3s ease-in-out;
        opacity: 1;
        -webkit-transform: translate(-50%);
        -moz-transform: translate(-50%);
        -ms-transform: translate(-50%);
        -o-transform: translate(-50%);
    }

    .custom__nav ul:not(.dropdown-menu) .nav-item {
        padding: 0 8px;
        display: flex;
        align-items: center;
        color: #fff !important;
        position: relative;

    }

    .custom__nav ul:not(.dropdown-menu) .nav-item.active>.nav-link,
    .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link:hover {
        color: var(--clr-primary) !important;
        --clr-primary: #55c3e6;
        transition: all 0.5s ease-in-out;
    }

    .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link {
        font-size: 13px !important;
        text-transform: uppercase;
        font-weight: 600;
        color: #fff !important;
        line-height: 70px !important;
        padding: 0 !important;
        transition: all .5s ease-in-out;
        transition: all 0.5s ease-in-out;
        position: relative;
    }

    .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link::before {
        position: absolute;
        content: '';
        width: 0%;
        height: 1px;
        background-color: #55c3e6;
        right: 0;
        bottom: 28px;
        transition: all 0.5s ease-in-out;
        left: unset;
    }

    .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link:hover::before,
    .custom__nav ul:not(.dropdown-menu) .nav-item.active>.nav-link::before {
        width: 100%;
        transition: all 0.5s ease-in-out;
        left: 0;
        right: unset;
    }

    .custom__nav .dropdown-toggle::after {
        display: inline-block !important;
    }

    .custom__nav .dropdown .dropdown-menu .nav-item {
        padding: 0px;
        width: 25%;
        flex: 0 0 auto;
        border-right: 1px solid #f2f2f2;
        text-align: center;
        justify-content: center;
    }

    header.sticky_menu .bottom-bar .custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link {
        line-height: 60px !important;
    }
}

.custom__nav .dropdown-toggle .caret {
    display: none !important;
}

.custom__nav .dropdown .dropdown-menu .nav-item .nav-link {
    color: #333 !important;
    font-size: 14px !important;
    padding: 6px 0 !important;
    transition: all 0.3s ease-in-out;
    line-height: 32px !important;
}

.custom__nav .dropdown .dropdown-menu .nav-item:hover .nav-link {
    color: #fff !important;
    transition: all 0.3s ease-in-out;
}

.custom__nav .dropdown .dropdown-menu .nav-item .nav-link::before {
    display: none !important;
}

.custom__nav .dropdown-menu .nav-item:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.custom__nav .dropdown-menu .nav-item:hover {
    background-color: var(--clr-primary);
    --clr-primary: #55c3e6;
}

.custom__nav .navbar-toggler {
    padding: 0 !important;
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.custom__nav .navbar-toggler .icon-bar {
    display: block;
    width: 30px;
    height: 3px;
    border-radius: 1px;
    background-color: #fff;
    margin: 5px 0;
}

.custom__nav .nav-item.dropdown .dropdown-toggle::after {
    display: none;
}

.custom__nav .nav-item.dropdown .sub-menu-toggle {
    position: absolute;
    right: 0;
    top: 19px;
    transform: translateY(-50%);
    display: inline-flex;
    background-color: #068640;
    border: none;
    width: 28px;
    height: 25px;
    font-size: 16px !important;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.custom__nav .sub-menu-toggle.active .icon-plus,
.sub-menu-toggle .icon-minus {
    display: none;
}

.custom__nav .sub-menu-toggle.active .icon-minus,
.sub-menu-toggle .icon-plus {
    display: block;
}

.custom__nav .nav-item.dropdown {
    position: relative;
    z-index: 1;
}

.custom__nav ul:not(.dropdown-menu) .nav-item>.nav-link {
    font-size: 15px;
    text-transform: uppercase;
    font-weight: 600;
    color: #4a4a4a;
    line-height: 1.5;
    padding: 8px 0 !important;
    transition: all 0.5s ease-in-out;
}

.custom__nav ul:not(.dropdown-menu) .nav-item.active>.nav-link {
    color: #55c3e6;
}

.custom__nav ul:not(.dropdown-menu) .dropdown-menu {
    border: none;
    border-radius: 0;
    border-left: 1px solid #55c3e6;
    background-color: #f7f7f7;
    height: 260px;
    overflow-y: scroll;
}

.custom__nav .dropdown-menu .nav-item {
    padding-left: 15px;
}

.custom__nav .offcanvas-header {
    justify-content: flex-end;
    padding-bottom: 0;
}

header.sticky_menu .bottom-bar {
    padding: 0px 0 !important;
}

header {
    background-color: rgb(91, 91, 91);
}

.navbar-brand img {
    height: 60px !important;
    object-fit: contain;
    padding: 7px 0;
    filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(103deg) brightness(105%) contrast(105%);
}

.custom__nav .dropdown-toggle+.caret {
    display: inline-flex;
    width: 30px;
    height: 30px;
    background-color: #55c3e6;
    color: #fff;
    position: absolute;
    font-size: 14px;
    right: 0;
    top: 4px;
    cursor: pointer;
}

.custom__nav .dropdown-toggle+.caret::before {
    position: absolute;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\2b";
}

.custom__nav .dropdown-toggle+.caret.active::before {
    content: '\f068';
}

/**   CUSTOM MENU SINGLE DROPDOWN */
.pagination .pagination-link {
    color: #000;
    font-family: var(--ff-heading);
}

.pagination {
    justify-content: center;
    display: flex;
    gap: 21px;
    margin-top: 35px;
    align-items: center;
}

.pagination-link.active {
    box-shadow: 4px 2px 6px #d1d1d1;
    padding: 4px 16px 2px;
    font-weight: 700;
}

.woocommerce div.product .product_title {
    font-family: var(--ff-heading);
    margin-bottom: 14px;
}

.woocommerce div.product p.price del {
    margin-right: 8px;
}

.woocommerce div.product form.cart .button {
    display: inline-flex;
    align-items: center;
    font-family: var(--ff-body) !important;
    font-weight: 300;
    font-size: 11px;
    padding: 5px 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
    height: 35px;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 3.2px;
    border: none;
    background-color: #000 !important;
    color: var(--clr-white-300) !important;
    letter-spacing: 2.5px !important;
    font-size: 12px !important;
}

.single_add_to_cart_button {
    display: inline-flex;
    align-items: center;
    font-family: var(--ff-body) !important;
    font-weight: 300;
    font-size: 11px;
    padding: 5px 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
    height: 35px;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 3.2px;
    border: none;
    background-color: #000 !important;
    color: var(--clr-white-300) !important;
    letter-spacing: 2.5px !important;
    font-size: 12px !important;
}

.woocommerce .quantity .qty {
    width: 3.631em;
    text-align: center;
    font-weight: 700;
    padding: 4px;
}

.woocommerce div.product form.cart {
    margin-bottom: 2em;
    margin-top: 21px;
}

.posted_in a {
    color: #000;
    font-weight: 700;
    font-family: var(--ff-heading);
    font-size: 19px;
    margin-left: 8px;
}

.reviews_tab a {
    color: #000;
    font-family: var(--ff-body);
    letter-spacing: 2.2px;
}

.woocommerce-Reviews-title {
    font-family: var(--ff-heading);
    padding-top: 10px;
}

.woocommerce-Reviews-title {
    font-family: var(--ff-heading);
    padding-top: 10px;
    border-bottom: 1px solid #1e1e1e;
    margin-bottom: 10px;
}


.woocommerce #review_form #respond .form-submit input {
    vertical-align: middle;
    float: left;
    background-color: #000;
    letter-spacing: 2.5px;
    padding: 13px;
    display: inline-flex;
    align-items: center;
    color: var(--clr-white-300);
    font-family: var(--ff-body);
    font-weight: 300;
    font-size: 11px;
    padding: 5px 20px;
    position: relative;
    transition: all 0.3s ease-in-out;
    height: 35px;
    gap: 8px;
    text-transform: uppercase;
    border-radius: 0px;
    width: fit-content;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit:hover {
    background-color: transparent !important;
    border: 0.5px solid #000;
    color: #000 !important;
}

.woocommerce-noreviews {
    color: #a80000;
    font-family: var(--ff-body);
    letter-spacing: 0.6px;
    font-size: 18px;
    margin-bottom: 17px;
}

.comment-reply-title {
    background-color: #000;
    color: #fff;
    font-family: var(--ff-heading);
    padding: 10px;
    display: inline-block;
    font-size: 14px;
}

.comment-notes {
    font-family: var(--ff-heading);
    font-weight: 700;
    color: #000;
    margin-top: 16px !important;
}

.woocommerce-Reviews label {
    font-family: var(--ff-heading);
    font-size: 15px;
    margin-top: 0px;
    line-height: 15px;
    height: auto !important;
    display: block;
    margin-bottom: 6px;
}

.woocommerce-Reviews textarea,
.woocommerce-Reviews input {
    border: 1px solid var(--clr-black-300);
    border-radius: 0px;
    padding-left: 10px;
    height: 45px;
    color: #000;
    width: 100%;
    outline: none;
}

.wc-tabs-wrapper .comment-form-cookies-consent {
    display: flex;
    gap: 10px;
    align-items: center;
}

.wc-tabs-wrapper .comment-form-cookies-consent input {
    height: auto;
    width: auto;
}

.stars a {
    color: #fbbc00;
    font-size: 20px;
}

.tabs.wc-tabs li a {
    color: #000;
    font-size: 20px;
    font-family: var(--ff-heading);
}

.tabs.wc-tabs {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 18px;
}

.wc-tabs li.active {
    border-bottom: 1px solid #000;
}

.woocommerce div.product div.images .flex-control-thumbs {
    width: 100%;
}

.woocommerce div.product div.images .flex-control-thumbs li {
    width: 40% !important;
    float: left;
    margin: 0;
    list-style: none;
    margin-top: -71px;
}

.flex-control-nav li img {
    max-height: 118px !important;
    max-width: 100% !important;
    object-fit: contain !important;
}

.single_add_to_cart_button {
    opacity: 1 !important;
    margin-left: 6px !important;
}

.woocommerce div.product form.cart .button {
    vertical-align: middle;
    float: left;
    background-color: transparent !important;
    color: #000 !important;
    font-weight: 700;
    border: 1px solid #000;
    border-radius: 0px;
}

.woocommerce div.product form.cart .button:hover {
    background-color: #000 !important;
    color: #fff !important;
    border: none;
}

.woocommerce span.onsale {
    background-color: #622f1a !important;
    left: 0 !important;
    top: 0 !important;
}

.flex-control-nav {
    display: flex;
    margin-top: 20px !important;
}

.services {
    position: relative;
}

.price {
    color: #000 !important;
}

.value {
    display: flex;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: var(--ff-heading);
}

.woocommerce div.product div.images img {
    display: block;
    height: 300px !important;
    max-width: 344px !important;
    object-fit: cover;
}

.woocommerce div.product div.images .flex-viewport {
    height: 300px;
    width: 100%;
}

.flex-control-nav li img {
    height: 56px !important;
    width: 100% !important;
    object-fit: contain !important;
}

.woocommerce div.product div.images .flex-control-thumbs {
    width: 100%;
}

div.custom_option {
    display: none;
    border: 1px solid #ccc;
    margin-right: -9px;
    padding: 2px 5px;
    cursor: pointer;
    margin-bottom: 10px;
    width: 80px;
    text-align: center;
}

div.custom_option.is-visible {
    display: inline-block;
}

div.custom_option.on {
    background-color: #1a1a1a;
    color: white;
}

.woocommerce div.product div.images {
    width: 100%;
}

.woocommerce div.product div.images.woocommerce-product-gallery .flex-viewport {
    height: 300px;
    width: 100%
}

.woocommerce-product-gallery__image {
    max-width: 462px !important;
    overflow: visible !important;
}

._boxzoom ._product-images {
    width: 80%;
    display: inline-block;
}

._boxzoom ._product-images .picZoomer {
    width: 100%;
}

.woocommerce-page div.product div.images {
    width: 80% !important;
}

.woocommerce div.product div.images .flex-control-thumbs {
    width: 100%;
}

.woocommerce div.product form.cart .variations label {
    font-family: var(--ff-heading);
    font-size: 20px;
    text-transform: capitalize;
}

.woocommerce-tabs.wc-tabs-wrapper {
    width: 100%;
    margin: auto 0;
    margin: 42px 0px;
}

.woocommerce-product-details__short-description p {
    color: #000;
}

.quantity .input-text {
    border: none;
}

.woocommerce-Tabs-panel h2 {
    font-family: var(--ff-heading);
    color: #000;
    background-color: #eee;
    padding: 7px 12px;
    margin-bottom: 15px;
}

.woocommerce-Tabs-panel p {
    margin-bottom: 15px;
}

.woocommerce table.shop_attributes th {
    font-family: var(--ff-heading);
    letter-spacing: 0.3px;
    font-size: 20px;
}

.woocommerce table.shop_attributes td {
    font-style: normal !important;
}

.woocommerce textarea {
    height: 135px;
    resize: none;
    padding: 10px;
}


.site__footer-nav .nav-item .nav-link {
    font-size: 16px;
    color: #fff;
    line-height: 33px;
}

.site__footer-bottom-wrap.d-flex.justify-content-between a {
    color: #ececec;
    font-weight: 700;
    font-family: var(--ff-heading);
    font-size: 19px;
}

.reset_variations {
    color: #23a000;
    font-size: 16px !important;
}

.add-to-cart-hover {
    position: absolute;
    display: flex;
    justify-content: end;
    align-items: flex-start;
    opacity: 0;
    z-index: 2;
    top: 10px;
    right: 25px;
    transition: 0.6s all ease-in-out;
}


.add-to-cart-hover a {
    padding: 10px 9px 10px 7px !important;
    background-color: #fdfdfd;
    box-shadow: 0px 0px 8px #d1d1d1;
}

.leather-bag-swiper a img {
    height: 308px;
    width: 100%;
    object-fit: cover;
}

.belt-box:hover .add-to-cart-hover {
    transition: 0.6s all ease-in-out;
    opacity: 1;
}

.wp-block-woocommerce-cart.alignwide {
    margin: 0px 70px;
}

.wc-block-cart-item__image a img {
    height: 185px;
    width: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.wc-block-cart-items__row {
    border: 1px solid #d1d1d1;
}

.is-large.wc-block-cart .wc-block-cart-items {
    border: transparent !important;
}

.wc-block-cart-items__row {
    background-color: #f8f8f8;
}

.wc-block-cart-items td {
    width: 35%;
}

.wc-block-cart-items.wp-block-woocommerce-cart-line-items-block {
    border-collapse: separate !important;
    border-spacing: 0 23px !important;
}

.wc-block-cart-item__quantity {
    display: flex;
    align-items: flex-start;
    gap: 30px;
}

.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title {
    margin: 23px 0px !important;
}

.wc-block-components-quantity-selector__button.wc-block-components-quantity-selector__button--minus {
    font-size: 30px !important;
}

.entry-header.alignwide h1 {
    width: 100%;
    font-size: 39px;
    color: #000;
    text-align: center;
    font-family: var(--ff-heading);
}

.entry-header {
    width: 100%;
    margin: 0 auto;
    background-color: #d0d0d052;
    padding: 10px;
}

.wc-block-cart-items__header-image span {
    font-size: 16px;
}

.wc-block-cart-items__header-total span {
    font-size: 16px;
}

.wc-block-components-product-name {
    font-family: var(--ff-heading);
    color: #000;
    font-weight: 600;
    font-size: 20px;
}

.wc-block-cart-item__remove-link {
    font-size: 16px !important;
    font-family: var(--ff-body) !important;
    font-weight: 600 !important;
    color: #a20000 !important;
}

.wc-block-components-button .custom-button {
    padding: 8px 20px;
}

.wp-block-woocommerce-cart-order-summary-heading-block.wc-block-cart__totals-title {
    font-size: 15px !important;
}

.wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input {
    font-size: 20px;
    font-family: var(--ff-heading);
    padding: 0px !important;
    padding-top: 7px !important;
}

.wc-block-components-quantity-selector .wc-block-components-quantity-selector__button {
    font-size: 20px !important;
    color: #000 !important;
    opacity: 1 !important;
}

.wc-block-components-quantity-selector {
    height: 30px;
    align-items: center;
}

.wc-block-components-product-price__value.is-discounted {
    font-size: 18px;
    font-weight: 600;
    font-family: var(--ff-heading);
}

.wc-block-components-product-badge {
    background-color: #ccc;
    color: #000;
    font-family: var(--ff-heading);
    padding: 6px 6px 3px !important;
    border: none !important;
    border-radius: 0px !important;
}

.wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
    font-weight: 700;
    font-family: var(--ff-heading);
}

.is-large.wc-block-cart .wc-block-cart-items td {
    padding: 12px 12px 12px 12px !important;
}

.wc-block-components-formatted-money-amount {
    white-space: nowrap;
    font-family: var(--ff-heading);
}

.wc-block-components-panel__button {
    background-color: #000 !important;
    padding: 10px 6px 7px !important;
    align-items: center;
    color: #fff !important;
    font-family: var(--ff-heading) !important;
    font-weight: 600 !important;
}



.wc-block-components-totals-item__label {
    flex-grow: 1;
    font-family: var(--ff-heading);
    font-weight: 600;
}

.wc-block-components-totals-shipping .wc-block-components-totals-item strong {
    text-transform: uppercase;
    font-family: var(--ff-heading);
    color: #b40000;
    font-weight: 500;
}

.card .text-primary {
    color: #000 !important;
    margin: 0 auto;
}

.border {
    border: 3px solid #000 !important;
    border-radius: 44px;
}

.custom-social-share li {
    background-color: #000;
    padding: 5px 10px;
}

.custom-social-share li a {
    color: #fff;
}

.custom-social-share {
    display: flex;
    gap: 9px;
    margin-top: 20px;
}



.wc-block-components-button__text,
.woocommerce-form-login__submit,
.buy-now-button,
.btn-primary {
    display: inline-flex;
    align-items: center !important;
    font-family: var(--ff-body) !important;
    font-weight: 300 !important;
    font-size: 11px !important;
    padding: 5px 20px !important;
    position: relative !important;
    transition: all 0.3s ease-in-out;
    height: 35px !important;
    gap: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 3.2px !important;
    border: none !important;
    background-color: #000 !important;
    color: var(--clr-white-300) !important;
    letter-spacing: 2.5px !important;
    font-size: 12px !important;
    border-radius: 0px !important;
}

.wc-block-components-button__text {
    padding: 9px 20px !important;
}

.buy-now-button {
    margin-left: 10px;
}

.wc-block-components-title.wc-block-components-title {
    font-family: var(--ff-heading);
    font-weight: 600;
    font-size: 21px;
}

.wc-block-components-button:not(.is-link) {
    background-color: transparent !important;
    border: transparent !important;
}

.blog-pagination-blog {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.added_to_cart.wc-forward {
    padding: 10px 20px !important;
    position: relative;
    transition: all 0.3s ease-in-out;
    gap: 8px;
    text-transform: uppercase;
    border: none;
    background-color: transparent;
    color: #000;
    letter-spacing: 2.5px;
    font-size: 12px;
    border: 1px solid #000;
    margin-left: 6px;
}

.price-wrap del {
    color: #909090;
}

.filter-item {
    background-color: #eee;
    font-family: var(--ff-heading);
    padding: 6px 16px 6px 6px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    font-size: 8px;
    position: relative;
    text-align: left;
    width: auto;
    margin: 0 auto;
    display: inline-block;
    margin-right: 2px;
}

/* .filter-item::after {
  top: 4px;
  position: absolute;
  content: "\f00d";
  right: 5px;
  font-family: "Fontawesome";
  color: #000;
  background-color: transparent;
} */


.entry .woocommerce {
    margin: 0px 120px;
}

.login .woocommerce form .form-row input.input-text {
    height: 40px;
}

.entry .entry-content h2 {
    font-family: var(--ff-heading);
    margin-top: 31px;
}

.login .woocommerce-Input--text {
    height: 40px !important;
}

.woocommerce-LostPassword.lost_password a {
    color: #a80303;
    font-family: var(--ff-heading);
}

#home-cart-message {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    z-index: 9999;
}


/* .header-image-swiper {
  padding-top: 43px;
} */

.dropdown-menu {
    width: 100%;
    left: 50%;
    top: 78px;
    border-radius: 0px;
    transform: translateX(-50%);
    justify-content: space-between;
    gap: 10px;
    border: none;
    padding: 35px 120px 15px;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
}

.dropdown-submenu .nav-item .nav-link::before {
    background-color: transparent;
}

.dropdown-menu .menu-item .dropdown-item {
    font-size: 15px;
    font-family: var(--ff-body);
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.navbar .navbar-nav .dropdown {
    position: static !important;
}

.site__header .offcanvas-body .menu-item {
    width: 31%;
}

.site__header .dropdown-menu .menu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    width: 69%;
    height: 100%;
}


.dropdown-menu.show {
    display: flex !important;
    gap: 0px;
    padding-top: 18px;
}

.dropdown-menu .dropdown-toggle {
    border-bottom: 1px solid #e1e1e1 !important;
}



.nav-item.dropdown .dropdown-menu .menu-item .dropdown-submenu {
    display: grid !important;
    width: 170px;
    border: none;
    position: relative;
    padding: 0px;
    top: 0px;
    height: 0px;
    gap: 39px;
}

.dropdown-submenu .nav-item {
    list-style: square;
    margin-left: 13px;
    padding: 0px !important;
    margin-top: 10px;
}

.dropdown-submenu .nav-item .nav-link {
    font-size: 12px;
    line-height: 16px;
    height: 0px;
}

.header-drop-content {
    position: absolute;
    top: -11%;
    left: 50%;
    font-family: var(--ff-body);
    width: 100%;
    padding: 7px;
    transform: translate(-50%, -50%);
    text-align: left;
}

.header-drop-content a {
    color: #000;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    font-size: 18px;
}

.header-img img {
    height: 100% !important;
    object-fit: cover;
    width: 100%;
}

.header-img {
    margin-right: 30px;
}

.p-140-cont {
    padding: 80px 0;
}

.dilna_error ul li a {
    position: relative;
    font-size: 16px;
    line-height: 40px;
    font-weight: 400;
    font-family: var(--ff-body);
    color: #000;
}

.filter-sidebar {
    position: sticky !important;
    top: 100px;
}

/* Hide filter button and sidebar by default */

/* Show filter button on mobile devices */
@media screen and (max-width: 991px) {
    #filter-btn {
        display: block;
        position: absolute;
        top: -60px;
        left: 0px;
        z-index: 1000;
        background-color: #000000;
        color: #fff;
        padding: 8px 20px;
        border-radius: 0px;
        border: none;
        font-family: var(--ff-body);
        font-weight: 400;
        letter-spacing: 4.2px;
        text-transform: uppercase;
        font-size: 14px;
    }

    .site__product-list {
        position: relative;
        margin-top: 58px;
    }



    #filter-sidebar {
        position: fixed;
        left: 0;
        top: 0;
        width: 80%;
        height: 100%;
        background-color: #fff;
        z-index: 999;
        padding: 20px;
        overflow-y: auto;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    #filter-sidebar.active {
        transform: translateX(0);
        /* Slide in the sidebar */
    }

    .filter-sidebar {
        display: block !important;
    }

    .close-btn {
        display: block;
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 30px;
        cursor: pointer;
        padding: 10px;
        background: #000;
        line-height: 10px;
        color: #fff;
    }
}

/* On larger screens, show the sidebar in its original position */
@media screen and (min-width: 992px) {
    #filter-sidebar {
        display: block;
        position: static;
        width: auto;
        height: auto;
        transform: none;
        padding: 0;
    }

    .close-btn {
        display: none;
    }

    #filter-btn {
        display: none !important;
    }
}

.p-140-cont h3 {
    font-family: var(--ff-heading);
    font-weight: 600;
}

.p-140-cont p {
    font-family: var(--ff-body);
}

.onsale {
    position: absolute;
    left: 0px;
    background-color: #371f1b;
    color: #fff;
    font-family: var(--ff-heading);
    border-radius: 50%;
    padding: 10px 5px;
    font-size: 12px;
    top: 0px;
    z-index: 9;
}

.minus {
    border: transparent;
    background-color: transparent;
}

.plus {
    background-color: transparent;
    box-shadow: none;
    border: transparent;
}

.quantity {
    border: 1px solid #d1d1d1;
    padding: 0px 10px;
}

.quantity input::-webkit-outer-spin-button,
.quantity input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
}

.quantity input[type=number] {
    -moz-appearance: textfield;
}

.woocommerce div.product div.images .woocommerce-product-gallery__wrapper .zoomImg {
    background-color: #fff;
    height: 530px !important;
    max-width: 500px !important;
    width: 500px !important;
    overflow: visible !important;
    z-index: 99999;
}

.site__product-sidebar .accordion {
    /* border: 1px solid #ddd; */
    border-radius: 4px;
    --bs-accordion-btn-icon-transform: rotate(0) !important;
}

/* .site__product-sidebar .accordion-item {
  border-bottom: 1px solid #ddd;
} */

.site__product-sidebar .accordion-button {
    display: block;
    width: 100%;
    text-align: left;
    padding: 1rem;
    border: none;
    background-color: #f8f9fa;
    cursor: pointer;
    font-size: 1rem;
    box-shadow: none;
}

.site__product-sidebar .accordion-button:focus {
    box-shadow: none;
}

.site__product-sidebar .accordion-collapse {
    padding: 1rem;
    /* border-bottom: 1px solid #d2d2d2; */
    padding-top: 0;
    transition: 0.1s all ease-in-out;
}

.site__product-sidebar .accordion-body input[type="checkbox"] {
    width: 13px;
    aspect-ratio: 1;
    border-radius: 3px;
    margin-right: 2px;
}

.site__product-sidebar .accordion-body li>ul li {
    margin-top: 6px;
    padding-left: 11px;
}
.site__product-sidebar .accordion-body li>ul {
    border-left: 1px solid #dee2e6;
    margin-left: 5px;
}
.site__product-sidebar .accordion-body {
    background-color: #fff;
    padding: 0px;
}

.site__product-sidebar .accordion-button:not(.collapsed)::after {
    font-family: 'Fontawesome';
    content: "\f068";
    background-image: none;
    font-size: 16px;
    top: 16px;
    position: absolute;
    right: 14px;
    color: #282828;
    font-weight: 400;
}

.status-publish .woocommerce-MyAccount-content p {
    font-family: var(--ff-heading);
    color: #242424;
    font-size: 18px;
    line-height: 32px;
}

.status-publish .woocommerce-MyAccount-content p a {
    color: #000;
    font-weight: 700;
    font-size: 20px;
}

.status-publish .entry-content {
    margin: 30px 0px !important;
}

.checkout .wc-block-checkout__sidebar .wc-block-components-panel__button {
    padding-left: 10px !important;
}

.checkout .wc-block-components-order-summary .wc-block-components-order-summary-item__description {
    padding-bottom: 0px;
}

.checkout .wc-block-components-form .wc-block-components-checkout-step {
    margin: 0 0 20px;
}

.checkout .entry .entry-content h2 {
    margin-top: 0;
}

.status-publish .woocommerce-MyAccount-navigation ul li a {
    color: #000;
    font-size: 17px;
    font-family: var(--ff-heading);
    font-weight: 600;
    line-height: 29px;
}

.entry-footer.default-max-width {
    margin: 0 auto;
    width: 6%;
    margin-bottom: 40px;
}

.edit-link a {
    display: inline-flex;
    align-items: center;
    font-family: var(--ff-heading);
    font-weight: 500;
    font-size: 16px;
    padding: 9px 20px 5px;
    position: relative;
    transition: all 0.3s ease-in-out;
    height: 35px;
    gap: 8px;
    text-transform: uppercase;
    border: none;
    background-color: #000;
    color: var(--clr-white-300);
    letter-spacing: 2.5px;
}

.site__user ul .nav-item {
    transition: 0.3s all ease-in-out;
}

.site__user ul .nav-item:nth-last-child(1):hover {
    transition: 0.3s all ease-in-out;
    transform: scale(1.1);
}

.site__user ul .nav-item:nth-last-child(1) .nav-link img {
    height: 20px;
}

.shop_sidebar-cont h5 {
    font-family: var(--ff-heading);
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
}

.shop_sidebar-cont {
    position: absolute;
    bottom: 0;
    text-align: center;
    background-color: #f7f7f770;
    padding: 16px;
    width: 100%;
    left: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
}

.shop_sidebar_img {
    position: relative;
    margin-top: 35px;
}

.wc-block-grid__products {
    margin-top: 40px !important;
}

.wc-block-grid__product-title {
    font-family: var(--ff-heading) !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    line-height: 21.42px !important;
    text-align: center !important;
    color: #000 !important;
    height: 50px;
}

.wp-block-button__link {
    display: inline-flex !important;
    align-items: center !important;
    font-family: var(--ff-body) !important;
    font-weight: 300 !important;
    font-size: 14px !important;
    padding: 5px 20px !important;
    position: relative !important;
    transition: all 0.3s ease-in-out !important;
    height: 35px !important;
    gap: 8px !important;
    text-transform: uppercase !important;
    border: none !important;
    background-color: #000 !important;
    color: var(--clr-white-300) !important;
    letter-spacing: 0.5px !important;
    border-radius: 0px !important;
}

.site__belt-content .woocommerce-Price-amount di {
    font-family: var(--ff-heading) !important;
    font-weight: 600 !important;
    font-size: 18px !important;
    color: #371f1b;
}

.site__belt-content .belt-price .woocommerce-Price-amount {
    color: var(--clr-black) !important;
    font-weight: 800 !important;
}

.wc-block-grid__product-onsale span {
    font-weight: 700 !important;
    font-size: 11px !important;
    letter-spacing: 1.2px !important;
}

.wc-block-grid__product-onsale {
    border: none !important;
    border-radius: 0px !important;
}

.comment-form-rating {
    margin-top: 20px;
}

.wpcf7-spinner {
    margin-top: 0 !important;
}

.wpcf7 form.invalid .wpcf7-response-output {
    font-size: 14px !important;
}


.site__product-sidebar .accordion-button::after {
    font-family: 'Fontawesome 6';
    content: "\2b";
    background-image: none;
    font-size: 23px;
    font-weight: 700;
    right: 14px;
    position: absolute;
    top: 16px;

}

.is-large .wc-block-components-sidebar .wc-block-components-panel {
    padding: 0px 13px !important;
}

.site__leather-bag-swiper-wrap .leather-bag-swiper .swiper-slide:hover .add-to-cart-hover {
    opacity: 1;
}

.woocommerce-form-register p {
    font-size: 13px;
}

.woocommerce-privacy-policy-text p {
    font-size: 13px;
}

.woocommerce-form-register__submit {
    font-family: var(--ff-body) !important;
    font-weight: 300 !important;
    font-size: 11px !important;
    padding: 5px 20px !important;
    position: relative !important;
    transition: all 0.3s ease-in-out;
    height: 35px !important;
    gap: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 3.2px !important;
    border: none !important;
    background-color: #000 !important;
    color: var(--clr-white-300) !important;
    letter-spacing: 2.5px !important;
    font-size: 12px !important;
    border-radius: 0px !important;
    margin-top: 17px !important;
}

.woocommerce-privacy-policy-text a {
    color: #000;
    font-weight: 600;
    font-family: var(--ff-body);
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.woocommerce form .form-row input.input-text {
    height: 35px !important;
    margin-top: 6px !important;
}

.product-type search_base_resuslt .product-part .product-listing-box img {
    margin: 0 auto;
}

.product-type search_base_resuslt .product-part .product-listing-box {
    width: 33%;
    margin-bottom: 30px;
}

/* 30-10-24 */
/* banner */
.dil__banner-content .title-area h2 {
    color: #FFFFFF;
    font-size: 36px;
    text-transform: uppercase;
    line-height: 44px;
    text-align: center;
    font-weight: 600;
}

.dil__banner-content .title-area h2 span {
    color: rgb(129, 111, 123);
}

.dil__banner-content h3 {
    color: #FFFFFF;
    font-size: 60px;
    font-weight: 400;
    text-transform: uppercase;
    line-height: 65px;
    text-align: center;
    margin-bottom: 50px;
}

.dil__banner-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.dil__banner-content .title-area {
    margin-bottom: 20px;
    padding-bottom: 15px;
    position: relative;
}

.dil__banner-content .title-area::after {
    content: "";
    position: absolute;
    width: 43%;
    height: 2px;
    background: rgb(129, 111, 123);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
}

/* ./banner */


/*Css for product hover image*/

.swap-on-hover img:last-child {
    min-height: auto;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: opacity .5s linear;
}

.swap-on-hover img:last-child {
    transition: opacity .5s linear;
    opacity: 0;
}

.swap-on-hover img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.product-listing-box:hover .swap-on-hover img:first-child,
.belt-box:hover .swap-on-hover img:first-child {
    z-index: -1;
    opacity: 0;
    transition: opacity .5s linear;
}

.product-listing-box:hover .swap-on-hover img:last-child,
.belt-box:hover .swap-on-hover img:last-child {
    opacity: 1;
    transition: opacity .5s linear;
}

.site__cta .cta__wrap {
    position: relative;
}

.swap-on-hover__back-image {
    width: 100%;
}

.swap-on-hover {
    position: relative;
}

.site__attachment .site__custom-heading .heading-big h2 {
    color: #D9D5D5;
}


/* Hide the cta-repeater-item by default */
.cta-repeater-item {
    display: none;
}

/* Show the cta-repeater-item when the dropdown menu is open */
.dropdown-menu.show .cta-repeater-item {
    display: block;
}

/*  27-1-24 bithika */
.site_footer-nav-list li a {
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 30px;
    color: var(--clr-white-300);
    font-weight: 400;
    text-transform: capitalize;
    margin-bottom: 5px;
}

.site__footer-title {
    position: relative;
    margin-bottom: 16px;
}

.site__footer-title h3::before {
    position: absolute;
    content: '';
    width: 50px;
    height: 1px;
    background-color: var(--clr-white-400);
    bottom: 0;
    left: 0;
}

.cart-count {
    position: absolute;
    bottom: 3px;
    left: 8px;
    background-color: #d1d1d1;
    border-radius: 50%;
    padding: 0px 8px;
    line-height: 26px;
}

/* collection */
.dilna__collection-slide-wrap {
    background-image: url(../images/dilna-collection-bg-pattern.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.collection__img {
    position: relative;
    overflow: hidden;
}

.collection__img img {
    transform: scale(1);
    transition: all 0.5s ease-in-out;
}

.collection__img:hover img {
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
}

.site__collection .row .col-lg-12 .swiper-slide:nth-child(2n+1) {
    background-color: #3b3939;
}

.site__collection .row .col-lg-12 .swiper-slide:nth-child(2n) {
    background-color: #0c2a3d;
}

.site__collection .row .col-lg-12 .swiper-slide:nth-child(5n) {
    background-color: #a64a07;
}

.dilna__collection-slide-wrap .collection__content h4 {
    font-size: 18px;
    color: #fff;
    font-weight: 300;
    font-family: var(--ff-body);
    line-height: 23px;
    margin: 8px 0;
    text-align: center;
    text-transform: uppercase;
}

b,
strong {
    font-weight: 1000;
}

/* .dilna__collection-slide-wrap .collection__content {
  padding: 0;
} */

.dilna__collection-swiper {
    margin-bottom: 25px;
}

.site__collection {
    background: url(../images/dilna-collection-bg.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

.site__cta-background-image {
    width: 100%;
}

.site__cta-background-image img {
    width: 100%;
}

.site__choose-image img {
    height: 60px;
    object-fit: cover;
    margin: 0 auto;
}

.site__choose-image {
    margin-bottom: 10px;
}

.site__choose-text {
    margin-top: 20px;
}

.site__choose-text h6 {
    font-size: 18px;
    color: var(--clr-black);
    font-weight: 500;
    text-align: center;
}



.side-divider li {
    margin-top: 10px
}

.side-divider li label {
    font-size: 14px;
    color: #000;
    margin-left: 3px;
    text-transform: uppercase;
    position: relative;
    padding-left: 25px;
    font-weight: 600;
}

.side-divider li .child-category label {
    color: #757575;
    font-weight: 500;
}

.side-divider li .child-category {
    padding-left: 20px;
    border-left: 1px dotted #757575;
}

.side-divider li input[type="checkbox"] {
    appearance: none;
}

.side-divider li label::before {
    position: absolute;
    display: block;
    width: 15px;
    height: 15px;
    border: 1px solid #6631303b;
    content: "";
    background-color: #EAEAEA;
    left: 0;
    top: 45%;
    transform: translateY(-50%)
}

.side-divider li input[type="checkbox"]:checked+label::before {
    background-color: #371f1b;
}

.side-divider li label::after {
    left: 5px;
    top: 3px;
    width: 6px;
    height: 11px;
    border: solid #fff;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    position: absolute;
    content: '';
    opacity: 0
}

.side-divider li input[type="checkbox"]:checked+label::after {
    opacity: 1
}

.trex__shop-filter-button:not(.collapsed) {
    background-color: transparent;
    box-shadow: unset
}


.sorting-list span {
    font-size: 13px;
    line-height: 1;
    text-transform: capitalize;
    border: 1px solid #d9d9d9;
    width: fit-content;
    border-radius: 5px;
    padding: 7px 10px 7px 10px;
    color: #000;
    font-weight: 500;
    position: relative;

}

.sorting-list .remove-filter {
    border: none;
    box-shadow: inherit;
    color: #000000;
    font-weight: 500;
    font-size: 14px;
    padding: 4px 0px 0;
    line-height: 1;
    transition: all 0.3s;
    border: 1px solid;
    aspect-ratio: 1;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.sorting-list .remove-filter:hover {
    color: #020202;
}

.sorting-list #active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 20px;
}

#clear-filters {
    font-size: 16px;
    color: #371f1b;
    font-weight: 600;
    text-transform: capitalize;
    background: transparent;
    position: absolute;
    top: -54px;
    right: 0;
    border: none;
    box-shadow: inherit;
}

.tagged_as a {
    color: #000;
    font-weight: 700;
    font-family: var(--ff-heading);
    font-size: 19px;
    margin-left: 8px;

}

.site__leather-related-swiper .belt-box img {
    height: 300px;
    object-fit: cover;
}


.dilna__product-details-featured {

    position: relative;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

/* .dilna__product-feat-swiper{width: 68%; margin: 15px;} */
.dilna__product-feat-swiper {
    width: 70%;
    margin: 0 15px;
}


.dilna__product-thumb-swiper .swiper-wrapper {
    flex-direction: column;
    gap: 10px;
}

.dilna__product-thumb-swiper .swiper-wrapper .swiper-slide {
    width: 100% !important;
}


.dilna__product-feat-main img,
.dilna__product-thumb-swiper img {
    width: 100%
}

.dilna__product-thumb-swiper {
    height: 577px !important;
    flex: 0 0 auto;
    width: 24%;
    margin: 0;
}

.dilna__product-thumb-swiper .swiper-slide {
    height: auto !important
}

.dilna__product-feat-main {
    border-radius: 5px;
    overflow: hidden;
    width: 100%
}

.dilna__product-feat-thumb {
    border-radius: 5px;
    overflow: hidden
}

.easyzoom {
    float: left
}

.easyzoom img {
    display: block
}

.easyzoom {
    display: inline-block
}

.easyzoom img {
    vertical-align: bottom
}



.dilna__product-feat-swiper [class^="swiper-button-"] {
    position: absolute;
    color: var(--clr-black-200);
    border: 0.5px solid var(--clr-black);
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    border-radius: 5px;

}

.dilna__product-feat-swiper [class^="swiper-button-prev-"] {
    left: 15px;
}

.dilna__product-feat-swiper [class^="swiper-button-next-"] {
    right: 15px;
}

.dilna__product-details-featured .woocommerce-sale-badge {
    position: absolute;
    top: 0;
    left: 0;
    width: 50px;
    height: 50px;
    border-radius: 100%;
    background-color: #371f1b;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99;
}

.dilna_new-collection {
    position: relative;
    width: 100%;
}

.dilna_new-collection .site__custom-heading .heading-small h4 {
    margin-top: 0;
    text-align: left;
}

.dilna_collection-left p {
    margin-bottom: 15px;
}

.dilna_collection-img {
    position: relative;
    width: 100%;
}

.dilna_collection-img img {
    width: 100%;
}

.dilna_collection-right {
    position: sticky;
    width: 100%;
    top: 110px;
}

.dilna_collection-left {
    position: relative;
}

.dilna_collection-right .belt-box {
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.12);
    position: relative;
    margin: 0;
}

.dilna_collection-right .site__belt-content {
    padding: 15px;
}

.dilna_collection-left-imgpart {
    position: sticky;
    top: 70px;
}

.dilna_collectiongrid {
    position: relative;
    width: 100%;
}

.dilna_collectiongrid-left {
    position: relative;
    width: 100%;
}

.dilna_collectiongrid-right {
    position: relative;
    width: 100%;
    display: flex;
    gap: 31px;
    flex-direction: column;
}

.dilna_collectiongrid-box {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.dilna_collectiongrid-box img {
    transform: scale(1);
    transition: all 0.5s ease-in-out;
    width: 100%;
}

.dilna_collectiongrid-box:hover img {
    transform: scale(1.1);
    transition: all 0.5s ease-in-out;
}

.dilna__product-feat-thumb img {
    height: 135px !important;
    object-fit: cover;
}

.site__product-sidebar .filter-item {
    margin: 0 !important;
}

.dilna__page-wrapper.cart .entry-header {
    width: 100%;
    padding: 10px;
}

.dilna__page-wrapper.cart .status-publish .entry-content {
    margin: 30px 0 !important;
}

.dilna__page-wrapper.cart .woocommerce-cart table.cart img {
    width: 100px;
}

.dilna__page-wrapper.cart .product-name a {
    color: #000;
}

.dilna__page-wrapper.cart .woocommerce a.remove:hover {
    color: #fff !important;
    background: #f52d0b;
}

.dilna__page-wrapper.cart .woocommerce a.remove {
    color: #f52d0b !important;
}

.dilna__page-wrapper.cart .product-thumbnail img {
    width: 100px !important;
    height: 120px !important;
}

.dilna__page-wrapper.cart .woocommerce {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin: 0px 0;
}

/* .dilna__page-wrapper.cart .woocommerce-cart-form{
  width: 67%;
} */
.dilna__page-wrapper.cart .cart-collaterals {
    width: 100%;
}

.dilna__page-wrapper.cart .cart-collaterals h2 {
    margin: 0 0 10px;
}

.dilna__page-wrapper.cart .cart-collaterals .cart_totals {
    width: 100% !important;
}

.dilna__page-wrapper.cart .cart-collaterals .checkout-button {
    background: #000 !important;
    font-size: 16px;
}

.dilna__page-wrapper.cart .coupon .input-text {
    border-radius: 5px;
    width: 120px !important;
}

.dilna__page-wrapper.cart .coupon .button {
    color: #fff;
    background: #000 !important;
}

.dilna__page-wrapper.cart .cart-collaterals .shipping-calculator-button {
    padding: 5px 10px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 5px;
    color: #000;
}

.wc-block-components-form .wc-block-components-text-input input[type="email"] {
    border: 1px solid rgba(0, 0, 0, .1);
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted {
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: inherit !important;
}

.wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
    border: 1px solid rgba(0, 0, 0, .1);
    box-shadow: inherit !important;
}

.dilna__page-wrapper.cart .product-price span {
    font-size: 19px;
    font-weight: 300;
    color: #43474D;
    margin-right: 9px;
}

.site__footer-form .form-control {
    margin-bottom: 0;
}

.site__footer-form .custom-button {
    color: var(--clr-black);
}

#dilBtn {
    display: none;
    position: fixed;
    bottom: 70px;
    right: 30px;
    z-index: 99;
    font-size: 18px;
    border: none;
    outline: none;
    background-color: #371f1b;
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 4px;
}

.dilna__collection-slide-wrap {
    position: relative;
}

.dilna__collection-slide-wrap .custom-button {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 99;

}

.wc-block-components-totals-coupon__form .wc-block-components-totals-coupon__button {
    display: inline-flex;
    align-items: center !important;
    font-family: var(--ff-body) !important;
    font-weight: 300 !important;
    font-size: 11px !important;
    padding: 5px 20px !important;
    position: relative !important;
    transition: all 0.3s ease-in-out;
    height: 35px !important;
    gap: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 3.2px !important;
    border: none !important;
    background-color: #000 !important;
    color: var(--clr-white-300) !important;
    letter-spacing: 2.5px !important;
    font-size: 12px !important;
    border-radius: 0px !important;
}

.right-column .woocommerce-product-details__short-description p {
    font-size: 15px;
    line-height: 27px;
    margin-bottom: 0;
    color: var(--clr-black-300);
}

.right-column .woocommerce-product-details__short-description p a {
    color: var(--clr-black-300);
}

.dilna_error .searchheding {
    text-align: center;
    width: 100%;
}

.dilna_error .searchheding .custom-button {
    margin-top: 20px;
}

.woocommerce div.product form.cart .variations .value label {
    position: relative;
    font-family: var(--ff-heading);
    font-size: 14px;
    text-transform: capitalize;
    align-items: center;
    color: #000;
}

.reset_variations::before {
    position: absolute;
    bottom: 10px;
    left: 0;
    content: '\f00d';
    font-family: "Font Awesome 6 Free";
    font-size: 14px;
}

.reset_variations {
    color: #000;
    font-size: 14px !important;
    position: relative;
    padding-left: 18px;
    align-items: center;
}

.woocommerce div.product form.cart .woocommerce-variation-price .price {
    margin-bottom: 12px;
    display: inline-block;
}

.right-column .variations span label {
    font-weight: 400 !important;
    padding: 5px 10px;
    position: relative;
}

.right-column .variations span {
    margin-right: 10px !important;
    position: relative;
}

.right-column .variations span label {
    font-weight: 400 !important;
    padding: 5px 10px;
    font-size: 16px;
    line-height: 26px;
    position: relative;
}

.right-column .variations span {
    margin-right: 10px !important;
    position: relative;
}

.right-column .variations span input[type="radio"] {
    position: absolute;
    width: 100%;
    height: 32px;
    border-radius: 5px;
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid#371f1b57;
    top: 0;
    font-size: 15px;
    line-height: 22px;
}

.right-column .variations span input[type="radio"]:checked {
    background-color: #371f1b57;
    border: 1px solid #371f1b57;
}

/* .right-column .variations span input[type="radio"]:checked + label {
  background-color: transparent; 
  border: 1px solid #371f1b57; 
} */
.dilna__generic p {
    padding-bottom: 8px;
}

.dilna__generic h2 {
    padding-bottom: 8px;
    font-size: 30px;
    line-height: 40px;
}

.dilna__generic ul {
    list-style: disc;
    padding-left: 15px;
}

.dilna__generic ul li {
    padding-bottom: 8px;
    font-size: 15px;
    color: var(--clr-black-300);
    line-height: 25px;
}

.dilna__generic a {
    color: var(--clr-black-200);
}

.right-column .value {
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 7px;
}

.right-column .value span {
    margin-right: 0px !important;
}

.services .woocommerce-tabs.wc-tabs-wrapper {
    margin-bottom: 0 !important;
}

.dilna__inner-generic .cart-collaterals .cross-sells {
    width: 100% !important;
}

.dilna__inner-generic .cart-collaterals .cross-sells .product-listing-box {
    width: 30% !important;
    margin-bottom: 20px;
}



.woocommerce-Tabs-panel h2 {
    padding-bottom: 8px;
    font-size: 30px;
    line-height: 40px;
}

.woocommerce-Tabs-panel ul {
    list-style: disc;
    padding-left: 15px;
}

.woocommerce-Tabs-panel ul li {
    padding-bottom: 8px;
    font-size: 15px;
    color: var(--clr-black-300);
    line-height: 25px;
}

.woocommerce-Tabs-panel a {
    color: var(--clr-black-200);
}

.services .up-sells.upsells h2 {
    margin-bottom: 20px;
}

.services .up-sells.upsells .swap-on-hover {
    margin-bottom: 15px;
}

.dilna_shop-filter-list label {
    gap: 5px;
    display: inline-flex;
}

.product-listing-box-content {
    padding-top: 10px;
}

.dilna__inner-generic .entry .entry-content .cart_totals h2 {
    margin: 0 0 15px;
}

.dilna__inner-generic .cart-collaterals .cross-sells .product-listing-box .swap-on-hover img {
    height: 400px !important;
}

.shipping-calculator-button {
    padding: 8px 20px;
    border: 1px solid #101010;
    color: #101010;
    margin: 12px 0 !important;
    display: inline-block;
    width: fit-content;
}

.wc-proceed-to-checkout .checkout-button {
    background-color: var(--clr-black) !important;
    color: #fff !important;
    border: 1px solid var(--clr-black) !important;
    font-weight: 400 !important;
}

.wc-block-components-checkbox__label a {
    color: var(--clr-black);
}

.woocommerce nav.woocommerce-pagination ul {
    border: none !important;
    gap: 5px !important;
    display: flex;
}

.woocommerce nav.woocommerce-pagination li .page-numbers {
    padding: 8px 10px !important;
}

.woocommerce nav.woocommerce-pagination .page-numbers.current {
    color: #fff;
    background: #000
}

.woocommerce nav.woocommerce-pagination li .page-numbers:hover {
    color: #fff;
    background: #000
}

.footer__pay-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.footer__payment-image img {
    height: 28px;
}