/* ***** Common Css **** */
:root {
    scroll-behavior: initial;
}

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style: none;
}

a:hover,
a:focus,
a:active {
    text-decoration: none;
}

ol,
ul {
    margin: 0;
    padding: 0;
}

img {
    display: block;
}

figure {
    margin: 0;
}

a,
button {
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
    text-decoration: none;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #1F1F1F;
    text-decoration: none;
}

.main-wrpper {
    height: 100%;
    width: 100%;
}

h1,
h2 {
    font-family: "Playfair Display", serif;
}

.slick-slider {
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease;
    -webkit-transition: opacity 1s ease;
}

.slick-slider.slick-initialized {
    visibility: visible;
    opacity: 1;
}

/* ***** End Common Css **** */

/* **** Header **** */
header {
    position: relative;
    top: 0px;
    left: 0;
    right: 0;
    background: #fdfafa;
    padding: 20px 40px;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}

.navbar-brand {
    float: none;
    height: auto;
    padding: 0;
    margin: 0 auto;
    display: table;
}

.navbar-brand img {
    max-width: 100%;
    height: 140px;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

header.nav-new .navbar-brand img {
    height: 80px;
}

.navbar {
    background: transparent;
    position: relative;
    width: 100%;
    left: 0;
    top: 0;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
    z-index: 120;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}

.nav-row {
    display: flex;
    align-items: center;
    width: 100%;
}

header.nav-new {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 10px 40px;
    background: #fdfafa;
    z-index: 99;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.2);
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@-webkit-keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.navbar-light .navbar-nav {
    margin: 0 auto;
    align-items: center;
}

.navbar-light .navbar-nav li {
    margin: 0 32px;
}

.navbar-light .navbar-nav .nav-link {
    padding: 0;
    color: #6c000d;
    font-size: 15px;
    font-weight: 500;
    text-transform: uppercase;
    position: relative;
    transition: 0.4s linear;
    -webkit-transition: 0.4s linear;
}

.navbar-light .navbar-nav .nav-link::before {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 0;
    height: 1px;
    background: #6c000d;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.navbar-light .navbar-nav .nav-link.active::before,
.navbar-light .navbar-nav .nav-link:focus::before,
.navbar-light .navbar-nav .nav-link:hover::before {
    width: 100%;
}

.form-search .form-group {
    position: relative;
}

.form-search button {
    border: 0;
    background: transparent;
    font-size: 16px;
    color: #6c000d;
    cursor: pointer;
}

.header-icons ul {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.header-icons ul li {
    margin: 0 0 0 20px;
}

.header-icons ul li:first-child {
    margin: 0;
}

.header-icons ul li a {
    display: flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    color: #6c000d;
}

.header-icons ul li a .icon {
    position: relative;
    font-size: 18px;
    font-weight: 800;
    margin: 0 0 0;
}
.header-icons ul li a .icon img{
    height: 18px;
}
.header-icons ul li a .icon span {
    background: #ecbaa1;
    color: #6c000d;
    font-size: 10px;
    font-weight: 500;
    line-height: 15px;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top:-6px;
    right: -6px;
}

.header-icons ul li.menubar {
    display: none;
}

.mega-menu,
.short-menu {
    position: absolute;
    left: 50%;
    top: 149px;
    width: 60%;
    background: #fff;
    box-shadow: 0px 5px 25px 0px rgba(138, 159, 168, 0.25);
    opacity: 0;
    visibility: hidden;
    padding: 32px 20px;
    transform: scaleY(0) translateX(-50%);
    -webkit-transform: scaleY(0) translateX(-50%);
    transform-origin: top center;
    -webkit-transform-origin: top center;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.short-menu {
    padding: 12px 20px;
    border-radius: 0 0 12px 12px;
    width: fit-content;
    top: 95px;
    left: 0;
    transform: scaleY(0) translateX(0);
    -webkit-transform: scaleY(0) translateX(0);
}

header.nav-new .mega-menu {
    top: 90px;
}

header.nav-new .short-menu {
    top: 60px;
}

li.dropdown-trigger:hover .mega-menu,
li.dropdown-trigger:hover .short-menu {
    transform: scaleY(1) translateX(-50%);
    -webkit-transform: scaleY(1) translateX(-50%);
    opacity: 1;
    visibility: visible;
}

li.dropdown-trigger:hover .short-menu {
    transform: scaleY(1) translateX(0%);
    -webkit-transform: scaleY(1) translateX(0%);
}

.mega-menu-item h3 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.mega-menu-item h3 a {
    color: #6c000d;
}

.mega-menu-item h3 a:hover {
    color: #6c000d;
}

.mega-menu-item ul li,
.short-menu ul li {
    margin: 0 !important;
}

.mega-menu-item ul li a,
.short-menu ul li a {
    padding: 7px 0;
    white-space: nowrap;
    display: inline-block;
    text-transform: capitalize;
    color: #6c000d;
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    position: relative;
}

.mega-menu-item ul li a::before,
.short-menu ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 6px;
    width: 0;
    height: 1px;
    background: #6c000d;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.mega-menu-item ul li a:hover::before,
.short-menu ul li a:hover::before {
    width: 100%;
}

.header-top {
    position: relative;
    width: 100%;
    background: #9e4c37;
    padding: 4px 15px;
}

.header-top ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top ul li,
.header-top ul li a {
    font-size: 13px;
    line-height: 16px;
    color: #fff;
    font-weight: 600;
}

.header-top ul li a:hover {
    color: rgba(255, 255, 255, 0.70);
}

.header-top ul li i {
    font-size: 13px;
    margin: 0 0 0 8px;
}

.header-top ul li p {
    margin: 0;
    font-weight: 400;
    text-transform: uppercase;
}

.header-top ul li a i {
    margin: 0 8px 0 0;
}

.mobile-logo {
    display: none;
}

/* **** End Header **** */


/* **** toggler **** */
.navbar-light .navbar-toggler {
    background-color: transparent;
    border-radius: 0;
    outline: none;
    box-shadow: none;
    border: none;
    padding: 0;
}

.navbar-light .navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-light .navbar-toggler .navbar-toggler-icon {
    background-image: unset;
}

.navbar-toggler:active,
.navbar-toggler:focus {
    outline: none;
}

.navbar-light .navbar-toggler-icon {
    width: 22px;
    height: 16px;
    background-image: none;
    position: relative;
    border-bottom: 2px solid #6c000d;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after,
.navbar-light .navbar-toggler-icon:before {
    width: 22px;
    position: absolute;
    height: 2px;
    background-color: #6c000d;
    top: 0;
    left: 0;
    content: "";
    z-index: 2;
    transition: all 300ms linear;
}

.navbar-light .navbar-toggler-icon:after {
    top: 7px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:after {
    transform: rotate(45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon:before {
    transform: translateY(7px) rotate(-45deg);
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
    border-color: transparent;
}

/* **** End toggler **** */

/* **** Banner **** */
.banner-slider {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
}

.banner-img img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.banner-item {
    position: relative;
    width: 100%;
    height: 100%;
}

.banner-inner {
    position: absolute;
    width: 100%;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    z-index: 1;
}

.banner-data p {
    font-size: 18px;
    font-weight: 600;
    line-height: 24px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    margin: 0 0 20px;
    color: #fff;
}

.banner-data h1,
.banner-data h2 {
    font-size: 80px;
    font-weight: 500;
    line-height: 85px;
    text-transform: capitalize;
    color: #fff;
    margin: 0 0 32px;
}

.btn-main {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #000;
    background: #fff;
    padding: 14px 35px;
    border-radius: 8px;
    display: inline-block;
    cursor: pointer;
    display: table;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.btn-main:hover {
    background: #1F1F1F;
    color: #fff;
}

.banner-slider .slick-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: 15px;
    width: 44px;
    height: 44px;
    border: none;
    font-size: 0;
    border-radius: 44px;
    background: rgba(255, 255, 255, 0.30);
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    z-index: 1;
}

.banner-slider .slick-arrow.slick-next {
    left: auto;
    right: 15px;
}

.banner-slider .slick-arrow::before {
    content: '\f053';
    font-family: "Font Awesome 5 Pro";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    position: absolute;
    font-size: 16px;
    color: #fff;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.banner-slider .slick-arrow.slick-next::before {
    content: '\f054';
}

.banner-slider .slick-arrow:hover {
    background: #862600;
}

.banner-slider .slick-arrow:hover::before {
    color: #fff;
}

/* **** End Banner **** */

/* **** Categories **** */
.categories-wrp {
    position: relative;
    width: 100%;
    padding: 30px 0 35px;
}

.categories-wrp .container {
    max-width: 1020px;
}

.comman-title {
    text-align: center;
    margin: 0 0 25px;
}

.comman-title h2,
.comman-title h1 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 500;
    text-transform: capitalize;
    color: #74381f;
    margin: 0;
}

.categories-img {
    width: 120px;
    height: 120px;
    border-radius: 100%;
    overflow: hidden;
    margin: 0 auto 15px;
}
.categories-img figure{
    width: 100%;
    height: 100%;
}

.categories-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.categories-item a:hover .categories-img img {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
}

.categories-item h3 {
    font-size: 16px;
    line-height: 22px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0;
    text-align: center;
    color: #6c000d;
}

.categories-item {
    padding: 0 15px;
}

.categories-slider {
    position: relative;
    width: 100%;
}

.categories-slider .slick-arrow {
    position: absolute;
    top: calc(50% - 25px);
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: -5px;
    width: 44px;
    height: 44px;
    border: 1px solid #E9E9E9;
    font-size: 0;
    border-radius: 44px;
    background: #fff;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    z-index: 1;
}

.categories-slider .slick-arrow.slick-next {
    left: auto;
    right: -5px;
}

.categories-slider .slick-arrow::before {
    content: '\f053';
    font-family: "Font Awesome 5 Pro";
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    position: absolute;
    font-size: 18px;
    color: #1F1F1F;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.categories-slider .slick-arrow.slick-next::before {
    content: '\f054';
}

.categories-slider .slick-arrow:hover {
    background: #862600;
}

.categories-slider .slick-arrow:hover::before {
    color: #fff;
}

/* **** End Categories **** */

/* **** What's New **** */
.what-new-wrp {
    position: relative;
    width: 100%;
    height: 100%;
}
.what-new-wrp .comman-title{
    margin: 0 auto 10px;
}

.product-filters ul {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin: 0 auto 45px;
}

.product-filters ul li{
    font-size: 14px;
    line-height: 20px;
    font-weight:400;
    margin-right: 30px;
    text-transform: uppercase;
    padding:5px 0;
    color: #6c000d;
    position: relative;
    cursor: pointer;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}
.product-filters ul li:last-child{
    margin: 0;
}

.product-filters ul li:hover,
.product-filters ul li.active {
    color: #6c000d;
}

.product-filters ul li::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0%;
    width: 0%;
    height:2px;
    background: #6c000d;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.product-filters ul li.active::before {
    width: 100%;
}

.product-box {
    position: relative;
    width: 100%;
    margin: 0 0 30px;
    cursor: pointer;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.product-box-img {
    width: 100%;
    /*height: 400px;*/
    overflow: hidden;
    position: relative;
}
.product-list-wrp .product-box-img{
    height: auto;
}
.product-box-img figure{
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scale(1);
    -webkit-transform: scale(1);
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}
.product-box-img figure:last-child{
    display: none;
}

/*.product-box:hover .product-box-img figure:first-child,
.product-box .product-box-img figure:last-child {
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}*/

/*.product-box:hover .product-box-img figure:last-child {
    opacity: 1;
    visibility: visible;
    z-index: 1;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    display: none;
}*/

.product-box-img figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-box-data {
    padding: 10px 0 0;
    position: relative;
}

.product-box-data h2 {
    font-weight: 600;
    font-size: 18px;
    color: #702e23;
    font-family:'Open Sans';
    line-height: 26px;
    margin: 0 0 1px;
}

.product-box-data h2 a {
    color: #702e23;
}

.product-box-data h2 a:hover {
    color: #1F1F1F;
}

.product-box-data h3 {
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    color: #a9766d;
    margin: 0 0 8px;
}

.product-box-data .price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0;
}

.product-box-data .price p {
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #862600;
    margin: 0;
}

.product-box-data .price p span {
    color: #D09E9E;
    display: inline-block;
    position: relative;
    margin: 0 0 0 8px;
}

.product-box-data .price p span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #D09E9E;
    z-index: 1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.product-box .btn-wish {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
}

.product-box .btn-wish figure {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.product-box .btn-wish img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.product-box .btn-wish figure:first-child,
.product-box .btn-wish.active figure:last-child,
.product-box .btn-wish:hover figure:last-child {
    opacity: 1;
    visibility: visible;
}

.product-box .btn-wish.active figure:first-child,
.product-box .btn-wish:hover figure:first-child {
    opacity: 0;
    visibility: hidden;
}

.product-box .product-tag {
    padding: 3px 12px;
    border-radius: 30px;
    position: absolute;
    background: rgb(210 239 154);
    top: 12px;
    left: 12px;
    z-index: 5;
    color: #1F1F1F;
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.2;
}

.product-box .product-tag.tag-sale {
    background: rgb(219 68 68);
    color: #fff;
}

.btn-secondary {
    display: table;
    font-weight: 400;
    font-size: 16px;
    line-height: 22px;
    color: #7B2020;
    padding: 8px 20px;
    width: 100%;
    background: #FCF2F0;
    border: 1px solid #F4E2E1;
    border-radius: 10px;
    text-align: center;
}

.btn-secondary:hover {
    background: #6c000d;
    color: #fff;
    border-color: #6c000d;
}

.product-box-data .sale {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #74381f;
    background: #ffebe7;
    border-radius: 12px;
    display: table;
    padding: 4px 8px;
}

.product-box-data .title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 5px;
}

.product-box-data .title .rating i {
    color: rgb(236 176 24);
    font-size: 14px;
    margin: 0 5px 0 0;
}

.product-box-data .title .rating span {
    font-size: 14px;
}

/* **** End What's New **** */

/* **** Shop Banner **** */
.shop-banner {
    position: relative;
    width: 100%;
    padding: 15px 0 0;
    display: flex;
    gap: 10px;
}

.shop-banner-box {
    width: 50%;
    position: relative;
    color: #fff;
    overflow: hidden;
    display: table;
}

.shop-banner-img img,
.shop-banner-img figure {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.shop-banner-box:hover .shop-banner-img img {
    opacity: 0.9;
    transform: scale(1.07);
    -webkit-transform: scale(1.07);
}

.shop-banner-data {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    opacity: 1;
    color: #fff;
}

.shop-banner-data h2 {
    font-size: 44px;
    line-height: 50px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 12px;
}

.shop-banner-data p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    padding: 0 0 4px;
    display: table;
    border-bottom: 2px solid #fff;
    margin: 0 auto;
}

/* **** End Shop Banner **** */

/* **** Benefit **** */
.benefit-wrp {
    position: relative;
    width: 100%;
    padding: 40px 0;
}

.benefit-box {
    text-align: center;
}

.benefit-box figure img {
    width: 72px;
    margin: 0 auto 20px;
}

.benefit-box h2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 12px;
    color: #662b1e;
}

.benefit-box p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin: 0;
    color: #65463d;
}

/* **** End Benefit **** */

/* **** Testimonial **** */
.testimonial-wrp {
    position: relative;
    width: 100%;
    background: #f9f7f6;
    padding: 40px 0;
}

.star-list {
    display: flex;
    align-items: center;
    margin: 0 0 16px;
}

.star-list li {
    color: rgb(236 176 24);
    margin: 0 5px 0 0;
}

.star-list li:last-child {
    margin: 0;
}

.testimonial-box {
    padding: 32px;
    position: relative;
    background: #fff;
}
.testimonial-box img.testimonial-img{
    width: 60px;
    height: 60px;
    border-radius: 100%;
    object-fit: cover;
    margin: 0 0 25px;
}
.testimonial-box h2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0 0 8px;
}

.testimonial-box p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0 0 16px;
}

.testimonial-box h3 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
}

.testimonial-box h3 span {
    display: block;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    margin: 4px 0 0;
    color: rgb(160 160 160);
}

.testimonial-slider-item {
    padding: 0 15px;
}

.testimonial-slider {
    position: relative;
    margin: 0 -15px;
}

.testimonial-slider .slick-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 40px;
}

