.page-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.page-subtitle {
    color: #666;
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.card {
    background: #1a1a1a;
    border: 1px solid #242424;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    animation: cardAppear 0.4s ease both;
}

.card:hover {
    transform: translateY(-6px);
    border-color: #6c63ff;
    box-shadow: 0 12px 32px rgba(108, 99, 255, 0.15);
}

.card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    background: #111;
    transition: transform 0.35s ease;
}

.card:hover .card-img {
    transform: scale(1.03);
}

.card-body {
    padding: 16px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.card-name {
    font-weight: 600;
    font-size: 1rem;
    color: #eee;
}

.card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
}

.stars {
    color: #f5a623;
    letter-spacing: 1px;
}

.rating-value {
    color: #888;
}

.card-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #6c63ff;
    margin-top: auto;
}

.empty {
    color: #555;
    text-align: center;
    padding: 80px 0;
    font-size: 1.1rem;
    animation: fadeIn 0.4s ease;
}

@keyframes cardAppear {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
