@font-face {
  font-family: "Kook";
  src: url("../fonts/kook/woff2/KookFaNum-ExtraLight.woff2") format("woff2"),
  url("../fonts/kook/woff/KookFaNum-ExtraLight.woff") format("woff");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kook";
  src: url("../fonts/kook/woff2/KookFaNum-Light.woff2") format("woff2"),
  url("../fonts/kook/woff/KookFaNum-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kook";
  src: url("../fonts/kook/woff2/KookFaNum-Regular.woff2") format("woff2"),
  url("../fonts/kook/woff/KookFaNum-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kook";
  src: url("../fonts/kook/woff2/KookFaNum-Medium.woff2") format("woff2"),
  url("../fonts/kook/woff/KookFaNum-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kook";
  src: url("../fonts/kook/woff2/KookFaNum-Bold.woff2") format("woff2"),
  url("../fonts/kook/woff/KookFaNum-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Kook";
  src: url("../fonts/kook/woff2/KookFaNum-ExtraBold.woff2") format("woff2"),
  url("../fonts/kook/woff/KookFaNum-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}


/* base  */

:root {
  --color1: #000;
  /*--color1: #394F76;*/
  --color2: #F3E9DD;
  --color3: #B7CADB;
  --back: #fff;
  --font1: "Kook";
}

body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: var(--font1);
  direction: rtl;
  background-color: var(--back);
}

a:hover {
  text-decoration: none;
  color: var(--color1);
}

.ltr {
  direction: ltr;
}

.rtl {
  direction: rtl;
}
.main-body{margin-top:130px}
@media (min-width: 1400px) {

  .container,
  .container-lg,
  .container-md,
  .container-sm,
  .container-xl,
  .container-xxl {
    max-width: 1320px;
  }
}

@media (max-width: 767px) {
  .d-m-none {
    display: none !important;
  }

}

.col-20 {
  -ms-flex: 0 0 20%;
  flex: 0 0 20%;
  max-width: 20%;
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

@media (min-width: 768px) {
  .col-md-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (min-width: 992px) {
  .col-lg-20 {
    -ms-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

@media (max-width: 767.98px) {

  .navbar-expand-md>.container,
  .navbar-expand-md>.container-fluid,
  .navbar-expand-md>.container-lg,
  .navbar-expand-md>.container-md,
  .navbar-expand-md>.container-sm,
  .navbar-expand-md>.container-xl {
    padding-right: 15px;
    padding-left: 15px;
  }
}

/* navbar */

.navbar-custom {
  background-color: #fff;
  height: 120px;
  padding: 0;
  z-index: 1000;
  transition: 0.3s;
  position: absolute;
  width: 100%;
  top: -100px;
  margin-top: 150px;
  transition: transform 0.5s ease-out, top 0.5s ease-out;
}

.navbar-custom.fixed {
  top: 0;
  margin-top: 45px;
  position: fixed;
  box-shadow: 0px 0px 8px 0px #11100F26;
  height: 100px;
}

.navbar-fill {
  height: 120px;
}

.navbar-logo img {
  width: 170px;
  height: 80px;
  object-fit: contain;
  user-select: none;
}

.navbar-custom.fixed .navbar-logo img {
  height: 65px;
}

.navbar-logo {
  display: flex;
  align-items: center;
}

.nav-item {
  margin-left: 20px;
  white-space: nowrap;
}

.nav-item a {
  display: flex;
  align-items: center;
  padding: 30px 10px;
  font-size: 18px;
  color: #000;
  font-weight: 500;
}

.nav-item.dropdown {
  margin-top: -2px;
}

/* border hover  */

@media (min-width:768px) {
  .nav-item a {
    display: inline-block;
  }

  .nav-item:not(.dropdown) a::after {
    content: '';
    display: block;
    width: 0;
    height: 1px;
    background: var(--color1);
    transition: width .2s;
    border-radius: 5px;
    margin-top: 5px;
    margin-bottom: -5px;
  }

  .nav-item:not(.dropdown) a:hover::after {
    width: 100%;
    transition: width .3s;
  }
}

.nav-item a:hover {
  color: var(--color1) !important;
}

.navbar-right {
  display: flex;
  align-items: center;
  width: 100%;
}

.navbar-left {
  display: flex;
  align-items: center;
  justify-content: end;
  width: 100%;
}

.navbar-btn i {
  display: flex;
  align-items: center;
}

.navbar-btn.show-search {
  border-left: 1px solid #000;
  padding-left: 35px;
}

.navbar-btn {
  position: relative;
  font-size: 25px;
  color: #000001;
  height: 25px;
  width: 25px;
  margin-right: 20px;
  transition: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-right: 2px;
  position: relative;
}

.navbar-btn:hover {
  color: var(--color1);
}

.navbar-search {
  border: 1px solid #B3B3B3;
  height: 44px;
  display: flex;
  align-items: center;
  border-radius: 0;
  padding: 0 10px;
  position: absolute;
  width: 250px;
  top: 0;
  background: #fff;
  left: 0;
  visibility: hidden;
  transition: 0.3s;
  opacity: 0;
}

.navbar-search.active {
  visibility: visible;
  top: 25px;
  opacity: 1;
}

.navbar-search button {
  font-size: 20px;
  background: transparent;
  border: 0;
  padding: 0;
  line-height: 1;
  transition: 0.3s;
}

.navbar-search input {
  border: 0;
  outline: none;
  width: 100%;
  height: 100%;
  font-size: 16px;
  padding-right: 5px;
}

.navbar-mobile-section {
  display: none;
}


@media (max-width:767.5px) {

  .navbar .container,
  .navbar .container-fluid,
  .navbar .container-lg,
  .navbar .container-md,
  .navbar .container-sm,
  .navbar .container-xl {
    flex-wrap: nowrap;
  }

  .navbar-custom {
    height: 80px !important;
    padding: 10px 0;
    border-bottom: 1px solid #C4C4C4;
    box-shadow: unset !important;
  }

  .navbar-fill {
    height: 80px;
  }

  .navbar-btn {
    font-size: 22px
  }

  .navbar-logo img {
    width: 85px;
    height: 40px;
  }

  .show-search {
    display: none;
  }

  .show-login {
    display: none;
  }

  .navbar-mobile-section {
    display: block;
    padding: 20px;
    z-index: 1000;
  }

  .navbar-mobile-search {
    border: 1px solid #F3E9DD;
    height: 52px;
    display: flex;
    align-items: center;
    padding: 15px;
  }

  .navbar-mobile-search input::placeholder {
    color: var(--color1);
  }

  .navbar-mobile-search input {
    width: 100%;
    height: 100%;
    border: 0;
    outline: none;
  }

  .navbar-mobile-search button {
    border: 0;
    outline: none;
    background: transparent;
    font-size: 22px;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    line-height: 0;
  }


  .navbar-mobile-flex {
    display: flex;
    gap: 10px;
    margin-top: 10px;
  }

  .navbar-mobile-btn {
    width: 100%;
    border: 1px solid #F3E9DD;
    height: 52px;
    display: flex;
    align-items: center;
    padding: 15px;
    justify-content: space-between;
    color: var(--color1);
  }

  .navbar-mobile-btn i {
    font-size: 22px;
  }

}

@media (min-width:768px) and (max-width:1199px) {}



/* dropdown */
.dropdown a::after {
  margin-top: -2px;
  margin-right: 10px;
  border: 0;
  font-family: "raya-icon";
  content: '\f107';
}

.dropdown ul li a::after {
  content: unset;
}

.dropdown .dropdown>a:after {
  display: block;
  content: " ";
  float: left;
  border: 0;
  font-family: "raya-icon";
  content: '\f104';
  margin-top: 5px;
  margin-right: -10px;
}

.dropdown ul {
  left: 0;
  z-index: 1000;
  display: none;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  color: #212529;
  text-align: right;
  list-style: none;
  background-color: #fff;
  background-clip: padding-box;
  position: absolute;
  border: 0;
  border-radius: 5px;
  margin-top: 0px;
  border: 1px solid #f2f2f2;
  border-radius: 5px;
  min-width: 200px;
  border-radius: 8px;
  font-size: 14px;
  transition: opacity 0.3s ease-in-out;
  right: 0;
}

.dropdown ul li a {
  color: #444;
  font-size: 16px;
  display: block;
  white-space: nowrap;
  width: 100%;
  padding: 7px 14px;
  font-weight: normal;
}

.dropdown ul li a:hover {
  color: var(--color1);
}



@media (min-width:767.5px) {
  .dropdown ul::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 5px;
    transform: translateX(-50%) rotate(180deg);
    border-top: 10px solid var(--color1);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
  }

  .dropdown .dropdown ul::before {
    content: unset;
  }

  .dropdown .dropdown {
    position: relative;
  }

  .dropdown .dropdown>ul {
    top: 0;
    right: 100%;
  }

  #overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    z-index: -20;
    transition: background 0.1s ease, z-index 0s;
    transition-delay: 0.1s, 0.4s;
  }

  #overlay.active {
    visibility: visible;
    transition: background 0.1s ease, z-index 0s;
    transition-delay: 0s, 0s;
    background: rgba(72, 72, 72, 0.6);
    z-index: 100;
  }

  .dropdown .dropdown:hover>a:after {
    border-left-color: #000;
  }

  .dropdown .dropdown:hover>ul {
    display: block;
  }

  .dropdown:hover>ul {
    display: block;
  }
}

/* offcanvas */
@media (max-width: 767.5px) {

  .nav-item.dropdown {
    flex-direction: column;
  }

  li.dropdown li.dropdown ul {
    padding-right: 15px;
  }

  li.dropdown li.dropdown {
    border-right: 1px solid var(--color1);
    margin-top: 15px;
  }


  .dropdown ul::before {
    content: unset;
  }

  .dropdown a::after {
    content: '\f107';
    font-size: 16px;
    flex-grow: 1;
    justify-content: end;
    display: flex;
    align-items: center;
  }

  .dropdown .dropdown>a:after {
    margin-top: -2px;
    font-size: 16px;
    content: '\f107';
  }

  .nav-item a.open::after {
    content: '\f106';
  }

  .offcanvas-nav {
    position: absolute;
    top: -100%;
    right: 0;
    width: 100%;
    height: 100%;
    background-color: #f2f2f2;
    /* transition: all 0.3s ease-in-out; */
    visibility: hidden;
    z-index: -1;
  }

  .dropdown ul {
    display: none;
    z-index: 99999;
    position: relative;
    margin: 0;
    padding: 0;
    border: 0;
  }

  .dropdown ul.active {
    display: block;
  }

  .offcanvas-nav.active {
    top: 0;
    visibility: visible;
    margin-top: 80px;
    background: #fff;
    height: auto;
    border-bottom: 1px solid #C4C4C4;
    overflow: auto;
    max-height: 500px;
    z-index: 99999;
  }


  .offcanvas-header {
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color1);
    background-color: #fff;
    padding: 0 15px;
    margin-bottom: 10px;
  }


  .offcanvas-header .close {
    background: transparent;
    border: 0;
    color: var(--color1);
    font-size: 20px;
  }

  .offcanvas-header .back {
    background: transparent;
    border: 0;
    color: var(--color1);
    font-size: 20px;
  }

  .nav-item {
    padding: 10px 20px;
    margin-left: 0px;
    display: flex;
  }

  .dropdown ul li a {
    padding: 10px 20px;
  }

  .nav-item a {
    padding: 0;
    display: flex;
    align-items: center;
    width: 100%;
    font-size: 16px;
    font-weight: normal;
  }

  .navbar-toggler {
    border: 0;
    margin: 0;
    padding: 0;
    color: var(--color1) !important;
    display: flex;
    font-size: 26px;
  }

  .navbar-toggler.active i::before {
    content: '\e8a5';
    font-size: 20px;
    padding-right: 7px;
  }
}


@media (min-width:768px) {
  .offcanvas-header {
    display: none;
  }
}


.dropdown-new .dropdown-menu {
  margin: 0;
  padding: 10px;
  border-radius: 8px;
}

.dropdown-new a::after {
  display: none;
}

.navbar-btn-badge {
  background: var(--color1);
  width: 15px;
  height: 15px;
  position: absolute;
  right: -3px;
  top: -5px;
  color: #fff;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding-top: 3px;
}

.btn.btn-custom {
  background: var(--color1);
  color: #fff;
}

/* jconfirm  */
.btn.btn-custom:hover {
  opacity: 0.8;
}

.jconfirm-box {
  border-radius: 10px !important;
}


/* basket offcanvas */

.offcanvas {
  position: fixed;
  bottom: 0;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  max-width: 100%;
  /* visibility: hidden; */
  background-color: #fff;
  background-clip: padding-box;
  outline: 0;
  transition: transform .3s ease-in-out;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 350px;
  border-right: 1px solid rgba(0, 0, 0, .2);
  transform: translateX(-100%);
}

.offcanvas.show {
  transform: none;
}

.offcanvas-body {
  padding: 20px 0;
  height: 100%;
  overflow: auto;
}

.offcanvas-head {
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.offcanvas-footer {
  padding: 15px;
  border-top: 1px solid #ccc;
}

.offcanvas-close {
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  color: #444;
  padding: 0;
}


.basket-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  padding-top: 10px;
}

.basket-item:first-child {
  padding-top: unset;

}

.basket-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 5px;
}

.basket-total-title {
  font-size: 14px;
  font-weight: 600;
}

.basket-item-img {
  width: 90px;
  height: 100px;
  border-radius: 6px;
  object-fit: contain;
}

.basket-item-info {
  margin-right: 15px;
  white-space: nowrap;
}

.basket-item-count {
  margin-top: 5px;
  display: flex;
  align-items: end;
}

.basket-item-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
}

.basket-item-count span {
  color: var(--color1);
  font-size: 16px;
}

.basket-item-discount {
  color: #545454 !important;
  text-decoration: line-through;
  font-size: 14px !important;
}

.basket-link {
  background: var(--color1);
  color: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  border-radius: 8px;
  margin-top: 10px;
  border: 1px solid var(--color1);
  transition: 0.3s;
}

.basket-link:hover {
  background-color: #fff;
  color: var(--color1);
}


.basket-item {
  padding: 15px;
}

.basket-total {
  margin-top: 0;
}

.offcanvas-title {
  font-weight: 600;
  color: #444;
  font-size: 18px;
}

#overlay-offcanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -20;
  transition: background 0.1s ease, z-index 0s;
  transition-delay: 0.1s, 0.4s;
}

#overlay-offcanvas.active {
  visibility: visible;
  transition: background 0.1s ease, z-index 0s;
  transition-delay: 0s, 0s;
  background: rgba(72, 72, 72, 0.6);
  z-index: 1000;
}




/* swiper */
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-center {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-custom {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-1 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-3 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-4 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-5 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-6 {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}


.swiper-pagination-bullet {
  border-radius: 20px;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--color1);
}


.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 14px;
  font-weight: 600;
  color: #707070;
}

.swiper-button-next {
  width: 38px;
  height: 38px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.27);
  background-color: #fff;
  border-radius: 25px;
  transition: 0.3s;
}

