.custom-woo-products {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
}

.custom-woo-products .cardItem {
    height: auto;
}

.custom-woo-products .cardItem {
    position: relative;
    transition: filter 0.4s ease-in-out;
    filter: drop-shadow(0px 0px 10px rgba(203, 213, 230, 0.4));
    margin-top: 6px;
    padding: 1px;
    overflow: visible;
    background: none;
}

.custom-woo-products .cardItem:hover .shape .product-bottom .add-to-cart a {
    background: var(--accent-color);
    box-shadow: 0px 0px 9px 0px var(--accent-color);
}

.custom-woo-products .cardItem .shape {
    flex-direction: row;
}

.custom-woo-products .cardItem::before {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translateX(-50%);
    background: #F3F3F3;
    border-radius: 50%;
    z-index: -1;
}

.custom-woo-products .cardItem::after {
    content: '';
    position: absolute;
    bottom: 50%;
    left: 50%;
    width: 85px;
    height: 85px;
    transform: translateX(-50%);
    border-bottom: 1px solid var(--accent-color);
    border-radius: 50px;
    z-index: -2;
    transition: bottom 0.4s ease;
}

.custom-woo-products .cardItem:hover::after {
    bottom: 0;
}

.custom-woo-products .cardItem .detail {
    width: 70%;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.custom-woo-products .cardItem .product-thumbnail {
    position: relative;
    width: auto;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid transparent;
}

.custom-woo-products .cardItem .product-thumbnail svg {
    width: 100%;
    max-height: 100%;
    max-width: 100%;
}

.custom-woo-products .cardItem .product-thumbnail img {
    position: absolute;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.custom-woo-products .cardItem .shape .title {
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 700;
    text-align: right;
}

.custom-woo-products .cardItem .shape .product-bottom .add-to-cart a {
    display: flex;
    align-items: center;
    border-radius: 40px;
    background: #D5D5D5;
    justify-content: center;
    transition: all 0.3s ease-in-out;
    padding: 8px 16px;
    gap: 12px;
}

.custom-woo-products .cardItem .shape .product-bottom .add-to-cart a span {
    color: #FFF;
    font-family: var(--secondary-font);
    font-size: 16px;
    font-weight: 600;
}

.custom-woo-products .cardItem .shape .product-bottom .add-to-cart .add_to_cart_button {
    color: #FFF;
    font-size: 16px;
    font-weight: 600;
    line-height: normal;
}

.custom-woo-products .cardItem .shape .product-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.custom-woo-products .cardItem .shape .product-bottom .price {
    display: flex;
    flex-direction: column;
}

.custom-woo-products .cardItem .shape .product-bottom .price label,
.custom-woo-products .cardItem .shape .product-bottom .new-price label {
    color: var(--color-primary100, #9BA8BD);
    font-family: var(--secondary-font);
    font-size: 14px;
    font-weight: 400;
    text-align: left;
}

.custom-woo-products .cardItem .shape .product-bottom .old-price {
    color: var(--color-primary100);
    font-size: 14px;
    font-weight: 400;
    text-decoration: line-through;
    text-align: left;
}

.custom-woo-products .cardItem .shape .product-bottom .new-price {
    display: flex;
    gap: 4px;
    color: var(--color-primary);
    font-size: 15px;
    font-weight: 500;
    text-decoration: none;
}