/* Admin Template Styles (inspired by modern SaaS dashboards) */
@import url('/css/fonts.css');
/* fonts.css import re-enabled to use self-hosted Nunito when available */

:root {
  --admin-bg: #0f172a; /* slate-900 */
  --admin-bg-soft: #111827; /* gray-900 */
  --admin-surface: rgba(255, 255, 255, 0.06);
  --admin-border: rgba(255, 255, 255, 0.08);
  --admin-text: #e5e7eb; /* gray-200 */
  --admin-muted: #94a3b8; /* slate-400 */
  --admin-primary: #22d3ee; /* cyan-400 */
  --admin-primary-strong: #06b6d4; /* cyan-500 */
  --admin-accent: #60a5fa; /* blue-400 */
}

/* Page background polish */
body {
  background-image: radial-gradient(1200px 600px at -10% -10%, rgba(96, 165, 250, 0.08), transparent 50%),
    radial-gradient(1200px 600px at 110% 110%, rgba(34, 211, 238, 0.08), transparent 50%);
}

/* Sidebar refinement */
.sidebar {
  background: linear-gradient(180deg, #0b1020 0%, #121a33 60%, #0b1020 100%);
  border-right: 1px solid var(--admin-border);
}

.sidebar-header h3 {
  letter-spacing: 0.3px;
}

.sidebar-menu a {
  position: relative;
  border-left: 3px solid transparent;
}

.sidebar-menu a:hover {
  background: rgba(255, 255, 255, 0.06);
}

.sidebar-menu a.active {
  background: linear-gradient(90deg, rgba(34, 211, 238, 0.12), rgba(96, 165, 250, 0.08));
  border-left-color: var(--admin-primary);
  color: #fff;
}

.sidebar .menu-section small {
  color: var(--admin-muted);
  padding: 10px 20px;
  display: block;
}

/* New sidebar layout styles */
.sidebar-header {
  padding: 16px 18px;
}

.sidebar .brand img {
  border-radius: 6px;
}

.sidebar-body {
  padding: 8px 0 16px 0;
  overflow-y: auto;
  height: calc(100vh - 220px);
}

.sidebar .nav-link {
  color: rgba(255,255,255,0.9);
  padding: 10px 18px;
  display: flex;
  gap: 10px;
  align-items: center;
  border-radius: 8px;
  margin: 4px 8px;
}

.sidebar .nav-link i {
  font-size: 18px;
  width: 22px;
  text-align: center;
}

.sidebar .nav-link .nav-label {
  display: inline-block;
}

.sidebar .nav-link.active, .sidebar .nav-link:hover {
  background: linear-gradient(90deg, rgba(34,211,238,0.10), rgba(96,165,250,0.06));
  color: #fff;
}

.nav-section {
  padding: 8px 16px;
  font-size: 0.70em !important;
  color: #ecebd3 !important;
}

.sidebar-footer {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  border-top: 1px solid var(--admin-border);
  padding-top: 12px;
}

.mobile-close-sidebar {
  background: transparent;
  border: 0;
  color: rgba(255,255,255,0.9);
  font-size: 22px;
}

/* Header refinement */
.header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.6));
}
[data-theme="dark"] .header {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.header-left h1 {
  letter-spacing: 0.2px;
}

.search-box input {
  border-radius: 14px;
}

/* Cards */
.card {
  border: 1px solid var(--admin-border) !important;
}
.card.shadow-sm {
  box-shadow: 0 20px 30px -20px rgba(0, 0, 0, 0.25) !important;
}

/* .card .card-header {
    border-bottom: 1px solid rgb(17 16 16 / 22%) !important;
} */

/* KPI Icon accent */
.bi-people.h2,
.bi-basket.h2,
.bi-currency-dollar.h2,
.bi-bar-chart.h2 {
  filter: drop-shadow(0 6px 14px rgba(34, 211, 238, 0.3));
}

/* Buttons */
.btn-outline-primary {
  border-color: var(--admin-primary-strong);
  color: var(--admin-primary-strong);
}
.btn-outline-primary:hover {
  background: var(--admin-primary-strong);
  color: #0b1020;
}

/* Tables */
.table thead th {
  border-bottom-width: 1px;
}
.table-hover tbody tr:hover {
  background-color: rgba(34, 211, 238, 0.05);
}

/* Badges */
.badge.bg-success { background: linear-gradient(90deg, #16a34a, #22c55e) !important; }
.badge.bg-warning { background: linear-gradient(90deg, #eab308, #facc15) !important; }
.badge.bg-secondary { background: linear-gradient(90deg, #475569, #64748b) !important; }

/* Utility */
.gradient-text {
  background: linear-gradient(90deg, var(--admin-primary), var(--admin-accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.page-header {
    margin-bottom: 25px
}

@media(max-width: 575px) {
    .page-header {
        margin-bottom:20px;
        flex-direction: column
    }

    .page-header .page-title {
        text-align: center
    }

    .page-header .page-btn {
        margin-top: 15px
    }
}

.page-header h3 {
    font-weight: 700;
    color: #212b36;
    font-size: 18px
}

@media(max-width: 991px) {
    .page-header h3 {
        font-size:14px
    }
}

.page-header h4 {
    font-weight: 700;
    color: #212b36;
    font-size: 18px
}

@media(max-width: 991px) {
    .page-header h4 {
        font-size:14px
    }
}

.page-header h6 {
    font-size: 14px;
    color: #555;
    font-weight: 400
}

@media(max-width: 991px) {
    .page-header h6 {
        font-size:12px
    }
}
.page-header .breadcrumb {
    background: transparent;
    padding: 0;
    margin-bottom: 0
}

table .action-btn {
    display: flex;
    align-items: center;
    -webkit-box-align: center;
    justify-content: center;
}

/* Admin product workspace */
.admin-page-heading {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.75rem;
  padding: 1.25rem 1.5rem;
  margin: 0 -0.5rem 2.5rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 45px -28px rgba(15, 23, 42, 0.4);
}

[data-theme="dark"] .admin-page-heading {
  background: rgba(15, 23, 42, 0.82);
  box-shadow: 0 20px 40px -26px rgba(2, 6, 23, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.admin-page-heading__eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(15, 23, 42, 0.45);
  margin-bottom: 0.35rem;
}

[data-theme="dark"] .admin-page-heading__eyebrow {
  color: rgba(148, 163, 184, 0.66);
}

.admin-page-heading__title {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: #0f172a;
}

[data-theme="dark"] .admin-page-heading__title {
  color: #f8fafc;
}

.admin-page-heading__meta {
  margin-bottom: 0;
  color: rgba(15, 23, 42, 0.55);
  max-width: 560px;
}

[data-theme="dark"] .admin-page-heading__meta {
  color: rgba(226, 232, 240, 0.72);
}

.admin-page-heading__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.btn-ghost {
  background: transparent;
  border-color: rgba(15, 23, 42, 0.16);
}

.btn-ghost:hover,
.btn-ghost:focus {
  background: rgba(15, 23, 42, 0.06);
  border-color: rgba(15, 23, 42, 0.25);
}

[data-theme="dark"] .btn-ghost {
  border-color: rgba(148, 163, 184, 0.25);
  color: rgba(226, 232, 240, 0.94);
}

[data-theme="dark"] .btn-ghost:hover,
[data-theme="dark"] .btn-ghost:focus {
  background: rgba(148, 163, 184, 0.14);
  border-color: rgba(148, 163, 184, 0.32);
}

.product-workspace {
  display: grid;
  grid-template-columns: minmax(260px, 310px) minmax(0, 1fr);
  gap: 1.75rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.product-workspace__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.sticky-card {
  position: sticky;
  top: 88px;
  z-index: 2;
}

.surface-card {
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 18px 40px -32px rgba(15, 23, 42, 0.65);
  backdrop-filter: blur(6px);
}

[data-theme="dark"] .surface-card {
  background: rgba(15, 23, 42, 0.7);
  border-color: rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 46px -32px rgba(2, 6, 23, 0.9);
}

.panel-flow .card-header,
.panel-flow .card-body,
.panel-flow .card-footer {
  padding: 1.75rem 2rem;
}

.panel-flow .card-header {
  border-bottom: 0;
}

.panel-flow .card-footer {
  border-top: 0;
  border-radius: 0 0 20px 20px;
  background: rgba(148, 163, 184, 0.08);
}

[data-theme="dark"] .panel-flow .card-footer {
  background: rgba(51, 65, 85, 0.2);
}

.flow-card {
  padding: 1.75rem;
}

.flow-card__status {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.flow-card__chip {
  display: inline-flex;
  align-items: center;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(34, 211, 238, 0.15);
  color: #0284c7;
}

.flow-card__chip--muted {
  background: rgba(148, 163, 184, 0.15);
  color: rgba(15, 23, 42, 0.6);
}

[data-theme="dark"] .flow-card__chip {
  background: rgba(14, 165, 233, 0.18);
  color: rgba(224, 242, 254, 0.85);
}

[data-theme="dark"] .flow-card__chip--muted {
  background: rgba(148, 163, 184, 0.22);
  color: rgba(226, 232, 240, 0.7);
}

.flow-card__subtitle {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.55);
  margin-bottom: 1.2rem;
}

[data-theme="dark"] .flow-card__subtitle {
  color: rgba(226, 232, 240, 0.7);
}

.flow-card__meta {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 1.35rem;
}

.flow-card__meta strong {
  color: #0f172a;
}

[data-theme="dark"] .flow-card__meta strong {
  color: #f8fafc;
}

.flow-card__note {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  background: rgba(96, 165, 250, 0.15);
  color: rgba(29, 78, 216, 0.75);
  font-size: 0.85rem;
}

[data-theme="dark"] .flow-card__note {
  background: rgba(96, 165, 250, 0.18);
  color: rgba(191, 219, 254, 0.85);
}

.helper-card {
  padding: 1.5rem;
}

.helper-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.9rem;
  letter-spacing: 0.02em;
}

.helper-card__stats,
.helper-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}

.helper-card__stats li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
}

.helper-card__stats strong {
  font-weight: 600;
  color: #0f172a;
}

[data-theme="dark"] .helper-card__stats strong {
  color: #e2e8f0;
}

.helper-card__list li {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.65);
}

[data-theme="dark"] .helper-card__list li {
  color: rgba(226, 232, 240, 0.75);
}

.flow-step-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.flow-step-list__item {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  padding: 0.7rem 0.85rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.18);
  background: rgba(148, 163, 184, 0.08);
}

.flow-step-list__item.is-current {
  border-color: rgba(34, 211, 238, 0.45);
  background: linear-gradient(120deg, rgba(34, 211, 238, 0.15), rgba(96, 165, 250, 0.12));
}

.flow-step-list__item.has-errors {
  border-color: rgba(239, 68, 68, 0.5);
  background: rgba(254, 226, 226, 0.5);
}

.flow-step-list__index {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.85rem;
  background: #fff;
  color: #1e293b;
  box-shadow: 0 6px 16px -12px rgba(15, 23, 42, 0.65);
}

[data-theme="dark"] .flow-step-list__index {
  background: rgba(15, 23, 42, 0.93);
  color: #e2e8f0;
}

.flow-step-list__title {
  margin-bottom: 0;
  font-size: 0.95rem;
  font-weight: 600;
}

.flow-step-list__meta {
  margin-bottom: 0;
  font-size: 0.75rem;
  color: rgba(15, 23, 42, 0.55);
}

[data-theme="dark"] .flow-step-list__meta {
  color: rgba(226, 232, 240, 0.65);
}

.product-workspace__main {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.panel-heading__eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(15, 23, 42, 0.45);
  margin-bottom: 0.35rem;
}

.panel-heading__meta,
.panel-heading__eyebrow {
  margin-bottom: 0;
}

.panel-heading__meta {
  color: rgba(15, 23, 42, 0.55);
  font-size: 0.88rem;
}

[data-theme="dark"] .panel-heading__eyebrow {
  color: rgba(148, 163, 184, 0.66);
}

[data-theme="dark"] .panel-heading__meta {
  color: rgba(226, 232, 240, 0.72);
}

.panel-divider {
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.product-meta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1.4rem 1.6rem;
}

.product-meta-grid dt {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(15, 23, 42, 0.45);
  margin-bottom: 0.4rem;
}

.product-meta-grid dd {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
}

[data-theme="dark"] .product-meta-grid dt {
  color: rgba(148, 163, 184, 0.7);
}

[data-theme="dark"] .product-meta-grid dd {
  color: #f8fafc;
}

.product-wizard {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-wizard__steps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 0;
  padding: 0;
}

.product-wizard__step {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: 14px;
  background: rgba(148, 163, 184, 0.12);
  border: 1px solid transparent;
  min-width: 220px;
  text-align: left;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.product-wizard__step:hover,
.product-wizard__step:focus {
  border-color: rgba(34, 211, 238, 0.35);
  box-shadow: 0 12px 22px -20px rgba(6, 182, 212, 0.65);
}

.product-wizard__step.is-active {
  background: linear-gradient(120deg, rgba(34, 211, 238, 0.16), rgba(96, 165, 250, 0.12));
  border-color: rgba(34, 211, 238, 0.6);
  transform: translateY(-2px);
}

.product-wizard__step.has-errors {
  border-color: rgba(239, 68, 68, 0.6);
  background: rgba(254, 226, 226, 0.6);
}

.product-wizard__step-index {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: #fff;
  font-weight: 700;
  color: #0f172a;
  box-shadow: 0 6px 14px -10px rgba(15, 23, 42, 0.65);
}

[data-theme="dark"] .product-wizard__step-index {
  background: rgba(15, 23, 42, 0.9);
  color: #e2e8f0;
}

.product-wizard__step-title {
  display: block;
  font-weight: 600;
  font-size: 0.95rem;
}

.product-wizard__step-desc {
  display: block;
  font-size: 0.78rem;
  color: rgba(15, 23, 42, 0.55);
}

[data-theme="dark"] .product-wizard__step-desc {
  color: rgba(226, 232, 240, 0.7);
}

.product-wizard__panels {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.product-wizard__panel {
  display: none;
}

.product-wizard__panel.is-active {
  display: block;
}

.product-image-preview-wrap {
  border-radius: 20px;
  border: 1px dashed rgba(148, 163, 184, 0.4);
  width: 120px;
  height: 120px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: rgba(241, 245, 249, 0.6);
}

.product-image-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-variant-nav .nav-link {
  border-radius: 999px;
  padding: 0.65rem 1.5rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.65);
}

.product-variant-nav .nav-link.active {
  background: linear-gradient(120deg, rgba(34, 211, 238, 0.16), rgba(96, 165, 250, 0.12));
  color: #0f172a;
}

[data-theme="dark"] .product-variant-nav .nav-link {
  color: rgba(226, 232, 240, 0.75);
}

[data-theme="dark"] .product-variant-nav .nav-link.active {
  color: #f8fafc;
}

.product-list-page {
  padding-bottom: 3rem;
}

.product-page-header {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  padding: 1.5rem;
  box-shadow: 0 18px 42px -30px rgba(15, 23, 42, 0.45);
}

[data-theme="dark"] .product-page-header {
  background: rgba(15, 23, 42, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.18);
}

.btn-action {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border-radius: 12px;
  padding: 0.55rem 1.1rem;
}

.btn-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: rgba(255, 255, 255, 0.65);
  display: grid;
  place-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn-icon:hover,
.btn-icon:focus {
  transform: translateY(-2px);
  box-shadow: 0 12px 18px -16px rgba(15, 23, 42, 0.6);
  border-color: rgba(34, 211, 238, 0.45);
}

[data-theme="dark"] .btn-icon {
  background: rgba(15, 23, 42, 0.9);
  border-color: rgba(148, 163, 184, 0.24);
  color: rgba(226, 232, 240, 0.85);
}

.product-stat-tile {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 16px 34px -30px rgba(15, 23, 42, 0.55);
}

[data-theme="dark"] .product-stat-tile {
  background: rgba(15, 23, 42, 0.75);
  border-color: rgba(148, 163, 184, 0.22);
}

.tile-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
}

.tile-label {
  margin-bottom: 0.15rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(15, 23, 42, 0.5);
}

.tile-value {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
}

.product-table-card {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 22px 48px -30px rgba(15, 23, 42, 0.5);
}

[data-theme="dark"] .product-table-card {
  border-color: rgba(148, 163, 184, 0.18);
}

.product-table thead th {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(15, 23, 42, 0.6);
  background: rgba(148, 163, 184, 0.12);
  border-bottom-color: rgba(148, 163, 184, 0.2);
}

[data-theme="dark"] .product-table thead th {
  color: rgba(226, 232, 240, 0.7);
  background: rgba(51, 65, 85, 0.35);
  border-bottom-color: rgba(71, 85, 105, 0.45);
}

.product-table tbody td {
  vertical-align: middle;
}

.product-thumb {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  overflow: hidden;
  background: rgba(241, 245, 249, 0.7);
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.2);
}

.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.table-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.table-actions .btn-icon {
  width: 2.25rem;
  height: 2.25rem;
}

.badge-soft-success,
.badge-soft-secondary,
.badge-soft-warning {
  font-weight: 600;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
}

.badge-soft-success {
  background: #23c962f5;
  color: #166534;
}

.badge-soft-secondary {
  background: rgba(100, 116, 139, 0.18);
  color: #1e293b;
}

.badge-soft-warning {
  background: rgba(234, 179, 8, 0.2);
  color: #b45309;
}

.creator-pill {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.avatar-initials {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(34, 211, 238, 0.18);
  color: #0f172a;
  font-weight: 600;
}

.search-input {
  position: relative;
  min-width: 260px;
  flex: 1 1 320px;
  max-width: 720px;
}

.search-input .search-icon {
  position: absolute;
  top: 50%;
  left: 0.85rem;
  transform: translateY(-50%);
  color: rgba(148, 163, 184, 0.9);
}

.search-input input.form-control {
  padding-left: 2.6rem;
  border-radius: 999px;
}

.table-check .form-check-input {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 0.35rem;
}

.variant-help.card {
  border-radius: 18px;
}

.variant-help .card-body {
  padding: 1.4rem;
}

.product-workspace .alert {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.variant-modal-block {
  border-radius: 16px;
  background: rgba(248, 250, 252, 0.95);
}

[data-theme="dark"] .variant-modal-block {
  background: rgba(15, 23, 42, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.modal-serial-guidance {
  border-radius: 14px;
}

.avatar-initials,
.product-wizard__step,
.flow-step-list__item,
.btn-icon {
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

@media (max-width: 1199px) {
  .product-wizard__step {
    min-width: 180px;
  }
}

@media (max-width: 991px) {
  .admin-page-heading {
    margin-left: 0;
    margin-right: 0;
  }

  .product-workspace {
    grid-template-columns: 1fr;
  }

  .sticky-card {
    position: static;
  }

  .panel-flow .card-header,
  .panel-flow .card-body,
  .panel-flow .card-footer {
    padding-left: 1.4rem;
    padding-right: 1.4rem;
  }

  .product-page-header {
    padding: 1.25rem;
  }
}

@media (max-width: 575px) {
  .admin-page-heading {
    padding: 1.1rem 1.25rem;
  }

  .admin-page-heading__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .product-page-header {
    gap: 1rem;
  }

  .product-wizard__step {
    width: 100%;
  }

  .panel-flow .card-footer {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (prefers-reduced-motion: reduce) {
  .btn-icon,
  .product-wizard__step,
  .flow-step-list__item,
  .avatar-initials {
    transition: none;
  }
}