.swiper-button-prev {
  width: 38px;
  height: 38px;
  box-shadow: 0 3px 6px 0 rgba(0, 0, 0, 0.27);
  background-color: #fff;
  border-radius: 25px;
  transition: 0.3s;
}

.swiper-button-next:hover {
  background: var(--color1);
}

.swiper-button-prev:hover {
  background: var(--color1);
}

.swiper-button-next:hover::after {
  color: #fff;
}

.swiper-button-prev:hover::after {
  color: #fff;
}




@media (max-width:767px) {
  .swiper-button-next {
    width: 30px;
    height: 30px;
    top: 55%;
  }

  .swiper-button-prev {
    width: 30px;
    height: 30px;
    top: 55%;
  }

  .swiper-button-next:after,
  .swiper-button-prev:after {
    font-size: 12px;
  }
}


/* animate */
.myAnim1 {
  animation: myAnim1 10s linear 0s infinite normal forwards;
}

.myAnim2 {
  animation: myAnim2 15s linear 0s infinite normal forwards;
}

.myAnim2-2 {
  animation: myAnim2 30s linear 0s infinite normal forwards;
}

.myAnim3 {
  animation: myAnim3 10s linear 0s infinite normal forwards;
}

.myAnim4 {
  animation: myAnim4 10s linear 0s infinite normal forwards;
}

