/* Card Components */

.card {
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.card-compact {
    padding: 30px 25px;
}

.card-spacious {
    padding: 50px 40px;
}

/* Product/Feature Card */
.product-card,
.feature-card {
    text-align: center;
}

.product-card::before,
.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before,
.feature-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover,
.feature-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.card-title {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 700;
}

.card-subtitle {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 600;
}

.card-text {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Info boxes */
.info-box {
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid currentColor;
    margin: 20px 0;
}

.info-box h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.info-box p {
    margin-bottom: 10px;
}

.info-box p:last-child {
    margin-bottom: 0;
}

/* Responsive cards */
@media (max-width: 768px) {
    .card {
        padding: 30px 25px;
    }
    
    .card-compact {
        padding: 20px;
    }
}