.testimonial-slider .slick-dots li {
    line-height: 0;
    width: 18px;
    height: 18px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    margin: 0 5px;
    cursor: pointer;
}

.testimonial-slider .slick-dots li.slick-active {
    border: 1px solid #1F1F1F;
}

.testimonial-slider .slick-dots button {
    width: 8px;
    height: 8px;
    border-radius: 8px;
    border: 1px solid #1F1F1F;
    font-size: 0;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.testimonial-slider .slick-dots li.slick-active button {
    background: #1F1F1F;
}

/* **** End Testimonial **** */

/* **** Instagram **** */
.instagram-wrp {
    position: relative;
    width: 100%;
    padding: 40px 0 40px;
}

.instagram-wrp .comman-title h6 {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 12px 0 0;
}

.instagram-box {
    position: relative;
}

.instagram-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    opacity: 0;
    z-index: 1;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.instagram-box:hover::before {
    opacity: 1;
}

.instagram-img {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.instagram-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.instagram-box:hover .instagram-img img {
    transform: scale(1.04);
    -webkit-transform: scale(1.04);
}

.instagram-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background: rgb(255 255 255);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    opacity: 0;
    visibility: hidden;
}

.instagram-box:hover .instagram-icon {
    opacity: 1;
    visibility: visible;
}

.instagram-icon:hover {
    background: #1F1F1F;
}

.instagram-icon i {
    font-size: 24px;
    line-height: 32px;
    color: rgb(31 31 31);
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.instagram-icon:hover i {
    color: #fff;
}

.instagram-slider-item {
    padding: 0 8px;
}

.instagram-slider {
    position: relative;
    margin: 0 -8px;
}

/* **** End Instagram **** */

/* **** Brand **** */
.brand-wrp {
    position: relative;
    width: 100%;
    padding: 60px 0;
    display: none;
}

.brand-box {
    position: relative;
    padding: 0 8px;
}

.brand-box figure {
    display: table;
    margin: 0 auto;
}

.brand-box figure img {
    width: 100%;
    height: 36px;
    object-fit: cover;
}

.brand-slider {
    position: relative;
    margin: 0 -8px;
}

/* **** End Brand **** */

/* **** Scroll Top **** */
#scroll-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    background-color: #1F1F1F;
    display: none;
    border-radius: 60px;
    border: 1px solid #1F1F1F;
    z-index: 99;
}

#scroll-top i {
    font-size: 16px;
    line-height: 1;
    color: #fff;
    position: relative;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}

#scroll-top:hover {
    background-color: #6c000d;
    border-color: #6c000d;
    opacity: 1;
}

/* **** End Scroll Top **** */

/* **** Cart Sidebar **** */
.cart-wrp {
    overflow: hidden;
    display: block !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.8s linear;
    -webkit-transition: all 0.8s linear;
}

.cart-wrp.show {
    opacity: 1;
    visibility: visible;
}

.cart-main {
    position: absolute;
    top: 0;
    right: -100%;
    width: 540px;
    height: calc(100vh - 0px);
    background-color: #fff;
    border-radius: 0px;
    z-index: 175;
    margin: 0;
    overflow: hidden;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.cart-wrp.show .cart-main {
    right: 0;
}

.cart-box {
    width: 100%;
    height: 100%;
    padding: 24px;
    position: relative;
    border-radius: 0;
}

.cart-box .title h2,
.cart-box .title h3,
.cart-box .title p {
    font-size: 22px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
}

.cart-box .title {
    margin: 0 0 5px;
}

.btn-close {
    width: 24px;
    height: 24px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(247 247 247);
    font-size: 14px;
    font-weight: 300;
    line-height: 1;
    color: #1F1F1F;
    position: absolute;
    top: 24px;
    right: 24px;
    padding: 0;
    opacity: 1;
    box-shadow: none;
    outline: 0;
    border: 0;
}

.btn-close:hover {
    background: #1F1F1F;
    color: #fff;
    opacity: 1;
}

.cart-list-item {
    padding: 20px 0;
    border-bottom: 1px solid rgb(233 233 233);
    display: flex;
    align-items: center;
}

.cart-list-item:last-child {
    border-bottom: 0;
}

.cart-list-img {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 12px 0 0;
}

.cart-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-list-data {
    width: 100%;
}

.cart-list-data ul li {
    display: flex;
    align-content: center;
    justify-content: space-between;
    margin: 0 0 12px;
}

.cart-list-data ul li:last-child {
    margin: 0;
}

.cart-list-data ul li h3,
.cart-list-data ul li p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
}

.cart-list-data ul li p {
    font-weight: 400;
}

.cart-list-data ul li h3 span {
    color: rgb(160 160 160);
}

.btn-remove {
    font-size: 12px;
    line-height: 20px;
    font-weight: 600;
    color: rgb(219 68 68);
    text-decoration: underline;
}

.btn-remove:hover {
    color: #1F1F1F;
    text-decoration: underline;
}

.cart-inner-scrollbx {
    position: relative;
    max-height: calc(100% - 200px);
    overflow-x: auto;
}

.cart-footer {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    padding: 24px 24px 44px;
    background: #fff;
    box-shadow: 0px 5px 18px 5px rgba(64, 72, 87, 0.15);
}

.cart-footer .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 15px;
}

.cart-btns {
    display: flex;
    align-items: center;
    margin: 0 -8px 16px;
}

.cart-btns li {
    padding: 0 8px;
    width: 50%;
}

.cart-btns li a {
    font-size: 14px;
    line-height: 1.1;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(31 31 31);
    background-color: #fff;
    border: 1px solid rgb(31 31 31);
    padding: 16px 40px;
    border-radius: 0;
    display: inline-block;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    width: 100%;
    text-align: center;
}

.cart-btns li a.btn,
.cart-btns li a:hover {
    background-color: #74381f;
    color: #fff;
    border: 1px solid #74381f;
}

.cart-btns li a.btn:hover {
    color: rgb(31 31 31);
    background-color: #fff;
    border: 1px solid rgb(31 31 31);
}

.cart-link {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1F1F1F;
    margin: 0 auto;
    display: table;
    position: relative;
}

.cart-link::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #1F1F1F;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.cart-link:hover::before {
    width: 100%;
}

.wishlist-wrp .cart-btns li {
    width: 100%;
}

.wishlist-wrp .cart-list-data ul li {
    display: block;
    margin: 0;
}

.wishlist-wrp .cart-list-data ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.wishlist-wrp .cart-list-data ul li p span {
    color: rgb(160 160 160);
    text-decoration: line-through;
    margin: 0 0 0 8px;
}

.wishlist-wrp .cart-list-data ul li h3 {
    margin: 0 0 8px;
}

/* **** End Cart Sidebar **** */

/* **** Search Modal **** */
.search-modal .modal-dialog {
    max-width: 1075px;
}

.search-modal .modal-content {
    padding: 40px;
    border-radius: 0;
}

.search-modal .from-search .form-control {
    padding: 12px 55px 12px 20px;
}

.search-modal .from-search button {
    font-size: 20px;
}

.search-modal .tags-cloud-box .title-min h2,
.search-modal .viewed-row .title-min h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    color: #881b1b;
    text-transform: capitalize;
    margin: 0 0 18px;
}

#search-results{
    border-radius: 0 !important;
    border-color: rgb(233 233 233) !important;
    border-top: none !important;
}

.search-modal .from-search {
    margin: 0 0 30px;
}

.search-modal .tags-cloud-box {
    margin: 0 0 15px;
}

.search-modal .viewed-row .title-min h2 {
    font-size: 20px;
}

.search-modal .product-box-img {
    height: 300px;
}

.search-modal .product-box {
    margin: 0 0 10px;
}

/* **** End Search Modal **** */

/* **** Newsletter **** */
.newsletter-wrp {
    position: relative;
    width: 100%;
    background: #FFF8F6;
    padding: 40px 0 55px;
}

.newsletter-wrp .comman-title h2 {
    margin: 0 0 13px;
}

