:root {
  --main-color: #28A745;
  --heading-color: #D4EDDA;
  --text-color: #1E1E1E;
  --white-color: #fff;
  --black-color: #000;
  --main-font: "Roboto", sans-serif;
  --heading-font: "Inter", sans-serif;;
  --button-font: "Roboto", sans-serif;
  --bold-font: "Roboto", sans-serif;
}

.coa-tab-content {
  color: var(--text-color);
}

.coa-description {
  margin-bottom: 28px;
}

.coa-description p:last-child {
  margin-bottom: 0;
}

.coa-files-block {
  padding: 24px;
  border: 1px solid #d9eadc;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
}

.coa-files-title {
  margin: 0 0 18px;
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 700;
  color: #14532d;
}

.coa-file-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.coa-file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border: 1px solid #e3efe5;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(40, 167, 69, 0.06);
}

.coa-file-details {
  flex: 1;
  min-width: 0;
}

.coa-file-name {
  display: block;
  color: #17311f;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  word-break: break-word;
}

.coa-download-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  padding: 12px 18px;
  border-radius: 999px;
  background: var(--main-color);
  color: var(--white-color);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.2s ease, transform 0.2s ease;
  flex-shrink: 0;
}

.coa-download-btn:hover {
  background: #1f8738;
  color: var(--white-color);
  transform: translateY(-1px);
}

.coa-download-btn:focus {
  color: var(--white-color);
}

@media (max-width: 767px) {
  .coa-files-block {
    padding: 18px;
  }

  .coa-file-item {
    flex-direction: column;
    align-items: flex-start;
  }

  .coa-download-btn {
    min-width: 0;
  }
}

html,
body {
  font-family: var(--main-font);
}

a {
  text-decoration: none;
}

.container-fluid {
  padding: 0 4%;
}

@media (min-width:1550px) {
  .container {
    max-width: 1500px;
  }
}

h1,
h2,
h3,
h5,
h6 {
  font-family: var(--heading-font);
}

p {
  font-family: var(--main-font);
}

.main_menu_hdr {
  background: #fff;
  z-index: 99;
  position: sticky;
  width: 100%;
  left: 0;
  top: 0;
  padding: 12px 0;
}

.left_top {
  display: flex;
  justify-content: flex-start;
}

.main_menu {
  display: block;
  position: relative;
  background: transparent;
  padding: 0px;
  border-radius: 15px;
}

.main_menu .navigation.navbar {
  padding: 0;
}

.container-menu {
  width: 80%;
  margin: 0 auto;
}

.logo {
  display: block;
  padding: 0px 0px;
}

.logo a {
  position: relative;
  z-index: 1;
  width: 140px;
  display: inline-block;
}

.logo a img {
  width: 100%;
}

.hdr_icon {
  padding: 0 10px;
}
.login_hdr a{
  color: #000;
  position: relative;
  font-size: 20px;
}
.login_hdr a::before{
    /* content: '';
    position: absolute;
    right: 0px;
    top: -2px;
    background: red;
    width: 8px;
    height: 8px;
    border-radius: 50%; */
}
.hdr_icon a {
  text-decoration: none;
}
.hdr_icon a i{
  font-size: 22px;
  color: #000;
}
.register_hdr a{
  color: #000;
  /* background: var(--main-color); */
  /* padding: 10px 13px; */
  border-radius: 30px;
  text-transform: uppercase;
}
.register_hdr a i{
  font-size: 20px;
}
.active_cart a{
  position: relative;
  color: #000;
}
.active_cart a i{
  font-size: 20px;
}
/*.active_cart a:before{*/
/*    content: '';*/
/*    position: absolute;*/
/*    right: -3px;*/
/*    top: -6px;*/
/*    background: #18A837;*/
/*    width: 8px;*/
/*    height: 8px;*/
/*    border-radius: 50%;*/
/*}*/

.banner_sec {
  width: 100%;
  background-size: cover;
  position: relative;
}

 .slide .slide__img:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
/*   background: rgb(0 0 0 / 40%); */
	 background: #000000;
background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 60%);
} 
.slider,
.slide {
  height: 80vh;
}

.slide {
  position: relative;
  transition: 1s;
}

.slide .slide__img {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 992px) {
  .slide .slide__img {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}

.slide .slide__img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  opacity: 1 !important;
  -webkit-animation-duration: 3s;
  animation-duration: 3s;
  transition: all 1s ease;
  object-fit: cover;
}

.slide .slide__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 33%;
}

.slide .slide__content.slide__content__left {
  left: 15%;
  transform: translate(-15%, -50%);
}

.slide .slide__content.slide__content__right {
  right: 15%;
  left: auto;
  transform: translate(5%, -50%);
}
.slide__content--headings h1{
    font-size: 54px;
    color:#fff;
}
.slide__content--headings p{
    font-size: 24px;
    color:#fff;
}
.slide .slide__content--headings {
  color: #000;
}

.slide .slide__content--headings h4 {
  font-size: 23px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.slide .slide__content--headings h2 {
  font-size: 4.5rem;
  margin: 10px 0;
  letter-spacing: 0px;
}

.slide .slide__content--headings h5 {
  margin: 10px 0;
}

.slide .slide__content--headings .animated {
  transition: all 0.5s ease;
}

.slide .slide__content--headings .top-title {
  font-family: var(--main-font);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 1px;
  color: var(--white-color);
}

.w_150 {
  width: 250px;
}

.slide .slide__content--headings .title {
  font-size: 65px;
  font-weight: 700;
  font-family: var(--heading-font);
  color: var(--white-color);
  letter-spacing: 3px;
  text-transform: uppercase;
}

.slide .slide__content--headings h3 {
  font-size: 100px;
  font-weight: 700;
  font-family: "Qwitcher Grypen", cursive;
  color: var(--white-color);
  line-height: 0.5;
}

.slide .slide__content--headings .title span {
  color: var(--text-color);
  font-weight: 400;
  font-size: 22px;
  text-transform: uppercase;
  display: block;
  padding: 0px;
}

.slide__content--headings {
  position: relative;
}

.slidebottomleft {
  animation: fadeInUp 1.5s both 1.5s;
}

.slick-dotted .slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  top: 50%;
  right: 5%;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 50px;
  transform: translate(0%, -50%);
}

.slick-dots li {
  position: relative;
  display: flex;
  margin: 0px;
  padding: 0;
  cursor: pointer;
  text-align: center;
  align-items: center;
  justify-content: center;
}

.slick-dots li button {
  border: 0;
  display: block;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.simple-dots .slick-dots li {
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button {
  border-radius: 50%;
  background-color: white;
  opacity: 0.25;
  width: 20px;
  height: 20px;
}

.simple-dots .slick-dots li button:hover,
.simple-dots .slick-dots li button:focus {
  opacity: 1;
}

.stick-dots .slick-dots li {
  height: 50px;
  width: 50px;
  padding: 0px 5px;
}

.stick-dots .slick-dots li button {
  color: #000;
  background: none;
  border: none;
  margin: 0px 0px;
  font-size: 20px;
  font-family: var(--text-font);
  position: relative;
  width: 25px;
  height: 25px;
}

.slick-dots li.slick-active button {
  color: var(--main-color);
}

.slick-dots li.slick-active button::before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  background: var(--main-color);
  width: 6px;
  height: 6px;
  border-radius: 50%;
}

.slick-dots li.slick-active button::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--main-color);
  width: 100%;
  height: 2px;
  border-radius: 50%;
}

.stick-dots .slick-dots li button:hover,
.stick-dots .slick-dots li button:focus {
  opacity: 1;
}

.stick-dots .slick-dots li.slick-active button {
  /* color: transparent;
  opacity: 1;
  width: 20px;
  height: 2px;
  border-radius: 0;
  background: #D9D9D9; */
}

.stick-dots .slick-dots li.slick-active button:hover,
.stick-dots .slick-dots li.slick-active button:focus {
  opacity: 1;
}





.slick-nav {
  --active: #fff;
  --border: rgba(255, 255, 255, .12);
  width: 44px;
  height: 44px;
  position: absolute;
  cursor: pointer;
  top: calc(50% - 44px);
}

.slick-nav.prev-arrow {
  left: 3%;
  transform: scaleX(-1);
  z-index: 1;
}

.slick-nav.next-arrow {
  left: auto;
  right: 3%;
}

.slick-nav i {
display: block;
    position: absolute;
    margin: -8px 0 0 -9px;
    width: 20px;
    height: 20px;
    left: 50%;
    top: 50%;
    z-index: 2;
    color: #fff;
}

/* .slick-nav i:before,
.slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}

.slick-nav i:before {
  transform: rotate(-40deg);
}

.slick-nav i:after {
  transform: rotate(40deg);
} */

.slick-nav:before,
.slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
  background-color: var(--main-color);
  border-radius: 50px;
}

.slick-nav.animate svg {
  -webkit-animation: stroke 1s ease forwards 0.3s;
  animation: stroke 1s ease forwards 0.3s;
}

.slick-nav.animate i {
  -webkit-animation: arrow 1.6s ease forwards;
  animation: arrow 1.6s ease forwards;
}

.slick-nav.animate i:before {
  -webkit-animation: arrowUp 1.6s ease forwards;
  animation: arrowUp 1.6s ease forwards;
}

.slick-nav.animate i:after {
  -webkit-animation: arrowDown 1.6s ease forwards;
  animation: arrowDown 1.6s ease forwards;
}

@-webkit-keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }

  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }

  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@keyframes stroke {
  52% {
    transform: rotate(-180deg);
    stroke-dashoffset: 0;
  }

  52.1% {
    transform: rotate(-360deg);
    stroke-dashoffset: 0;
  }

  100% {
    transform: rotate(-180deg);
    stroke-dashoffset: 126;
  }
}

