/* Product Card */
.aethera-product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.aethera-product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

.aethera-product-card-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.aethera-product-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.aethera-product-card:hover .aethera-product-card-image img {
    transform: scale(1.05);
}

.aethera-product-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e94560;
    color: white;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.aethera-product-card-content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.aethera-product-card-title {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 8px;
    line-height: 1.3;
}

.aethera-product-card-excerpt {
    font-size: 14px;
    color: #718096;
    line-height: 1.6;
    margin-bottom: 16px;
    flex: 1;
}

.aethera-product-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 13px;
    color: #a0aec0;
}

.aethera-product-card-price {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 16px;
}

.aethera-product-card-price-original {
    font-size: 16px;
    color: #a0aec0;
    text-decoration: line-through;
}

.aethera-product-card-price-final {
    font-size: 28px;
    font-weight: 800;
    color: #e94560;
}

.aethera-product-card-cta {
    display: block;
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
}

.aethera-product-card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.4);
}

/* Free badge */
.aethera-product-card-badge.free {
    background: #10b981;
}

.aethera-product-card-price-final.free {
    color: #10b981;
}
