/*
Theme Name: Avada Child
Template: Avada
Version: 1.0
*/

/* WOOCOMMERCE PRODUCT GRID CSS */

/* aecync WooCommerce product card */

.woocommerce ul.products li.product.aecync-product-card {
    background: transparent !important;
    border: 0 !important;
    padding: 0 !important;
    margin-bottom: 28px !important;
    text-align: left !important;
}



.aecync-product-card .aecync-card-inner {
    position: relative;
    background: #1f1f1f;
    min-height: 340px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0px 16px rgba(0,0,0,0.22);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.aecync-product-card:hover .aecync-card-inner {
    transform: translateY(-4px);
    box-shadow: 0 0px 24px rgba(0,0,0,0.34);
}

.aecync-card-link {
    display: block;
    position: relative;
    min-height: 340px;
    color: inherit;
    text-decoration: none !important;
}

.aecync-card-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.aecync-card-image img {
    position: absolute;
    inset: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover;
    object-position: center;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.aecync-hover-image {
    opacity: 0;
}

.aecync-product-card:hover .aecync-main-image {
    /*opacity: 0;*/
    transform: scale(1.1);
}

.aecync-product-card:hover .aecync-hover-image {
    opacity: 1;
    transform: scale(1.1);
}

.aecync-card-bottom {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 22px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
}

.aecync-card-info h3 {
    margin: 0 0 4px 0 !important;
    padding: 0 !important;
    color: #ffffff;
    font-size: 14px !important;
    line-height: 1.2;
    font-weight: 700;
}

.aecync-card-info p {
    margin: 0;
    color: rgba(255,255,255,0.58);
    font-size: 12px;
    line-height: 1.2;
}

.aecync-card-price {
    color: #ffffff;
    font-size: 14px;
    white-space: nowrap;
    text-align: right;
}

.aecync-card-price del {
    display: block;
    color: rgba(255,255,255,0.35);
    font-size: 12px;
    line-height: 1.1;
}

.aecync-card-price ins {
    display: block;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    line-height: 1.1;
}

.aecync-wishlist-placeholder {
    position: absolute;
    top: 18px;
    right: 24px;
    z-index: 5;
    background: transparent;
    border: 0;
    color: #ffffff;
    font-size: 23px;
    line-height: 1;
    cursor: pointer;
    padding: 0;
}

.aecync-card-badges {
    position: absolute;
    top: 22px;
    left: 22px;
    z-index: 5;
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.aecync-badge {
	min-height: 10px;
	font-size: 9px;
	line-height: 1;
	display: inline-flex;
	align-items: center;
	padding: 4px 4px;
	border-radius: 5px;
	backdrop-filter: blur(6px);
	transition: all 0.2s ease;
	letter-spacing: 0.5px;
}

.aecync-badge-new {
	border: 1px solid #FFE392C4 !important;
	color: #FFFEFC;
	box-shadow: 0 0 4px #FFD70040, 0 0 4px #FFD70040, inset 0 0 4px #FFD70040;
	background: #FFD70038 !important;
}
.aecync-badge-sale {
	border: 1px solid #78FF08B5 !important;
	color: #F0FFE3;
	box-shadow: 0 0 4px #78FF0840, 0 0 4px #78FF0840, inset 0 0 4px #78FF0840;
	background: #78FF0838 !important;
}

.aecync-badge-popular {
	border: 1px solid #CA7CFFE0 !important;
	color: #F8EFFF;
	box-shadow: 0 0 4px #B343FFCF, 0 0 4px #9B08FF40, inset 0 0 4px #9B08FF40;
	background: #B953FF4D  !important;
}

.aecync-badge-custom {
	border: 1px solid #76FFF2B5 !important;
	color: #EAFBFF;
	box-shadow: 0 0 4px #04D0FF40, 0 0 4px #04D0FF40, inset 0 0 4px #04D0FF40;
	background: #04D0FF38 !important;
}

/*
.aecync-badge-sale {
    display: none !important;
}
*/