@-webkit-keyframes arrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  23% {
    transform: translateX(17px);
    opacity: 1;
  }

  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }

  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@keyframes arrow {

  0%,
  100% {
    transform: translateX(0);
    opacity: 1;
  }

  23% {
    transform: translateX(17px);
    opacity: 1;
  }

  24%,
  80% {
    transform: translateX(-22px);
    opacity: 0;
  }

  81% {
    opacity: 1;
    transform: translateX(-22px);
  }
}

@-webkit-keyframes arrowUp {

  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowUp {

  0%,
  100% {
    transform: rotate(-40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@-webkit-keyframes arrowDown {

  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}

@keyframes arrowDown {

  0%,
  100% {
    transform: rotate(40deg) scaleX(1);
  }

  20%,
  80% {
    transform: rotate(0deg) scaleX(0.1);
  }
}












/*-------- button Effect-------*/
.red_btn {
  display: inline-block;
  box-sizing: border-box;
  padding: 14px 35px;
  border-radius: 6px;
  position: relative;
  color: var(--white-color);
  background: var(--main-color);
  text-transform: uppercase;
  text-decoration: none;
  overflow: hidden;
  text-align: center;
}

.red_btn span {
  z-index: 1;
  position: relative;
  letter-spacing: 3px;
}

.red_btn:before {
  content: "";
  height: 0;
  width: 100%;
  transform: translateX(0%);
  position: absolute;
  bottom: 0;
  left: 0;
  background: var(--main-color);
  border-radius: 0px;
  transition: all ease-in 0.3s;
}

.red_btn:hover:before {
  bottom: 0;
  transition: all ease-in 0.3s;
  height: 100%;
}

.red_btn:hover span {
  color: var(--white-color);
}

.red_btn.red_border {
  color: var(--white-color);
  background: transparent;
  border: 1px solid var(--white-color);
}

.red_btn.red_border_black {
  color: var(--black-color);
  background: transparent;
  border: 1px solid var(--black-color);
}

.red_btn.white_bg {
  color: var(--black-color);
  background: rgb(255 255 255 / 50%);
}

.red_btn.white_bg:before {
  background: rgb(255 255 255 / 100%);
}

.red_btn.white_bg span {
  color: var(--black-color);
}

.red_btn.black_bg {
  color: var(--white-color);
  background: var(--black-color);
}

.red_btn.black_bg:before {
  background: rgb(0 0 0 / 50%);
}

.red_btn.black_bg span {
  color: var(--white-color);
}

/*-------- button Effect-------*/
.heading_hp h2 {
  font-size: 44px;
  font-weight: 700;
  color: var(--black-color);
  position: relative;
  letter-spacing: 0px;
  /* text-transform: uppercase; */
  margin: 20px 0px;
}
.heading_hp span{
   text-transform: uppercase;
   color: var(--main-color);
   font-size: 16px;
   font-weight: bold;
}
.heading_hp h2 span {
  color: var(--main-color);
}

.heading_hp h6 {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 5px;
  text-transform: uppercase;
}

.heading_hp p {
  font-size: 18px;
  color: var(--text-color);
  line-height: 28px;
  font-weight: 400;
  margin-bottom: 25px;
}

.heading_hp.text_white h2,
.heading_hp.text_white p,
.heading_hp.text_white h6 {
  color: var(--white-color);
}

.border_h2 h2 {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}

.border_h2 h2:before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100px;
  height: 5px;
  background: var(--main-color);
}

/* About */
.about_sec {
  padding: 100px 0 0;
}

.sunglass_img {
  position: relative;
}

/* Shine */
.sunglass_img figure {
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.sunglass_img figure img {
  width: 100%;
  height: 100%;
}

.sunglass_img figure::before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 2;
  display: block;
  content: '';
  width: 50%;
  height: 100%;
  background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, .3) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.sunglass_img figure:hover::before {
  -webkit-animation: shine .75s;
  animation: shine .75s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

.tab_box {
  padding: 80px 0;
}

.bg_tab {
  background: #FBF9F7;
  padding: 45px 70px;
}
.new_arr_padding{
  padding: 0 10px;
}
.new_arr_carousell .new_arr_padding{
  padding: 0 5px;
}
.single_glass_item {
  position: relative;
  background: #fff;
  border: 1px solid #B3B3B3;
  border-radius: 10px;
}

.single_img {
  width: 100%;
  height: 250px;
  position: relative;
  /* background: #FBFCFF; */
  /* padding-bottom: 50px; */
}

.single_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 10px;
}

.cart_round {
    position: absolute;
    /* bottom: 0; */
    /* left: 50%; */
    right: 0;
    display: flex;
    justify-content: center;
    transform: translate(-50%, 0px);
    flex-direction: column;
    gap: 5px;
    top: 20px;
}

.reting_boo {
  font-size: 15px;
  margin-bottom: 6px;
}
.reting_boo ul{
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: inline-block;
}
.reting_boo ul li{
  display: inline-block;
  font-size: 13px;
}
.reting_boo i {
  color: #FFC107;
}
.left_boo{
  padding: 15px;
}
.left_boo span {
  font-size: 16px;
  color: #ff000e;
  font-weight: bold;
  height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Sirf 2 line show karega */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.left_boo h4 {
  color: #000;
  font-size: 20px;
  font-weight: bold;
  height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Sirf 2 line show karega */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.left_boo p {
  font-size: 15px;
  margin-bottom: 0;
  text-decoration:line-through;
  color: rgb(30 30 30 / 50%);
}

.left_boo .price {
  font-size: 18px;
  color: var(--main-color);
  font-weight: 600;
}
.left_boo .price span{
  font-size: 14px;
  font-weight: 500;
  margin-right: 5px;
  text-decoration:line-through;
  color: rgb(30 30 30 / 50%);
}
.cart_round a {
  color: var(--black-color);
  padding: 8px;
  display: flex;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
  background: #E6E6E6;
}
.cart_round a.heart_icon{
  background: #ff000e;
  color: #fff;
  margin-right: 10px;
}

.tab_box_tab .slick-nav.prev-arrow {
  left: -2%;
}

.tab_box_tab .slick-nav.next-arrow {
  right: -2%;
}

.shape_box {
  text-align: center;
  border-radius: 5px;
  padding: 0 5px;
}

.shape_box span {
  width: 100%;
  height: 150px;
  display: block;
}

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


.our_feature_video{
  padding: 50px 0;
}

.testimonial_sec {
  padding: 80px 0 80px 0px;
  /* background: #FBF9F7; */
}

.slid_show_padding {
  padding: 10px;
}

.testi_box {
  padding: 40px;
  background: var(--white-color);
  border: 1px solid #B3B3B3;
  border-radius: 10px;
}

.testi_box:hover {
  border: 1px solid var(--main-color);
}

.testi_img span {
  width: 70px;
  height: 70px;
  display: block;
  border-radius: 50%;
  position: relative;
}

.double_quote {
  width: 25px;
  height: 25px;
  position: absolute;
  background: var(--main-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-radius: 50%;
  right: 0;
  top: 0;
  font-size: 10px;
}

.testi_img span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testi_text {
  margin-left: 10px;
}

.testi_text span {
  color: rgb(30 30 30 / 50%);
}

.testi_star ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  margin-bottom: 0;
}

.testi_star ul li {
  color: #FDB500;
  font-size: 15px;
  margin-right: 5px;
}

.testi_text h4 {
  font-size: 18px;
  margin-bottom: 5px;
  font-weight: 700;
}

.testi_box p {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 0;
  text-align: center;
  min-height: 100px;
  color: var(--text-color);
}

.testi_date {
  width: 100%;
  text-align: center;
  display: block;
  font-size: 15px;
}















.subscribe_box {
  background: #FBF9F7;
  padding: 50px;
}

.free_return {
  text-align: center;
  padding: 0 30px;
}

.free_return h4 {
  font-size: 20px;
  margin: 10px 0;
  color: #fff;
  font-weight: 600;
}
.free_return p {
  font-size: 15px;
  margin-bottom: 0;
  color: #fff;
}
.img_free img {
  width: 70px;
  height: 55px;
  object-fit: contain;
}

.return_sec {
  padding: 50px 0;
  background: #0381d5;
}

.wining_look_sec {
  border-top: 1px solid var(--text-color);
  border-bottom: 1px solid var(--text-color);
  padding: 50px 0;
}

.top_call {
  position: relative;
  padding: 0px;
}

.top_call_img {
  margin-right: 10px;
}

.top_call_img img {
  width: 45px;
  height: 45px;
}

.top_call_text a {
  display: block;
}

.top_call_text a {
  display: block;
}

.top_call_text .num_top {
  font-size: 18px;
  text-decoration: none;
  color: var(--black-color);
  font-weight: 600;
  letter-spacing: 1px;
}

.top_call_text .mail_top {
  font-size: 14px;
  text-decoration: none;
  color: var(--black-color);
  font-weight: 300;
}

.wining_text p {
  font-size: 14px;
  color: var(--text-color);
  margin-bottom: 0;
  line-height: 25px;
}

.logo_looks {
  width: 250px;
  margin-bottom: 10px;
}

.ftr_links {
  padding: 50px 0;
  background-color: #000;
}

.customer_care h4 {
  font-size: 18px;
  border-bottom: 1px solid var(--white-color);
  width: 100%;
  margin-bottom: 20px;
  padding-bottom: 10px;
  text-transform: uppercase;
  color: var(--white-color);
  letter-spacing: 1px;
}

.customer_care ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  columns: 2;
}

.customer_care ul li a {
  color: var(--white-color);
}

.customer_care ul li {
  margin-bottom: 10px;
}

.social_country {
  border-top: 1px solid var(--text-color);
  border-bottom: 1px solid var(--text-color);
  padding: 50px 0;
}

.social_media h4 {
  font-size: 18px;
  width: 100%;
  margin-bottom: 0px;
  padding-bottom: 10px;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1px;
}

.social_media ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
}

.social_media ul li a {
  color: var(--white-color);
}

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

.selected_country {
  border-bottom: 1px solid var(--text-color);
  margin-bottom: 10px;
}

.selected_country h4 {
  font-size: 18px;
  width: 100%;
  margin-bottom: 0px;
  padding-bottom: 10px;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1px;
}

.ftr_text {
  padding: 20px 0;
  background-color:var(--black-color);
}

.ftr_text p {
  font-size: 14px;
  color:#fff;
}

/*------------- Inner Page ----------------- */
.inner_banner_sec {
  padding: 100px 0;
  position: relative
}

.inner_banner_sec::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.0);
}

.inner_banner_ontent {
  position: relative;
  z-index: 9
}

.cd-breadcrumb {
  width: 100%;
  padding-left: 5px;
  margin: 0;
}

.cd-breadcrumb::after::after {
  clear: both;
  content: "";
  display: table;
}

.cd-breadcrumb li {
  display: inline-block;
  float: left;
  margin: 0.5em 0;
  color: var(--white-color);
}

.cd-breadcrumb li a {
  color: var(--white-color);
}

.cd-breadcrumb li::after {
  /* this is the separator between items */
  display: inline-block;
  content: '\00bb';
  margin: 0 .6em;
  color: var(--white-color);
}

.cd-breadcrumb li:last-of-type::after {
  /* hide separator after the last item */
  display: none;
}

.cd-breadcrumb.custom-separator li::after,
.cd-multi-steps.custom-separator li::after {
  /* replace the default separator with a custom icon */
  content: '';
  height: 16px;
  width: 16px;
  background: url(../images/cd-custom-separator.svg) no-repeat center center;
  vertical-align: middle;
}

.inner_banner_ontent h1 {
  font-size: 41px;
  font-family: var(--heading-font);
  color: #fff;
  margin-bottom: 0;
}

.inner_banner_ontent h4 {
  color: #fff;
  letter-spacing: 5px;
  text-transform: uppercase;
  font-family: var(--heading-font);
  font-size: 60px;
  font-weight: 300
}

.inner_banner_ontent p {
  color: var(--white-color);
}

.filter {
  border-right: 1px solid #BDBDBD;
}

.padding_filter {
  padding: 20px 40px 20px 80px;
  border-bottom: 1px solid #BDBDBD;
}

.filter_heading {
  display: flex;
}

.filter_heading h4 {
  font-size: 22px;
  margin-bottom: 0;
  padding-left: 10px;
}

.filter .search_color {
  margin-top: 10px;
}

.filter .search_color input {
  font-size: 15px;
}

.filter .search_color input::placeholder {
  text-transform: capitalize;
  color: #1e1e1e;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 1;
}

.filter .search_color input::-ms-input-placeholder {
  text-transform: capitalize;
  color: #1e1e1e;
  font-size: 16px;
  letter-spacing: 2px;
  font-weight: 600;
  opacity: 1;
}

.form-group {
  display: block;
  margin-bottom: 15px;
}

.form-group input {
  padding: 0;
  height: initial;
  width: initial;
  margin-bottom: 0;
  display: none;
  cursor: pointer;
}

.form-group label {
  position: relative;
  cursor: pointer;
}

.form-group label:before {
  content: '';
  -webkit-appearance: none;
  background-color: transparent;
  border: 1px solid #000;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
  padding: 10px;
  display: inline-block;
  position: relative;
  vertical-align: middle;
  cursor: pointer;
  margin-right: 5px;
  border-radius: 5px;
}

.form-group input:checked+label:after {
  content: '';
  display: block;
  position: absolute;
  top: 4px;
  left: 9px;
  width: 6px;
  height: 14px;
  border: solid var(--main-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.form-group input:checked+label:before {
  border: 1px solid var(--main-color);
}

.filter .accordion-button {
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.filter .accordion-item {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.filter .accordion-button:not(.collapsed) {
  background: none;
}

.accordion-body {
  padding: 15px;
}

.filter .accordion-button:after {
  background-image: url(../images/filter_arrow.svg);
  background-size: 16px;
}

.filter h2.accordion-header button {
  font-size: 22px
}

.color_filter ul {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
  display: flex;
}

.color_filter ul li {
  padding-right: 6px;
}

.color_filter ul li a {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
}

.Frametype_filter ul {
  list-style: none;
  padding-left: 0;
  display: block;
  margin-bottom: 0;
  columns: 4;
}

.Frametype_filter ul li {
  margin-bottom: 10px;
}

.Frametype_filter ul li a {
  display: block;
  width: 100%;
  color: var(--text-color);
  text-align: center;
}

.Frametype_filter ul li a span {
  display: block;
  width: 100%;
  height: 60px;
  border: 1px solid rgb(30 30 30 / 50%);
  border-radius: 6px;
  padding: 3px;
}

.Frametype_filter ul li a span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.Frametype_filter ul li a:hover span {
  border: 1px solid var(--main-color);
}

.filter_resilt {
  background: #F3F3F3;
  width: 100%;
  padding: 30px;
}

.filter_res_text h4 {
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 600;
}

.filter_res_text p {
  margin-bottom: 0;
}

.latest_filter {
  padding: 3px;
  background: transparent;
  border-radius: 5px;
}

.filter_and_productlist {
  padding-bottom: 50px;
}

.well {
  padding: 30px;
}

.thumbnail {
  margin-bottom: 20px;
  padding: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  border-radius: 0px;
  border: 1px solid #B3B3B3;
  border-radius: 8px;
  position: relative;
  padding: 20px;
}

.text_light {
  color: rgb(0 0 0 / 50%);
  margin-bottom: 10px !important;
  line-height: 16px;
}

.productitem .reting_boo {
  display: inline-block;
}

.productitem .left_boo h4 {
  color: #000;
  font-size: 20px;
  text-transform: capitalize;
}

.productitem .left_boo p {
  margin-bottom: 10px;
}

.productitem.list-group-item {
  float: none;
  width: 100%;
  background-color: #fff;
  margin-bottom: 10px;
}

.discount_text {
  color: rgb(0 0 0 / 50%);
  font-size: 15px;
  text-decoration: line-through;
}

.only_few_left {
  font-size: 15px;
  color: #E92F2A;
}

.productitem.list-group-item:nth-of-type(odd):hover,
.productitem.list-group-item:hover {
  box-shadow: 0px 1px 25px #ccc;
}

.productitem.list-group-item .list-group-image {
  margin-right: 5px;
}

.productitem.list-group-item .thumbnail {
  margin-bottom: 0px;
}

.productitem.list-group-item .thumbnail {
  margin-bottom: 0px;
}

.thumbnail .group.list-group-image {
  width: 100%;
  height: 160px;
  object-fit: contain;
}

.productitem.list-group-item .caption {
  padding: 9px 9px 0px 9px;
}

.productitem.list-group-item:before,
.productitem.list-group-item:after {
  display: table;
  content: " ";
}

.productitem.list-group-item .group.list-group-image {
  float: left;
  width: 300px;
  height: 200px;
}

.productitem.list-group-item:after {
  clear: both;
}

.productitem .color_filter a {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: block;
  box-shadow: 0 5px 10px rgb(0 0 0 / 10%);
  margin-right: 3px;
}

.slider_prd {
  width: 100%;
}

.prodict_img_slid {
  width: 100%;
  height: 100%;
  display: block;
}

.prodict_img_slid img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.top_choise {
  position: absolute;
  background: #EBB415;
  left: 10px;
  top: 8px;
  z-index: 1;
  padding: 1px 11px;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.bestseller {
  position: absolute;
  background: #00A098;
  left: 10px;
  top: 8px;
  z-index: 1;
  padding: 1px 11px;
  border-radius: 4px;
  color: #fff;
  font-weight: 500;
  font-size: 14px;
}

.cdp {
  position: relative;
  text-align: center;
  padding: 0px 0;
  font-size: 0;
  z-index: 6;
  margin: 0px 0;
}

.cdp_i {
  font-size: 14px;
  text-decoration: none;
  display: inline-block;
  text-transform: uppercase;
  margin: 0 3px 6px;
  height: 38px;
  min-width: 38px;
  border-radius: 38px;
  border: 1px solid #000;
  line-height: 38px;
  padding: 0;
  color: #000;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.cdp_i:first-child,
.cdp_i:last-child {
  padding: 0 16px;
  margin: 0 12px 6px;
}

.cdp_i:hover {
  background-color: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
}

.details_prd {
  border-top: 1px solid var(--text-color);
}

.details_prd .cd-breadcrumb li a {
  color: var(--text-color);
}

.details_prd .cd-breadcrumb li {
  color: var(--text-color);
}

.details_prd .cd-breadcrumb.custom-separator li::after {
  content: '';
  height: 14px;
  width: 10px;
  background: url(../images/cd-custom-separator-black.svg) no-repeat center center;
  vertical-align: middle;
}

.similar_products {
  padding: 50px 0;
}

.prd_img {
  width: 100%;
}

.prd_img span {
  width: 100%;
  height: 500px;
  border-radius: 6px;
  border: 1px solid #B3B3B3;
  display: block;
  margin-bottom: 25px;
}

.prd_img span img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}

.product_details {
  padding: 25px 0;
}

.fa_hart {
  color: rgb(0 0 0 / 50%);
  font-size: 22px;
}

.wl_logo span {
  width: 40px;
  height: 40px;
  display: block;
  margin-right: 15px;
}

.wl_logo span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product_main_heading h2 {
  margin-bottom: 0;
  font-size: 41px;
}

.product_main_heading h5 {
  margin-bottom: 0;
  font-size: 18px;
}

.product_main_heading p {
  color: var(--text-color);
  font-size: 14px;
}

.product_det_right .reting_boo {
  display: inline-block;
}

.size_text {
  width: 100%;
  font-size: 18px;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
  letter-spacing: 3px;
}

.round_30.color_filter ul li a {
  width: 30px;
  height: 30px;
}

.round_30.color_filter {
  margin-bottom: 20px;
}

.full_price {
  font-size: 24px;
  color: var(--main-color);
  text-transform: uppercase;
  line-height: 1;
}

.discount_price {
  font-size: 16px;
  color: #808080;
  text-decoration: line-through;
  padding-left: 10px;
}

.total_off {
  font-size: 20px;
  color: #0CAA32;
  padding-left: 20px;
  line-height: 1;
}

.instock {
  font-size: 20px;
  color: #0CAA32;
  margin-bottom: 10px;
}

.w_350 {
  width: 350px;
}

.technical_information {
  width: 100%;
}

.technical_information ul {
  list-style: none;
  display: flex;
  justify-content: space-between;
  padding-left: 0;
  margin-bottom: 5px;
}

.technical_information ul li {
  text-align: left;
  width: 50%;
}

.product_det_right .accordion {
  margin-bottom: 25px;
  border-bottom: 1px solid #BDBDBD;
  padding-bottom: 25px;
}

.product_det_right .accordion-button {
  padding: 0;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.product_det_right .accordion-item {
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.product_det_right .accordion-button:not(.collapsed) {
  background: none;
}

.product_det_right .accordion-body {
  padding: 10px 0 0;
}

.product_det_right .accordion-button:after {
  background-image: url(../images/filter_arrow.svg);
  background-size: 16px;
}

.product_det_right h2.accordion-header button {
  font-size: 22px;
  text-transform: uppercase;
  font-family: GlacialIndifference-Bold;
}

.product_feature ul {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
}

.product_feature ul li {
  padding-right: 10px;
  position: relative;
  margin-right: 8px;
}

.product_feature ul li:before {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: #1e1e1e;
}

.rate_product {
  padding: 10px 15px;
  background: var(--white-color);
  border: 1px solid var(--text-color);
  color: var(--text-color);
  border-radius: 6px;
}

.review_img {
  width: 40px;
  height: 40px;
  display: block;
  margin-right: 8px;
}

.review_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.status_review h4 {
  color: var(--black-color);
  font-family: GlacialIndifference-Bold;
  padding-left: 15px;
  font-size: 20px;
}

.certified_buy {
  font-size: 15px;
  color: rgb(30 30 30 / 50%);
}

.age_buy {
  font-size: 14px;
  color: rgb(30 30 30 / 50%);
}

.single_review {
  border-bottom: 1px solid #BDBDBD;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.product_review .single_review:last-child {
  border: none;
  margin-bottom: 0px;
  padding-bottom: 0px;
}

.call_us_btn {
  background: #FBD6E8;
  color: var(--main-color);
  border: 1px solid var(--main-color);
  font-size: 16px;
  text-transform: uppercase;
  padding: 10px 25px;
  border-radius: 8px;
  white-space: nowrap;
}

.doubts_text h4 {
  text-transform: uppercase;
  font-family: GlacialIndifference-Bold;
  font-size: 22px;
}

.shopping_cart_sec {
  border-top: 1px solid var(--black-color);
  padding: 30px 0;
}

.cart_product {
  width: 100%;
  border: 1px solid #B3B3B3;
  border-radius: 10px;
  margin-bottom: 15px;
}

.cart_product .cart_images {
  width: 100%;
}

.cart_product .cart_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.cart_text {
  padding: 30px;
}

.cart_text h4 {
  font-size: 24px;
}

.color_code {
  font-size: 20px;
}

.wl_price {
  width: 100%;
  padding-left: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 5px;
}

.wl_price li {
  font-size: 20px;
}

.wl_price li:last-child {
  color: var(--main-color);
}

.wl_price li:last-child span {
  text-decoration: line-through;
  font-size: 16px;
  color: #B3B3B3;
}

.left_p_text h4 {
  font-size: 18px;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
  color: var(--black-color);
  margin-bottom: 0;
  letter-spacing: 3px;
}

.right_p_text h4 {
  font-size: 18px;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
  color: var(--main-color);
  margin-bottom: 0;
  letter-spacing: 3px;
}

.final_price {
  border-top: 1px solid #BDBDBD;
  border-bottom: 1px solid #BDBDBD;
  padding: 12px 0;
}

.only_left {
  color: #E92F2A;
  font-size: 20px;
}

.expeted {
  margin-bottom: 0;
}

.call_us_drop {
  padding: 8px 12px;
  border: 1px solid #B3B3B3;
  border-radius: 6px;
}

.qty span {
  font-size: 17px;
}

.qty_te {
  padding: 8px 12px;
  border: 1px solid #B3B3B3;
  border-radius: 6px;
  margin: 0 10px;
}

.add_wishlist {
  font-family: GlacialIndifference-Bold;
  font-size: 20px;
  text-transform: uppercase;
  color: var(--black-color);
  letter-spacing: 3px;
}

.coupons_sec {
  border: 1px solid #B3B3B3;
  padding: 10px;
  border-radius: 10px;
}

.coupon_text p {
  font-size: 16px;
  margin-bottom: 0;
}

.coupon_text span {
  font-size: 16px;
  margin-bottom: 0;
  color: var(--main-color);
}

.coupon_here {
  padding: 7px 12px;
  background: rgb(179 179 179 / 20%);
  border: none;
  border-radius: 6px;
  width: 100%;
}

.bill_details {
  padding: 20px 0;
}

.bill_details h4 {
  font-size: 24px;
  font-family: GlacialIndifference-Bold;
  color: var(--black-color);
}

.bill_text {
  padding: 25px;
  background: #fff;
  box-shadow: 0 0 16px rgb(0 0 0 / 10%);
  border-radius: 15px;
}

.bill_text ul {
  width: 100%;
  padding-left: 0;
  margin-bottom: 5px;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bill_text ul li {
  font-size: 20px;
}

.total_payable {
  display: flex;
  justify-content: space-between;
}

.total_payable_l {
  color: var(--black-color);
  font-size: 20px;
  font-family: GlacialIndifference-Bold;
}

.total_payable_r {
  color: var(--black-color);
  font-size: 20px;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
}

.by_con {
  padding: 25px;
}

.by_con .form-group label {
  font-size: 20px;
  color: var(--black-color);
}

.by_con .form-group label a {
  font-size: 20px;
  color: var(--main-color);
}

.back_arrow {
  color: var(--black-color);
  font-weight: 200;
  margin-right: 10px;
  font-size: 25px;
}

.radio-input {
  visibility: hidden;
  display: none;
}

.radio-label {
  position: relative;
  padding-left: 27px;
  margin-right: 20px;
}

.radio-label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  position: absolute;
  left: 6px;
  top: 6px;
  border-radius: 50%;
}

.radio-border {
  width: 20px;
  height: 20px;
  display: inline-block;
  outline: solid 1px #000;
  border-radius: 50%;
  position: absolute;
  left: 0px;
  top: 0px;
}

.radio-input:checked+.radio-label:after {
  transition: all 0.5s;
  background-color: #EF1C5B;
}

.radio-input:checked+.radio-label .radio-border {
  outline: solid 1px #EF1C5B;
  background: #FFD1DF;
}

.select_danger {
  font-size: 20px;
  margin-bottom: 5px;
}

.checkout_item {
  padding-right: 150px;
}

.save_as {
  margin-bottom: 0;
  padding-left: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.save_as li {
  padding-right: 10px;
}

.save_as li a {
  border: 1px solid #B3B3B3;
  border-radius: 6px;
  color: var(--black-color);
  padding: 8px 20px;
  vertical-align: middle;
  font-size: 18px;
  display: inline-block;
}

.save_as li a img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.save_as li a span {
  vertical-align: middle;
}

.offcanvas_vision {
  bottom: auto;
  min-height: 50%;
  background: #FBF9F7;
  width: 700px !important;
  top: 20px !important;
  right: 20px !important;
  box-shadow: 0 0 26px rgb(0 0 0 / 15%);
  border-left: 0 !important;
}

.vision_all {
  width: 100%;
  background: var(--white-color);
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 15px;
}

.vision_text h4 {
  width: 100%;
  margin-bottom: 0;
  font-family: GlacialIndifference-Bold;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 3px;
}

.vision_text p {
  width: 100%;
  margin-bottom: 0;
  font-size: 14px;
}

.single_vision span {
  width: 30px;
  height: 30px;
  display: block;
  margin-right: 5px;
}

.single_vision span img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.subtotal_frame {
  font-size: 24px;
  margin-top: 50px;
}

.subtotal_frame span {
  color: var(--main-color);
  display: block;
}

.select_lens_back {
  color: var(--black-color);
}

.off_body {
  padding: 0px 50px 20px 20px;
}

.offcanvas-header {
  padding-bottom: 0;
}

.offcanvas-backdrop.show {
  opacity: 0;
}

.rimless {
  width: 100%;
  display: block;
  background: var(--white-color);
  box-shadow: 0 0 15px rgb(0 0 0 / 10%);
  padding: 10px 15px;
  border-radius: 8px;
  margin-bottom: 45px;
}

.lens_feature p {
  margin-bottom: 0;
}

.lens_feature h5 {
  margin-bottom: 0;
  color: var(--main-color);
}

.rimless h4 {
  color: var(--text-color);
  font-family: GlacialIndifference-Bold;
  font-size: 24px;
  text-transform: uppercase;
  margin-bottom: 0;
}

.lens_heading a {
  font-size: 35px;
}

.warranty_period {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #B3B3B3;
  padding: 15px;
}

.warranty_period ul {
  padding-left: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5px;
}

.width_200 {
  width: 46%;
}

.select_lens_btn {
  text-align: center;
  margin-top: 15px;
  margin-bottom: -40px;
}

.form {
  width: 440px;
  padding: 0 20px;
  box-sizing: border-box;
  position: absolute;
  z-index: 1;
  right: 0;
  transition: all 0.5s ease;
  transform: scale(0);
  background: #fff;
}

.input {
  width: 400px;
  border: 0px;
  background: transparent;
  box-sizing: border-box;
  border-bottom: 3px solid #000;
  outline: none;
  padding: 0 20px 10px;
  color: #000;
  font-size: 20px;
  background: #fff;
}

.cross_search_btn {
  position: absolute;
  right: 33px;
  top: 6px;
}

#search {
  color: #000;
  position: relative;
  top: 18px;
  left: 90px;
  opacity: 0;
  letter-spacing: 1px;
  transition: all 0.5s ease;
}

#search.viewsarch {
  opacity: 1;
}

.form.viewsarch {
  transform: scale(1);
}

#search.move {
  top: 60px;
  left: 20px;
  font-size: 12px;
}

@media screen and (max-width: 640px) {

  .btn,
  .form {
    width: 300px;
  }

  /*.form {*/
  /*  width: 260px;*/
  /*}*/

  #search {
    left: 30px;
    font-size: 14px;
  }
}

.login_page {
  padding: 0px 0 0px;
  border-top: 1px solid #000;
}

/*---- Profile -----*/
.dashboard_section {
  padding: 50px 0;
  border-top: 1px solid rgb(0 0 0 / 20%);
}

.img_image {
  width: 80px;
  height: 80px;
  margin-right: 20px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  padding: 5px;
}

.img_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.name_price h5 {
  font-size: 20px;
}

.name_price span {
  font-size: 18px;
  color: #ef1c5b;
  display: inline-block;
}

.img-market {
  padding: 18px 0;
  margin: 0;
}

.img-market a {
  color: #424242;
  font-size: 16px;
  display: flex;
  align-items: center;
}

.img-market a i {
  color: #ef1c5b;
  font-size: 18px;
  margin-right: 5px;
}

.dashboard_left {
  background: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  padding: 15px;
  border-radius: 0px;
}

.left_drop_dashboard {
  padding-left: 10px;
}

.left_drop_dashboard li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.left_drop_dashboard li i {
  color: #747474;
  margin-right: 7px;
  font-size: 14px;
}

.left_drop_dashboard li a {
  font-size: 15px;
  color: #747474;
}

.right_content {
  padding: 20px;
  background: #fff;
  box-shadow: 0 0 10px rgb(0 0 0 / 10%);
  margin-bottom: 28px;
  border-radius: 0px;
  position: relative;
}

.edit_profile {
  position: absolute;
  right: 7px;
  top: 7px;
  padding: 2px;
}

.edit_profile a {
  color: var(--white-color) !important;
  background: #000;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.resend {
  position: relative;
  background: #fd3103 !important;
  text-align: center;
  color: #fff !important;
  font-size: 16px;
  font-weight: 400;
  padding: 14px 40px;
  border-radius: 6px;
  display: block;
  margin-bottom: 5px;
}

.my_order_titel h4 {
  color: var(--main-color);
  border-bottom: 1px solid rgb(0 0 0 / 16%);
  margin-bottom: 20px;
  padding-bottom: 6px;
}

.my_orders {
  width: 100%;
  border: 1px solid #B3B3B3;
  border-radius: 10px;
  margin-bottom: 15px;
}

.my_orders .order_images {
  width: 100%;
}

.my_orders .order_images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px 0 0 10px;
}

.order_text {
  padding: 15px;
}

.order_text h4 {
  font-size: 16px;
}

.order_text h4 span {
  color: var(--main-color);
}

.expeted {
  font-size: 14px;
}

.btn_text {
  display: inline-block;
  box-sizing: border-box;
  padding: 4px 15px;
  border-radius: 6px;
  position: relative;
  color: var(--white-color);
  background: var(--main-color);
  text-decoration: none;
  text-align: center;
}

.cancel_order {
  background: #fff;
  border: 1px solid var(--main-color);
  color: var(--main-color);
}

.personal_infor h5 {
  font-size: 16px;
}

.personal_infor a {
  color: var(--main-color);
}

.profile-form-addr h4 {
  font-size: 14px;
  margin-bottom: 10px;
}

.profile-form-addr p {
  margin-bottom: 0px;
  font-size: 14px;
}

.profile-form-addr {
  display: flex;
  justify-content: space-between;
}

.profile-form-addr-right a {
  color: var(--heading-color);
}

.add_nn {
  display: none;
}

.add_nn.add_open {
  display: block;
}

.rate_this_product ul {
  list-style: none;
  padding-left: 0;
}

.rate_this_product ul li {
  color: #c7c7c7;
  display: inline-block;
  font-size: 15px;
}

/*---- Profile -----*/
/*---- Contact -----*/
.contact_section {
  padding: 50px 0;
  border-top: 1px solid rgb(0 0 0 / 20%);
}

.contct-addr-box-outr {
  border: 1px solid #e1e1e1;
  padding: 15px;
  height: 100%;
  text-align: center;
}

.footer-heading {
  font-size: 22px;
  color: var(--main-color);
  margin-top: 10px;
}

.contct-addr-box-outr .fa-icon {
  color: var(--main-color);
}

.contct-addr-box-outr ul {
  list-style: none;
}

.contct-addr-box-outr ul li a,
.contct-addr-box-outr ul li,
.contct-addr-box-outr p {
  color: var(--text-color);
  font-size: 14px;
}

.contct-addr-box-outr ul li {
  margin-bottom: 10px;
}

/*---- Contact -----*/
/*---- privacy -----*/
.pravicy_list p {
  margin-bottom: 25px;
}

.sign-form-outr {
  padding: 30px;
  border: 1px solid #eee;
}

/*---- privacy -----*/
/*---- faq -----*/
.faq_list ol,
.faq_list ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.faq_list a {
  color: var(--text-color);
}

.faq_list .accordion-button:not(.collapsed) {
  color: #000;
  background-color: rgb(239 28 91 / 20%);
}

.faq_list .accordion-item {
  margin-bottom: 25px;
}

/*---- faq -----*/
/*---- Blog -----*/

.blo_section {
  padding: 50px 0 0;
  border-top: 1px solid var(--text-color);
}

.single_blog {
  border-bottom: 1px solid #000;
  margin: 0 30px 40px 30px;
  padding-bottom: 30px;
}

.single_blog h6 {
  letter-spacing: 2px;
  font-size: 18px;
  margin-bottom: 0
}

.single_blog h6 span {
  color: #081809;
  display: inline-block;
  padding-left: 10px;
  margin-left: 10px;
  border-left: 2px solid #000;
  line-height: 12px
}

.single_blog h2 {
  font-size: 25px;
}

.blog_img_wrapper {
  height: 300px;
  margin-bottom: 20px
}

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

.blog_desc p {
  font-size: 15px
}

.box_1 {
  background-color: rgb(228 110 0 / 50%);
  padding: 30px;
  margin-bottom: 30px
}

.box_1 h4 {
  font-size: 20px;
}

.box_1 ul li a {
  color: #000;
  text-decoration: none;
  margin-bottom: 10px;
  display: block;
  transition: ease-in all 0.3s
}

.box_1 ul li a:hover {
  padding-left: 15px;
  transition: ease-in all 0.3s
}

/*---- Blog -----*/
/*---- cart_edit -----*/
.edit_lens {
  padding: 7px;
  font-size: 12px;
  background: #ef1c5b;
  margin-right: 5px;
  color: #fff;
  border-radius: 6px;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.remove_lens {
  background: #000;
}

/*---- cart_edit -----*/

/*---- add_press -----*/

.add_presscription {
  text-align: center;
  padding: 50px 0;
}

.btn-up {
  padding: 9px 20px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 20px;
  cursor: pointer;
  background-color: #FBD6E8;
  color: #EF1C5B;
  border: 1px solid #EF1C5B;
  border-radius: 11px;
  width: 100%;
  font-weight: 600;
  text-transform: uppercase;
}

.add_presscription img {
  margin: 30px 0;
  width: 200px;
}

.add_presscription h4 {
  text-transform: uppercase;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
}


/*---- add_press -----*/


/*---- details zoom -----*/

.box_slae {
  width: 100%;
  height: 0px;
  background: rgb(0 0 0 / 80%);
  position: fixed;
  right: 0;
  top: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 99999;
  box-shadow: 0 0 39px rgb(0 0 0 / 20%);
  border-radius: 0px;
  left: 0;
}

.box_slae.active {
  height: 100vh;
  padding: 17px;
  transition: all 0.3s ease;
}
#deletebtn {
  width: 40px;
  height: 40px;
  background: none;
  text-align: center;
  cursor: pointer;
  position: absolute;
  right: 7px;
  top: 11px;
  color: var(--main-color);
  font-size: 22px;
  z-index: 1;
}
.zoom_box{
  background: #fff;
  width: 800px;
  margin: 0 auto;
  position: relative;
  padding: 50px;
  border-radius: 10px;
}
.slid_forbig{
  width: 100%;
  height: 400px;
}
.slid_forbig img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.slid_forsmall{
  width: 100%;
  height: 80px;
}
.slid_forsmall img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider-nav-zoom .slick-nav.prev-arrow {
  left: -3%;
  transform: scaleX(-1);
  z-index: 1;
}

.slider-nav-zoom .slick-nav.next-arrow {
  left: auto;
  right: -3%;
}

.slider-nav-zoom .slick-nav i {
  display: block;
  position: absolute;
  margin: -7px 0 0 -8px;
  width: 16px;
  height: 15px;
  left: 50%;
  top: 50%;
  z-index: 1;
}

.slider-nav-zoom .slick-nav i:before,
.slider-nav-zoom .slick-nav i:after {
  content: "";
  width: 10px;
  height: 2px;
  border-radius: 1px;
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--active);
  margin: -1px 0 0 -5px;
  display: block;
  transform-origin: 9px 50%;
}

.slider-nav-zoom .slick-nav i:before {
  transform: rotate(396deg);
}

.slider-nav-zoom .slick-nav i:after {
  transform: rotate(64deg);
} 

.slider-nav-zoom .slick-nav:before,
.slider-nav-zoom .slick-nav:after {
  content: "";
  display: block;
  position: absolute;
  left: 1px;
  right: 1px;
  top: 1px;
  bottom: 1px;
  border-radius: 50%;
  border: 2px solid var(--border);
}

.slider-nav-zoom .slick-nav svg {
  width: 44px;
  height: 44px;
  display: block;
  position: relative;
  z-index: 1;
  color: var(--active);
  stroke-width: 2px;
  stroke-dashoffset: 126;
  stroke-dasharray: 126 126 0;
  transform: rotate(0deg);
}


.slider-nav-zoom .slick-nav:before,
.slider-nav-zoom .slick-nav:after {
  background: var(--white-color);
  border: none;
  transition: all ease-in 0.3s;
}

.slider-nav-zoom .slick-nav i {
  transform: rotate(324deg);
}

.slider-nav-zoom .slick-nav:hover:before,
.slider-nav-zoom .slick-nav:hover:after {
  background: var(--white-color);
  border: none;
  transition: all ease-in 0.3s;
}

.slider-nav-zoom .slick-nav:hover i {
  color: var(--white-color);
  transition: all ease-in 0.3s;
}
.slider-nav-zoom .slick-nav {
  top: calc(50% - 33px);
}

.bog_zoom{
  position: absolute;
  right: -100px;
  top: 100px;
  width: 300px;
  height: 300px;
  z-index: 1;
}


/*---- details zoom -----*/




/* css by Pramesh  */
.left-shop-card-wrepper{
  padding-top: 50px;
}
.left-shop-card-wrepper .single_glass_item{
  margin-bottom: 25px;
}
.left-shop-card-wrepper .right-part{
  width: 100%;
  height: 754px;
}
.left-shop-card-wrepper .right-part img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-sec{
  padding: 80px 0;
}
.about-sec .content{
  /* text-align: center; */
  margin-top: 20px;
}

.about-img{
  width: 100%;
  height: 600px;
  overflow: hidden;
  border-radius: 20px;
}

.about-img img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: ease-in-out .3s;
}
.about-img:hover img{
  transform: scale(1.2);
  transition: ease-in-out .3s;
}
.about-text{
  /* padding-left: 50px; */
}
/* ================================================================================= */
.why-chhhose-sec{
  padding: 80px 0px;
}
.container-box {
  position:relative;
    margin: 50px auto;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    /* background-image: url("https://i.ibb.co/jVL0zvC/section-img.jpg"); */
    background-size: cover;
    background-position: 43%;
    /* opacity: .3; */
    /* overflow: hidden; */

}
.container-box::before{
  position: absolute;
  content: '';

}
.center-div {
   position: absolute;
   top: 45%;
   margin-top: -30px;
   width: 80%;
   left: 50%;
   transform: translate(-50%,-50%); 
}

.center-div h2 {
    font-weight: bold;
    font-size: 20px;
    color: #fff;
    text-align: center;
    margin-top: 100px;
}

.center-div p {
    margin-top: 30px;
    text-align: center;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    line-height: 1.8;

}

.choices {
    display: flex;
}

.left-top,
.right-top,
.right-bottom,
.left-bottom {
    position: absolute;
    display: flex;
    transition: .6s;
    cursor: pointer;
    width: 100%;
    user-select: none;
}

.left-top:hover,
.right-top:hover,
.right-bottom:hover,
.left-bottom:hover {
    transform: scale(1.1);
}

.left-top {
    left: -70%;
    top:  3%;
}

.right-top {
    left: 70%;
    top: 3%;
}

.right-bottom {
    left: 70%;
    top: 80%;
}

.left-bottom {
    left: -70%;
    top: 80%;
}

.left-top-circle,
.right-top-circle,
.right-bottom-circle,
.left-bottom-circle {
    position: relative;   
    background-color: #fff;
    width: 100px;
    height: 100px;
    border-radius: 50%;
   border:2px solid #000;
   box-shadow: 0 0 15px #00A098;
}

.left-top-circle{
    left: 81%;    
}


.left-bottom-circle {
    left: 81%;
}

.left-top-circle img,
.right-top-circle img,
.right-bottom-circle img,
.left-bottom-circle img {
    width: 70%;
    display: block;
    position: absolute;
    top: 15%;
    left: 12%;
}

.left-top-text,
.right-top-text,
.right-bottom-text,
.left-bottom-text {
    position: relative;
    padding: 8px;
    width: 80%;
   
}

.left-top-text {
    left: -27%;
}

.right-top-text {
    left: 7.5%;
}

.right-bottom-text {
    left: 7.5%;
    top: 80%;
}

.left-bottom-text {
    left: -27%;
}

.left-top-text h3,
.right-top-text h3,
.right-bottom-text h3,
.left-bottom-text h3 {
    text-align: right;
    color: var(--black-color);
    font-size: 24px;
    font-weight: bold;
}

.right-top-text h3,
.right-bottom-text h3{
    text-align: left;
}

.left-top-text p,
.right-top-text p,
.right-bottom-text p,
.left-bottom-text p {
    margin-top: 30px;
    color: #000;
    /* font-weight: bold; */
    line-height: 1.4;
    text-align: justify;
    font-size: 16px;
}

.colpy-wrepper{
  border-top: 1px solid #ccc;
  padding-top: 20px;
}

.f-logo-box{
  width: 140px;
  /*height: 100px;*/
  overflow: hidden;
  margin-bottom: 20px;
}
.f-logo-box img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.desclamer p{
  color: #fff;
}
/* =============faq css=============== */
.faq-container {
    max-width: 100%;
    padding: 20px;
    flex: 1;
}
.accordion-button {
    background-color: #ffffff;
    color: #333;
    border: none;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}
.accordion-button:not(.collapsed) {
    background-color: #0381d5;
    color: white;
}
.accordion-button:focus {
    box-shadow: 0 0 0 0.2rem rgba(35, 34, 138, 0.25);
}
.accordion-body {
    background-color: #f8f9fa;
    border-left: 4px solid #0381d5;
    animation: slideDown 0.3s ease-out;
}
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.faq-icon {
    margin-right: 10px;
    color: #edbe00;
}

.accordion-item {
    margin-bottom: 10px;
    border-radius: 8px;
    overflow: hidden;
}
.faq-sec{
  padding: 80px 0px;
}
.address-area{
  column-count: 1 !important;
}
.address-area a span{
  width: 30px;
  height: 30px;
  background-color: #0381d5;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
}
/* ============================about page css==================================== */
/* ====================about pag css=================================== */
.sec-title{
position:relative;
z-index: 1;
/* margin-bottom:60px; */
}

.sec-title .title{
position: relative;
display: block;
font-size: 18px;
line-height: 24px;
color: #00aeef;
font-weight: 500;
margin-bottom: 15px;
}

.sec-title h2{
position: relative;
display: block;
font-size:40px;
line-height: 1.28em;
color: var(--main-color);
font-weight: 600;
/* padding-bottom:18px; */
}

/* .sec-title h2:before{
position:absolute;
content:'';
left:0px;
bottom:0px;
width:50px;
height:3px;
background-color:#d1d2d6;
} */

.sec-title .text{
position: relative;
font-size: 16px;
line-height: 26px;
color: #848484;
font-weight: 400;
margin-top: 35px;
}

.sec-title.light h2{
color: #ffffff;
}

.sec-title.text-center h2:before{
left:50%;
margin-left: -25px;
}

.list-style-one{
position:relative;
}

.list-style-one li{
position:relative;
font-size:16px;
line-height:26px;
color: #222222;
font-weight:400;
padding-left:35px;
margin-bottom: 12px;
}

.list-style-one li:before {
content: "\f058";
position: absolute;
left: 0;
top: 0px;
display: block;
font-size: 18px;
padding: 0px;
color: #ff2222;
font-weight: 600;
-moz-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
font-style: normal;
font-variant: normal;
text-rendering: auto;
line-height: 1.6;
font-family: "Font Awesome 5 Free";
}

.list-style-one li a:hover{
color: #44bce2;
}

.btn-style-one{
position: relative;
display: inline-block;
font-size: 17px;
line-height: 30px;
color: #ffffff;
padding: 10px 30px;
font-weight: 600;
overflow: hidden;
letter-spacing: 0.02em;
background-color: #00aeef;
}
.btn-style-one::after{
    position: absolute;
    content: '';
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: #191e34;
    transform: scale(0);
    transition: .5s;
}
.btn-style-one:hover::after{
    position: absolute;
    transform: scale(1);
    transition: .5s;
}
.btn-style-one span:hover{
background-color: #0794c9;
color: #ffffff;
z-index: 2;
}
.about-section{
position: relative;
padding: 150px 0 150px;
}

.about-section .sec-title{
margin-bottom: 45px;
}

.about-section .content-column{
position: relative;
margin-bottom: 50px;
}

.about-section .content-column .inner-column{
position: relative;
padding-left: 30px;
}

.about-section .text{
margin-bottom: 20px;
font-size: 16px;
line-height: 26px;
font-weight: 400;
}

.about-section .list-style-one{
margin-bottom: 45px;
}

.about-section .btn-box{
position: relative;
}

.about-section .btn-box a{
padding: 15px 50px;
}

.about-section .image-column{
position: relative;
}

.about-section .image-column .text-layer{
position: absolute;
right: -110px;
top: 50%;
font-size: 325px;
line-height: 1em;
color: #ffffff;
margin-top: -175px;
font-weight: 500;
}

.about-section .image-column .inner-column{
position: relative;
padding-left: 80px;
padding-bottom: 0px;
}
.about-section .image-column .inner-column .author-desc{
position: absolute;
bottom: 16px;
z-index: 1;
background: orange;
padding: 10px 15px;
left: 96px;
width: calc(100% - 115px);
border-radius: 50px;
}
.about-section .image-column .inner-column .author-desc h2{
font-size: 21px;
letter-spacing: 1px;
text-align: center;
color: #fff;
margin: 0;
}
.about-section .image-column .inner-column .author-desc span{
font-size: 16px;
letter-spacing: 6px;
text-align: center;
color: #fff;
display: block;
font-weight: 400;
}
.about-section .image-column .inner-column:before{
content: '';
position: absolute;
width: calc(50% + 80px);
height: calc(100% + 160px);
top: -80px;
left: -3px;
background: transparent;
z-index: 0;
border: 44px solid var(--heading-color);
}

.about-section .image-column .image-1{
position: relative;
width: 100%;
height: 500px;
background-color: #ccc;
border-radius: 5px;
}
.about-section .image-column .image-2{
position: absolute;
left: 0;
bottom: 0;
}
.about-section .image-column .image-1 img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
}
.about-section .image-column .image-2 img,
.about-section .image-column .image-1 img{
box-shadow: 0 30px 50px rgba(8,13,62,.15);
/* border-radius: 40px; */
}

.about-section .image-column .video-link{
position: absolute;
left: 70px;
top: 170px;
}

.about-section .image-column .video-link .link{
position: relative;
display: block;
font-size: 22px;
color: #191e34;
font-weight: 400;
text-align: center;
height: 100px;
width: 100px;
line-height: 100px;
background-color: #ffffff;
border-radius: 50%;
box-shadow: 0 30px 50px rgba(8,13,62,.15);
-webkit-transition: all 300ms ease;
-moz-transition: all 300ms ease;
-ms-transition: all 300ms ease;
-o-transition: all 300ms ease;
transition: all 300ms ease;
}

.about-section .image-column .video-link .link:hover{
background-color: #191e34;
color: #fff;
}
.about-section.common-padd{
padding: 160px 0px 160px 0px;
}
/* =============================cantact page css=============================== */
.inner-banner{
    position: relative;
    width: 100%;
    height: auto;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    padding: 150px 0;
}
.inner-banner:before{
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background-color:rgba(0, 0, 0, 0.5);
}
.inner-banner .banner-text{
    text-align: center;
}
.banner-text h1{
    color: #fff;
    font-size: 50px;
}
.banner-text p{
    color: #fff;
}
.btn{
    background-color: var(--main-color);
    border: 2px solid #fff;
    padding: 12px 10px;
    font-size: 18px;
    color: #fff;
    border-radius: 10px;
/*     width: 160px; */
}
.btn:hover{
    border: 2px solid #fff;
    background-color: var(--main-color)
}
.form-area-wrepper{
    background-color: #fff;
    padding: 50px 50px;
    border-radius: 10px;
    box-shadow: 0 0 10px #ccc;
    /* margin-top: -50px; */
    position: relative;
}
.form-area-wrepper h2{
    text-align: center;
    margin-bottom: 50px;
}
input.form-control{
    height: 50px;
    border-radius: 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
textarea.form-control{
    height: 150px;
    border-radius: 0px;
    border: 1px solid #ccc;
    border-radius: 5px;
}
.form-label{
    font-weight: 500;
}

.get-in-touch .con-card{
    background-color: #fff;
    border-radius: 25px;
    padding: 30px 20px;
    height: 100%;
    transition: .5s;
}
.get-in-touch .con-card:hover{
    transform: translateY(-10px);
    transition: .5s;
}
.con-card .icon{
    width: 60px;
    height: 60px;
    background-color: var(--main-color);
    border-radius: 50%;
    margin: 0 auto;
    margin-bottom: 20px;
    display: flex;
     align-items: center;
     justify-content: center;
}
.con-card .icon i{
    font-size: 30px;
    color: #fff;
}
.con-card .icon-heading{
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 30px;
}
.con-card .cont-details p{
    color: #010018;
    font-size: 20px;
}
.con-card .cont-details a{
    text-decoration: none;
    color: #000;
    font-size: 16px;
}
.sec-text .common-heading{
    margin: 0 auto;
    max-width:900px;
}
.common-padd{
    padding: 80px 0px;
}












.cart-wrapper{
    display:flex;
    gap:30px;
}

.cart-items{
    flex:2;
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.cart-item{
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:20px 0;
    border-bottom:1px solid #eee;
}

.product-info{
    display:flex;
    align-items:center;
    gap:15px;
}

.product-info img{
    width:80px;
    height:80px;
    border-radius:8px;
}

.product-name{
    font-weight:600;
}

.price{
    color:#555;
}

.quantity{
    display:flex;
    align-items:center;
    gap:10px;
}

.quantity button{
    width:30px;
    height:30px;
    border:none;
    background:var(--heading-color);
    color:#000;
    border-radius:5px;
    cursor:pointer;
}

.remove{
    color:red;
    cursor:pointer;
    font-size:14px;
}

.summary{
    flex:1;
    background:#fff;
    padding:20px;
    border-radius:10px;
    box-shadow:0 5px 20px rgba(0,0,0,0.05);
}

.summary-item{
    display:flex;
    justify-content:space-between;
    margin:10px 0;
}

.coupon-box{
    margin-top:15px;
    display:flex;
    gap:10px;
}

.coupon-box input{
    flex:1;
    padding:10px;
    border:1px solid #ccc;
    border-radius:6px;
}

.coupon-box button{
    padding:10px 15px;
    background:#111;
    color:#fff;
    border:none;
    border-radius:6px;
    cursor:pointer;
}

.checkout-btn{
    width:100%;
    padding:15px;
    background:#111;
    color:#fff;
    border:none;
    border-radius:8px;
    margin-top:20px;
    cursor:pointer;
}

@media(max-width:768px){
    .cart-wrapper{
        flex-direction:column;
    }

    .cart-item{
        flex-direction:column;
        align-items:flex-start;
        gap:15px;
    }
}

/*===================css 24-02-26==============================*/
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor{
        gap: 1px !important;
            background-color: #cd0b0b;
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor svg.yith-wcwl-icon-svg{
    flex-shrink: 0 !important;
    width: 24px !important;
    max-width: 24px !important;
}
.yith-wcwl-add-to-wishlist-button:not(.yith-wcwl-add-to-wishlist-button--themed-button) svg.yith-wcwl-add-to-wishlist-button-icon {
    color: #ffffff !important;
}

.hdr_icon.login_hdr{
    position: relative;
}
.wishlist-count {
    position: absolute;
    font-size: 12px;
    display: inline-flex;
    width: 15px;
    height: 15px;
    background-color: #cd0b0b;
    border-radius: 40px;
    right: -5px;
    top: -5px;
    color: #fff;
    align-items: center;
    justify-content: center;
}
.hdr_icon.cart_hdr{
    position: relative;
}
.add_cart_active {
    position: absolute;
    font-size: 12px;
    display: inline-flex;
    width: 15px;
    height: 15px;
    background-color: red;
    border-radius: 40px;
    right: -5px;
    top: -8px;
    color: #fff;
    align-items: center;
    justify-content: center;
}
.form.viewsarch ul{
    padding-left: 0px;
}
/* =====================blog page css============================== */

.card-effects .card-effect {
  border: none;
  background: #dee2e6;
  border: 1px solid #ccc;
}
.card-effects .card-effect .card-body {
  box-shadow: 0px 5px 24.25px 0.75px rgba(0,0,0,0.1);
  background: #fff;
  border-bottom-right-radius: 5px;
  border-bottom-left-radius: 5px
}
.card-effects .card-effect .card-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 220px;
}
.card-effects .card-effect:hover .card-img {
  border-top-left-radius: 5px !important;
  border-top-right-radius: 5px !important
}
.card-effects .card-effect .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .6s
}
.card-effects .card-effect:hover .card-img img {
  transform: scale(1.2);
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
.card-effects .img-hover {
    position: relative;
    overflow: hidden
}
.card-effects .img-hover img {
  transition: all 2s ease;
  transform: scale(1)
}
.card-effects .img-hover:after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 3
}
.card-effects .img-hover:before {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 1;
  z-index: 3;
  top: -10%;
  right: 51%;
  bottom: -10%;
  left: 50%;
  background: rgba(255,255,255,0.3)
}
.card-effects .img-hover:after {
  top: 50%;
  right: -10%;
  bottom: 50%;
  left: -10%;
  background: rgba(255,255,255,0.6)
}
.card-effects .card-effect:hover .img-hover:before {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 900ms linear
}
.card-effects .card-effect:hover .img-hover:after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 900ms linear
}
.card-effects .card-effect:hover .img-hover img {
    transform: scale(1.2)
}
.card-effects .card-effect .card-body a{
  text-transform: capitalize !important;
  color: var(--black-color) !important;
}
.text-secondary{
  font-size: 16px;
  height: 48px;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Sirf 2 line show karega */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--black-color) !important;
}
.card-effects .col-lg-4{
  margin-bottom: 25px;
}
.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    padding: 20px !important;
    background: #fff;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    border: 1px solid #ccc;
    border-radius: 20px;
    position: relative;
}
.yith-add-to-wishlist-button-block{
    position: absolute !important;
    top: 25px !important;
    right: 25px !important;
}
.single_glass_item .yith-add-to-wishlist-button-block{
    position: absolute !important;
    top: 35px !important;
    right: 0px !important;
}