.newsletter-wrp .comman-title p {
    font-weight: 400;
    font-size: 14px;
    line-height: 19px;
    color: #65463d;
    margin: 0 auto;
    max-width: 321px;
}

.newsletter-wrp .comman-title {
    margin: 0 0 21px;
}

.newsletter-wrp::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -13px;
    width: 100%;
    height: 33px;
    background: url('../images/footer-shap.svg');
    background-position: center;
    background-size: cover;
}

.newsletter-form .form-group {
    position: relative;
}

.newsletter-form .form-control {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #A04037;
    padding: 12px 58px 12px 16px;
    background: transparent;
    border: 1px solid #A04037;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
}

.newsletter-form .form-control::placeholder {
    color: #A38080;
}

.newsletter-form button {
    position: absolute;
    top: 0;
    right: 0;
    width: 45px;
    height: 100%;
    font-size: 18px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #A04037;
    border: 1px solid #A04037;
    box-shadow: none;
    outline: 0;
}

.newsletter-form button:hover {
    background: #782A22;
    border-color:#782A22;
}

/* **** End Newsletter **** */

/* **** Footer **** */
footer {
    position: relative;
    width: 100%;
    background: #7C3F37;
    padding: 60px 0 0;
}

.footer-left {
    text-align: center;
    width: fit-content;
    position: relative;
}

.footer-left::before {
    content: '';
    position: absolute;
    width: 1px;
    height: 100%;
    top: 0;
    right: -40px;
    border-left: 1px dashed #AD756D;
}

.footer-logo {
    width: 126px;
    margin: 0 auto 27px;
    display: table;
}

.footer-social h3 {
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    color: #FFFFFF;
    margin: 0 0 11px;
}

.footer-social ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-social ul li {
    margin: 0 3.5px;
}

.footer-social ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    line-height: 22px;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: #FFECE6;
    color: #6E4040;
}

.footer-social ul li a:hover {
    color: #fff;
    background: #1F1F1F;
}

.footer-menu h3,
.footer-contact h3 {
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-transform: uppercase;
    color: #FFFFFF;
    margin: 0 0 19px;
}

.footer-menu ul li {
    margin: 0 0 14px;
}

.footer-menu ul li:last-child {
    margin: 0;
}

.footer-menu ul li a {
    font-weight: 300;
    font-size: 13px;
    line-height: 18px;
    color: #FFFFFF;
    position: relative;
}

.footer-menu ul li a:hover {
    opacity: 0.7;
}

.footer-menu {
    margin: 0 0 39px;
}

.footer-contact ul li p,
.footer-contact ul li p a {
    font-weight: 300;
    font-size: 14px;
    line-height: 20px;
    color: #FFFFFF;
    margin: 0;
    position: relative;
}

.footer-contact ul li {
    margin: 0 0 22px;
    display: flex;
    align-items: center;
}

.footer-contact ul li:last-child {
    margin: 0;
}

.footer-contact ul li i {
    width: 25px;
    font-size: 16px;
    color: #fff;
    margin: 00 0;
}

.footer-shap {
    position: relative;
    width: 100%;
    height: 62px;
    background: url('../images/footer-shap2.svg');
    background-size: auto;
    margin-top: 60px;
}

.copyright {
    position: relative;
    width: 100%;
    padding: 15px 0;
    background: #57302B;
}

.copyright-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.copyright-inner p {
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #FFF8F6;
    margin: 0;
}

.payment-row {
    display: flex;
    align-items: center;
}

.payment-row ul {
    display: flex;
    align-items: center;
    margin: 0 0 0 17px;
}

.payment-row ul li {
    margin: 0 10px 0 0;
    width: 39px;
    height: 24px;
}

.payment-row ul li:last-child {
    margin: 0;
}

.payment-row ul li img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* **** End Footer **** */

/* **** Breadcrumb **** */
.breadcrumb {
    position: relative;
    width: 100%;
    padding: 15px 0;
    margin: 0;
}

.breadcrumb ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.breadcrumb li {
    margin: 0 15px 0 0;
    position: relative;
    padding: 0 25px 0 0;
}

.breadcrumb li:last-child {
    margin: 0;
    padding: 0;
}

.breadcrumb li::before {
    content: "\f105";
    position: absolute;
    top: 50%;
    right: 0;
    font-family: "Font Awesome 5 Pro";
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    width: 6px;
    height: 100%;
}

.breadcrumb li:last-child::before {
    display: none;
}

.breadcrumb li,
.breadcrumb li a {
    font-size: 13px;
    line-height: 22px;
    font-weight: 300;
    color: #881b1b;
}

.breadcrumb li.active,
.breadcrumb li.active a {
    color: #c5a9a9;
    font-weight: 400;
}

.sticky-breadcrumb-inner {
    display: flex;
    align-items: center;
}

.sticky-breadcrumb-inner .header-left,
.sticky-breadcrumb-inner .header-right {
    display: none;
}

.sticky-breadcrumb.active .sticky-breadcrumb-inner .header-left,
.sticky-breadcrumb.active .sticky-breadcrumb-inner .header-right {
    display: block;
}

.sticky-breadcrumb {
    position: relative;
    width: 100%;
    padding: 15px 0;
}

.sticky-breadcrumb .breadcrumb {
    padding: 0;
}

.sticky-breadcrumb.sticky-breadcrumb.active .breadcrumb {
    padding: 0 0 0 80px;
}

.sticky-breadcrumb.active {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    z-index: 99;
    background: #fff;
    -webkit-box-shadow: 0px 0px 5px 0px rgba(167, 53, 53, 0.2);
    -moz-box-shadow: 0px 0px 5px 0px rgba(167, 53, 53, 0.2);
    box-shadow: 0px 0px 5px 0px rgba(167, 53, 53, 0.2);
    animation: slideDown 0.35s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

@-webkit-keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

/* **** End Breadcrumb **** */

/* **** Stores Page **** */
.stores-wrp {
    position: relative;
    width: 100%;
    padding: 60px 0 80px;
}

.stores-wrp .comman-title {
    text-align: left;
}

.stores-row {
    display: flex;
    margin: 0 0 80px;
}

.stores-row:last-child {
    margin: 0;
}

.stores-img {
    width: 50%;
    height: 100%;
}

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

.stores-data {
    width: 50%;
    padding: 56px 80px 36px 100px;
    background: #faf8f8;
}

.stores-data .title h3 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 40px;
    color: #5e3939;
}

.stores-box h5 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 8px;
    color: #5e3939;
}

.stores-box p,
.stores-box p a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #a76d6d;
    margin: 0;
}

.stores-box p a:hover,
.stores-box p strong {
    color: #5e3939;
}

.stores-box {
    margin: 0 0 20px;
}

.social-links {
    display: flex;
    align-items: center;
}

.social-links li {
    margin: 0 10px 0 0;
}

.social-links li:last-child {
    margin: 0;
}

.social-links li a {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 40px;
    color: #5e3939;
    font-size: 16px;
}

.social-links li a:hover {
    background: #5e3939;
    color: #fff;
}

/* **** End Stores Page **** */

/* **** Contact Page **** */
.contact-wrp {
    position: relative;
    width: 100%;
    padding: 60px 0 80px;
}

.contact-form {
    padding-right: 80px;
    border-right: 1px solid #d88383;
}

.contact-form .comman-title,
.contact-detail .comman-title {
    text-align: left;
    margin: 0 0 24px;
}

.contact-form .comman-title h1,
.contact-detail .comman-title h2 {
    margin: 0 0 35px;
    text-transform: unset;
    color: #904343;
}

.contact-form .comman-title p {
    margin: 0;
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: #65463d;
}

.contact-form .form-control {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #881b1b;
    padding: 10px 16px;
    border: 1px solid #9E4036;
    border-radius: 0;
    box-shadow: none;
    outline: 0;
    resize: none;
}

.contact-form .form-control::placeholder {
    color: #dfb1b1;
}

.contact-form .form-group {
    margin: 0 0 15px;
}

.contact-form .btn-main {
    border: 0;
    background: #9E4036;
    color: #fff;
    border-radius: 0;
}

.contact-form .btn-main:hover {
    background: #782A22;
}

.contact-detail {
    padding-left: 60px;
}

.contact-detail-box h3 {
    font-size: 18px;
    font-weight: 700;
    color: #881b1b;
    margin: 0 0 10px;
}

.contact-detail-box h3 i {
    width: 25px;
    font-size: 20px;
}

.contact-detail-box p,
.contact-detail-box p a {
    font-size: 16px;
    font-weight: 400;
    color: #b28080;
}

.contact-detail-box p {
    margin: 0 0 10px;
}

.contact-detail-box p a:hover,
.contact-detail-box p a:hover strong {
    color: #881b1b;
}

.contact-detail-box p a strong {
    color: #8d5555;
}

.contact-detail-box {
    margin: 0 0 35px;
}

.contact-detail-box:last-child {
    margin: 0;
}

.corporat-wrp {
    padding: 30px 0 80px;
}

.corporat-row {
    background: #F7EDEC;
    padding: 50px;
}

.corporat-wrp .contact-detail-box h4 {
    margin: 0;
    font-size: 18px;
    line-height: 26px;
    color: #881b1b;
    font-weight: normal;
}

.corporat-wrp .contact-detail {
    padding: 0 60px 0 0;
}

.corporat-wrp .contact-form {
    padding: 0 0 0 80px;
    border: none;
    border-left: 1px solid #d88383;
}

.corporat-wrp .contact-form p {
    color: #881b1b;
}

/* **** End Contact Page **** */

/* **** FAQ Page **** */
.faq-wrp {
    position: relative;
    width: 100%;
    padding: 60px 0 80px;
}

.faq-wrp .nav-tabs {
    flex-direction: column;
    border: 0;
    box-shadow: none;
}

.faq-wrp .nav-tabs li {
    margin: 0 0 20px;
}

.faq-wrp .nav-tabs li:last-child {
    margin: 0;
}

.faq-wrp .nav-tabs li button {
    padding: 0;
    box-shadow: none;
    background: transparent;
    border: 0;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    color: rgb(160 160 160);
    position: relative;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.faq-wrp .nav-tabs li button.active,
.faq-wrp .nav-tabs li button:hover {
    color: #1F1F1F;
}

.faq-wrp .nav-tabs li button::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: #1F1F1F;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.faq-wrp .nav-tabs li button.active::before,
.faq-wrp .nav-tabs li button:hover::before {
    width: 100%;
}

.faq-wrp .accordion-item {
    padding: 20px 28px;
    margin: 0 0 20px;
    border: 1px solid rgb(233 233 233) !important;
    border-radius: 20px !important;
}

.faq-wrp .accordion-item:last-child {
    margin: 0;
}

.faq-wrp .accordion-item .accordion-button {
    padding: 0;
    background: transparent;
    box-shadow: none;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: "Open Sans", sans-serif;
    color: #1F1F1F;
}

.faq-wrp .accordion-body {
    padding: 16px 0 0;
}
.faq-wrp .accordion-body p{
    margin: 0;
    font-size: 16px;
    line-height: 24px;
    color: #333;
    font-weight: normal;
}
.faq-wrp .accordion-button::after {
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
}

.faq-wrp .accordion-button:not(.collapsed)::after {
    transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
}

.faq-wrp .col-lg-4.col-md-4.col-sm-12 {
    width: 25%;
}

.faq-wrp .col-lg-8.col-md-8.col-sm-12 {
    width: 75%;
}

/* **** End FAQ Page **** */

/* **** Blog Page **** */
.blog-wrp {
    position: relative;
    width: 100%;
    padding: 60px 0 80px;
}

.blog-box {
    margin: 0 0 40px;
}

.blog-box:last-child {
    margin: 0;
}

.blog-box-img {
    width: 100%;
    overflow: hidden;
}

.blog-box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.blog-box:hover .blog-box-img img {
    transform: scale(1.07);
    -webkit-transform: scale(1.07);
}

.blog-tag {
    padding: 4px 15px;
    background: #fec1a4;
    border-radius: 50px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    display: table;
    margin: 0 0 12px;
}

.blog-box-data h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 8px;
    color: #1F1F1F;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.blog-box:hover .blog-box-data h3 {
    text-decoration: underline;
}