@keyframes myAnim1 {

  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 0;
  }

  10% {
    transform: rotate(2deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }

  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  90% {
    transform: rotate(2deg);
  }
}

@keyframes myAnim2 {

  0%,
  100% {
    transform: translateY(0);
  }

  10%,
  30%,
  50%,
  70% {
    transform: translateY(-8px);
  }

  20%,
  40%,
  60% {
    transform: translateY(8px);
  }

  80% {
    transform: translateY(6.4px);
  }

  90% {
    transform: translateY(-6.4px);
  }
}

@keyframes myAnim3 {

  0%,
  100% {
    transform: rotate(0deg);
    transform-origin: 50% 100%;
  }

  10% {
    transform: rotate(2deg);
  }

  20%,
  40%,
  60% {
    transform: rotate(-4deg);
  }

  30%,
  50%,
  70% {
    transform: rotate(4deg);
  }

  80% {
    transform: rotate(-2deg);
  }

  90% {
    transform: rotate(2deg);
  }
}

@keyframes myAnim4 {
  0% {
    animation-timing-function: ease-out;
    transform: scale(1);
    transform-origin: center center;
  }

  10% {
    animation-timing-function: ease-in;
    transform: scale(0.91);
  }

  17% {
    animation-timing-function: ease-out;
    transform: scale(0.98);
  }

  33% {
    animation-timing-function: ease-in;
    transform: scale(0.87);
  }

  45% {
    animation-timing-function: ease-out;
    transform: scale(1);
  }
}


/* home */

.home-wrap-1 {
  display: flex;
  position: relative;
  height: 700px;
}

.home-wrap-1-img {
  width: 100%;
}

.home-wrap-1-right {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-wrap-1-left {
  width: 50%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-wrap-1-btn-body {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.home-wrap-1-btn-1 {
  height: 48px;
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color2);
  border: 1px solid var(--color2);
  color: var(--color1);
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

.home-wrap-1-btn-1:hover {
  background: #fff;
  color: var(--color1);
}

.home-wrap-1-btn-2 {
  height: 48px;
  width: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color1);
  border: 1px solid var(--color1);
  color: var(--color2);
  font-size: 18px;
  font-weight: 500;
  transition: 0.3s;
}

.home-wrap-1-btn-2:hover {
  background: #fff;
  color: var(--color1);
}

.home-wrap-title {
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  color: #000;
  margin-top: 60px;
  margin-bottom: 20px;
}

.card-product {
  display: block;
}

.card-product-inner {
  position: relative;
  overflow: hidden;
}

.card-product-img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.card-product-cover {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
  opacity: 0;
  z-index: 1;
}
/*.card-product:hover {*/
/*  border: 1px solid rgba(86, 86, 86, 0.3);*/
/*  color: #565656 !important;*/
/*  transition: all 0.8s ease-in-out;*/

/*}*/

.card-product:hover .card-product-img {
  transform: scale(1.1);
}

.card-product:hover .card-product-cover {
  opacity: 1;
}

.card-product-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
}

.card-product-title {
  font-size: 16px;
  font-weight: 500;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 1;
  color: #000;
}

.card-product-price i {
  font-size: 14px;
  color: var(--color1);
}

.card-product-price {
  display: flex;
  gap: 10px;
  font-size: 16px;
  color: #000;
}

.card-product-price-off {
  text-decoration: line-through;
  font-size: 14px;
}

.card-product-badge {
  position: absolute;
  top: 30px;
  left: 0;
  z-index: 9;
  height: 38px;
  background: var(--color2);
  padding: 10px;
  display: flex;
  align-items: center;
  color: #000;
  font-size: 15px;
  font-weight: 500;
}

.card-product-badge span {
  color: #D2780C;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  margin-right: 5px;
  font-family: cursive;
}

.row.gutter {
  margin-right: -8px;
  margin-left: -8px;
}

.row.gutter .col-6 {
  padding-right: 7px;
  padding-left: 7px;
}

.row.gutter .col-12 {
  padding-right: 7px;
  padding-left: 7px;
}


.home-category-item {
  position: relative;
  height: 665px;
  margin-top: 30px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  z-index: 1;
  transition: background-position 1s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
  color: #fff;
  font-size: 32px;
  font-weight: 300;
}

.home-category-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, #FDF6EC 0%, #000000 100%);
  mix-blend-mode: multiply;
  z-index: -1;
  opacity: 0.7;
  transition: opacity 1s ease;
}