.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--anchor{
        width: 35px !important;
    height: 35px!important;
    border-radius: 50%!important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title{
/*   height: 65px; */
	display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Sirf 2 line show karega */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--black-color) !important;
	 padding: 0 !important;
    margin: 4px 0 !important;
}

.woocommerce .woocommerce-ordering select {
    vertical-align: top;
    padding: 7px;
    border-radius: 0px;
    border: 1px solid rgb(0 0 0 / 26%);
}
.woocommerce ul.products li.product .button {
    display: inline-block;
    margin-top: 0.4em !important;
    background-color: var(--main-color) !important;
    color:#fff !important;
	font-size:16px;
}
.wpfMainWrapper{
    border:1px solid #ccc;
    border-radius: 20px;
    padding: 20px;
}
.wpfFilterWrapper .wfpDescription {
    font-size: 22px !important;
}
.ui-slider.ui-widget-content .ui-slider-handle{
    background: #fff;
    border: px solid #000 !important;
    border-radius: 50px !important;
    background-color:var(--main-color) !important;
}
.wpfFilterButton.wpfButton, .wpfClearButton.wpfButton{
    background-color:var(--main-color) !important;
    color:#fff !important;
}
.wpfFilterWrapper[data-filter-type="wpfPrice"] .wpfFilterContent{
    padding-left: 0px;
}
.wpfFilterWrapper ul:not(.wpfButtonsFilter) li{
    padding: 5px 0px !important;
}
/*.woocommerce ul.products li.product, .woocommerce-page ul.products li.product{*/
/*        margin: 0 3.8% 2.092em 0 !important;*/
/*}*/
.added_to_cart.wc-forward{
    display: none !important;
}
.woocommerce-product-gallery.images.wpgs-wrapper{
    border:1px solid #ccc;
}
.woocommerce div.product .product_title{
    color: #000;
    font-size:24px !important;
}
form.cart button[type='submit']:not(#qib_id):not(#qib_id):not(_):not(_){
    background-color:var(--main-color) !important;
}
.reset_variations{
    color: #000 !important;
}
.product_meta a{
    color:#000 !important;
}
.yith-wcwl-add-to-wishlist-button.yith-wcwl-add-to-wishlist-button--single.yith-wcwl-add-to-wishlist-button--anchor{
    justify-content: center !important;
}

