/* ----------------------------*/
/*Product Card Container*/
/*---------------------------- */
.arcsailer-product-card{
    border: 1px solid #eee;
    background: #fff;
}
.arcsailer-product-card .product-card {
    position: relative;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
}

.arcsailer-product-card:hover {
    border-color: #000000;
}

/* ----------------------------*/
/*Product Image*/
/*---------------------------- */
.arcsailer-product-card .product-card .product-image {
    position: relative;
    overflow: hidden;
}

.arcsailer-product-card .product-card .product-image img {
    width: 100%;
    height: 400px !important;
    object-fit: cover;
    display: block;
    margin: 0 !important;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

 /*Hover image hidden initially */
.arcsailer-product-card .product-card .hover-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0 !important;
    opacity: 0;
    transition: opacity 0.4s ease;
}


 /*Hover effect */
.arcsailer-product-card .product-card:hover .hover-image {
    opacity: 1;
}

 /*Scale main image slightly on hover */
.arcsailer-product-card .product-card:hover img:first-child {
    transform: scale(1.05);
}
/* ----------------------------*/
/*Product Badges*/
/*---------------------------- */
.arcsailer-product-card .product-card .product-badges{
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: row;
    gap: 5px;
    z-index: 5;
}
.arcsailer-product-card .product-card .badge.best-seller {
    border: 1px solid #000000 !important;
    background-color: #ffffff !important;
    width: auto !important;
    color: #000000 !important;
    font-size: 0.7rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.1rem 0.6rem !important;
}
.arcsailer-product-card .ast-on-card-button.ast-onsale-card {
    border: 1px solid red;
    background-color: #ffffff;
    width: 45px;
    color: red;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.1rem;
}

.arcsailer-product-card .badge.best-seller { background: #FF6F61; }
.arcsailer-product-card .badge.featured { background: #5BC0EB; }
.arcsailer-product-card .ast-onsale-card { background: #FF4C4C; }

/* ----------------------------*/
/*Product Actions Buttons*/
/*---------------------------- */
.arcsailer-product-card .product-actions {
    position: absolute;
    width: 100%;
    bottom: 5px;
    display: flex;
    gap: 0.3rem;
    padding: 0.4rem;
    transition: all 0.3s ease;
}
.arcsailer-product-card .product-actions a {
    width: 100%;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    padding: 0.7rem !important;
    background-color: #ffffff !important;
    border: none !important;
    color: #000000 !important;
    font-size: 0.7rem !important;
    font-weight: 400 !important;
    margin: 0 !important;
}
.arcsailer-product-card .product-actions a:hover{
    background-color: #000000 !important;
    color: #ffffff !important;
}
.product-actions a:hover svg path{
    fill: #ffffff !important;
    stroke: #ffffff !important;
}


/* ----------------------------*/
/*Product Info*/
/*---------------------------- */
.arcsailer-product-card .product-card .product-info {
    padding: 12px 10px 15px;
    text-align: center;
}
.arcsailer-product-card .product-size {
    display: flex;
    gap: 0.3rem;
    margin: 12px 0;
}
.arcsailer-product-card .product-size .size-item {
    display: flex;
    width: 28px;
    height: 28px;
    border: 1px solid #000000;
    flex-direction: column;
    justify-content: center;
    font-size: 0.8rem;
    color: #000000;
    cursor: pointer;
}
.arcsailer-product-card .product-size .size-item.disabled {
    opacity: 0.4;
    pointer-events: none;
    border-color: #ccc;
}
.arcsailer-product-card .product-size .size-item:hover{
    border-color: #FC5F49 !important;
}
.arcsailer-product-card .product-color {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}

.arcsailer-product-card .product-color .color-dot {
    width: 20px;
    height: 20px;
    display: block;
    cursor: pointer;
    position: relative;
    border-radius: 100%;
    border: 1px solid #cccccc;
}

.arcsailer-product-card .product-info .product-category {
    font-size: 11px;
    color: #000000;
    text-transform: uppercase;
    text-decoration: none;
}

.arcsailer-product-card .product-info a:hover{
    color: #FC5F49 !important;
}

.arcsailer-product-card .product-info .title {
    font-size: 0.8rem !important;
    line-height: 1.2rem !important;
    font-weight: 400;
    margin: 5px 0 !important;
    color: #000000;
    text-align: left;
    display: block;
}

.arcsailer-product-card .product-cat-rating {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.arcsailer-product-card .product-info .rating {
    color: #000000;
    font-size: 12px;
}

.arcsailer-product-card #product-card-price .price {
    text-align: left;
    font-size: 0.7rem;
    font-weight: 400 !important;
    color: #000000;
    margin-top: 15px;
}





















