/*--------------------------------------------------------------
  >> : Notices
--------------------------------------------------------------*/
  .woocommerce-notices-wrapper:not(:empty) {
    background: #d1e7dd;
    border: 1px solid #a3cfbb;
    width: fit-content;
    padding: 14px 16px;
    margin-bottom: 1rem;
  }


/*--------------------------------------------------------------
  >> : Product Cards
--------------------------------------------------------------*/
  .product-card {
    position: relative;
  }

  .product-card picture {
    aspect-ratio: 1/1;
    border-radius: 2rem;
    overflow: hidden;
    margin-bottom: 0;
    vertical-align: middle;
  }

  .product-card .product-card-body {
    position: relative;
    padding: 0 10px;
    display: inline-flex;
    flex-wrap: wrap;
    margin-top: 1.25rem;
  }

  .product-card[data-on-sale="1"] .product-card-body {
    padding-top: 30px;
  }

  .product-card-body .h3 {
    width: 100%;
    font-size: 1.5rem;
    line-height: 1.5;
  }

  .product-card-pricing {
    display: inline-flex;
    align-items:center;
    font-size: 2.5rem;
    letter-spacing: -0.05em;
    width: 100%;
  }

  .product-card-pricing .product-price-sale-amount {
    background: var(--fable-vertex-red);
    padding: 0.3em 1em;
    font-size:0.7rem;
    letter-spacing:0.1em;
    font-weight:500;
    text-transform:uppercase;
    color:#fff;
    border-radius:20px;
    position: absolute;
    top: 0;
  }

  .product-card-pricing ins {
    font-size: 0.8em;
    line-height: 1;
    margin-right: 10px;
    text-decoration: none;
  }

  .product-card-pricing del {
    opacity: 0.3;
    font-size: 0.5em;
    line-height: 3rem;
    vertical-align: top;
    margin-right: 10px;
  }


  .product-card-cat {
    position: absolute;
    top: 0;
    right: 0;
    background: #fff;
    padding: 2px 2px 8px 8px;
    font-size: 0.8rem;
    border-radius: 0 0 0 24px;
  }

  .product-card-cat:before,
  .product-card-cat:after {
      content: '';
      position: absolute;
      width: 20px;
      height: 20px;
  }

  .product-card-cat:before {
      height:20px;
      background: url(/app/themes/devignstudios-toolkit/resources/icons/white-radius.svg) no-repeat;
      z-index:3;
      top:0;
      left:0;
      transform:translateX(-100%);
  }

  .product-card-cat:after {
      height:20px;
      background: url(/app/themes/devignstudios-toolkit/resources/icons/white-radius.svg) no-repeat;
      z-index:3;
      bottom: 0px;
      right:0;
      transform: translateY(100%);
  }

  .product-card-cat a {
    display:block;
    padding:4px 12px;
    border-radius:20px;
    border:2px solid black;
    color:#000;
    font-size:0.9rem;
    font-family:var(--header-font);
  }


  @media (max-width: 1199px) {
    .product-card-body .h3 {
      width: 100%;
      font-size: 1.6rem;
    }
  }

  @media (max-width: 992px) {

    .product-card .product-card-body {
      margin-top: 1rem;
      margin-bottom: 2rem;
    }

    .products-row {
      margin-bottom: -1.5rem;
    }

    .products-row .col {
      margin-bottom: 1.5rem;
    }
  }


/*--------------------------------------------------------------
  >> : Aside Cart Popup
--------------------------------------------------------------*/
  .aside-cart-item {
    display: inline-flex;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #ececec;
  }

  .aside-cart-item .cart-item-img {
    width: 25%;
  }

  .aside-cart-item .cart-item-img picture {
    aspect-ratio: 1/1;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
  }

  .aside-cart-item .cart-item-detail {
    padding-left: 1rem;
  }


  .aside-cart-item .form-control {
    width: 100px;
    border-radius: var(--border-radius-sm);
    float: left;
  }

  .aside-cart-item button {
    float: right;
    border-radius: var(--border-radius-sm);
  }

  .aside-total {
    display: inline-flex;
    justify-content: space-between;
    width: 100%;
  }

  .aside-total p {
    margin-bottom: 0;
  }

  .aside-checkout {
    margin-top: 1rem;
  }

  .aside-checkout .btn {
    width: 100%;
    margin-bottom: 0.75rem;
  }

  .aside-checkout img {
    width: 100%;
    height: 20px;
  }

  .aside-checkout small {
    text-align: center;
    width: 100%;
    display: inline-block;
  }


/*--------------------------------------------------------------
  >> : Forms
--------------------------------------------------------------*/
  form.woocommerce-form {
    background: #fafafa;
    padding: 2rem;
    border-radius: var(--border-radius);
    width: 60%;
    margin: 0 auto;
    margin-top: 2rem;

  }