.home-category-item:hover::before {
  opacity: 0.9;
}

.home-category-item:hover {
  background-position: right center;
  color: var(--color2);
}


/* responsive home  */

@media (max-width:767px) {
  .home-wrap-1 {
    height: auto;
    /*flex-direction: column;*/
  }
  .home-wrap-1-img {
    height: auto;
    width: 100%;
  }
  .home-wrap-1-right {
    width: 100%;
    height: 400px;
  }

  .home-wrap-1-left {
    width: 100%;
    height: 400px;
  }

  .home-wrap-title {
    font-size: 24px;
    margin-top: 40px;
    margin-bottom: 10px;
  }

  .card-product-img {
    height: 260px;
  }

  .card-product-info {
    padding: 5px;
    flex-direction: column;
  }

  .card-product-title {
    font-size: 14px;
    margin-left: auto;
  }

  .card-product-price {
    font-size: 14px;
    margin-left: auto;
    flex-direction: column;
    gap: 0;
    height: 42px;
  }

  .card-product-badge span {
    font-size: 18px;
  }

  .card-product-badge {
    top: 20px;
    padding: 5px;
    font-size: 14px;
    line-height: 1;
    height: 28px;
  }

  .home-category-item {
    height: 370px;
    padding: 10px;
    text-align: center;
    font-size: 24px;
    margin-top: 15px;
  }

}


/* footer top */

.footer-top {
  margin-top: 60px;
  border-top: 1px solid #C4C4C4;
  border-bottom: 1px solid #C4C4C4;
  padding: 30px 0;
}

.footer-top-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-top-title {
  font-size: 20px;
  font-weight: 700;
  color: #000;
}

.footer-top-text {
  color: #6B6B6B;
  font-size: 15px;
  margin-top: 3px;
}

@media (max-width:767px) {

  .footer-top-icon {
    width: 40px;
  }

  .footer-top-item {
    gap: 10px;
  }

  .footer-top-title {
    font-size: 16px;
  }

  .footer-top {
    margin-top: 30px;
    padding: 15px;
  }

  .footer-top-item {
    padding: 10px 0;
  }

}


/* footer  */

.footer {
  background-color: #fff;
  position: relative;
  padding: 60px 0;
}

