/* Base Card Styles */
.eafe-card {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.eafe-card-image {
    display: block;
    width: 100%;
    height: auto;
    transition: all 0.3s ease;
}

.eafe-card-image-wrap {
    position: relative;
    overflow: hidden;
}

.eafe-card-content {
    padding: 20px;
    transition: all 0.3s ease;
}

/* Image Hover Effects */
.eafe-image-hover-zoom:hover {
    transform: scale(1.05);
}

.eafe-image-hover-fade:hover {
    opacity: 0.8;
}

.eafe-image-hover-rotate:hover {
    transform: rotate(3deg) scale(1.03);
}

.eafe-image-hover-blur:hover {
    filter: blur(2px);
}

.eafe-image-hover-grayscale:hover {
    filter: grayscale(100%);
}

.eafe-image-hover-sepia:hover {
    filter: sepia(100%);
}

.eafe-image-hover-brightness:hover {
    filter: brightness(1.2);
}

/* Card Hover Effects */
.eafe-card-hover-lift:hover {
    transform: translateY(-5px);
}

.eafe-card-hover-shadow:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.15) !important;
}

.eafe-card-hover-slide-up:hover {
    transform: translateY(-8px);
}

.eafe-card-hover-tilt:hover {
    transform: rotate(1deg) scale(1.02);
}

/* Content Hover Effects */
.eafe-content-hover-fade .eafe-card-content {
    opacity: 0.9;
}

.eafe-content-hover-fade:hover .eafe-card-content {
    opacity: 1;
}

.eafe-content-hover-slide-up .eafe-card-content {
    transform: translateY(10px);
}

.eafe-content-hover-slide-up:hover .eafe-card-content {
    transform: translateY(0);
}

.eafe-content-hover-slide-down .eafe-card-content {
    transform: translateY(-10px);
}

.eafe-content-hover-slide-down:hover .eafe-card-content {
    transform: translateY(0);
}

/* Product Specific Styles */
.eafe-product-rating {
    margin-bottom: 15px;
}

.eafe-product-rating .star-rating {
    float: none;
    display: inline-block;
}

/* Badge Styles */
.eafe-card-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    line-height: 1.3;
    z-index: 1;
}

.eafe-card-badge-top-left {
    top: 15px;
    left: 15px;
}

.eafe-card-badge-top-right {
    top: 15px;
    right: 15px;
}

.eafe-card-badge-bottom-left {
    bottom: 15px;
    left: 15px;
}

.eafe-card-badge-bottom-right {
    bottom: 15px;
    right: 15px;
}

/* Responsive Styles */
@media (max-width: 767px) {
    .eafe-card {
        margin-bottom: 20px;
    }

    .eafe-card-content {
        padding: 15px;
    }

    .eafe-card-badge {
        font-size: 12px;
        padding: 5px 8px;
    }
}