

/* Product Catalog Hero Redesign */
.dashboard-hero {
    padding: 32px;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 24px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
    color: #fff;
}

/* Dark Theme Product Cards for Dashboard */
.v-eds-product-card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}
.v-eds-product-card:hover {
    transform: translateY(-4px);
    border-color: rgba(14, 165, 233, 0.5);
    box-shadow: 0 8px 24px rgba(14, 165, 233, 0.2);
}
.v-eds-product-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.v-eds-product-card .product-details {
    padding: 20px;
    color: #e2e8f0;
}
.v-eds-product-card .product-details h3 {
    color: #fff !important;
}
.v-eds-product-card .product-details p {
    color: #94a3b8 !important;
}
.header-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 24px;
}
.title-block h1 {
    color: #fff;
    font-size: 24px;
    margin: 0 0 8px 0;
}
.title-block p {
    color: #9ca3af;
    margin: 0;
    font-size: 14px;
}
.system-alert {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 12px 16px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.system-alert .alert-indicator {
    color: #10b981;
    font-weight: bold;
}
.system-alert p {
    margin: 0;
    color: #d1d5db;
    font-size: 13px;
}
.system-alert a {
    color: #10b981;
    text-decoration: none;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.card {
    border-radius: 12px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.card-green { background: linear-gradient(135deg, rgba(16,185,129,0.15) 0%, rgba(17,24,39,1) 100%); border: 1px solid rgba(16,185,129,0.2); }
.card-teal { background: linear-gradient(135deg, rgba(14,165,233,0.15) 0%, rgba(17,24,39,1) 100%); border: 1px solid rgba(14,165,233,0.2); }
.card-brown { background: linear-gradient(135deg, rgba(245,158,11,0.15) 0%, rgba(17,24,39,1) 100%); border: 1px solid rgba(245,158,11,0.2); }

.card-header {
    color: #e5e7eb;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
}
.card-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.main-stat {
    font-size: 32px;
    font-weight: 700;
    color: #fff;
}
.stat-icon, .trend-icon {
    font-size: 24px;
    opacity: 0.5;
}
.card-footer {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.sub-label {
    color: #e5e7eb;
    font-size: 13px;
}
.trend {
    font-size: 12px;
}
.trend.positive { color: #10b981; }
.trend.neutral { color: #0ea5e9; }
.trend.muted { color: #9ca3af; }

.action-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}
.action-bar .btn-primary {
    background: #0d9488;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}
.action-group {
    display: flex;
    align-items: center;
    gap: 8px;
}
.action-label {
    color: #9ca3af;
    font-size: 13px;
}
.action-group .btn-secondary {
    background: transparent;
    border: 1px solid #374151;
    color: #d1d5db;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
}
.search-filter-group {
    display: flex;
    gap: 12px;
    margin-left: auto;
}
.search-box {
    position: relative;
}
.search-box i {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #9ca3af;
}
.search-box input {
    background: transparent;
    border: 1px solid #374151;
    border-radius: 6px;
    padding: 8px 12px 8px 32px;
    color: white;
    outline: none;
}
.select-box {
    background: transparent;
    border: 1px solid #374151;
    border-radius: 6px;
    padding: 8px 12px;
    color: #d1d5db;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.select-box strong {
    color: white;
}