.woocommerce div.product .woocommerce-tabs .panel h2{
    color: var(--black-color) !important;
}
.woocommerce div.product .woocommerce-tabs .panel p{
    color: var(--black-color) !important;
}

.related.products h2{
    border-bottom: 1px solid #ccc;
    margin-bottom: 30px;
    padding-bottom: 15px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li{
        margin: 0 0px !important;
}

.woocommerce-cart table.cart img{
    width: 100px !important;
    border: 1px solid #ccc !important;
    flex-shrink: 0;
}
.product-name a{
    color: #000 !important;
}
.woocommerce-cart table.cart td.actions .coupon .input-text{
    width:200px !important;
}
.woocommerce-cart .cart-collaterals .shipping-calculator-button{
    color: #000 !important;
}
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button{
    background-color:var(--main-color) !important;
}

.select2-selection__rendered{
        padding: 1.2em !important;
}
.wc-block-components-sidebar-layout .wc-block-components-main{
    border: 1px solid #ccc;
    padding: 50px;
    border-radius: 5px;
}

.woocommerce-checkout .wc-block-components-button.wp-element-button.wc-block-components-checkout-place-order-button.contained{
    display: inline-block;
    box-sizing: border-box;
    padding: 14px 35px;
    border-radius: 6px;
    position: relative;
    color: var(--white-color);
    background: var(--main-color);
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    text-align: center;
    border: none !important;
}
.woocommerce-checkout .wc-block-components-button.wp-element-button.wc-block-components-totals-coupon__button.contained{
        display: inline-block;
    box-sizing: border-box;
    padding: 14px 35px;
    border-radius: 6px;
    position: relative;
    color: var(--white-color);
    background: var(--main-color);
    text-transform: uppercase;
    text-decoration: none;
    overflow: hidden;
    text-align: center;
    border: none !important;
}
body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link) {
    min-height: 2.6em !important;
}
.wc-block-components-totals-item span{
    color:var(--black-color) !important;
}
.wc-block-components-product-metadata__description p{
    font-size: 16px;
}
.wishlist_table .product-add-to-cart a{
    background-color: var(--main-color) !important;
    padding: 5px;
    border-radius: 5px;
    color: #fff;
}
/*=========================my account css==================================*/
/* ===== My Account Page Layout ===== */
.woocommerce-account .woocommerce {
    display: flex;
    gap: 30px;
    /*max-width: 1200px;*/
    /*margin: 40px auto;*/
}