.footer-header {
  font-size: 18px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.footer-ul {
  list-style: none;
  padding: 0;
  line-height: 2.4;
  color: #000;
  margin-bottom: 0;
}

.footer-ul i {
  color: #333A44;
  margin-left: 5px;
  font-size: 22px;
  line-height: 2;
  height: 18px;
}

.footer-ul a {
  color: #000;
  display: flex;
}

.footer-ul a span {
  display: block;
  direction: ltr;
}

.footer-ul a:hover {
  color: var(--color1);
}


.footer-bottom {
  border-top: 1px solid #C4C4C4;
  padding: 25px 0;
  color: #000;
  font-size: 15px;
}

.footer-bottom a {
  color: #000;
}

.footer-bottom a:hover {
  color: var(--color1);
}

.footer-bottom-item {
  color: #000;
  font-size: 15px;
  height: 100%;
  display: flex;
  align-items: center;
}

.footer-bottom-item span {
  margin: 0 3px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.footer-social i {
  font-size: 24px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #000;
  transition: 0.3s;
  border-radius: 50px;
}

.footer-social a:hover {
  color: var(--color1);
}



@media (max-width:767px) {

  .footer-header {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .footer {
    padding: 30px 0;
  }

  .footer-ul {
    line-height: 2.5;
    margin-bottom: 15px;
    font-size: 14px;
  }

  .footer-bottom-item {
    font-size: 12px;
    text-align: center;
    justify-content: center;
  }

  .footer-social {
    margin-top: 5px;
    gap: 10px;
  }

  .footer-bottom {
    padding: 15px 0;
    border-top: 0;
  }

  .footer-social span {
    display: none;
  }

}


/* breadcrumb */

.breadcrumb {
  font-size: 17px;
  margin: 0;
  padding: 0;
  background: transparent;
  margin-top: 25px;
  margin-bottom: 25px;
  justify-content: center;
}

li.breadcrumb-item a {
  color: #000;
  font-weight: 500;
}

.breadcrumb-item+.breadcrumb-item::before {
  color: #000;
  content: "|";
}

.breadcrumb-item.active a {
  color: var(--color1);
}

li.breadcrumb-item a:hover {
  color: var(--color1);
}

@media (max-width:767px) {
  li.breadcrumb-item {
    white-space: nowrap;
  }

  .breadcrumb {
    font-size: 14px;
    flex-wrap: nowrap;
    overflow: auto;
    margin-top: 20px;
    margin-bottom: 20px;
  }
}


/* pagination */

.pagination {
  justify-content: center;
  padding-top: 40px;
  margin-bottom: 0;
  padding-bottom: 40px;
  padding-left: 0;
}

.page-link {
  width: 38px;
  height: 38px;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b2b2b2;
  margin: 0 5px;
  background: unset;
  background: transparent !important;
  border-radius: 12px !important;
  transition: 0.3s;
  border: 0;
  line-height: 1;
  font-size: 20px;
}

a.page-link:hover {
  color: var(--color1);
}

.page-item:first-child .page-link {
  margin-right: 5px;
}

span.page-link:hover {
  color: var(--color1);
}

.page-link:focus {
  box-shadow: unset;
}

.page-item.active .page-link {
  color: #000;
}

.page-item-title .page-link {
  width: auto;
  height: auto;
  font-size: 18px;
  color: #b2b2b2;
}

.page-item-title .page-link {
  width: auto;
  height: 38px;
  font-size: 18px;
  color: #b2b2b2;
}

.page-item-title .page-link:hover {
  background: var(--color2);
  color: #fff;
}

@media (max-width:767px) {
  .pagination {
    padding-top: 20px;
    padding-bottom: 20px;
  }

  .page-link {
    margin: 0;
  }

  .page-link span {
    display: none;
  }


  .page-item-title {
    display: none;
  }

  .page-link {
    width: 30px;
    height: 30px;
    margin: 0 3px;
  }
}


/* sort */

.sort-body {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.sort-title {
  color: #222222;
  font-size: 16px;
  font-weight: 600;
  margin-left: 15px;
}

.sort-item-flex {
  display: flex;
}

.sort-item {
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 16px;
  font-weight: 500;
  margin-left: 20px;
  transition: 0.3s;
}

.sort-item.active {
  color: #000;
}

.acc-flex {
  display: flex;
  align-items: center;
  gap: 7px;
}

.acc-flex i {
  font-size: 13px;
}

@media (max-width:767px) {
  .sort-title {
    font-size: 12px;
    white-space: nowrap;
    margin-left: 10px;
  }

  .sort-item-flex {
    overflow: auto;
  }

  .sort-item {
    height: 28px;
    font-size: 14px;
    white-space: nowrap;
  }

  .sort-body {
    margin-bottom: 5px;
  }

}



.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-top: 90px;
  color: #000;
}

.header-wrap-title {
  position: relative;
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  font-size: 32px;
  font-weight: bold;
  z-index: 1;
  align-items: center;
  margin-top: 60px;
}

.header-wrap-title span {
  color: #ddd;
  font-size: 28px;
  position: absolute;
  font-weight: 300;
  z-index: -1;
  letter-spacing: 3px;
  top: -2px;
}

.card-blog {
  display: block;
}

.card-blog-img-body {
  position: relative;
  overflow: hidden;
}

.card-blog-img {
  width: 100%;
  height: 330px;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.card-blog-img-body:hover .card-blog-img {
  transform: scale(1.1);
}

.card-blog-info {
  padding: 10px;
  padding-bottom: 0;
}

.card-blog-title {
  font-size: 16px;
  color: #000;
  font-weight: bold;
  height: 48px;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
}

.card-blog-date {
  text-align: end;
  font-size: 15px;
  color: #999;
  font-weight: 500;
}

.blog-side-title {
  font-size: 20px;
  font-weight: bold;
  color: var(--color1);
  margin-bottom: 10px;
}

.blog-side-ul a {
  color: #000;
}

.blog-side-ul {
  line-height: 2;
  color: #000;
  list-style: none;
  font-size: 20px;
  padding-right: 0;
  font-weight: 600;
  margin: 0;
}

.blog-side {
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  padding-bottom: 20px;
}

.blog-side:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.blog-side-text {
  font-size: 20px;
  color: #000;
  font-weight: 500;
}

.blog-side-form {
  border: 1px solid #ccc;
  height: 40px;
  display: flex;
  margin-top: 15px;
}

.blog-side-form button:hover {
  background: var(--color3);
  color: var(--color1);
}

.blog-side-form button {
  background: var(--color1);
  color: #fff;
  padding: 5px 15px;
  outline: none;
  border: 0;
  transition: 0.3s;
}

.blog-side-form input {
  width: 100%;
  height: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 10px;
}


@media (max-width:767px) {
  .section-title {
    font-size: 20px;
    margin-top: 80px;
  }

  .header-wrap-title {
    font-size: 20px;
    margin-top: 30px;
  }

  .header-wrap-title span {
    font-size: 20px;
  }

  .blog-side {
    margin-top: 20px;
  }

  .blog-side-title {
    font-size: 16px;
  }

  .blog-side-ul {
    font-size: 16px;
  }

  .blog-side-text {
    font-size: 16px;
  }

}

.blog-img {
  max-width: 100%;
  border-radius: 0;
  display: block;
  margin: auto;
  margin-bottom: 15px;
}

.blog-content{
  border-top: 1px solid #6B6B6B;
  margin-top: 20px;
}

.blog-content p {
  font-size: 16px;
  line-height: 2;
  text-align: center;
  color: #000;
  margin-top: 15px;
}

.blog-content img {
  max-width: 100%;
  border-radius: 0;
  display: block;
  margin: auto;
  margin-bottom: 15px;
}

.blog-content video {
  width: 100%;
  max-width: 100%;
  border-radius: 8px;
  background: #000;
  max-height: 300px;
}

.blog-content table,
td,
th {
  border: solid 1px #c8c8c8;
  text-align: center;
}

.blog-content table {
  width: 100%;
  border-collapse: collapse;
}

.blog-title {
  font-size: 27px;
  font-weight: 700;
  color: #000;
  margin-top: 30px;
}

.blog-title h1 {
  font-size: 27px;
  font-weight: 700;
}

.blog-title h2 {
  font-size: 26px;
  font-weight: 700;
}

.blog-info {
  font-size: 18px;
  margin-top: 10px;
}

.blog-mute {
  color: #999999;
  font-size: 16px;
  margin-top: 10px;
}

.blog-row-flex {
  display: flex;
  align-items: center;
  justify-content: end;
  margin-bottom: 15px;
}

@media (max-width:767px) {

  .blog-content p {
    font-size: 16px;
  }

  .blog-box {
    margin-top: 17px;
  }

  .blog-title {
    font-size: 20px;
    margin-top: 10px;
  }

  .blog-title h1 {
    font-size: 16px;
    font-weight: 700;
  }

  .blog-title h2 {
    font-size: 16px;
  }

  .blog-info {
    font-size: 16px;
    margin-top: 15px;
  }

  .blog-mute {
    color: #999999;
    font-size: 14px;
  }

  .blog-img {
    margin-top: 0;
  }
}


.comment-item {
  margin-top: 25px;
  border-bottom: 1px solid #DBDBDB;
  padding-bottom: 20px;
}

.comment-item:last-child {
  border: 0;
  padding-bottom: 0;
}

.comment-item-info {
  display: flex;
  align-items: center;
}

.comment-item-info i {
  background: #C9C9C9;
  color: #fff;
  width: 30px;
  height: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  margin-left: 15px;
}

.comment-item-user {
  font-size: 16px;
  font-weight: 600;
  color: #7A7A7A;
  margin-left: 10px;
}

.comment-item-date {
  font-size: 16px;
  color: #7A7A7A;
}

.comment-item-text {
  font-size: 16px;
  margin-top: 15px;
}

.comment-item-action {
  margin-top: 15px;
  display: flex;
  align-items: center;
}

.comment-item-action button {
  margin: 0;
  padding: 0;
  line-height: 1;
  margin-left: 15px;
  border: 0;
  background: transparent;
  color: #7A7A7A;
  display: flex;
  align-items: center;
}

.comment-item-action button:hover {
  color: #000;
}

.comment-form-replay {
  margin-top: 15px;
}

.btn-replay.active {
  color: var(--color2);
}

.comment-form-replay textarea {
  width: 100%;
  border-radius: 6px;
  background: #fff;
  padding: 10px;
  border: 1px solid #00000040;
  font-size: 14px;
  outline-color: var(--color2);
  margin-bottom: 0;
}

.comment-form-replay input {
  width: 100%;
  border-radius: 6px;
  background: #fff;
  padding: 10px;
  border: 1px solid #00000040;
  font-size: 14px;
  margin-top: 15px;
  outline-color: var(--color2);
}


.comment-form-replay button {
  width: 100%;
  border-radius: 10px;
  background: var(--color1);
  border: 1px solid var(--color1);
  padding: 10px;
  font-size: 14px;
  margin-top: 15px;
  color: #fff;
  transition: 0.3s;
}

.comment-form-replay button:hover {
  background: transparent;
  color: var(--color1);
}

.btn-fave.active {
  color: var(--color1);
}


.comment-form textarea {
  width: 100%;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #00000040;
  padding: 10px;
  font-size: 14px;
  outline-color: var(--color2);
  margin-bottom: 0;
  margin-top: 20px;
}

.comment-form input {
  width: 100%;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #00000040;
  padding: 10px;
  font-size: 14px;
  margin-top: 15px;
  outline-color: var(--color2);
}


.comment-form button {
  width: 100%;
  border-radius: 10px;
  background: var(--color1);
  border: 1px solid var(--color1);
  padding: 10px;
  font-size: 14px;
  margin-top: 15px;
  color: #fff;
  transition: 0.3s;
}

.comment-form button:hover {
  background: transparent;
  color: var(--color1);
}

.comment-answer {
  margin-top: 25px;
  border-top: 1px solid #DBDBDB;
  padding-top: 20px;
  display: flex;
  align-items: center;
  margin-right: 30px;
}


.comment-answer-user {
  font-size: 14px;
  margin-left: 10px;
}

.comment-answer-text {
  font-size: 14px;
}

.comment-answer i {
  background: #C9C9C9;
  color: #fff;
  width: 30px;
  min-width: 30px;
  height: 30px;
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 30px;
  margin-left: 15px;
}

.product-comment-title {
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  font-size: 20px;
  font-weight: bold;
}


.comment-form-rate {
  display: flex;
  align-items: center;
  justify-content: end;
}

.comment-form-rate-star {
  margin-right: 15px;
  margin-left: 15px;
  direction: ltr;
}

.comment-form-rate-text {
  font-size: 16px;
  text-align: center;
  color: #505050;
}

.wrapper-star input {
  display: none;
}

.wrapper-star label {
  margin: 0;
}

i.icon-star-empty {
  color: #7D7D7D;
}

i.icon-star {
  color: #f9bc00;
}

.com-box-title {
  font-size: 18px;
  font-weight: 700;
  color: #000;
}

.com-box-text {
  font-weight: 300;
  margin-top: 10px;
  color: #000;
}

.com-box-form {
  display: flex;
  flex-direction: column;
}

.com-box-form input {
  height: 50px;
  background: #F0F0F0;
  border: 1px solid #00000033;
  margin-top: 5px;
  padding: 10px;
  outline-color: var(--color1);
  border-radius: 20px;
  border: 0;
}

.com-box-form textarea {
  background: #F0F0F0;
  margin-top: 5px;
  padding: 10px;
  outline-color: var(--color1);
  border-radius: 20px;
  border: 0;
}

.com-box-form label {
  font-size: 18px;
}

.com-box-code input {
  background: #F0F0F0;
  border: 0;
  height: 40px;
  margin-right: 10px;
  text-align: center;
  outline-color: var(--color1);
  width: 100%;
  max-width: 150px;
  border-radius: 20px;
}

.com-box-code img {
  width: 140px;
}

.com-box-code {
  display: flex;
  align-items: center;
  white-space: nowrap;
}



.com-box-submit {
  height: 50px;
  background: var(--color1);
  border: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  border-radius: 10px;
  margin-top: 10px;
  width: 100%;
  border-radius: 50px;
  transition: 0.3s;
  margin-top: 15px;
}

.com-box-submit:hover {
  background: var(--color3);
  color: #fff;
}

.com-box-form label {
  color: #000;
  font-size: 16px;
  font-weight: bold;
}

.com-box-recode {
  font-size: 14px;
  color: #000;
  margin-top: 15px;
  display: block;
}

.product-comment-title {
  font-size: 20px;
}

@media (max-width:767px) {
  .com-box-title {
    font-size: 16px;
  }

  .com-box-text {
    margin-top: 10px;
    font-size: 14px;
  }

  .com-box-form label {
    font-size: 14px;
  }

  .com-box-form input {
    height: 40px;
    margin-top: 0px;
  }

  .com-box-mute {
    font-size: 12px;
  }

  .comment-form-rate-text {
    font-size: 14px;
  }

  .com-box-recode {
    margin-top: 10px;
    font-size: 14px;
    display: block;
  }


  .com-box-submit {
    height: 38px;
    padding: 8px;
    margin-top: 10px;
    margin-top: 0;
  }

  .comment-item-user {
    font-size: 14px;
  }

  .comment-item-date {
    font-size: 14px;
  }

  .comment-item-text {
    font-size: 14px;
    margin-top: 10px;
  }

  .comment-item-action {
    margin-top: 10px;
  }

  .comment-item-action button {
    font-size: 14px;
  }

  .r-blog-box-head {
    font-size: 16px;
  }

  .blog-rel-item {
    font-size: 14px;
  }

}


.about-body {
  background: #FDF6EC;
  margin-top: 60px;
  padding-top: 30px;
  padding-bottom: 60px;
  background-size: contain;
  background-repeat: repeat;
}

.about-img {
  width: 100%;
}

.about-title {
  font-size: 28px;
  font-weight: 700;
  color: var(--color1);
  margin-bottom: 10px;
}

.about-text {
  text-align: justify;
  font-size: 20px;
  line-height: 1.8;
  color: #000;
}

@media (max-width:767px) {
  .about-body {
    margin-top: 30px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .about-title {
    font-size: 18px;
  }

  .about-text {
    font-size: 16px;
  }

}


/* contact us */

.contact-map {
  overflow: hidden;
  position: relative;
  height: 0;
  height: 480px;
  width: 100%;
  background: #F4F4F4;
}

.contact-map iframe {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
}


.contact-us-form-title {
  font-size: 18px;
  font-weight: 600;
  border-bottom: 1px solid var(--color1);
  padding-bottom: 5px;
  color: var(--color2);
}

.contact-us-form input {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #eee;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  outline: none;
  background: #fff;
  border: 1px solid #C0C0C0;
  height: 50px;
}

.contact-us-form textarea {
  display: block;
  width: 100%;
  padding: 0.375rem 0.75rem;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #495057;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid #eee;
  transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
  outline: none;
  background-color: #fff;
  border: 1px solid #C0C0C0;
}


.contact-us-form label {
  font-size: 18px;
  font-weight: 500;
  text-align: right;
  color: #000;
}

.contact-us-form input:focus {
  border-color: var(--color1);
}

.contact-us-form textarea:focus {
  border-color: var(--color1);
}

.contact-us-form button {
  background: var(--color1);
  border: 0;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  padding: 5px 30px;
  border-radius: 0;
  transition: 0.3s;
  height: 50px;
  margin-right: auto;
}

.contact-us-form button:hover {
  background: var(--color3);
  color: #fff;
}

.contact-box {
  border: 1px solid #C0C0C0;
  padding: 30px;
  max-width: 960px;
  margin: auto;
}

.contact-box-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 15px;
}

.contact-info-title {
  font-size: 24px;
  font-weight: 600;
  color: #000;
  margin-bottom: 15px;
}

.contact-info-text {
  text-align: justify;
  font-size: 17px;
  font-weight: 300;
  line-height: 2;
}

@media (max-width:767px) {
  .contact-info-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .contact-box-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .contact-info-text {
    font-size: 13px;
  }

  .contact-map {
    height: 200px;
  }


  .contact-box {
    padding: 15px;
  }

  .contact-box-title {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .contact-us-form label {
    font-size: 14px;
  }

  .contact-us-form button {
    height: 36px;
    width: auto;
    font-size: 12px;
  }

}

/* product */

.product-row {
  display: flex;
  align-items: center;
  padding-bottom: 10px;
}

.product-row-flex {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-right: 40px;
  align-items: center;
}

.product-type {
  margin: 0;
}

.product-type input {
  display: none;
}

.product-type span {
  height: 34px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #ddd;
  border-radius: 0;
  margin: 0;
  background: #fff;
  color: #000;
  font-size: 15px;
  cursor: pointer;
  user-select: none;
}

.product-type input:checked+span {
  border-color: var(--color1);
  color: #fff;
  font-weight: 500;
  background-color: #000;
}

.product-type input:disabled+span {
  opacity: 0.5;
  cursor: unset;
}

.faq-body {
  margin-top: 40px;
}

.faq-item {
  background: white;
  overflow: hidden;
  transition: all 0.3s ease;
  border-bottom: 1px solid #B3B3B3;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  padding: 20px 20px;
  cursor: pointer;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.faq-question::after {
  content: '\f107';
  font-family: 'raya-icon';
  font-size: 22px;
  color: #000;
  transition: transform 0.3s ease;
  min-width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding-top: 3px;
}

.faq-item.active .faq-question::after {
  transform: rotate(180deg);
  padding-top: 1px;
}

.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.4s ease;
  padding: 0 20px;
}

.faq-answer-content {
  padding-bottom: 15px;
}

.product-sticky .breadcrumb {
  margin-top: 0;
  justify-content: start;
}

.product-title {
  font-size: 36px;
  font-weight: 500;
  color: #000;
}

.product-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-price-off {
  font-size: 20px;
  color: #9c9c9c;
  text-decoration: line-through;
}

.product-price-main {
  font-size: 26px;
  font-weight: 700;
}

.product-price-main i {
  font-size: 14px;
}

.product-row-title {
  font-size: 20px;
  color: #000;
  font-weight: 500;
}

.product-order {
  display: flex;
  justify-content: end;
  height: 38px;
  margin-top: 30px;
  gap: 5px;
}

.product-btn {
  background: transparent;
  border: 0;
  outline: none;
  font-size: 14px;
}

.product-count {
  user-select: unset;
  text-align: center;
  width: 40px;
  border: 0;
  background: var(--color1);
  color: #fff;
  font-size: 22px;
  outline: none;
  cursor: unset;
  height: 35px;
}


.product-btn-add {
  background: var(--color1);
  color: #fff;
  border: 0;
  outline: none;
  padding: 5px 30px;
  font-size: 18px;
}

@media (max-width:767px) {
  .product-flex {
    flex-direction: column;
  }

  .product-title {
    font-size: 20px;
    margin-left: auto;
  }

  .product-price {
    margin-right: auto;
  }

  .product-price-off {
    font-size: 18px;
    text-align: end;
  }

  .product-price-main {
    font-size: 24px;
  }

  .product-row-title {
    font-size: 18px;
  }

  .product-type span {
    height: 30px;
    font-size: 14px;
  }

  .product-row {
    padding-bottom: 0;
  }

  .product-btn-add {
    font-size: 16px;
  }

  .faq-body {
    margin-top: 60px;
  }
}

/* swiper gallery ...  */

.product-wrapper {
  position: relative;
}

.product-img {
  width: 100%;
  cursor: zoom-in !important;
}

.swiper-product {
  position: relative;
}

@media (max-width:767px) {
  .product-sticky {
    margin-top: 30px;
  }

  .product-wrapper {
    margin-top: 135px;
  }

  .swiper-product {
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    list-style: none;
    padding: 0;
    z-index: 1;
    margin-right: -15px;
    margin-left: -15px;
    margin-top: 80px;
  }

  .product-img {
    /*height: 500px;*/
    object-fit: cover;
    height: auto;
  }

  .swiper-product .swiper-pagination-bullet-active {
    background: #000;
  }

}

@media (min-width:768px) {
  .pr-md-0 {
    padding-right: 0;
    margin-top: 80px;
  }

  .product-wrapper {
    margin-bottom: 8%;
  }

  .product-wrapper .row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }


  .swiper-product .swiper-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    transform: unset !important;
  }

  .swiper-product .swiper-pagination {
    position: sticky;
    top: 50%;
    margin-right: 1.5625rem;
    display: flex;
    flex-direction: column;
    gap: .625rem;
  }

  .swiper-product .swiper-pagination-bullet {
    height: .4375rem;
    width: .4375rem;
    border: 1px solid #000;
    border-radius: 50%;
    cursor: pointer;
    background: transparent;
    opacity: 1;
  }

  .swiper-product .swiper-pagination-bullet-active {
    background-color: #000;
  }

  .pagination-body {
    position: absolute;
    height: 100%;
  }

  .product-sticky {
    padding-top: 50px;
    padding-left: 80px;
    position: sticky;
    top: 110px;
    padding-bottom: 0;
  }

  .product-info {
    padding: 50px 80px;
    padding-bottom: 0;
  }

  .singel-product-short-desc.singel-product-info__panel--paragraph {
    margin-top: 35px !important;
  }
}


/* gallery*/

#productGalleryModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  background: #fff;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.gallery-modal-body img {
  user-select: none;
}

.gallery-modal-body {
  position: relative;
  width: 100%;
  max-width: 700px;
  background: #fff;
  padding: 20px;
}

#closeModalBtn {
  position: fixed;
  right: 10px;
  top: 10px;
  background: transparent;
  border: 0;
  color: #000;
  font-size: 20px;
  z-index: 9;
}

.swiper-slide img.zoomed {
  cursor: grab;
  transform: scale(2);
  transition: transform 0.3s ease;
  transform-origin: top left;
  position: relative;
}

.singel-product__images--display {
  cursor: zoom-in !important;
}

.singel-product__gallery--image {
  cursor: zoom-in !important;
}
/*empty products*/
.box-empty-products{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-right: auto;
  margin-left: auto;
}
.img-empty-products{
  max-width: 280px;
}
/*empty products*/

.single-section-img{
  width: 200px;
  height: 250px;

}
.product-item {
  font-size: 14px;
  font-weight: 500;
  color: #939393;
  display: flex;
  align-items: center;
  margin-right: 15px;
}

.product-item:nth-child(1) i {
  color: #DA6600;
}

.product-item:nth-child(2) i {
  color: #034AA2;
}

.product-item:nth-child(3) i {
  color: #CF2900;
}

.product-item i {
  font-size: 21px;
  margin-left: 5px;
}
.icon-img-product{
  width: 21px;
  height: 21px;
}

.shipping-method-radio:has(input[type="radio"]:checked){
  border: 2px solid var(--color1);
  background: #f0f5fc;
  border-radius: 6px;
}

.address-item-inner-theme:has(input[type="radio"]:checked) {
  border: 2px solid var(--color1);
  background: #f0f5fc;
  border-radius: 6px;
}
@media (max-width: 767px){
  .shipping-method-radio{
    margin-left: 5px !important;
    float: unset;
  }
  .shipping-method-radio p{
    font-size: 9px;
  }
  .shipping-method-radio input[type=radio] + img{
    max-height: 45px;
  }
}
/*search*/
.navbar-search{
  /*position: relative;*/
}
.autocomplete-suggestions {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ccc;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  padding: 5px;
}
.autocomplete-suggestions div {
  display: flex;
  align-items: center;
  padding: 10px;
  cursor: pointer;
  border: 1px solid #cbcbcb;
  margin: 5px 0;
  font-size: small;
  border-radius: 5px;
}

.autocomplete-suggestions div.no-results {
  cursor: default;
  color: #888;
  border: none;
}
.autocomplete-suggestions div:not(.no-results):hover,
.autocomplete-suggestions div.selected {
  background-color: #f0f0f0;
}
.autocomplete-suggestions img {
  width: 35px;
  height: 35px;
  margin-left: 10px;
  object-fit: cover;
  border-radius: 3px;
}

/* OTP SMS Verify */
.otp-body {
  display: flex
;
  align-items: center;
  direction: ltr;
  justify-content: center;
  margin-top: 30px;
}
.otp {
  width: 100%;
  max-width: 60px;
  height: 55px;
  border: 1px solid #C4C7C7;
  border-radius: 16px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  color: #444748;
  outline-color: var(--color1);
  direction: ltr;
  margin: 0 5px;
}
div#timer {
  text-align: center;
  margin-top: 30px;
  display: flex
;
  justify-content: center;
}
div#send-btn-otp {
  text-align: center;
  display: flex
