/*var(--bodyFont): 'Space Grotesk', sans-serif;
var(--titleFont): 'Space Grotesk', sans-serif;
var(--transition): 1.3s;
var(--primaryColor): #3f3eed;
var(--secondaryColor): #083a5e;
var(--whiteColor): #ffffff;
var(--titleColor): #083a5e;
$menuColor: #ffffff;
var(--btnColor): #151f39;
$linkColor: #6e777d;
var(--hoverColor): #151f39;
$globalColor: #6e777d;
var(--bodyColor): #6e777d;
$formBg: #ffffff;
$gray77: #777777;
$gray99: #999999;
$shadow4: 0px 16px 32px 0px rgba(0, 0, 0, .04);
$shadow6: 0px 16px 32px 0px rgba(0, 0, 0, .06);*/
:root {
  --bodyFont: "Space Grotesk", sans-serif;
  --titleFont: "Space Grotesk", sans-serif;
  --transition: 1.3s;
  --primaryColor: #3f3eed;
  --secondaryColor: #083a5e;
  --whiteColor: #ffffff;
  --titleColor: #083a5e;
  --hoverColor: #3f3eed;
  --bodyColor: #6e777d;
  --btnColor: #151f39;
}

/** Prodct Style CSS --------------
-----------------------------------*/
.reactheme-product-grid .product .product-inner {
  position: relative;
  margin: 15px;
  overflow: hidden;
  transition: all 0.3s;
}
.reactheme-product-grid .product .product-inner .image {
  width: 100%;
}
.reactheme-product-grid .product .product-inner .image a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}
.reactheme-product-grid .product .product-inner .image a img {
  width: 100%;
  position: relative;
}
.reactheme-product-grid .product .product-inner .image a:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(18, 27, 50, 0.3);
}
.reactheme-product-grid .product .product-inner .crown-tag {
  position: absolute;
  background: rgba(18, 27, 50, 0.3);
  width: 40px;
  height: 40px;
  line-height: 35px;
  display: block;
  border-radius: 50%;
  text-align: center;
  left: 20px;
  top: 20px;
  z-index: 1;
}
.reactheme-product-grid .product .product-inner .crown-tag img {
  width: auto;
}
.reactheme-product-grid .product .product-inner .sale--box {
  position: absolute;
  background: var(--primaryColor);
  width: 40px;
  height: 40px;
  line-height: 40px;
  display: block;
  border-radius: 50%;
  text-align: center;
  right: 20px;
  top: 20px;
  z-index: 1;
  color: #fff;
  font-size: 14px;
}
.reactheme-product-grid .product .product-inner .action-button {
  padding: 0;
  margin: 0;
  position: absolute;
  top: 15px;
  right: -50px;
  transition: all 0.3s;
  z-index: 1;
}
.reactheme-product-grid .product .product-inner .action-button .single-action {
  list-style: none;
  background: #FFFFFF;
  width: 40px;
  height: 40px;
  line-height: 41px;
  border-radius: 4px;
  display: block;
  text-align: center;
  margin-bottom: 15px;
  transition: all 0.3s;
  display: block;
  width: 100%;
  border-radius: 4px;
}
.reactheme-product-grid .product .product-inner .action-button .single-action i {
  color: #121B32;
}
.reactheme-product-grid .product .product-inner .action-button .single-action:hover {
  background: #151f39;
}
.reactheme-product-grid .product .product-inner .action-button .single-action:hover i {
  color: #fff;
}
.reactheme-product-grid .product .product-inner .content {
  margin-top: 30px;
}
.reactheme-product-grid .product .product-inner .content span a {
  color: #FFF;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 26px;
  letter-spacing: -0.4px;
  transition: all 0.3s;
}
.reactheme-product-grid .product .product-inner .content .bottom-wrapper {
  margin-top: 10px;
  overflow: hidden;
}
.reactheme-product-grid .product .product-inner .content .bottom-wrapper .price, .reactheme-product-grid .product .product-inner .content .bottom-wrapper .add_to_cart_wrapper {
  color: #D9D9D9;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  letter-spacing: -0.32px;
  transition: all 0.3s;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.reactheme-product-grid .product .product-inner .content .bottom-wrapper .price a, .reactheme-product-grid .product .product-inner .content .bottom-wrapper .add_to_cart_wrapper a {
  color: #D9D9D9;
}
.reactheme-product-grid .product .product-inner .content .bottom-wrapper .add_to_cart_wrapper {
  transform: translateY(30px);
  display: block;
}
.reactheme-product-grid .product .product-inner .content .bottom-wrapper .add_to_cart_wrapper a.added_to_cart {
  background-color: var(--primaryColor);
  border-color: var(--primaryColor);
  color: #fff;
  padding: 1px 8px;
  font-weight: 400;
  font-size: 15px;
}
.reactheme-product-grid .product .product-inner:hover .action-button {
  right: 20px;
}
.reactheme-product-grid .product .product-inner:hover .content .bottom-wrapper .price {
  transform: translateY(-30px);
}
.reactheme-product-grid .product .product-inner:hover .content .bottom-wrapper .add_to_cart_wrapper {
  transform: translateY(-25px);
}/*# sourceMappingURL=product-grid.css.map */