@charset "UTF-8";

/*

==========*/

/*==========
----- CSS INDEX -----

Fonts CSS
Common CSS
Header CSS
Mobile Menu CSS
Banner CSS
Best Selling Css
About US Setion Css
Category Section Css
Product slider CSS
Cta Section Css
Footer CSS
About Us Page Css
Contact Us Page Css
Product Page Css

==========*/


/*==========Color CSS Start==========*/

:root {
    --theme-color-primary: #3c1a01;
    --theme-color-secondary: #c69362;
    --theme-color-text: #ffffff;
    --theme-color-black: #000000;
    --theme-color-white: #ffffff;
    --theme-color-bg-light: #48463e;
    --theme-color-bg-dark: #48463e;
  }

/*==========Color CSS Start==========*/  



/*==========Fonts CSS Start==========*/

@import url('https://fonts.googleapis.com/css2?family=font_BeauRivage:wght@400;500;700&family=Libre+Baskerville&display=swap');

.main-font-alga { font-family: 'Libre Baskerville', serif; }
.body-font-dm { font-family: 'DM Sans', sans-serif; }

/*==========Fonts CSS End==========*/


/*==========Common CSS Start==========*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-size: 16px; 
    line-height: 29px; 
    font-weight: 400; 
    letter-spacing: 0.1px;
    color: #e8e8e8; 
    font-family: 'DM Sans', sans-serif; 
}

a {
    text-decoration: none;
}

a:hover, a:focus { 
    text-decoration: underline; 
    outline: none; 
    outline-offset:0; 
    color: var(--theme-color-primary); 
}

a, .btn, input, textarea, select { 
    transition: all 0.3s ease-in-out; 
    -moz-transition: all 0.3s ease-in-out;
    -webkit-transition: all 0.3s ease-in-out; 
    -ms-transition: all 0.3s ease-in-out; 
    -o-transition: all 0.3s ease-in-out; 
}

p { 
    margin: 0 0 15px 0; 
}

ul { 
    margin: 0; 
    padding: 0; 
    list-style: none;
}

.logo-width {
    width: 136px;
}

i {
    font-family: 'FontAwesome';
    font-style: normal;
}

/* heading size */

h1, h2, h3, h4, h5, h6 { 
    margin:0 0 15px 0; 
    padding:0; 
    letter-spacing: 0px; 
    font-weight: inherit; 
    font-family: 'font_BeauRivage', serif;
    font-weight: 500;
    color: var(--theme-color-primary);
}
h1 { 
    font-size:5rem; 
    line-height: 5rem; 
}
h2 { 
    font-size:3.5rem; 
    line-height:3.9rem; 
    text-transform: capitalize;
}
h3 { 
    font-size:2.5rem; 
    line-height:2.9rem; 
    text-transform: capitalize;
}
h4 { 
    font-size:1.5rem; 
    line-height:2rem; 
}
h5 { 
    font-size:1.2rem; 
    line-height:1.6rem; 
	color: cornsilk;
}
h6 { 
    font-size:1rem; 
    line-height:1.4rem; 
}

/* Page Title */

.page-title-size {
    font-size: 3.5rem;
    line-height: 3.5rem;
    z-index: 2;
}

