/**
 * Pooja Services App Custom Styles
 */

/* Service card hover effect */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important;
}

/* Category badge */
.category-badge {
    font-weight: 500;
    padding: 0.35em 0.65em;
}

/* Service card animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item {
    animation: fadeIn 0.3s ease-in;
}

/* Price display */
.price-tag {
    font-size: 1.25rem;
    font-weight: 600;
    color: #F57C00;
}

/* Duration badge */
.duration-badge {
    background-color: rgba(13, 110, 253, 0.1);
    color: #0d6efd;
    border-radius: 12px;
    padding: 0.25em 0.75em;
    font-size: 0.85rem;
}

/* Loading spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hover-lift:hover {
        transform: none;
    }
}

/* ─── Active Filter Chips ──────────────────────────────────────────────── */
.filter-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    background-color: #e8f4fd;
    color: #1565c0;
    border: 1px solid #bbdefb;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.2s ease;
}

.filter-chip:hover {
    background-color: #d0eafb;
    border-color: #90caf9;
}

.filter-chip i {
    font-size: 12px;
}

.chip-remove-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    margin-left: 4px;
    border-radius: 50%;
    background-color: rgba(21, 101, 192, 0.15);
    color: #1565c0;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip-remove-btn:hover {
    background-color: #ef5350;
    color: #fff;
}

/* ─── Favorite Button ──────────────────────────────────────────────── */
.add-favorite {
    width: 36px;
    height: 36px;
    transition: all 0.3s ease;
}

.add-favorite:hover {
    transform: scale(1.15);
}

.add-favorite.favorited {
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.add-favorite i {
    font-size: 16px;
    transition: all 0.2s ease;
}

/* ─── Rounded button for Clear All ──────────────────────────────────── */
.rounded-20 {
    border-radius: 20px;
}

/* ─── Description Text Styling ──────────────────────────────────────── */
.description-text {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.description-text p {
    margin-bottom: 0.5rem;
}

.description-text p:last-child {
    margin-bottom: 0;
}
