/* Hesaplama Kartları Stilleri */
.calculation-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 80px;
    margin-bottom: 15px;
    box-shadow: 0 2px 8px rgba(212, 175, 55, 0.08);
}

.calculation-card:hover {
    border-color: #d4af37;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.15);
    transform: translateY(-2px);
}

.calculation-card.featured-card {
    background: linear-gradient(135deg, #d4af37 0%, #b8941f 100%);
    color: white;
    border-color: #d4af37;
}

.calculation-card.featured-card:hover {
    background: linear-gradient(135deg, #b8941f 0%, #9a7a1a 100%);
    border-color: #b8941f;
}

.card-content {
    display: flex;
    align-items: center;
    flex: 1;
}

.card-icon {
    width: 40px;
    height: 40px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.featured-card .card-icon {
    background: rgba(255,255,255,0.25);
}

.card-icon i {
    font-size: 18px;
    color: #d4af37;
}

.featured-card .card-icon i {
    color: white;
}

.card-content h5 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    text-align: left;
}

.featured-card .card-content h5 {
    color: white;
}

.card-arrow {
    color: #d4af37;
    font-size: 18px;
    margin-left: 15px;
    flex-shrink: 0;
}

.featured-card .card-arrow {
    color: white;
}

.card-arrow i {
    transition: transform 0.3s ease;
}

.calculation-card:hover .card-arrow i {
    transform: translateX(3px);
}

/* Responsive */
@media (max-width: 768px) {
    .calculation-card {
        height: auto;
        min-height: 70px;
        padding: 15px;
    }
    
    .card-content h5 {
        font-size: 14px;
    }
    
    .card-icon {
        width: 35px;
        height: 35px;
        margin-right: 12px;
    }
    
    .card-icon i {
        font-size: 16px;
    }
}

@media (max-width: 576px) {
    .calculation-card {
        margin-bottom: 10px;
    }
} 