/* ===== Sidebar Menu ===== */
.woocommerce-account .woocommerce-MyAccount-navigation {
    width: 25%;
    background: #ffffff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    margin-bottom: 10px;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 15px;
    background: #f5f7fa;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: 0.3s;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover {
    background: #0073ff;
    color: #fff;
}

/* Active Menu */
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    background: var(--main-color);
    color: #fff;
}

/* ===== Content Area ===== */
.woocommerce-account .woocommerce-MyAccount-content {
    width: 75%;
    background: #ffffff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

/* ===== Buttons ===== */
.woocommerce-account .button,
.woocommerce-account button {
    background: #0073ff;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 6px;
    transition: 0.3s;
}

.woocommerce-account .button:hover,
.woocommerce-account button:hover {
    background: #0056cc;
}

/* ===== Forms ===== */
.woocommerce-account input,
.woocommerce-account select,
.woocommerce-account textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    margin-bottom: 15px;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce {
        flex-direction: column;
    }

    .woocommerce-account .woocommerce-MyAccount-navigation,
    .woocommerce-account .woocommerce-MyAccount-content {
        width: 100%;
    }
}
/* Address Page Wrapper */
.woocommerce-account .woocommerce-Addresses {
    display: flex;
    gap: 30px;
    margin-top: 20px;
}