;
  justify-content: center;
}
#send-otp {
  color: #2A9ACE;
  margin: auto;
  margin-top: 30px;
  background: transparent;
  border: 0;
}
.otp::-webkit-inner-spin-button,
.otp::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.ck-box-item{
  padding-bottom: 5px;
}
.ck-box-bottom .ck-box-btn{
  margin-bottom: 5px;
}
.login-item-inner{
  /*padding: 38px 0 !important;*/
  margin-top: auto;
  margin-bottom: auto;
  min-height: 322px;
}

@media (min-width: 768px) {
  .form-search-desktop{
    display: flex;
  }
  .form-search-mobile{
    display: none;
  }
}
@media (max-width: 767px) {
  .form-search-desktop{
    display: none;
  }
  .form-search-mobile{
    display: flex;
  }
  .autocomplete-suggestions{
    top: 20%;
  }
}

/* Skill Bar CSS snippet */
.track-wrapper-simple {
  position: relative;
  width: 100%;
  margin: 20px 0;
}
.track {
  height: 14px;
  background: #eee;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.progress {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg,#b0e1bb,#57cf88);
  border-radius: inherit;
  transition: width .2s linear;
}

/* آیکن هدیه: پیش‌فرض مخفی */
.gift-icon {
  position: absolute;
  top: -28px;
  left: 0;
  font-size: 24px;
  opacity: 0;            /* مخفی */
  visibility: hidden;    /* از دسترس خارج */
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.gift-icon.show {
  opacity: 1;            /* نمایان */
  visibility: visible;
  transform: translateY(-5px);
}
.send-badge {
  background: var(--color1);
  color: #fff;
  font-size: 16px;
  padding: 10px;
  width: max-content;
}
@media (max-width: 767px) {
  .product-title h1 {
    font-size: 26px;
  }

  .faq-question {
    padding: 20px 5px;
  }

  .navbar *,
  .navbar *:before,
  .navbar *:after {
    -webkit-transition: unset;
    -moz-transition: unset;
    -o-transition: unset;
    transition: unset;
  }

  .product-list.w-100 {
    overflow: hidden;
  }

  .offcanvas-nav.active {
    height: 500px;
    max-height: unset;
    box-shadow: 0 8px 8px #00000024;
  }
  .product-flex {
    flex-direction: row;
  }
  .single-section-img{
    width: 150px;
    height: 200px;

  }
}
.like-button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  line-height: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
  outline: none;
}