.blog-box-data h6,
.blog-author h6 {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: rgb(105 108 112);
    margin: 0 0 16px;
    display: flex;
    align-items: center;
}

.blog-box-data h6 span,
.blog-author h6 span {
    width: 20px;
    height: 1px;
    background: rgb(31 31 31);
    margin: 0 8px;
}

.blog-box-data p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    color: rgb(105 108 112);
    margin: 0 0 16px;
}

.btn-link {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    text-decoration: underline;
    color: #1F1F1F;
}

.btn-link:hover {
    text-decoration: underline;
    color: #6c000d;
}

.pagination-row {
    margin: 40px 0 0;
}

.pagination-row ul {
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-row ul li {
    margin: 0 8px;
}

.pagination-row ul li a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    border: 1px solid #E9E9E9;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #9E4036;
}

.pagination-row ul li a:hover,
.pagination-row ul li a.active {
    background: #9E4036;
    color: #fff;
}

.blog-wrp-right {
    position: relative;
    padding-left: 52px;
}

.from-search {
    position: relative;
    margin: 0 0 40px;
}

.from-search .form-control {
    padding: 10px 50px 10px 16px;
    border: 1px solid rgb(233 233 233);
    box-shadow: none;
    outline: 0;
    border-radius: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
}

.from-search .form-group {
    position: relative;
}

.from-search button {
    box-shadow: none;
    outline: 0;
    border: 0;
    padding: 0;
    background: none;
    font-size: 18px;
    color: rgb(105 108 112);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 16px;
}

.recent-posts,
.categories-box {
    padding: 0 0 34px;
    border-bottom: 1px solid rgb(233 233 233);
    margin: 0 0 40px;
}

.blog-right-title h3 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 24px;
}

.recent-posts-box {
    display: flex;
    position: relative;
    margin: 0 0 20px;
}

.recent-posts-box:last-child {
    margin: 0;
}

.recent-posts-box figure {
    width: 80px;
    min-width: 80px;
    height: 80px;
    min-height: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 16px 0 0;
}

.recent-posts-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-posts-data .blog-tag {
    font-size: 12px;
    line-height: 16px;
    padding: 2px 8px;
    border-radius: 30px;
    background: #fec1a4;
    text-transform: uppercase;
    margin: 0 0 4px;
}

.recent-posts-data a h4 {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    color: #1F1F1F;
    margin: 0;
}

.categories-box ul li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 12px;
}

.categories-box ul li:last-child {
    margin: 0;
}

.categories-box ul li,
.categories-box ul li a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: rgb(160 160 160);
    position: relative;
}

.categories-box ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: #1F1F1F;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.categories-box ul li a:hover {
    color: #1F1F1F;
}

.categories-box ul li a:hover::before {
    width: 100%;
}

.tags-cloud-box {
    position: relative;
    margin: 0 0 40px;
}

.tags-cloud-box ul {
    display: flex;
    flex-wrap: wrap;
}

.tags-cloud-box ul li a {
    padding: 5px 15px;
    border: 1px solid rgb(233 233 233);
    background: #fff;
    border-radius: 0;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(105 108 112);
    display: table;
}

.tags-cloud-box ul li {
    margin: 0 10px 12px 0;
}

.tags-cloud-box ul li a:hover {
    background: #702e23;
    border-color: #702e23;
    color: #fff;
}

/* **** End Blog Page **** */

/* **** Blog Detail Page **** */
.blog-detail-pg {
    position: relative;
    width: 100%;
    padding: 60px 0 80px;
}

.blog-detail-data .comman-title {
    text-align: left;
    margin: 0 0 16px;
}

.blog-detail-data .comman-title h1 {
    font-family: "Open Sans", sans-serif;
    color: #1F1F1F;
}

.blog-author figure {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    overflow: hidden;
    margin: 0 16px 0 0;
}

.blog-author img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-author {
    display: flex;
    align-content: center;
    margin: 0 0 30px;
}

.blog-author h6 {
    margin: 0;
}

.blog-detail-img {
    margin: 0 0 30px;
}

.blog-detail-img-row {
    margin: 30px 0 0;
}

.blog-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-detail-data p {
    font-size: 18px;
    line-height: 28px;
    font-weight: 400;
    margin: 0 0 12px;
}

.blog-detail-data h3 {
    font-size: 30px;
    line-height: 42px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 16px;
}

.blog-detail-bottom {
    margin: 32px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.blog-detail-bottom p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    margin: 0 15px 0 0;
}

.blog-detail-tags,
.blog-detail-share,
.blog-detail-tags ul,
.blog-detail-share ul {
    display: flex;
    align-items: center;
}

.blog-detail-bottom li {
    margin: 0 12px 0 0;
}

.blog-detail-bottom li:last-child {
    margin: 0;
}

.blog-detail-tags ul li a {
    padding: 6px 16px;
    background: rgb(247 247 247);
    border-radius: 30px;
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #1F1F1F;
}

.blog-detail-tags ul li a:hover,
.blog-detail-share ul li a:hover {
    background: #1F1F1F;
    color: #fff;
}

.blog-detail-share ul li a {
    width: 40px;
    height: 40px;
    border-radius: 40px;
    background: rgb(247 247 247);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #1F1F1F;
}

.page-nav {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    border-top: 1px solid rgb(233 233 233);
    border-bottom: 1px solid rgb(233 233 233);
}

.page-nav-box a {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    color: #1F1F1F;
}

.page-nav-box a span {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: rgb(160 160 160);
    margin: 0 0 8px;
    display: inline-block;
}

.page-nav-box:last-child {
    text-align: right;
}

.blog-detail-data {
    position: relative;
    margin: 0 0 80px;
}

.news-insight .blog-box-img {
    margin: 0 0 28px;
}

.news-insight .blog-box-data h6 {
    margin: 0;
}

/* **** End Blog Detail Page **** */

/* **** Checkout Page **** */
.checkout-pg {
    position: relative;
    width: 100%;
    padding: 60px 0 80px;
}

.login-accordion h2 {
    font-family: "Open Sans", sans-serif;
}

.login-accordion .accordion-button {
    padding: 12px 16px;
    background: rgb(247 247 247);
    border-radius: 8px !important;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #1F1F1F;
    border: 0 !important;
    box-shadow: none !important;
    outline: 0 !important;
}

.login-accordion .accordion-item {
    box-shadow: none !important;
    border: 0 !important;
    outline: 0 !important;
}

.login-accordion .accordion-button::after {
    background-size: 15px;
    background-position: center;
}

.login-accordion .accordion-button a {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    color: #1F1F1F;
    margin: 0 0 0 16px;
}

.login-accordion .accordion-button a:hover {
    text-decoration: underline;
}

.login-accordion .accordion-body {
    padding: 20px;
    border: 1px solid rgb(233 233 233);
    border-radius: 0;
    margin: 16px 0 0;
}

.checkout-pg .form-control,
.address-details .form-control,
.setting-box .form-control {
    padding: 12px 16px;
    border: 1px solid rgb(233 233 233);
    border-radius: 0;
    font-size: 16px;
    line-height: 26px;
    height: auto;
    font-weight: 400;
    box-shadow: none;
    resize: none;
    outline: none;
}

.checkout-pg .form-control::placeholder,
.address-details .form-control::placeholder,
.setting-box .form-control::placeholder {
    color: #1F1F1F;
}

.checkout-pg .form-control:focus,
.address-details .form-control:focus,
.setting-box .form-control:focus {
    border-color: #1F1F1F;
}

.login-accordion .accordion-body form .form-group {
    margin: 0 0 12px;
}

.login-accordion .accordion-body form .btn-main {
    border: 0;
    background: #722f2f;
    color: #fff;
}

.login-accordion .accordion-body form .btn-main:hover {
    background: #1F1F1F;
}

.login-accordion .accordion-body form .row {
    margin: 0 -10px;
}

.login-accordion .accordion-body form .col-lg-6 {
    padding: 0 10px;
}

.login-accordion {
    margin: 0 0 20px;
}

.checkout-pg .title h1,
.checkout-pg .title h2 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    color: #1F1F1F;
    margin: 0 0 20px;
}

.information-wrp .form-group,
.address-details .form-group,
.setting-box .form-group {
    margin: 0 0 20px;
}

.information-wrp .row,
.address-details .row,
.setting-box .row {
    margin: 0 -8px;
}

.information-wrp .col-md-6,
.information-wrp .col-md-12,
.address-details .col-md-6,
.address-details .col-md-12,
.setting-box .col-md-6,
.setting-box .col-md-12 {
    padding: 0 8px;
}

.information-wrp {
    margin: 0 0 20px;
}

.order-wrp ul li {
    position: relative;
    padding: 20px 0;
    border-bottom: 1px solid rgb(233 233 233);
}

.order-wrp ul li:last-child {
    border: 0;
}

.order-box {
    display: flex;
    align-items: center;
}

.order-box figure {
    width: 100px;
    min-width: 100px;
    height: 100px;
    border-radius: 8px;
    overflow: hidden;
    margin: 0 24px 0 0;
}

.order-box figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-data h3,
.order-data p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

.total-rw .order-data h3,
.total-rw .order-data p {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
}

.order-data h3 span {
    color: rgb(105 108 112);
    margin: 8px 0 0;
    display: table;
}