/* Individual Address Box */
.woocommerce-account .woocommerce-Address {
    flex: 1;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: 0.3s ease;
    position: relative;
}

/* Hover Effect */
.woocommerce-account .woocommerce-Address:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

/* Heading Style */
.woocommerce-account .woocommerce-Address h3 {
    font-size: 26px;
    margin-bottom: 20px;
    font-weight: 600;
    color: #111;
}

/* Address Text */
.woocommerce-account .woocommerce-Address address {
    line-height: 1.8;
    color: #555;
    font-style: normal;
}

/* Edit Link Button Style */
.woocommerce-account .woocommerce-Address a.edit {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--main-color);
    color: #fff;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s;
}

.woocommerce-account .woocommerce-Address a.edit:hover {
    background: #0056cc;
}

/* Responsive */
@media (max-width: 768px) {
    .woocommerce-account .woocommerce-Addresses {
        flex-direction: column;
    }
	.slide .slide__img:before{
		background: #000000;
		background: linear-gradient(90deg,rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
	}
}
.woocommerce-Button.button{
    background-color:var(--main-color) !important;
    color:#fff !important;
}
.woocommerce-form__input.woocommerce-form__input-checkbox{
    width:auto !important;
}

.woocommerce-LostPassword.lost_password a{
    color:#000 !important;
}
.woocommerce-privacy-policy-text a{
    color: #000 !important;
}

.u-column1 .form-row{
    display: flex;
    flex-direction: column;
}
.woocommerce .woocommerce-form-login .woocommerce-form-login__submit{
    width: 130px !important;
    background-color: var(--main-color) !important;
    color: #fff !important;
}

.product_meta{
    color: #000;
}

.qib-button:not(#qib_id):not(#qib_id){
    height: 35px;
    width: 35px !important;
    border-radius: 50px !important;
    background-color:#fff !important;
}
.qib-container .quantity input.qty:not(#qib_id):not(#qib_id){
    background-color:var(--white-color) !important;
    margin: 0px 5px !important;
    border: 1px solid #ccc !important;
}
.woocommerce-page div.product div.summary{
    border: 1px solid #ccc !important;
}
/*======================why choose mobile css==============================*/
.mobile-view-why-choose .mobile-why-choose{
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0px;
}
.mobile-why-choose .icon-box-m{
  width: 80px;
  height: 80px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: var(--white-color);
  border: 2px solid var(--black-color);
  padding: 15px;
  box-shadow: 0 0 15px #00A098;
}
.mobile-why-choose .icon-box-m img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.text-box-m h3{
  font-size: 24px;
  color: var(--black-color);
  font-weight: 600;
}
.text-box-m p{
  margin-bottom: 0px;
}
.mobile-view-why-choose{
  display: none;
}
.pv-link ul{
    display: flex;
    align-content: center;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
    gap: 15px;
}
.pv-link ul li{
    list-style: none;
    position: relative;
}
.pv-link ul li a{
    color: #fff;
}
.pv-link ul li::before {
    content: "";
    position: absolute;
    left: -8px;
    top: 5px;
    width: 1px;
    height: 15px;
    background-color: #fff; /* line color */
}
.pv-link ul li:first-child::before {
    display: none;
}
.woocommerce table.my_account_orders .button{
    background-color:var(--main-color);
    color:#fff !important;
}
.woocommerce table.shop_table tbody th a{
    color: #000 !important;
}
.woocommerce-Address-title.title h2{
    font-size: 20px !important;
}
.wpcf7-spinner{
    position: absolute !important;
}
.woocommerce-MyAccount-content a{
    color:#000;
}

.product_meta{
    display: flex;
    flex-direction: column;
}

.ypb-coa-btn{
    background-color: var(--main-color) !important;
    color:#fff !important;
    padding: 10px 20px;
    border-radius: 5px;
}

.woocommerce div.product form.cart .variations select{
    min-width: 40% !important;
    font-size:16px !important;
}
.wc-block-components-product-price{
    margin: 10px 0px;
}




/* Product Image Zoom Container */
.woocommerce-product-gallery__image {
    position: relative;
    overflow: hidden;
}

.woocommerce-product-gallery__image img {
    transition: transform 0.3s ease;
    cursor: zoom-in;
}
.woocommerce div.product div.images .woocommerce-product-gallery__wrapper{
        border: 1px solid #ccc !important;
}

/*.woocommerce div.product div.images,*/
/*.woocommerce-page div.product div.images{*/
/*        width: 40% !important;*/
/*}*/
/*.woocommerce div.product div.summary,*/
/*.woocommerce-page div.product div.summary{*/
/*    width: 56% !important;*/
/*}*/