.like-button:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.like-button svg {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}

.like-button.active svg {
  filter: drop-shadow(0 0 8px rgba(255, 71, 87, 0.5));
}

.heart-path {
  stroke: #ff4757;
  stroke-width: 2;
  fill: transparent;
  transition: fill 0.3s ease;
}

.like-button.active .heart-path {
  fill: #ff4757;
}
.product-info-btn{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 10px ;

}
.btn-heart, .btn-share{
  border: none;
  background: transparent;
}
.text-success {
  color: #000 !important;
  font-size: 10px !important;
  padding-top: 5px;

}
/*login checkout*/
.modal-login-input {
  height: 39px;
  width: 100%;
  background: #fff;
  border: 1px solid #C4C7C7;
  padding: 10px;
  border-radius: 8px;
  outline-color: var(--color2);
  margin-top: 20px;
}
.mobile-send{
  width: 50%;
}
.modal-login-btn {
  width: 100%;
  margin-top: 15px;
  height: 41px;
  border-radius: 8px;
  transition: 0.3s;
  background: var(--color1);
  border: 1px solid var(--color1);
  color: #fff;
}
@media (max-width: 767px) {
  .mobile-send{
    width: 100%;
  }
}



/*new*/
/*header site*/
.navbar-nav.ml-auto .nav-item{
  margin-left: 14px;
}
.nav-item a{
  padding: 0 ;
  font-size: 13px;
  font-weight: 600;
}
.navbar-fill {
  height: auto;
}
.navbar-custom{
  height: auto;
}
.nav-item.dropdown{
  margin-top: 0 !important;
}
.dropdown ul{
  margin-top: 3px;
}
.dropdown ul li a{
  font-size: 14px;
}
.navbar-left a.navbar-btn{
  font-size: 22px;
}
.header-wrap-title{
  margin-top: 8%;
}
/*end header site*/

/*new*/
.out-of-stock {
  opacity: 0.4;
  position: relative;
}

.out-of-stock::after {
  content: "✕";
  position: absolute;
  top: 10%;
  right: 30%;
  color: #000;
  font-size: 22px;
}
.goldmenu{
  color: #e7d20c !important;
  font-weight: 600 !important;
  font-size: 16px !important;

}