.page-title {
    margin-top: -85px;
    padding-top: 120px;
    padding-bottom: 60px;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.page-title::after {
    content:'';
    width:100%;
    height:100%;
    background-color:rgba(250 ,246, 243,0.65);
    position:absolute;
    top:0;
    left:0;
}

.page-title-background {
    position:relative;
}



/* Background Color */

.bg-primary { 
    background-color:var(--theme-color-primary);
}

.bg-secondary {
    background-color:var(--theme-color-secondary);
}
.bg-text{
    background-color:var(--theme-color-text);
}
.bg-black{
    background-color:var(--theme-color-black);
}
.bg-white{
    background-color:var(--theme-color-white);
}
.bg-bg-light{
    background-color:var(--theme-color-bg-light);
}
.bg-bg-dark{
    background-color:var(--theme-color-bg-dark);
}


/* Font Color */
.font-color-primary { 
    color:var(--theme-color-primary);
}

.font-color-secondary {
    color:var(--theme-color-secondary);
}
.font-color-text{
   color:var(--theme-color-text);
}
.font-color-black{
    color:var(--theme-color-black);
}
.font-color-white{
   color:var(--theme-color-white);
}
.font-color-light{
   color:var(--theme-color-bg-light);
}
.font-color-dark{
   color:var(--theme-color-bg-dark);
}


/* Background Padding */

.bg-padding-xl {
    padding: 125px 0;
	background-color: #939086;
}

.bg-padding-lg {
    padding: 90px 0;
	background-color: #48463e;
}

.bg-padding-md {
    padding: 60px 0;
}

.bg-padding-sm {
    padding: 40px 0;
}

/* Width */

.w-30 {
    width: 30%;
}

.w-35 {
    width: 35%;
}

.w-40 {
    width: 40%;
}

.w-45 {
    width: 45%;
}

.w-60 {
    width: 60%;
}

.w-65 {
    width: 65%;
}

.w-80 {
    width: 80%;
}

.w-90 {
    width: 90%;
}

.w-100 {
    width: 100%;
}


/* Button */

.button-design a {
    color: var(--theme-color-primary);
    position: relative;
}

.button-design a i::before,.pr-button a i::before {
    content: '';
    background: url(../images/darkarrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 21px;
    height: 12px;
    left: 6px;
    top: 6px;
    background-size: contain;
    position: absolute;

}

.button-design a::before,.button-design a::after {
    content: '';
    background: url(../images/button-design.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    height: 50px;
    right: -44px;
    top: -11px;
    background-size: contain;
    position: absolute;
}


.button-design a::after {
    right: -40px;
    top: -9px;
    transition: all 0.5s;
}

.button-design a:hover::after {
    right: -44px;
    top: -11px;
}

.product-box {
    width: 100%;
    height: auto;
}

.pr-button a {
    color: var(--theme-color-primary);
}

.pr-button a i::before {
    background: url(../images/darkarrow.svg);
    top: 5px;
    background-size: contain;
}


/* Product Design */

.product-title {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    z-index: 9;
    opacity: 0;
}

.pr-button a.view-product-btn {
    text-decoration:underline;
    font-size: 16px;
    font-weight: 500;
}


.product-image-box {
    position: relative;
}

.product-image-box::after {
    content:'';
    width:100%;
    height:100%;
    background: rgb(250 246 243 / 0.3);
    backdrop-filter: blur( 3px );
    -webkit-backdrop-filter: blur( 3px );
    border: 1px solid rgba( 255, 255, 255, 0.18 );
    position:absolute;
    top:0;
    left:0; 
    opacity:0;
}

.product-box:hover .product-image-box::after,.product-box:hover .product-title  {
  opacity:1;
}

.product-image-box::after,.product-title {
    transition: all 0.5s;
}

.pr-button {
    text-align: center;
}

.product-grid .title-text  {
    margin-bottom: 40px;
}


.product-price {
    margin-bottom: 0px;
    font-weight: 500;
}

/* Image radius */

img {
    border-radius: 5px;
}


/*==========Common CSS End==========*/


/*==========Header CSS Start==========*/

.site-logo img {
    width: 170px;
}

.header-main .navbar-nav .nav-link {
    padding-left:22px;
    padding-right: 22px;
}   

a.navbar-brand {
    font-size: 40px;
    color: var(--theme-color-primary);
}

.navbar-nav .nav-link {
	font-size: 20px;
    color: #3c1a01;
	text-shadow: 1px 1px 2px #48463e;
}

.navbar-nav .nav-link.active {
    color: var(--theme-color-primary);
}

header {
    transition: all ease-in-out 0.5s;
}

header.header-main.navbar-fixed-top {
    top: -1px;
    z-index: 100;
    position: sticky;
    width: 100%;
    transition: all ease-in-out 0.5s;
    animation: smoothScroll 1s forwards;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    background-color: rgba(250, 246, 243, 0.55);
  }

  .navbar-toggler-icon {
      width: unset;
      height: unset;
  }

  .navbar-toggler .navbar-toggler-icon i {
      font-size: 22px;
  }

  .navbar-toggler:focus {
      box-shadow: unset;
  }

  .header-main {
      z-index: 999;
      position: relative;
  }

  .navbar-toggler {
      z-index: 112;
  }


  @keyframes smoothScroll {
	0% {
		transform: translateY(-80px);
	}
	100% {
		transform: translateY(0px);
	}
}

.dropdown-toggle::after {
    vertical-align: 0.15em;
}

.nav-item ul.dropdown-menu {
    border: none;
    padding: 0;
}

.nav-item .dropdown-item:focus,.nav-item .dropdown-item:hover {
    color: #ffffff;
    background-color: #3c1a01;
}

.nav-item ul.dropdown-menu a {
    color: #000;
}

/*==========Header CSS End==========*/

/*========== Mobile Menu CSS Start ==========*/

.toggle-menu .mobile-menu-box ul {
    z-index: 113;
    position: relative;
    padding: 0 30px;
}

.toggle-menu .mobile-menu-box ul.dropdown-menu {
    padding: 0 20px;
    background-color: transparent;
}

.toggle-menu .mobile-menu-box ul.dropdown-menu a.dropdown-item {
    font-size: 25px;
}


.toggle-menu .mobile-menu-box ul li a {
    font-size: 30px;
    line-height: 38px;
}

.toggle-menu .mobile-menu-box {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: transparent;
    padding: 80px 0;
    align-items: center;
    transition: all ease-in-out 0.4s;
    z-index: 100;
}

.toggle-menu .mobile-menu-box::before {
    content: '';
    position: absolute;
    top: 0px;
    right: 0px;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(15px) saturate(180%);
    -webkit-backdrop-filter: blur(15px) saturate(180%);
    background-color: rgba(250, 246, 243, 0.93);
    transition: all ease-in-out 0.4s;
    z-index: 0; 
    opacity: 0;
}

.collapsing {
    transition: unset;
}

.main-navigation.toggle-menu .mobile-menu-box::before {
    opacity: 1;
}

.toggle-button span {
    width: 30px;
    height: 3px;
    background: var(--theme-color-primary);
    display: block;
    margin: 0 auto 6px auto;
    position: relative;
    top: 0;
    opacity: 1;
    transition: 0.3s;
}

.toggle-menu .toggle-button span:nth-child(1) {
    transform: rotate(45deg);
    position: relative;
    top: 9px;
}

.toggle-menu .toggle-button span:nth-child(2) {
    opacity: 0;
}

.toggle-menu .toggle-button span:nth-child(3) {
    transform: rotate(-45deg);
    position: relative;
    top: -9px;
}

.disable-scroll {
    overflow: hidden;
}

/*========== Mobile Menu CSS End ==========*/



/*========================================Homne Page CSS Start========================================*/

/*==========Banner CSS Start==========*/

.hero-title h1 {
	color: beige;
    font-size: 55px;
    font-weight: 400;
    line-height: 50px;
    margin-left: -120px;
	font-family: Baskerville, "Palatino Linotype", Palatino, "Century Schoolbook L", "Times New Roman", "serif";
	text-shadow: 1px 1px 2px black;
}

.main-image img{
    width: 90%;
}

.slide-col-3 {
    position: relative;
}

.slider-bg  {
    margin-top: -85px;
    padding-top: 120px;
    padding-bottom: 70px;
}

/*==========Banner CSS End==========*/


/*==========Product slider CSS Start==========*/


.slick-carousel {
    margin: 0 auto;
    width: 100%;
}

  /* The width of each slide */
  .slick-slide {
    width: 350px;
    padding: 15px;
}
  
  /* arrows */

  .product-slider .slick-arrow,.product-slider .slick-arrow::after {
    background: url(../images/button-design.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 50px;
    height: 50px;
    background-size: contain;
}

.product-slider .slick-arrow::after {
    content: '';
    position: absolute;
    right: 0px;
    top: 5px;
    transition: all 0.5s;
}

.product-slider .slick-arrow:hover::after {
    right: 0;
    top: 0;
}


.product-slider .slick-prev {
    position: absolute;
    right: 100px;
    bottom: -50px;
}

.product-slider .slick-next {
    position: absolute;
    right: 25px;
}

.product-slider .slick-arrow {
    font-size: 0;
    border: none;
}

.slick-next::before,.slick-prev::before {
    content: '';
    background: url(../images/darkarrow.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 21px;
    height: 21px;
    left: 12px;
    top: 15px;
    background-size: contain;
    position: absolute;
}

.slick-prev::before {
   transform: rotate(180deg);
}


.product-slider .product-image-box h5  {
    font-size: 1.2rem;
}


/*==========Product slider CSS End==========*/  


/*==========About Section CSS Start==========*/  

.about-section.bg-padding-xl {
    padding-top: 115px;
    padding-bottom: 140px;
}

.about-section-title {
    padding-top: 45px;
}

.about-content {
    padding-left: 55px;
}

.about-section {
    display: block;
}

.image-1-position {
    position: absolute;
    right: -95px;
    bottom: 55px;
}

.ab-image-2-set {
    position: absolute;
    top: -85px;
    right: 15px;
}

.about-paragraph {
    width: 510px;
    padding-top: 200px;
}

.ab-image-3-set {
    padding-top: 40px;
}

/*==========About Section CSS End==========*/  


/*==========Category Section CSS Start==========*/  

.category-bg-image {
    background: url(https://placehold.co/800x860);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; 
}

.category-bg-color {
    padding:140px 0;
}

.category-bg-color .button-design a {
    margin-left: -12px;
}

.category:nth-child(2) .category-bg-image {
    background: url(https://placehold.co/800x860);
    background-repeat: no-repeat;
    background-size: cover; 
}

.category:nth-child(3) .category-bg-image {
    background: url(https://placehold.co/800x860);
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover; 
}

/*==========Category Section CSS End==========*/ 



/*==========CTA Section CSS Start==========*/ 

.home-contact {
    margin-top: 40px;
    margin-bottom: 120px;
}


.cta-details {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}

.cta-store-details {
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.cta-details {
    background: rgba( 250, 246, 243, 0.65 );
    backdrop-filter: blur( 7px );
    -webkit-backdrop-filter: blur( 7px );
    border-radius: 5px;
}

.direction-button {
    display: inline-block;
    margin-top: 15px;
    background-color: var(--theme-color-secondary);
    color: var(--theme-color-bg-dark);
    padding: 10px 20px;
    border-radius: 5px;
}

h6.cta-address {
    font-size: 16px;
    font-family: 'font_BeauRivage', sans-serif;
    font-weight: 400;
}

.footer-section {
    padding-top: 90px;
}

.f-collection-list ul li a {
    color: var(--theme-color-text);
}

.footer-bottom {
    margin-top: 40px;
    border-top: 1px solid var(--theme-color-primary);
    padding: 15px 0;
}

.social-icon a i {
    font-size: 20px;
}

/*==========Footer CSS End==========*/



/*========================================About Us Page Start========================================*/ 

.aboutus-page-background {
    background-image: url(https://form-group.com/dr/hdr.jpg);
	filter: sepia(20%) blur(3px) brightness(.5);">;
}

.jewellery-care-images {
    position: relative;
}

.jewellery-care-images .jc-image-2 {
    position: absolute;
    right: 30px;
    bottom: 25px;
}

.jewellery-care-section {
    padding-bottom: 125px;
}

/*========== Team  Css Start ==========*/

.team-box {
    width: 100%;
    height: auto;
}

.team-image {
    width: 100%;
    height: 100%;
}

.te-entry-title {
    line-height: 1.6rem;
    margin-bottom: 0;
}

.team-section {
    padding-bottom: 115px;
}

.news-letter {
    background-image: url(https://form-group.com/dr/store.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.bg-overlay {
    background-color: rgba( 250, 246, 243, 0.5 );
    backdrop-filter: blur( 5px );
    border-radius: 5px;
    padding: 200px;
}

.email-field-design {
    background-color: transparent;
    border-radius: 4px;
    border: 1px solid #3c1a01;
    padding: 10px 15px;
}

.email-field-design::placeholder {
    color: #000;
    opacity: 1;
}

.email-field-design:focus,.contact-left-col .form-control {
    box-shadow: none;
    border-color: #ffffff;
}

.news-submit {
    width: 100%;
    background-color: var(--theme-color-secondary);
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    color: var(--theme-color-bg-light);
    font-size: 18px;
}
  
/*========== News Letter Css End ==========*/

/*========================================About Us Page End========================================*/ 


/*========================================Contact Us Page Start========================================*/ 
.form-control:focus{
    box-shadow: none;
}

.contact-left-col {
    /* box-shadow: 0 0 6px rgb(0 0 0 / 12%); */
    padding: 50px 0;
    /* border-radius: 4px; */
}

.contact-right-col {
    padding: 50px 50px 50px 100px;
}

.contact-left-col .form-control {
    padding: 10px 0px;
    border-color: var(--theme-color-primary);
    border-radius: 0;
    border-width: 0 0 1px 0;
}

/* .contact-form .form-control::placeholder {
    color: #000;
    opacity: 1;
} */

.submit-button {
    padding: 10px 50px;
    border: none;
    background-color: var(--theme-color-secondary);
    color: #ffffff;
    border-radius: 4px;
} 

.contact-right-col .social-icon a {
    width: 40px;
    height: 40px;
    border: 1px solid;
    border-radius: 100%;
    text-align: center;
    line-height: 39px;
}

.contact-right-col  p {
    font-size: 18px;
}

.contact-right-col  p .phone-number {
    color: var(--theme-color-primary);
    font-size: 22px;
    font-weight: 500;
}

.contact-map {
    line-height: 0;
	filter: grayscale(100%);">
	z-index: 99;
	background: black, opacity:0.9;
    z-index: 99;
}

.contact-map iframe {
    width: 100%;
}

#thank-you-message {
    display: none;
    color: #3c1a01;
  }
  
  #thank-you-message.show {
    display: block;
  }

/*========================================Contact Us Page End========================================*/ 

/*========================================Product Page Start========================================*/ 

.product-page-background {
    background-image: url(https://placehold.co/1920x251);
}

.product-filter {
    width: 90%;
    height: 100%;
    background: #f6f6f6;
}

.category-filter ul {
    list-style: disc;
    padding-left: 22px;
}

.category-filter ul li,.category-filter ul li a {
    color: #000;
    font-size: 18px;
    line-height: 30px;
}

.category-filter ul li:hover,.category-filter ul li:hover a {
    color: #c69262ab;
}


.range-slider {
    width: 100%;
    position: relative;

  }

  .rangeValues {
    display: block;
    margin-bottom: 15px;
  }
  
  input[type=range] {
    -webkit-appearance: none;
    width: 100%;
    position: absolute;
    left: 0;
    border-radius: 20px;
  }
  
  input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 5px;
    background: #c69262ab;
    border: none;
    border-radius: 20px;
  
  }
  
  input[type=range]::-webkit-slider-thumb {
    -webkit-appearance: none;
    border: none;
    height: 12px;
    width: 12px;
    border-radius: 50%;
    background: var(--theme-color-primary);
    margin-top: -4px;
    cursor: pointer;
    position: relative;
    z-index: 1;
  }
  
  input[type=range]:focus {
    outline: none;
  }
  
  input[type=range]:focus::-webkit-slider-runnable-track {
    background: #c69262ab;
  }
  
  input[type=range]::-moz-range-track {
    width: 300px;
    height: 5px;
    background: #c69262ab;
    border: none;
    border-radius: 3px;
  }
  
  input[type=range]::-moz-range-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--theme-color-primary);
    
  }
  
  
  /*hide the outline behind the border*/
  
  input[type=range]:-moz-focusring {
    outline: none;
    outline-offset: -1px;
  }
  
  input[type=range]::-ms-track {
    width: 100%;
    height: 5px;
    /*remove bg colour from the track, we'll use ms-fill-lower and ms-fill-upper instead */
    background: transparent;
    /*leave room for the larger thumb to overflow with a transparent border */
    border-color: transparent;
    border-width: 6px 0;
    /*remove default tick marks*/
    color: transparent;
      z-index: -4;
  
  }
  
  input[type=range]::-ms-fill-lower {
    background: #c69262ab;
    border-radius: 10px;
  }
  
  input[type=range]::-ms-fill-upper {
    background: #c69262ab;
    border-radius: 10px;
  }
  
  input[type=range]::-ms-thumb {
    border: none;
    height: 16px;
    width: 16px;
    border-radius: 50%;
    background: var(--theme-color-primary);
  }
  
  input[type=range]:focus::-ms-fill-lower {
    background: #c69262ab;
  }
  
  input[type=range]:focus::-ms-fill-upper {
    background: #c69262ab;
  }


  .soty-by-filter {
      padding-bottom: 8px;
      text-transform: capitalize;
      border-width:0 0 1px 0;
      border-color: var(--theme-color-primary);
  }

  .filter-bar {
    margin-bottom: 40px;
  }

  select:focus-visible {
      outline: none;
  }

  .filter-button,.close-button {
      padding: 8px 20px;
      background: #c69362;
      color: #ffffff;
      cursor: pointer;
      border-radius: 4px;
      display: none;
  }

  .close-button {
      width: 40px;
      height: 40px;
      text-align: center;
      line-height: 24px;
      padding: 8px;
      font-size: 18px;
      border-radius: 100%;
  }

  .filter-sidebar {
      position: relative;
  }

/*========================================Product Page End========================================*/ 

/*========================================Single Product Page Start========================================*/ 

/* Single Product Page Slider Css  */

.single-product-slider .slider__item  img{
    width: 100%;
}

.slider-nav {
    position: relative;
}

.slider-nav .slider__item.slick-slide {
    padding: 0 10px;
}

.single-product-slider .slick-arrow{
    background: #e8e8e8b8;
    backdrop-filter: blur( 5px );
    -webkit-backdrop-filter: blur( 5px );
    width: 30px;
    height: 30px;
    border-radius: 100%;
}

.single-product-slider .slick-prev {
    position: absolute;
    right: unset;
    top: 40%;
    left: 15px;
    bottom: unset;
    z-index: 9;
}

.single-product-slider .slick-next {
    position: absolute;
    right: 15px;
    z-index: 9;
    top: 40%;
    bottom: unset;
}

.single-product-slider .slick-arrow::after {
    display: none;
}

.single-product-slider .slick-next::before, .single-product-slider .slick-prev::before {
    right: unset;
    width: 17px;
    height: 17px;
    top: 8px;
    left: 7px;

}

.tabing .nav{
    flex-wrap: unset;
    overflow-x: auto;
    white-space: nowrap;
}

/* Single Product Page Slider Css  */

.single-product-price h4 {
    font-size: 30px;
    color: #c69362;
}

/* Qty Counter Css  */

.product-qty-cart {
    padding-top:30px;
    padding-bottom: 40px;
}

.qty-counter .num-in {
	float: left;
	width: 148px;
	padding: 8px 20px 8px 10px;
	border: 1px solid #3c1a01;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-radius: 4px;
}

.qty-counter .in-num {
	width: 47px;
	float: left;
	font-size: 25px;
	text-align: center;
	outline: none;
    border: none;
    color: #3c1a01;
}

.qty-counter .all-span {
	position: relative;
	float: right;
	width: 23px;
}

.qty-counter .all-span span {
	position: relative;
	cursor: pointer;
}

.qty-counter .all-span span:before {
	content: '';
	position: absolute;
	left: 50%;
	margin-left: 0;
    font-family: 'Font Awesome 5 Free';
    font-weight: 600;
    color: #3c1a01;
    font-size: 15px;
}

.qty-counter span.minus:before {
	top: -6px;
    content: '\f078'; 
}

.qty-counter span.minus.dis:before {
	opacity: 0.5;
}

.qty-counter span.plus:before {
	bottom: -6px;
    content: '\f077';
}

/* Qty Counter Css  End */


/* BuyNow Button Css  Start */

.product-buy a.buynow-button {
    display: inline-block;
    background-color: #c69362;
    padding: 9px 50px;
    color: #fff;
    border-radius: 4px;
    margin-left: 20px;
}

.product-meta p {
    color: var(--theme-color-primary);
    font-size: 20px;
    font-family: 'Libre Baskerville';
    margin-bottom: 4px;
}

.product-meta p span {
    color: var(--theme-color-text);
}

/* BuyNow Button Css  End */

/* Tab Css Start*/

.tabing .nav-tabs .nav-link.active {
    border: none;
    border-top: 2px solid #3c1a01;
    border-radius: 0;
    color: var(--theme-color-primary);
    background-color:transparent;
}

.tabing .nav-tabs .nav-link {
    
}

.tabing .nav-tabs .nav-link {
    border: none;
    margin: 0;
    border-radius: 0;
    font-size: 22px;
    font-family: 'Libre Baskerville';
    color: var(--theme-color-secondary);
}

.tabing .nav-tabs {
    border: none;
}

.tabing .tab-content-box   {
    padding-top: 30px;
}

/* Tab Css End*/



/*========================================Single Product Page End========================================*/ 



/*========================================Login And Register Page CSS Start========================================*/

.lr-bg {
    background: url(https://placehold.co/1920x754);
    background-size: cover;
    background-repeat: no-repeat;
}

.lr-box {
    background-color: rgba( 250, 246, 243, 0.65 );
    backdrop-filter: blur( 5px );
    border-radius: 5px;
    padding: 60px;
}

.lr-box .form-control {
    padding: 15px 0px;
    border-color: var(--theme-color-primary);
    border-radius: 0;
    border-width: 0 0 1px 0;
    background-color: transparent;
}

.lr-box form ::placeholder {
    color: #3c1a01;
}


.lr-box .submit-button {
    width: 100%;
}


.register-login-account a {
    font-weight: 600;
}

.direct-login-register span {
    color: #3c1a01;
    display: block;
    text-align: center;
}

.direct-login-register span {
    position:relative;
}

.direct-login-register span::before,.direct-login-register span::after  {
    content:'';
    width:160px;
    height:2px;
    background-color:#000;
    position:absolute;
    left:0px;
    top:14px;
}

.direct-login-register span::after {
    left: unset;
    right:0px;
}

.lr-with-icon {
    width: 45px;
    height: 45px;
    background: #c69362;
    border-radius: 50%;
    text-align: center;
    line-height: 54px;
    margin: 0 10px;
    display: inline-block;
}

.lr-with-icon i {
    font-size: 24px;
    color: #fff;
}

.lr-with-icon:hover {
    background-color: #3c1a01;
}


/*========================================Login And Register Page CSS End========================================*/


/*========================================Cart Page CSS Start========================================*/


.cart-page .card {
    margin: auto;
    width: 100%;
    border-radius: 0;
    border: transparent;
}

.cart-page .title {
    padding-bottom: 30px;
}


.cart-page .cart {
    background-color: #fbfbfb;
    padding: 40px;
}


.cart-page .summary {
    background-color: #f5f5f5;
    padding: 4vh;
    color: #000;
}

.cart-page .summary .col-2 {
    padding: 0;
}

.cart-page .summary .col-10 {
    padding: 0;
}


.cart-page .main {
    margin: 0;
    padding: 20px 0;
    width: 100%;
}

.cart-page .close {
    margin-left: auto;
    font-size: 0.9rem;
    float: right;
    color: #3c1a01;
    font-weight: 700;
    z-index: 9;
}

.cart-page img {
    width:105px;
    box-shadow: 0 0 2px #000;
}

.cart-page .back-to-shop {
    margin-top: 3.5rem;
}


.cart-page form {
    padding: 2.1rem 0;
}

.cart-page select {
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1.5vh 1vh;
    margin-bottom: 4vh;
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247);
}

.cart-page input {
    border: 1px solid rgba(0, 0, 0, 0.137);
    padding: 1vh;
    margin-bottom: 4vh;
    outline: none;
    width: 100%;
    background-color: rgb(247, 247, 247);
}

.cart-page input:focus::-webkit-input-placeholder {
    color: transparent;
}


.cart-pr-text,.cart-price {
    color: #3c1a01;
}

.cart-price {
    font-weight: 500;
}

.cart-btn {
    width: 100%;
    background-color: #3c1a01;
    color: #fff;
    padding: 12px;
}


.cart-btn:hover {
    color: #fff;
}

.cart-total-price {
    color: #3c1a01;
    font-size: 18px;
    font-weight: 600;
}


.cart-total {
    border-top: 1px solid rgba(0,0,0,.2);
    padding: 20px 0;
}

.qty-cart-counter a {
    padding:0 6px;
    color:#000;
    display: inline-block;
    font-size: 18px;
}

.qty-cart-counter  {
    border: 1px solid #3c1a01;
    border-radius: 3px;
    display: inline-block;
}


.title-value {
    color: #3c1a01;
    font-weight: 600;
}

.product-cart-detailes {
    position: relative;
}

.back-to-shop a {
    color: #3c1a01;
    font-weight: 600;
}

.cart-number {
    width: 16px;
    height: 16px;
    display: inline-block;
    background: #c69362;
    font-size: 12px;
    border-radius: 100%;
    text-align: center;
    line-height: 16px;
    position: absolute;
    right: -2px;
    bottom: 7px;
    color: #fff;
}

.he-cart-icon {
    position: relative;
}

.he-cart-icon  i {
    font-size: 17px;
    color: #3c1a01;
}

.mobile-menu-btns {
    display: none;
}


.code {
    position: relative;
}

.code i {
    position: absolute;
    top: 15px;
    right: 25px;
}

ul.wd-checkout-steps {
    display: flex;
    justify-content: center;
}

.wd-checkout-steps li:after {
    margin: 0 15px;
    font-weight: 700;
    font-size: 85%;
    opacity: .7;
    content: "\f061";
    font-family: "Font Awesome 5 Free"; 
    font-weight: 900;
}

.wd-checkout-steps li.step-complete:after {
    display: none;
}

.wd-checkout-steps li {
    display: inline-block;
    margin-top: 5px;
    margin-bottom: 5px;
    font-size: 22px;
    line-height: 1.2;
    color: #3c1a01;
    font-family: 'Libre Baskerville', serif;
}

.wd-checkout-steps li a {
    color: #3c1a01;
}

.wd-checkout-steps-bg {
    padding: 60px 0;
    background-color: #48463e;
}

.step-active a {
    position: relative;
}

.step-active a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    background-color: #c69362;
    width: 100%;
    height: 2px;
}

.step-inactive a {
    opacity: 0.7;
}

.step-cart a:hover,.step-checkout a:hover {
    opacity: 1;
}

/*========================================Cart Page CSS End========================================*/


/*========================================Checkout Page CSS Start========================================*/


.ch-field-title {
    font-size: 26px;
}

.billing-fields label {
    font-size: 16px;
    color: #3c1a01;
    margin-bottom: 15px;
    font-weight: 500;
    font-family: 'Libre Baskerville', serif;
}

.billing-fields input,.billing-fields select,.billing-fields textarea  {
    border: none;
    border-bottom: 1px solid #dddddd;
    border-radius: 0;
    padding: 9px 0;
}

.billing-fields .form-check-input {
    border: 1px solid #dddddd;
    padding: 9px;
    margin-right: 10px;
}

.billing-fields .form-control:focus,.billing-fields .form-select:focus,.billing-fields .form-check-input:focus {
    border-color:#3c1a01;
    box-shadow: none;
}

.billing-fields .form-check-input:checked {
    background-color:#c69362;
}

.billing-fields {
    padding-right: 90px;
}

.checkout-order-review {
    padding-left: 60px;
}

.checkout-review-order-box,.checkout-payment {
    background-color: #f9f9f9;
    padding: 10px 25px;
}


.shop_table .product-name,.shop_table .product-total {
    width: 50%;
    padding: 15px 10px;
    color: #3c1a01;
}

.shop_table .product-total,.shop_table .amount {
    text-align: right;
}

.shop_table .cart_item  td{
    font-size: 14px;
    color: #000;
}

.shop_table .order-total {
    color: #c69362;
    font-size: 20px;
    border: none;
   
}

.shop_table .order-total th {
    border: none;
    padding-top: 20px;
}

.ch-payment_method {
    border-bottom: 1px solid #3c1a01;
}

.ch-payment_method label {
    font-size: 17px;
    color: #3c1a01;
    margin-left: 8px;

}

.checkout_place_order {
    background-color: #c69362;
    padding: 16px 52px;
    display: inline-block;
    color: #fff;
    font-weight: 500;
    margin-top: 20px;
    border-radius: 5px;
}

.shipping-methods label {
    font-size: 14px;
    margin-left: 10px;
}
.shipping-methods li {
    display: flex;
    justify-content: end;
    align-items: center;
}

/*========================================Checkout Page CSS End========================================*/

/*======================================== Form Validation ========================================*/
.form-control.is-invalid, .was-validated .form-control:invalid {
    background-image: none;
}

.form-control.is-valid, .was-validated .form-control:valid ,.was-validated .form-select:valid:not([multiple]):not([size]){
    background-image: none;
    border-color: #ddd;
}

.was-validated .form-check-input:valid~.form-check-label,.was-validated .form-check-input:valid {
    border-color: #ddd;
    color: #3c1a01;
}


/*========================================Order complete Page CSS========================================*/

.thankyou-order-details {
    display: flex;
    flex-wrap: wrap;
    background-color: #f9f9f9;
    padding: 25px;
}

.thankyou-order-details li strong {
    display: block;
    color: #3c1a01;
}

.thankyou-order-details li  {
    flex: 1 1 0%;
    margin-right: 20px;
    padding-right: 7px;
    border-right: 1px dashed #3c1a01 ;
    text-align: center;
}

p.th-message {
    text-align: center;
    font-size: 25px;
    margin-bottom: 25px;
}

.or-success .shop_table td {
 font-size: 16px;
 font-weight: 500;
 color: #3c1a01;
 border-color:#ddd !important;
}
.contact-bg {
	background-color: #939086;
}
