 /* Stats Container */
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin: 20px 0;
    width: 100%;
}

.stat-card {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 24px;
    flex: 1;
    position: relative;
    transition: all 0.2s ease;
    box-shadow: 0 5px 5px 0 rgb(0 0 0 / 0.1);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px -3px rgb(0 0 0 / 0.1), 0 4px 6px -2px rgb(0 0 0 / 0.05);
}

.stat-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stat-title {
    font-size: 14px;
    font-weight: 500;
    color: #64748b;
}

.stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: white;
}

.icon-dollar {
    background-color: #1e293b;
}

.icon-items {
    background-color: #1e293b;
}

.icon-trend {
    background-color: #1e293b;
}

.icon-store {
    background-color: #1e293b;
}

.stat-value {
    font-size: 32px;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 16px;
}

.store-name {
    font-size: 24px;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.2;
}

/* Owner breakdown styles */
.owner-breakdown {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

.owner-breakdown-title {
    font-size: 12px;
    font-weight: 600;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.owner-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.owner-item:last-child {
    margin-bottom: 0;
}

.owner-name {
    font-size: 14px;
    font-weight: 500;
    color: #475569;
}

.owner-amount {
    font-size: 16px;
    font-weight: 600;
    color: #1e293b;
}

.owner-percentage {
    font-size: 12px;
    color: #64748b;
    margin-left: 8px;
}

/* Responsive design */
@media (max-width: 1024px) {
    .stats-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 640px) {
    .stats-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .stat-value {
        font-size: 28px;
    }
    
    .store-name {
        font-size: 20px;
    }
}
