.product-wrapper {
  width: 360px;
  height: 450px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 19;
  position: relative; }

.product-card-decoration {
  z-index: 9;
  position: absolute;
  opacity: 1; }
  .product-card-decoration img {
    width: 36px;
    height: 36px;
    transition: width 0.3s ease, height 0.3s ease; }

.product-card {
  display: flex;
  flex-direction: column;
  color: #4928ff;
  width: 250px;
  height: 400px;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0px 0 8px rgba(73, 40, 255, 0.1);
  z-index: 20;
  position: relative; }
  .product-card:hover {
    box-shadow: 0px 0 8px rgba(73, 40, 255, 0.8);
    transform: scale(1.02);
    transition: all 0.8s ease; }
  .product-card:hover + .product-card-decoration img {
    width: 350px;
    height: 440px;
    transition: width 0.3s ease, height 0.3s ease; }
  .product-card .bag-active {
    opacity: 0; }
  .product-card.active .bag-active {
    position: absolute;
    left: 50%;
    top: -6%;
    transform: translateX(-50%);
    z-index: 19;
    animation: bag-active .7s ease;
    opacity: 1; }

@keyframes bag-active {
  0% {
    top: 0; }
  50% {
    top: -8%; }
  100% {
    top: -6%; } }
  .product-card.active + .product-card-decoration img {
    width: 36px;
    height: 36px;
    transition: width 0.5s ease, height 0.5s ease; }
  .product-card .product-card-content {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 16px;
    z-index: 20;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center; }
  .product-card .product-card-content .categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex;
    gap: 5px;
    margin-right: 54px; }
    .product-card .product-card-content .categories .category {
      padding: 3px;
      background-color: #FEEFFF;
      border-radius: 16px; }
      .product-card .product-card-content .categories .category p {
        color: var(--dark-font);
        font-size: .7em; }
  .product-card .product-card-content .product-image {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 20;
    width: 110px;
    height: 110px;
    margin-top: 15px; }
  .product-card .product-card-content .product-image img {
    z-index: 20;
    width: 100%;
    height: 100%; }
  .product-card .product-card-content .brand {
    text-align: center;
    margin-top: 15px;
    padding: 3px;
    border-radius: 16px;
    background-color: #F0EFFF; }
    .product-card .product-card-content .brand h2 {
      color: var(--dark-font);
      font-weight: 400;
      font-size: .8em; }
  .product-card .product-card-content .price {
    margin-top: 15px; }
    .product-card .product-card-content .price p {
      color: var(--dark-font);
      font-weight: 800;
      font-size: 1.5em; }
  .product-card .product-card-content .name {
    margin-top: 15px; }
    .product-card .product-card-content .name p {
      font-size: 1em;
      font-weight: 300;
      color: var(--dark-font); }
  .product-card .product-card-content .add-to-cart-container {
    cursor: pointer;
    margin-top: 20px;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none; }
    .product-card .product-card-content .add-to-cart-container .add-to-cart, .product-card .product-card-content .add-to-cart-container .cart-counter-container, .product-card .product-card-content .add-to-cart-container .remove-from-cart {
      user-select: none;
      -webkit-user-select: none;
      -moz-user-select: none;
      -ms-user-select: none;
      width: 130px;
      height: 40px;
      border-radius: 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-size: 400%;
      background-image: linear-gradient(90deg, #0065ff, #6942ef, #6554c0, #008cff, #0065ff, #C200FF); }
      .product-card .product-card-content .add-to-cart-container .add-to-cart::before, .product-card .product-card-content .add-to-cart-container .cart-counter-container::before, .product-card .product-card-content .add-to-cart-container .remove-from-cart::before {
        content: '';
        position: absolute;
        border-radius: 7px;
        background-image: linear-gradient(90deg, #0065ff, #6942ef, #6554c0, #008cff, #0065ff, #C200FF);
        background-size: 500%;
        background-position: 0% 0%;
        z-index: -1;
        transition: opacity 0.2s; }
      .product-card .product-card-content .add-to-cart-container .add-to-cart:hover, .product-card .product-card-content .add-to-cart-container .cart-counter-container:hover, .product-card .product-card-content .add-to-cart-container .remove-from-cart:hover {
        animation: gradientRotate 5s infinite; }
        .product-card .product-card-content .add-to-cart-container .add-to-cart:hover::before, .product-card .product-card-content .add-to-cart-container .cart-counter-container:hover::before, .product-card .product-card-content .add-to-cart-container .remove-from-cart:hover::before {
          opacity: 1;
          animation: gradientRotate 5s infinite; }

@keyframes gradientRotate {
  0% {
    background-position: 0% 0%; }
  50% {
    background-position: 100% 100%; }
  0% {
    background-position: 0% 0%; } }
      .product-card .product-card-content .add-to-cart-container .add-to-cart p, .product-card .product-card-content .add-to-cart-container .cart-counter-container p, .product-card .product-card-content .add-to-cart-container .remove-from-cart p {
        color: #fff;
        font-size: 1.2em;
        letter-spacing: .5px; }
      .product-card .product-card-content .add-to-cart-container .add-to-cart.mini, .product-card .product-card-content .add-to-cart-container .cart-counter-container.mini, .product-card .product-card-content .add-to-cart-container .remove-from-cart.mini {
        width: 40px;
        height: 40px;
        color: #FFF;
        font-weight: 700;
        font-size: 24px;
        background: none;
        user-select: none;
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none; }
    .product-card .product-card-content .add-to-cart-container .cart-counter-container {
      display: flex;
      justify-content: space-around;
      align-items: center; }
      .product-card .product-card-content .add-to-cart-container .cart-counter-container .cart-counter {
        width: 40px;
        height: 100%;
        background-color: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border: none;
        outline: none;
        text-align: center;
        font-weight: 800;
        font-size: 18px; }
        .product-card .product-card-content .add-to-cart-container .cart-counter-container .cart-counter:focus {
          outline: none; }

.product-card .cart-indicator {
  z-index: 21;
  position: absolute;
  right: 10px;
  top: 10px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(to right, #4928FF, #C200FF); }
  .product-card .cart-indicator .icon {
    width: 100%;
    height: 100%;
    padding: 10px; }
    .product-card .cart-indicator .icon svg {
      width: 100%;
      height: 100%;
      stroke-width: 2px; }
    .product-card .cart-indicator .icon svg path {
      stroke: #fff;
      stroke-width: 2px; }
    .product-card .cart-indicator .icon svg line {
      stroke-width: 3px;
      stroke: #fff; }
    .product-card .cart-indicator .icon svg ellipse {
      fill: #fff;
      stroke-width: 2px; }

@keyframes addToCartUnwrap {
  0% {
    width: 0; }
  100% {
    width: 100%; } }

@media (max-width: 576px) {
  .product-card-decoration.infocus img {
    width: 350px;
    height: 440px;
    transition: width 0.3s ease, height 0.3s ease; }
  .product-card .product-card-content .categories .category p {
    font-size: 1em; }
  .product-card .product-card-content .brand h2 {
    font-size: 18px; }
  .product-card .product-card-content .name p {
    font-size: 16px;
    font-weight: 600;
    text-align: center; } }

/*# sourceMappingURL=store-product-card.css.map */