/* -------------------------------------------------------------------
   CUSTOMER QUICK ACTIONS COMPONENT STYLING
------------------------------------------------------------------- */

.quick-actions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.quick-action-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 1.35rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  position: relative;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(15, 43, 92, 0.04);
}

.quick-action-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(15, 43, 92, 0.1);
  border-color: #cbd5e1;
}

.action-icon-box {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  flex-shrink: 0;
}

.icon-order {
  background-color: #dbeafe;
  color: #2563eb;
}

.icon-orders {
  background-color: #fef3c7;
  color: #d97706;
}

.icon-notifs {
  background-color: #e0e7ff;
  color: #4f46e5;
}

.icon-profile {
  background-color: #dcfce7;
  color: #16a34a;
}

.action-content {
  flex: 1;
}

.action-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: #0f2b5c;
  margin: 0 0 0.15rem 0;
}

.action-desc {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

.action-arrow {
  font-size: 1.25rem;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.quick-action-card:hover .action-arrow {
  transform: translateX(4px);
  color: #2563eb;
}
