/* WC My Account Dashboardizer */
.wcmad-active .entry-content, .wcmad-active .woocommerce { max-width: 1200px; margin: 0 auto; }
.wcmad-wrapper { padding: 24px; background: #f7f7f8; border-radius: 16px; }
.wcmad-header h2 { margin: 0 0 8px; font-size: 28px; line-height: 1.2; }
.wcmad-header p { margin: 0 0 16px; opacity: 0.8; }

/* Sidebar nav */
.wcmad-nav { background: #ffffff; border-radius: 16px; padding: 16px; margin-bottom: 20px; box-shadow: 0 1px 6px rgba(0,0,0,0.06); }
.wcmad-brand { margin-bottom: 12px; }
.wcmad-brand-title { font-weight: 600; display: block; }
.wcmad-brand-sub { font-size: 12px; opacity: 0.7; }
.wcmad-menu { list-style: none; margin: 0; padding: 0; display: grid; gap: 4px; }
.wcmad-menu li a { display: flex; align-items: center; gap: 8px; padding: 10px 12px; border-radius: 10px; text-decoration: none; background: #f5f6f8; }
.wcmad-menu li.is-active a, .wcmad-menu li a:hover { background: #e8ecf3; }
.wcmad-icon { width: 18px; text-align: center; }

/* Cards */
.wcmad-cards { display: grid; grid-template-columns: repeat( auto-fill, minmax(220px, 1fr) ); gap: 16px; margin-top: 8px; }
.wcmad-card { text-decoration: none; }
.wcmad-card-inner { background: #ffffff; border-radius: 16px; padding: 16px; box-shadow: 0 1px 6px rgba(0,0,0,0.06); transition: transform 0.1s ease, box-shadow 0.1s ease; height: 100%; display: grid; gap: 8px; }
.wcmad-card-inner:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.08); }
.wcmad-card-title { font-weight: 600; }
.wcmad-card-meta { font-size: 12px; opacity: 0.8; }

/* Responsive layout helpers */
@media (min-width: 900px) {
  .wcmad-layout { display: grid; grid-template-columns: 260px 1fr; gap: 20px; }
}

/* User profile box */
.wcmad-userbox { display: flex; align-items: center; gap: 16px;
  background: #fff; padding: 16px; border-radius: 16px;
  margin-bottom: 20px; box-shadow: 0 1px 6px rgba(0,0,0,0.06); }
.wcmad-user-avatar img { border-radius: 50%; }
.wcmad-user-meta h3 { margin: 0; font-size: 18px; }
.wcmad-user-meta p { margin: 2px 0 8px; font-size: 14px; opacity: 0.8; }
.wcmad-progress { background: #eee; border-radius: 8px; overflow: hidden;
  height: 8px; margin: 6px 0; max-width: 240px; }
.wcmad-progress-bar { background: #4CAF50; height: 8px; transition: width 0.3s ease; }