.order-data {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.custome-rdbx [type="radio"]:checked,
.custome-rdbx [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.custome-rdbx [type="radio"]:checked+label,
.custome-rdbx [type="radio"]:not(:checked)+label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    line-height: 20px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    color: #101010;
}

.custome-rdbx [type="radio"]:checked+label:before,
.custome-rdbx [type="radio"]:not(:checked)+label:before {
    content: '';
    position: absolute;
    left: 0;
    top: 3px;
    width: 14px;
    height: 14px;
    border: 1px solid #333;
    border-radius: 100%;
    background: #f5f5f5;
}

.custome-rdbx [type="radio"]:checked+label:after,
.custome-rdbx [type="radio"]:not(:checked)+label:after {
    content: '';
    width: 8px;
    height: 8px;
    background: #6c000d;
    position: absolute;
    top: 6px;
    left: 3px;
    border-radius: 100%;
    -webkit-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

.custome-rdbx [type="radio"]:checked+label:before,
.custome-rdbx [type="radio"]:not(:checked)+label:before {
    border: 1px solid #6c000d;
}

.custome-rdbx [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.custome-rdbx [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.box-pay {
    width: 100%;
    margin: 0 0 20px;
    background: #f7f7f7;
    padding: 14px 20px;
    border-radius: 8px;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.inner-cardfrm .form-group {
    margin: 15px 0 0;
}

.inner-cardfrm {
    opacity: 0;
    visibility: hidden;
    max-height: 0;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.custome-rdbx [type="radio"]:checked~.inner-cardfrm {
    opacity: 1;
    visibility: visible;
    max-height: 100%;
}

.inner-cardfrm .form-control {
    background-color: transparent;
}

.chackout-sidebar .cart-cheackbx {
    padding: 0 0 0 30px;
}

.chackout-sidebar .cart-cheackbx h3 {
    border-top: 1px solid #e0e0e0;
    padding: 15px 0 0;
}

.inner-cardfrm select.form-control {
    -webkit-appearance: none;
    background-image: url(../images/down-ic.svg);
    background-repeat: no-repeat;
    background-size: 12px;
    background-position: center right 15px;
}

.paycheckbx .btn-main {
    border: 0;
    background: #9E4036;
    color: #fff;
    width: 100%;
    text-align: center;
    margin: 30px 0 0;
}

.paycheckbx .btn-main:hover {
    background: #782A22;
}

/* **** End Checkout Page **** */

/* **** Products Listing Page **** */
.product-list-wrp {
    padding: 0 0 50px;
    position: relative;
}

.container-big {
    max-width: 95% !important;
}

.product-sub-category-row ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.product-sub-category-row ul li {
    margin-right: 35px;
}

.product-sub-category-row ul li:last-child {
    margin: 0;
}

.product-sub-category-row ul li a .sub-product-inbx figure {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    object-fit: cover;
    margin: 0 auto 10px;
}

.product-sub-category-row ul li a .sub-product-inbx figure img {
    width: 110px;
    height: 110px;
    border-radius: 100%;
    object-fit: cover;
}

.product-sub-category-row ul li a .sub-product-inbx p {
    text-align: center;
    margin: 0;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    color: #a15858;
}

.product-sub-category-row ul li a:hover {
    opacity: 0.70;
}

.filter-row {
    margin: 0 0 30px;
}

.filter-row .row {
    align-items: center;
}

.filter-lst-rw {
    display: flex;
    align-items: center;
}

.filter-lst-rw .btn-filter {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 500;
    color: #292929;
    margin: 0 30px 0 0;
}

.filter-lst-rw .btn-filter i {
    margin-right: 5px;
    color: #6c000d;
}

.filter-lst-rw .btn-filter:hover {
    color: #6c000d;
}

.filter-lst-rw ul.view-row {
    display: flex;
    align-items: center;
}

.filter-lst-rw ul.view-row li {
    margin-right: 15px;
}

.filter-lst-rw ul.view-row li:last-child {
    margin: 0;
}

.filter-lst-rw ul.view-row li a {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.70;
}

.filter-lst-rw ul.view-row li a span {
    width: 4px;
    height: 22px;
    border-radius: 0;
    background: #eccfcd;
    margin-right: 3px;
}

.filter-lst-rw ul.view-row li a span:last-child {
    margin: 0;
}

.filter-lst-rw ul.view-row li.active a {
    opacity: 1;
}

.filter-lst-rw ul.view-row li.active a span {
    background: #c06159;
}

.sort-rw {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.sort-rw label {
    margin: 0 15px 0 0;
    font-size: 14px;
    font-weight: 400;
    color: #000;
}

.sort-rw .form-control {
    padding: 5px 45px 5px 15px;
    width: fit-content;
    display: table;
    border: 1px solid #e5beb5;
    border-radius: 0;
    height: auto;
    box-shadow: none;
    font-size: 14px;
    font-weight: normal;
    color: #000;
    -webkit-appearance: none;
    background-image: url(../images/down-ic.svg);
    background-repeat: no-repeat;
    background-size: 10px;
    background-position: center right 15px;
}

.row.pro-rw.layout-1 .col-lg-3 {
    width: 33.33%;
}

/*.row.pro-rw.layout-1 .col-lg-3 .product-box-img {
    height: 500px;
}*/

.pager-row ul {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 50px auto 0;
}

.pager-row ul li {
    margin-right: 10px;
}

.pager-row ul li:last-child {
    margin: 0;
}

.pager-row ul li a {
    width: 45px;
    height: 45px;
    border: 1px solid #e9e9e9;
    line-height: 45px;
    border-radius: 4px;
    color: #9E4036;
    display: block;
    font-weight: 500;
    text-align: center;
    font-size: 16px;
}

.pager-row ul li.active a,
.pager-row ul li a:hover {
    background: #9E4036;
    color: #fff;
    border-color: #9E4036;
}

.search-result-block {
    max-width: 600px;
    margin: 0 auto 50px;
}

.search-result-block h1 {
    font-size: 32px;
    font-weight: bold;
    color: #000;
    line-height: 40px;
    text-align: center;
    font-family: 'Open Sans';
    margin: 0 auto 30px;
}

.search-result-block .form-group {
    margin: 0;
    position: relative;
}

.search-result-block .form-group .form-control {
    padding: 13px 140px 13px 20px;
    background: #fff;
    border: 2px solid #e9e9e9;
    border-radius: 10px;
    box-shadow: none;
    height: auto;
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.search-result-block .form-group .form-control:focus {
    border-color: #000;
}

.search-result-block .form-group button {
    padding: 9px 35px;
    background: #9E4036;
    border: none;
    border-radius: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.search-result-block .form-group button:hover {
    background: #782A22;
    color: #fff;
}

/* **** End Products Listing Page **** */

/* **** Product Details Page **** */
.product-details-wrp {
    padding: 0 0 50px;
}
.product-details-imgs {
    position: sticky;
    top: 100px;
    left: 0;
    right: 0;
}
.product-details-imgs .row{
    margin: 0 -4px;
}
.product-details-imgs .col-md-6{
    padding: 0 4px;
}
.product-img-bx {
    margin: 0 0 8px;
}

.product-img-bx img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0px;
}

.product-details-data {
    position: relative;
    padding: 0 0 0 30px;
}

.product-details-data h6 {
    display: block;
    font-size: 14px;
    font-weight: 400;
    color: #74381f;
    margin: 0 0 3px;
    padding: 0 60px 0 0;
}

.product-details-data h1 {
    font-size: 32px;
    font-weight: 500;
    color: #74381f;
    padding: 0 60px 0 0;
    line-height: 40px;
    margin: 0 0 10px;
}

.product-details-data .btn-wish {
    width: 20px;
    height: 20px;
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 5;
}

.product-details-data .btn-wish::before {
    content: '\f004';
    font-family: "Font Awesome 5 Pro";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    font-size: 18px;
    line-height: 1.1;
    color: #B95350;
}

.product-details-data .btn-wish:hover::before,
.product-details-data .btn-wish.active::before {
    color: #6c000d;
    font-weight: 900;
}

.product-details-data .rating {
    margin: 0 0 25px;
}

.product-details-data .rating i {
    color: rgb(236 176 24);
    font-size: 12px;
    margin: 0 3px 0 0;
}

.product-details-data .rating span {
    font-size: 14px;
    color: #000;
}

.product-details-data .price {
    display: flex;
    align-items: center;
    margin: 0 0 6px;
}

.product-details-data .price p {
    font-weight: 600;
    font-size: 20px;
    line-height: 25px;
    color: #862600;
    margin: 0;
    display: flex;
    align-items: center;
}

.product-details-data .price p span {
    color: #D09E9E;
    display: inline-block;
    position: relative;
    margin: 0 0 0 30px;
    font-size: 14px;
    font-weight: 600;
}

.product-details-data .price p span::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: #D09E9E;
    z-index: 1;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
}

.product-details-data .price p span::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    left: -15px;
    width: 2px;
    height: 15px;
    background: #f7ebe7;
}

.product-details-data .sale {
    font-weight: 600;
    font-size: 14px;
    line-height: 1;
    color: #74381f;
    background: #ffebe7;
    border-radius: 12px;
    display: table;
    padding: 4px 8px;
    margin: 0 0 0 20px;
}

.product-small-dt {
    margin: 18px 0 40px;
}

.product-small-dt p {
    margin: 0;
    font-size: 15px;
    font-weight: normal;
    color: #65463d;
    line-height: 22px;
}

.colors-box {
    margin: 0 0 40px;
}

.quantity-row h5,
.colors-box h5,
.specifications-list h5 {
    font-size: 18px;
    font-weight: 700;
    color: #74381f;
    margin: 0 0 20px;
}

.colors-box ul {
    display: flex;
    align-items: center;
}

.colors-box ul li {
    margin-right: 10px;
}

.colors-box ul li:last-child {
    margin: 0;
}

.color-bx [type="radio"]:checked,
.color-bx [type="radio"]:not(:checked) {
    position: absolute;
    left: -9999px;
}

.color-bx [type="radio"]:checked+label,
.color-bx [type="radio"]:not(:checked)+label {
    position: relative;
    padding: 0;
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    color: #666;
}

.color-bx [type="radio"]:checked+label figure img,
.color-bx [type="radio"]:not(:checked)+label figure img {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    object-fit: cover;
    border: 2px solid transparent;
}

.color-bx [type="radio"]:not(:checked)+label:after {
    opacity: 0;
    -webkit-transform: scale(0);
    transform: scale(0);
}

.color-bx [type="radio"]:checked+label:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}

.color-bx [type="radio"]:checked+label figure img {
    border: 2px solid #6c000d;
}

.color-bx {
    position: relative;
}

.color-bx span {
    padding: 2px 8px;
    background: #000;
    border-radius: 6px;
    font-size: 10px;
    color: #fff;
    position: absolute;
    top: -20px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: table;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}

.color-bx span:after {
    position: absolute;
    content: '';
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #000;
    bottom: -5px;
    left: 0;
    right: 0;
    margin: 0 auto;
    display: table;
}

.color-bx [type="radio"]:checked+label span {
    opacity: 1;
    visibility: visible;
}

.quantity-rw {
    display: flex;
    flex-flow: column;
    margin: 0 -10px;
}

.quty-bx {
    padding: 0 10px;
    width: 150px;
    margin: 0 0 20px;
}

.quty-cart {
    width: 100%;
    padding: 0 10px;
}

.qty-input {
    color: #000;
    background: #fff;
    display: flex;
    align-items: center;
    overflow: hidden;
    border: 1px solid rgb(233 233 233);
    border-radius: 0px;
    max-width: 200px;
}
.qty-input .product-qty,
.qty-input .qty-count {
    background: transparent;
    color: inherit;
    font-weight: bold;
    font-size: inherit;
    border: none;
    display: inline-block;
    min-width: 0;
    height: 35px;
    line-height: 1;
}
.qty-input .product-qty{
    border-left: 1px solid #e0e0e0;
    border-right: 1px solid #e0e0e0;
}
.qty-input .product-qty:focus,
.qty-input .qty-count:focus {
    outline: none;
}

.qty-input .product-qty {
    width: 40px;
    min-width: 0;
    display: inline-block;
    text-align: center;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}

.qty-input .product-qty::-webkit-outer-spin-button,
.qty-input .product-qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

.qty-input .qty-count {
    padding: 0;
    cursor: pointer;
    width: 35px;
    height: 35px;
    font-size: 1.25em;
    text-indent: -100px;
    overflow: hidden;
    position: relative;
}

.qty-input .qty-count:before,
.qty-input .qty-count:after {
    content: "";
    height: 2px;
    width: 10px;
    position: absolute;
    display: block;
    background: #000;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

.qty-input .qty-count--add:after {
    transform: rotate(90deg);
}

.qty-input .qty-count:disabled {
    color: #ccc;
    background: #f2f2f2;
    cursor: not-allowed;
    border-color: transparent;
}

.qty-input .qty-count:disabled:before,
.qty-input .qty-count:disabled:after {
    background: #ccc;
}

.btn-cart {
    padding: 11px 15px;
    border: 1px solid #1F1F1F;
    border-radius: 0;
    display: block;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1F1F1F;
    width: 100%;
}

.btn-cart:hover {
    background: #6c000d;
    border: 1px solid #6c000d;
    color: #fff;
}

.buy-now-btn {
    display: block;
    width: 100%;
    background: #782A22;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 13px 15px;
    text-align: center;
    border-radius: 0;
    margin: 15px auto 40px;
}

.buy-now-btn:hover {
    background: #4a1d18;
}

.product-small-infobox {
    padding: 0 0 25px;
    margin: 0 0 25px;
    border-bottom: 1px dashed #f0c4b5;
}
.product-small-infobox:last-child{
    border: none;
}
.product-small-infobox ul {
    display: flex;
    flex-wrap: wrap;
}
.product-small-infobox ul li{
    margin: 0 0 25px;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    display: flex;
}
.product-small-infobox ul li:last-child{
    margin: 0;
}
.product-small-infobox ul li figure{
    min-width: 55px;
}
.product-small-infobox ul li figure img{
    height: 40px;
    margin: 5px 0 0;
}

.product-small-infobox p{
    font-size: 16px;
    font-weight: 400;
    color: #532925;
    margin: 0;
}
.product-small-infobox p strong{
    display: block;
    font-weight: bold;
    color: #532925;
}
.product-small-infobox p a{
    font-weight: 600;
    color: #532925;
    text-decoration: underline;
}

.product-details-data .payment-row {
    padding: 25px 30px 30px;
    border: 1px solid #e0e0e0;
    margin: 50px auto 30px;
    display: table;
    position: relative;
    border-radius: 10px;
}

.product-details-data .payment-row p {
    margin: 0 auto;
    padding: 0 15px;
    background: #fff;
    font-weight: 600;
    font-size: 18px;
    color: #000;
    position: absolute;
    top: -15px;
    left: 0;
    right: 0;
    display: table;
    z-index: 1;
}

.product-details-data .payment-row ul {
    margin: 0 auto;
}

.product-details-data .payment-row ul li {
    width: 65px;
    height: 30px;
}

.delivery-row h4 {
    font-size: 22px;
    font-weight: 600;
    color: #881b1b;
    margin: 0 0 15px;
}

.del-block {
    display: flex;
    align-items: center;
    margin: 0 0 10px;
}

.del-ic {
    min-width: 35px;
    margin-right:5px;
}

.del-ic i {
    font-size: 24px;
    color: #662B1E;
}

.del-dt h5 {
    font-size: 16px;
    font-weight: 600;
    color: #1f1f1f;
    line-height: 24px;
    margin: 0 0;
    text-transform: capitalize;
}

.del-dt p {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    color: #696c70;
    line-height: 22px;
}

.product-more-wrp {
    padding: 0;
}

.product-more-wrp .nav-tabs {
    border: none;
    justify-content: center;
    align-items: center;
    display: flex;
    margin: 0 auto 30px;
}

.product-more-wrp .nav-tabs li {
    margin-right: 60px;
}

.product-more-wrp .nav-tabs li:last-child {
    margin: 0;
}

.product-more-wrp .nav-tabs li a {
    font-size: 24px;
    font-weight: 600;
    color: #a0a0a0;
    display: block;
    position: relative;
    padding: 0;
    border: none;
    border-radius: 0;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}

.product-more-wrp .nav-tabs li a:after {
    position: absolute;
    content: '';
    width: 0%;
    height: 1px;
    bottom: 0;
    left: 0;
    background: #000;
    transition: .4s linear;
    -webkit-transition: .4s linear;
}

.product-more-wrp .nav-tabs .nav-item.show .nav-link,
.product-more-wrp .nav-tabs .nav-link.active {
    color: #000;
}

.product-more-wrp .nav-tabs .nav-item.show .nav-link:after,
.product-more-wrp .nav-tabs .nav-link.active:after {
    width: 100%;
}

.description-dt {
    margin: 0 0 35px;
}

.description-dt h3 {
    font-size: 20px;
    font-weight: 600;
    color: #000;
    line-height: 30px;
    margin: 0 0 15px;
}

.description-dt p {
    margin: 0;
    font-size: 14px;
    line-height: 24px;
    font-weight: normal;
    color: #696c70;
}

.description-dt ul {
    padding: 0 0 0 15px;
}

.description-dt ul li {
    position: relative;
    padding: 0 0 0 15px;
    font-weight: normal;
    font-size: 14px;
    color: #696c70;
    line-height: 24px;
}

.description-dt ul li:after {
    position: absolute;
    content: '';
    width: 3px;
    height: 3px;
    border-radius: 100%;
    background: #696c70;
    top: 12px;
    left: 0;
}

.deli-inner-rw{
    display: flex;
    align-items: center;
    margin: 0 0 15px;
}
.deli-inner-dt figure {
    margin: 0 15px 0 0;
}

.deli-inner-dt figure img {
    height:50px;
}

.deli-inner-dt h3 {
    font-size: 20px;
    font-weight: 600;
    color: #5c302c;
    text-transform: capitalize;
    margin: 0;
    font-family: "Playfair Display", serif;
}

.deli-inner-dt p {
    margin: 0;
    font-size: 15px;
    line-height: 25px;
    font-weight: normal;
    color: #5d2925;
}

.specifications-block {
    max-width: 650px;
    margin: 0 auto;
}

.specifications-block table {
    margin: 0;
}

.specifications-block table tbody tr td {
    padding: 15px 25px;
    font-size: 16px;
    font-weight: normal;
    color: #000;
    border: none;
}

.specifications-block table tbody tr td:first-child {
    font-weight: 600;
}

.specifications-block table tbody tr:nth-child(odd) td {
    background: #f7f7f7;
}

.specifications-block table tbody tr td .rating {
    display: flex;
    align-items: center;
}

.specifications-block table tbody tr td .rating i {
    color: rgb(236 176 24);
    font-size: 14px;
    margin: 0 5px 0 0;
}

.specifications-block table tbody tr td .rating span {
    font-size: 12px;
}

.specifications-block table tbody tr td svg {
    margin-right: 5px;
}

.similer-wrp {
    padding: 80px 0;
}

.similer-wrp2 {
    padding: 0 0 80px;
}

.similer-title h2 {
    font-size: 36px;
    font-weight: 500;
    color: #000;
    text-align: center;
    margin: 0 auto 40px;
}

.similer-slider .slick-slide,
.similer-slider2 .slick-slide {
    margin: 0 15px;
}

.similer-slider .slick-list,
.similer-slider2 .slick-list {
    margin: 0 -15px;
}

.similer-slider .slick-prev,
.similer-slider .slick-next,
.similer-slider2 .slick-prev,
.similer-slider2 .slick-next {
    position: absolute;
    right: -20px;
    left: auto;
    border: none;
    color: transparent;
    background-color: transparent;
    width: auto;
    height: auto;
    font-size: 0;
    color: transparent;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -webkit-transition: .4s linear;
    -moz-transition: .4s linear;
    -ms-transition: .4s linear;
    transition: .4s linear;
}

.similer-slider .slick-prev:before,
.similer-slider .slick-next:before,
.similer-slider2 .slick-prev:before,
.similer-slider2 .slick-next:before {
    width: 45px;
    height: 45px;
    content: "\f054";
    font-family: 'Font Awesome 5 Pro';
    color: #1F1F1F;
    background: #fff;
    font-weight: 400;
    line-height: 45px;
    display: block;
    border-radius: 50%;
    text-align: center;
    font-size: 16px;
    transition: .4s linear;
    -webkit-transition: .4s linear;
    border: 1px solid #E9E9E9;
}

.similer-slider .slick-prev,
.similer-slider2 .slick-prev {
    left: -20px;
    right: auto;
}

.similer-slider .slick-prev:before,
.similer-slider2 .slick-prev:before {
    content: "\f053";
}

.similer-slider .slick-prev:hover:before,
.similer-slider .slick-next:hover:before,
.similer-slider2 .slick-prev:hover:before,
.similer-slider2 .slick-next:hover:before {
    color: #fff;
    background: #862600;
}

.details-rw {
    padding: 25px 0;
    border-top: 1px dashed #f0c4b5;
    border-bottom: 1px dashed #f0c4b5;
}
.details-rw .row{
    margin: 0;
}
.details-rw .row .col-lg-3{
    padding: 0;
    border-right: 1px dashed #f0c4b5;
}
.details-rw .row .col-lg-3:last-child{
    border: none;
}
.deli-inner-dt{
    padding: 50px 30px;
}

.specifications-list {
    margin: 0 0 40px;
}

.specifications-list h5,
.specifications-list ul li {
    margin: 0 0 15px;
}

.specifications-list ul li:last-child {
    margin: 0;
}

.specifications-list ul li p {
    font-size: 16px;
    font-weight: 500;
    line-height: 22px;
    color: #a0a4a9;
    margin: 0;
}

.specifications-list ul li p span {
    color: #424a54;
}

.btn-next {
    margin: 0 0 0 auto;
    display: table;
    color: #881b1b;
    font-weight: 600;
    font-size: 14px;
    line-height: 22px;
}

.btn-next:hover {
    color: #1F1F1F;
}

.sticky-breadcrumb.active .sticky-breadcrumb-inner .btn-next {
    margin: 0 80px 0 auto;
}

/* **** End Product Details Page **** */

/* **** Login & Register Page **** */
.login-wrp{
    background-color: #a6544b;
    position: relative;
    padding: 100px 0;
}
.login-wrp:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: url('../images/login-back.png') 0 0 repeat;
    background-size: contain;
}
.login-wrp .row {
    align-items: center;
}
.forgot-link {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.forgot-link a {
    font-size: 16px;
    font-weight: 600;
    color: #000;
    text-decoration: underline;
    margin: 15px auto 0;
    display: table;
}

.forgot-link a:hover {
    color: #862600;
}

.login-form .row {
    align-items: center;
}

.contact-detail p {
    font-size: 16px;
    line-height: 26px;
    color: #65463d;
}

.contact-detail .btn-main {
    background: #9E4036;
    color: #fff;
    border-radius: 0;
}

.contact-detail .btn-main:hover {
    background: #782A22;
}

/* **** End Login & Register Page **** */

/* **** Collection Page **** */
.collections-wrp {
    padding: 0 0 50px;
}

.collections-wrp .add-banner {
    margin: 0 0 50px;
}

.collections-wrp .add-banner img {
    width: 100%;
}

.collections-row,
.elegance-block {
    margin: 0 0 50px;
}

.elegance-cover {
    margin: 0 auto 30px;
}

.elegance-cover img {
    width: 100%;
}

.elegance-title h2 {
    font-size: 38px;
    line-height: 48px;
    font-weight: 600;
    color: #6c000d;
    text-align: center;
    margin: 0 auto 10px;
}

.elegance-title h6 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 24px;
    margin: 0 auto 35px;
}

.collections-row .row {
    align-items: center;
}

.collections-cover-img img {
    width: 100%;
    height: 750px;
    object-fit: cover;
}

.collections-inner-data {
    padding: 0 0 0 50px;
}

.collections-inner-title h6 {
    font-size: 16px;
    font-weight: 600;
    color: #aa7060;
    margin: 0 0 10px;
    line-height: 24px;
}

.collections-inner-title h3 {
    font-size: 36px;
    font-weight: 600;
    color: #722f2f;
    line-height: 42px;
    font-family: "Playfair Display", serif;
    margin: 0 0 15px;
}

.collections-inner-title p {
    font-size: 18px;
    font-weight: 400;
    color: #722f2f;
    line-height: 26px;
    margin: 0 0 30px;
}

.collections-inner-data .btn-main {
    padding: 15px 50px;
    border: 2px solid #000;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    display: table;
    margin: 0 auto;
    border-radius: 0;
}

.collections-inner-data .btn-main:hover {
    background: #722f2f;
    color: #fff;
    border-color: #722f2f;
}

/* **** End Collection Page **** */

/* **** Cart Page **** */
.cart-pg {
    position: relative;
    width: 100%;
    padding: 60px 0 80px;
}

.cart-pg-left table thead th {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    background: rgb(247 247 247);
    white-space: nowrap;
    padding: 16px;
    text-align: center;
    border: 0;
}

.cart-pg-left table .name {
    display: flex;
    align-items: center;
}

.cart-pg-left table .name figure {
    width: 100px;
    min-width: 100px;
    height: 130px;
    border-radius: 8px;
    margin: 0 20px 0 0;
    overflow: hidden;
}

.cart-pg-left .table-responsive {
    overflow-x: initial;
}

.cart-pg-left table .name figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-pg-left table tbody td {
    text-align: center;
    border-bottom: 1px solid rgb(233 233 233);
    padding: 20px 0;
}

.cart-pg-left table tbody td p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

.cart-pg-left table tbody td .qty-input {
    width: fit-content;
    margin: 0 auto;
    background: rgb(247 247 247);
}

.cart-pg-left table tbody td .qty-input .qty-count--minus,
.cart-pg-left table tbody td .qty-input .qty-count--add {
    border: 0;
}

.cart-pg-left table tbody td .qty-input .product-qty {
    width: 35px;
}

.cart-pg-left table tbody td .btn-remove {
    font-size: 18px;
}

.voucher-wrp {
    position: relative;
    width: 100%;
    padding: 15px 0 0;
}

.voucher-code .form-control {
    padding: 10px 150px 10px 16px;
    border-radius: 8px;
    border: 1px solid rgb(233 233 233);
    background: rgb(247 247 247);
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    box-shadow: none;
    outline: 0;
}

.voucher-code .form-control:focus {
    border-color: #1F1F1F;
}

.voucher-wrp .form-group {
    position: relative;
}

.voucher-code .btn-main {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    right: 4px;
    border: 0;
    height: calc(100% - 8px);
    line-height: 100%;
    background: #9E4036;
    color: #fff;
    padding: 5px 25px;
}

.voucher-code .btn-main:hover {
    background: #782A22;
}

.voucher-code {
    margin: 0 0 30px;
}

.voucher-row {
    display: flex;
    align-items: center;
}

.voucher-card {
    position: relative;
    padding: 8px 0;
    border: 1px solid rgb(233 233 233);
    border-radius: 8px;
    margin: 0 10px 0 0;
    max-width: 235px;
    width: 100%;
}

.voucher-top {
    position: relative;
    padding: 0 12px 8px 12px;
    border-bottom: 1px dashed rgb(233 233 233);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.voucher-top::before,
.voucher-top::after {
    content: "";
    position: absolute;
    width: 16px;
    height: 16px;
    background-color: #fff;
    border-right: 1px solid #E9E9E9;
    border-radius: 50%;
    left: -11px;
    bottom: -8px;
}

.voucher-top::after {
    left: unset;
    right: -11px;
    border-right: none;
    border-left: 1px solid #E9E9E9;
}

.voucher-top p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin: 0;
}

.voucher-bottom {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px 0;
}

.voucher-bottom p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 700;
    text-transform: uppercase;
    margin: 0;
}

.btn-code {
    font-size: 12px;
    line-height: 16px;
    padding: 4px 10px;
    text-transform: capitalize;
    border-radius: 12px;
    background: #1F1F1F;
    min-width: 84px;
    color: #fff;
    display: table;
}

.btn-code:hover,
.summary-box .btn-main:hover {
    background: #722f2f;
}

.cart-pg-right {
    padding-left: 40px;
}

.summary-box {
    padding: 24px;
    background: rgb(247 247 247);
    border-radius: 16px;
}

.summary-box h1 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
}

.summary-box ul li {
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
    border-bottom: 1px solid rgb(233 233 233);
}

.summary-box ul li:last-child {
    border-bottom: 0;
}

.summary-box ul li p,
.summary-box ul li .price {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

.summary-check-row {
    display: flex;
    justify-content: space-between;
    margin: 0 0 5px;
}

.summary-check-row .custome-rdbx {
    padding-right: 40px;
}

.summary-check-row .custome-rdbx [type="radio"]:checked+label,
.summary-check-row .custome-rdbx [type="radio"]:not(:checked)+label {
    padding-left: 20px;
}

.summary-check-row:last-child {
    margin: 0;
}

.summary-box ul li.total p,
.summary-box ul li.total .price {
    font-size: 24px;
    line-height: 30px;
    font-weight: 700;
}

.summary-box .btn-main {
    width: 100%;
    text-align: center;
    background: #1F1F1F;
    color: #fff;
    display: table;
    margin: 10px 0 20px;
}

.summary-box .cart-link {
    text-transform: capitalize;
    font-weight: 700;
}

/* **** End Cart Page **** */

/* **** Wishlist Page **** */
.wishlist-pg {
    position: relative;
    padding: 50px 0;
}

.wishlist-pg-sort {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.wishlist-pg-sort .sort-rw {
    margin: 0 12px 0 0;
}

.wishlist-pg-sort .sort-rw:last-child {
    margin: 0;
}

/* **** End Wishlist Page **** */

/* **** My Account Page **** */
.account-pg {
    position: relative;
    width: 100%;
    padding: 60px 0 80px;
}

.account-left {
    padding-right: 100px;
}

.account-left-box {
    padding: 0;
    border-radius: 0px;
    max-width: 280px;
}

.account-profile {
    text-align: center;
    margin: 0 0 25px;
}

.account-profile figure {
    width: 120px;
    height: 120px;
    border-radius: 120px;
    overflow: hidden;
    margin: 0 auto 15px;
}

.account-profile figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.account-profile h3 {
    font-size: 18px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 4px;
}

.account-profile .email {
    font-size: 15px;
    line-height: 22px;
    font-weight: 400;
    color: rgb(105 108 112);
}

.account-profile .email:hover {
    color: #1F1F1F;
}

.account-left-box .nav-tabs {
    flex-direction: column;
    border: 0;
}

.account-left-box .nav-tabs .nav-link {
    width: 100%;
    font-size: 18px;
    line-height: 26px;
    font-weight: 500;
    text-transform: capitalize;
    color: #1F1F1F;
    padding: 12px 20px;
    border-radius:0px;
    text-align: left;
    border: 0;
    box-shadow: none;
    outline: 0;
}

.account-left-box .nav-tabs .nav-link i {
    font-size: 18px;
    margin: 0 10px 0 0;
    width: 20px;
}

.account-left-box .nav-tabs li {
    margin: 0 0 6px;
}

.account-left-box .nav-tabs li:last-child {
    margin: 0;
}

.account-left-box .nav-tabs .nav-link.active,
.account-left-box .nav-tabs .nav-link:hover {
    background: #f5f5f5;
    font-weight: 600;
}

.account-right .tab-pane {
    padding: 28px;
    border: 1px solid rgb(233 233 233);
    border-radius: 0;
}

.account-right .title h1,
.account-right .title h2 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 12px;
}

.orders-status .product-filters ul {
    width: 100%;
    margin: 0 auto 20px;
}

.orders-status .product-filters ul li {
    width: 20%;
    text-align: center;
    margin: 0;
    border-radius: 0;
    text-transform: capitalize;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    border-bottom: 1px solid rgb(233 233 233);
    overflow: hidden;
}

.orders-status .product-filters ul li::before {
    box-shadow: none;
    height: 2px;
    top: auto;
    bottom: 0;
    background: rgb(31 31 31);
    border-radius: 0;
}

.orders-status-box {
    width: 100%;
    border-radius: 0;
    border: 1px solid rgb(233 233 233);
    margin: 0 0 25px;
    transition-duration: 0s !important;
}

.orders-status-box:last-child {
    margin: 0;
}

.status-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid rgb(233 233 233);
}

.status-top p {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    text-transform: capitalize;
    margin: 0;
}

.status-top p strong {
    font-weight: 700;
    margin: 0 0 0 5px;
    text-transform: uppercase;
}

.status-top p .tag {
    color: rgb(134 132 212);
    font-weight: 600;
    padding: 6px 16px;
    background: rgba(134 132 212 / 0.1);
    font-size: 14px;
    line-height: 22px;
    border-radius: 0;
    margin: 0 0 0 5px;
}

.delivery .status-top p .tag {
    color: rgb(134 132 212);
    background: rgba(134 132 212 / 0.1);
}

.pending .status-top p .tag {
    color: rgb(236 176 24);
    background: rgba(236 176 24 / 0.1);
}

.completed .status-top p .tag {
    color: rgb(61 171 37);
    background: rgba(61 171 37 / 0.1);
}

.canceled .status-top p .tag {
    color: rgb(219 68 68);
    background: rgba(219 68 68 / 0.1);
}

.status-inner {
    padding: 0 20px 20px;
}

.status-inner .order-wrp ul li:last-child {
    border-bottom: 1px solid rgb(233 233 233);
}

.status-inner .cart-btns {
    margin-bottom: 0;
}

.status-inner .order-wrp {
    margin: 0 0 20px;
}

.status-inner .cart-btns li {
    width: auto;
}

.status-inner .cart-btns li a {
    background: #9E4036;
    border-color: #9E4036;
    color: #fff;
}

.status-inner .cart-btns li a.btn {
    background: rgb(247 247 247);
    border-color: rgb(233 233 233);
    color: #9E4036;
}

.status-inner .cart-btns li a:hover,
.status-inner .cart-btns li a.btn:hover {
    background: #782A22;
    color: #fff;
}

.address-details .form-group label,
.setting-box .form-group label {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    text-transform: capitalize;
    margin: 0 0 8px;
}

.address-details .form-group label span,
.setting-box .form-group label span {
    color: rgb(219 68 68);
}

.address-details .accordion-button {
    font-size: 20px;
    line-height: 28px;
    font-weight: 700;
    text-transform: capitalize;
    background: none !important;
    box-shadow: none !important;
    outline: 0;
    border-radius: 0 !important;
    border: 0;
    padding: 0 0 6px;
    border-bottom: 1px solid rgb(233 233 233);
    font-family: "Open Sans", sans-serif;
    color: #1F1F1F !important;
}

.address-details .accordion-item {
    border-radius: 0;
    border: 0;
    margin: 0 0 20px;
}

.address-details .accordion-item:last-child {
    margin: 0;
}

.address-details .accordion-button::after {
    background-size: 18px;
}

.address-details .accordion-body {
    padding: 20px 0 0;
}

.btn-primary {
    font-size: 14px;
    line-height: 20px;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background: #9E4036;
    padding: 14px 35px;
    border-radius: 0;
    display: inline-block;
    cursor: pointer;
    display: table;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    border: 0;
}

.btn-primary:hover {
    background: #782A22;
}

.address-details .btn-primary {
    margin: 40px 0 0;
}

.choose-file-img {
    width: 120px;
    height: 120px;
    border-radius: 0;
    overflow: hidden;
    margin: 0 20px 0 0;
}

.choose-file-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.choose-file-row {
    display: flex;
    align-items: center;
}

.choose-file-data p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0 0 12px;
}

.choose-file-data p span {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin: 4px 0 0;
    color: rgb(105 108 112);
}

.choose-file-input {
    padding: 8px 12px;
    border: 1px solid rgb(233 233 233);
    border-radius: 0;
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    position: relative;
    cursor: pointer;
}

.choose-file-input input[type="file"] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

.setting-box .choose-file-input label {
    padding: 4px 12px;
    border-radius: 0;
    background: rgb(233 233 233);
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
    margin: 0 12px 0 0;
}

.setting-box .title2 {
    margin: 20px 0;
}

/* **** End My Account Page **** */

.add-read-more.show-less-content .second-section,
.add-read-more.show-less-content .read-less {
    display: none;
}

.add-read-more.show-more-content .read-more {
    display: none;
}

.add-read-more .read-more,
.add-read-more .read-less {
    color: #db7171;
    cursor: pointer;
}

.add-read-more {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

/* ***** About Page ***** */
.our-story-wrp {
    padding: 50px 0 0;
}

.about-banner {
    position: relative;
    padding: 0 0 100px;
}

.about-banner figure img {
    width: 100%;
    margin: 0 0 50px;
}

.about-banner h1 {
    font-size: 45px;
    font-weight: 600;
    color: #783d3d;
    text-align: center;
    margin: 0 auto 25px;
}

.about-banner p {
    margin: 0 auto;
    font-size: 18px;
    font-weight: normal;
    color: #783d3d;
    line-height: 26px;
    text-align: center;
    max-width: 85%;
}

.story-row-wrp:after,
.about-wrp:after,
.about-banner:after {
    position: absolute;
    content: '';
    background: url('../images/abt-shap.png') 0 0 no-repeat;
    background-size: 100% 100%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
    max-width: 45%;
    height: 20px;
}

.story-row-wrp {
    padding: 100px 0;
    position: relative;
}

.story-row-wrp .row {
    align-items: center;
}

.story-img img {
    width: 100%;
}

.story-data {
    padding: 0 0 0 50px;
}

.vission-block h2,
.story-data h2 {
    margin: 0 0 25px;
    font-size: 40px;
    font-weight: 600;
    color: #783d3d;
}

.vission-block h3,
.story-data h3 {
    font-size: 22px;
    font-weight: 600;
    color: #783d3d;
    line-height: 30px;
    margin: 0 0 15px;
}

.vission-block p,
.story-data p {
    margin: 0;
    font-size: 17px;
    font-weight: normal;
    line-height: 26px;
    color: #783d3d;
}

.about-wrp {
    padding: 100px 0;
    position: relative;
}

.about-title {
    max-width: 700px;
    margin: 0 auto 50px;
}

.about-title h2 {
    margin: 0 0 15px;
    font-size: 40px;
    font-weight: 600;
    color: #783d3d;
    text-align: center;
}

.about-title p {
    font-size: 16px;
    font-weight: normal;
    color: #783d3d;
    line-height: 26px;
    text-align: center;
    margin: 0 auto;
}

.about-img {
    margin: 0 0 30px;
    height: calc(100% - 30px);
}

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

.about-data {
    padding: 50px;
    background: #ddeae7;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    height: calc(100% - 30px);
    margin: 0 0 30px;
}

.about-data h3{
    font-size: 22px;
    font-weight: 600;
    color: #783d3d;
    line-height: 32px;
    margin: 0 0 25px;
}
.about-inner-dt h2{
    font-size: 40px;
    font-weight: 600;
    color: #783d3d;
    margin: 0 0 15px;
    font-family: "Playfair Display", serif;
}

.about-data h4 {
    font-size: 20px;
    font-weight: 600;
    color: #783d3d;
    line-height: 28px;
    margin: 0 0 15px;
}

.about-data p {
    margin: 0;
    font-size: 16px;
    font-weight: normal;
    line-height: 24px;
    color: #783d3d;
}

.inner-row-story .row:nth-child(even) {
    flex-flow: row-reverse;
}

.inner-row-story .row:nth-child(even) .about-data {
    background: #ecf2f6;
}

.vision-mission-wrp {
    padding: 100px 0;
}

.vision-mission-row {
    margin: 0 0 100px;
}

.vision-mission-row:last-child {
    margin: 0;
}

.vision-mission-row .row {
    align-items: center;
}

.vission-img img {
    width: 100%;
}

.vission-block {
    padding: 0 60px 0 0;
}

.vision-mission-row:nth-child(even) .row {
    flex-flow: row-reverse;
}

.vision-mission-row:nth-child(even) .row .vission-block {
    padding: 0 0 0 60px;
}

/* ***** End About Page ***** */

/* ***** Filter Sidebar ***** */
.filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
    transition-delay: 0.2s;
    -webkit-transition-delay: 0.2s;
    z-index: 150;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.filter-sidebar.active {
    opacity: 1;
    visibility: visible;
}

.filter-inner {
    background-color: #fff;
    width: 320px;
    padding: 28px 24px;
    margin-left: -100%;
    overflow-x: auto;
    max-height: 100vh;
    height: 100vh;
    transition: all 0.4s linear;
    -webkit-transition: all 0.4s linear;
}

.filter-sidebar.active .filter-inner {
    margin-left: 0;
}

.filter-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 0 30px;
}

.filter-top h3 {
    font-size: 24px;
    line-height: 30px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
}

.filter-close {
    font-size: 20px;
    color: #1F1F1F;
}

.filter-close:hover {
    opacity: 0.5;
}

.filter-price .middle {
    position: relative;
    width: 100%;
    display: inline-block;
}

.filter-price .slider {
    position: relative;
    z-index: 1;
    height: 5px;
}

.filter-price .slider>.track {
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 0;
    background: #ECECEC;
}

.filter-price .slider>.range {
    position: absolute;
    z-index: 2;
    left: 25%;
    right: 25%;
    top: 0;
    bottom: 0;
    border-radius: 0;
    background: #1F1F1F;
}

.filter-price .slider>.thumb {
    position: absolute;
    z-index: 3;
    width: 16px;
    height: 16px;
    background: #1F1F1F;
    border-radius: 50%;
}

.filter-price .slider>.thumb.left {
    left: 25%;
    transform: translate(-15px, -5px);
    -webkit-transform: translate(-15px, -5px);
}

.filter-price .slider>.thumb.right {
    right: 25%;
    transform: translate(15px, -5px);
    -webkit-transform: translate(15px, -5px);
}

.filter-price .range2 {
    position: absolute;
    pointer-events: none;
    -webkit-appearance: none;
    z-index: 2;
    height: 5px;
    width: 100%;
    opacity: 0;
}

.filter-price .range2::-webkit-slider-thumb {
    pointer-events: all;
    width: 30px;
    height: 30px;
    border-radius: 0;
    border: 0 none;
    cursor: pointer;
    -webkit-appearance: none;
}

.filter-price #multi_range {
    margin: 16px auto 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.filter-price #multi_range p {
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: #1F1F1F;
    margin: 0;
}

.filter-price,
.filter-type {
    margin: 0 0 30px;
    padding: 0 0 30px;
    border-bottom: 1px solid rgb(233 233 233);
}

.filter-inner .title {
    margin: 0 0 16px;
}

.filter-inner .title h4 {
    font-size: 20px;
    line-height: 28px;
    font-weight: 600;
    text-transform: capitalize;
    margin: 0;
}

.filter-color form ul {
    display: flex;
    flex-wrap: wrap;
}

.filter-color form ul li {
    margin: 0 10px 10px 0;
}

.filter-color .form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.filter-color .form-group label {
    position: relative;
    cursor: pointer;
    border: 1px solid #E9E9E9;
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    text-transform: capitalize;
    padding: 5px 15px;
    border-radius: 50px;
}

.filter-color .form-group input:checked+label {
    border-color: #000;
}

.filter-type .accordion-item {
    margin: 0 0 15px;
    border: 0;
    box-shadow: none;
    border-radius: 0;
}

.filter-type .accordion-item:last-child {
    margin: 0;
}

.filter-type .accordion-button {
    padding: 0;
    box-shadow: none !important;
    border: 0 !important;
    outline: 0;
    font-size: 16px;
    line-height: 26px;
    font-weight: 400;
    color: rgb(105 108 112);
    border-radius: 0 !important;
    background: transparent !important;
}

.filter-type .accordion-header {
    font-family: "Open Sans", sans-serif;
}

.filter-type .accordion-button::after {
    background-size: 14px;
    background-position: center;
}

.filter-type .accordion-body {
    padding: 10px 0 0;
}

.filter-type .accordion-body ul {
    padding-left: 20px;
}

.filter-type .accordion-body ul li {
    margin: 0 0 6px;
    list-style: circle;
}

.filter-type .accordion-body ul li:last-child {
    margin: 0;
}

.filter-type .accordion-body ul li a {
    font-size: 15px;
    line-height: 24px;
    font-weight: 400;
    color: #1F1F1F;
}

.filter-type .accordion-body ul li a:hover {
    color: #6c000d;
}

/* ***** End Filter Sidebar ***** */

/* ***** Privacy Policy Page ***** */
.privacy-wrp {
    position: relative;
    padding: 50px 0;
}

.privacy-pg .container {
    max-width: 960px;
}

.privacy-wrp h1 {
    font-size: 36px;
    line-height: 40px;
    font-weight: 600;
    color: #6c000d;
    text-align: center;
    margin: 0 0 45px;
}

.privacy-bloock h2 {
    font-size: 15px;
    line-height: 24px;
    font-family: "Open Sans", sans-serif;
    font-weight: 600;
    color: #533030 ;
    margin: 0 0 15px;
}

.privacy-bloock h3 {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    line-height: 24px;
    font-weight: 500;
    margin: 0 0 15px;
}

.privacy-bloock h4 {
    font-size: 15px;
    line-height: 24px;
    font-family: "Open Sans", sans-serif;
    font-weight: 500;
    margin: 0 0 15px;
}

.privacy-bloock h5 {
    font-size: 15px;
    font-family: "Open Sans", sans-serif;
    line-height: 24px;
    font-weight: 400;
    margin: 0 0 15px;
}

.privacy-bloock h6 {
    font-size: 15px;
    line-height: 22px;
    font-family: "Open Sans", sans-serif;
    font-weight: 300;
    margin: 0 0 15px;
}

.privacy-bloock p,
.privacy-bloock ul li {
    font-size: 12px;
    line-height: 20px;
    font-weight: 400;
}

.privacy-bloock ul{
    margin: 0 0 25px;
}
.privacy-bloock p {
    margin: 0 0 25px;
}
.privacy-bloock p a{
    color: #6c000d;
    font-weight: 600;
}

.privacy-bloock ul {
    padding-left: 20px;
}

.privacy-bloock ul li {
    list-style: circle;
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 0; 
}
/* ***** End Privacy Policy Page ***** */

/* ***** Login & Register Pages ***** */
.login-form{
    max-width: 450px;
    margin: 0 auto;
    background: #fff;
    border: 10px solid #A96956;
    padding: 45px;
    position: relative;
    z-index: 2;
}
.logo-login{
    margin: 0 auto 10px;
    display: table;
    max-width: 92px;
}
.logo-login img{
    width: 100%;
    display: block;
}
.contact-form.login-form .comman-title h1,
.login-form h1{
    text-align: center;
    margin: 0 auto 15px;
}
.login-form p{text-align: center;}
.login-form.contact-form .form-control{
    border: 1px solid #CCB3B3;
    text-align: left;
}

.otp-group{
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    gap: 10px;
}
.otp-group .otp{
    border: 1px solid #CCB3B3;
    outline: none;
}
.otp-group .otp:focus{
    border: 1px solid #914331;
}
.btn-reset{
    display: table;
    margin: 15px auto;
    color: #0084FF;
    font-weight: bold;
    font-size: 14px;
}
.login-form .btn-main{
    margin: 0 auto;
    display: block;
    width: 100%;
    text-align: center;
}

.custome-chack .styled-checkbox {
    position: absolute;
    opacity: 0;
}
.custome-chack .styled-checkbox + label {
    position: relative;
    cursor: pointer;
    padding: 0;
    margin: 0;
    font-size: 14px;
    font-weight: normal;
    color: #272020;
    line-height: 22px;
    display: flex;
}
.custome-chack .styled-checkbox + label a{
    color: #B44824;
    font-weight: 600;
}
.custome-chack .styled-checkbox + label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    min-width: 20px;
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #A64933;
}
.custome-chack .styled-checkbox:checked + label:after {
    font-family: "Font Awesome 5 Pro";
    content: "\f00c";
    position: absolute;
    left:0;
    top:0;
    background: #A64933;
    line-height: 20px;
    width: 20px;
    height: 20px;
    text-align: center;
    font-size: 12px;
    color: #fff;
}

