/* resources/css/catalog.css */

.catalog-header {
    margin-bottom: 30px;
}
.catalog-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
}
.catalog-header p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 700px;
}

.catalog-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.02);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: transform 0.2s, box-shadow 0.2s;
    text-decoration: none;
    color: inherit;
}
.catalog-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.06);
    color: inherit;
}

.card-bg-gradient-products {
    position: absolute; right: 0; top: 0; width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(99,102,241,0.05) 0%, rgba(255,255,255,0) 70%);
}
.card-bg-gradient-services {
    position: absolute; right: 0; top: 0; width: 150px; height: 150px;
    background: radial-gradient(circle, rgba(245,158,11,0.05) 0%, rgba(255,255,255,0) 70%);
}

.catalog-icon-box {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 20px;
}
.bg-purple { background-color: #6366f1; color: white; }
.bg-orange { background-color: #f59e0b; color: white; }

.pill-inventory { background-color: #f3f4f6; color: #4b5563; }
.pill-labor { background-color: #fef3c7; color: #d97706; }
.category-pill {
    padding: 4px 12px; border-radius: 20px; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.5px;
}

.catalog-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; }
.catalog-card p { font-size: 0.9rem; color: #6b7280; flex-grow: 1; margin-bottom: 25px;}

.catalog-footer {
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.8rem;
    padding-top: 15px; border-top: 1px solid var(--border-color);
}
.footer-stats { font-weight: 700; color: #9ca3af; letter-spacing: 0.5px; }
.footer-link { font-weight: 700; color: var(--primary-color); display: flex; align-items: center; gap: 5px; }

/* Quick Actions */
.quick-actions-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 20px; margin-top: 40px;}
.quick-action-card {
    background-color: var(--bg-white);
    border-radius: 12px; padding: 20px;
    display: flex; align-items: center; gap: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.02);
    text-decoration: none; color: inherit;
    transition: transform 0.2s;
}
.quick-action-card:hover { transform: translateY(-2px); color: inherit; }
.qa-icon {
    width: 40px; height: 40px; border-radius: 8px;
    display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.qa-bg-green { background-color: #ecfdf5; color: #10b981; border: 1px solid #d1fae5; }
.qa-bg-blue { background-color: #eff6ff; color: #3b82f6; border: 1px solid #dbeafe; }
.qa-bg-purple { background-color: #f5f3ff; color: #8b5cf6; border: 1px solid #ede9fe; }

.qa-text h4 { font-size: 1rem; font-weight: 700; margin: 0 0 2px 0; }
.qa-text p { font-size: 0.8rem; color: #6b7280; margin: 0; }