.login-form a.back-btn{
    font-size: 16px;
    font-weight: 500;
    color: #6c000d;
    display: table;
    margin: 0 0 15px;
}
.login-form a.back-btn i{
    margin-right: 5px;
}
.login-form a.back-btn:hover{
    color: #333;
}

.otp-rw{
    display: flex;
    align-items: center;
    justify-content: center;
    color: #696969;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    margin: 0 auto 20px;
}
.otp-rw a.btn-reset{
    margin: 0;
}
.otp-rw span{
    margin: 0 5px;
    font-size: 16px;
    line-height: 24px;
}
.otp-rw h6{
    margin: 0;
    font-size: 16px;
    line-height: 24px;
}

.contact-form .form-group{
    position: relative;
}
.login-form.contact-form .form-control#phone{
    padding: 10px 40px 10px 16px;
}
.login-form.contact-form .clear-icon{
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background: #F6DAD5;
    color: #945D5D;
    font-size: 14px;
    line-height: 20px;
    text-align: center;
    position: absolute !important;
    top: 50% !important;
    right: 10px !important;
}
.login-form.contact-form .clear-icon:hover{
    background: #945D5D;
    color: #fff;
}
/* ***** End Login & Register Pages ***** */

/* ***** Thank You Popup ***** */
.modal-dialog{
    max-width: 400px;
    width: 100%;
    min-width: 400px;
}
.modal-content{
    padding:45px 35px;
    background: #fff;
    border-radius: 0;
    border: none;
    position: relative;
}
.thankyou-box{
    position: relative;
    z-index: 10;
}
.thankyou-box h2{
    text-align: center;
    font-size: 28px;
    font-weight: bold;
    color: #782A22;
    margin: 0 auto 25px;
    display: table;
    padding: 0 0 20px;
    position: relative;
}
.thankyou-box h2:after{
    position: absolute;
    content: '';
    width: 100%;
    height: 20px;
    background: url('../images/title-shap.png') 0 0 no-repeat;
    background-size: 100% 100%;
    bottom: 0;
    left: 0;
    right: 0;
}
.thankyou-box p{
    font-size: 16px;
    font-weight: normal;
    color: #782F2C;
    text-align: center;
    line-height: 24px;
    margin: 0 auto 15px;
}
.btn-thankclose{
    padding: 5px 15px;
    display: table;
    margin: 30px auto 0;
    background: #fff;
    border: 1px solid #D18B88;
    border-radius: 0;
    color: #9F4037;
    font-size: 14px;
    text-transform: capitalize;
    font-weight: 500;
}
.btn-thankclose:hover{
    background: #D18B88;
    color: #fff;
}

.login-top{
    position: absolute;
    top: 10px;
    left: 10px;
    right: 10px;
}
.login-bottom img,.login-top img{
    width: 100%;
}
.login-bottom{
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 10px;
}
/* ***** End Thank You Popup ***** */