.img-logo {
  width: 100%;
  height: 60px;
  padding: 0px 35px;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --orange: #F25C05;
    --orange-light: #FFF4EE;
    --orange-mid: #FFE0CC;
    --dark: #1A1A1A;
    --mid: #555;
    --muted: #888;
    --border: #E8E8E8;
    --bg: #F7F7F5;
    --white: #FFFFFF;
    --green: #12A05C;
    --sidebar-w: 220px;
    --nav-h: 60px;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow: 0 2px 12px rgba(0,0,0,0.07);
  }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--dark);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }

  /* ── TOPNAV ── */
  .topnav {
    height: var(--nav-h);
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 10px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(242,92,5,0.25);
  }
  .logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Syne', sans-serif;
    font-weight: 800; font-size: 22px; color: #fff;
    letter-spacing: -0.5px;
  }
  .logo-icon {
    width: 36px; height: 36px; background: #fff;
    border-radius: 8px; display: flex; align-items: center; justify-content: center;
  }
  .logo-icon svg { width: 22px; height: 22px; }
  .nav-right { display: flex; align-items: center; gap: 18px; }
  .nav-icon-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: rgba(255,255,255,0.15);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; border: none; position: relative;
    transition: background .2s;
  }
  .nav-icon-btn:hover { background: rgba(255,255,255,0.25); }
  .nav-icon-btn svg { color: #fff; }
  .badge {
    position: absolute; top: -4px; right: -4px;
    background: #fff; color: var(--orange);
    font-size: 10px; font-weight: 700;
    width: 17px; height: 17px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
  }
  .hamburger { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
  .hamburger span { display: block; width: 22px; height: 2px; background: #fff; margin: 5px 0; border-radius: 2px; transition: .3s; }
  .user-chip {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,0.15);
    border-radius: 20px; padding: 6px 12px 6px 6px;
    cursor: pointer; transition: background .2s;
  }
  .user-chip:hover { background: rgba(255,255,255,0.25); }
  .avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 12px; color: var(--orange);
  }
  .user-name { font-size: 13px; font-weight: 600; color: #fff; }
  .user-role { font-size: 11px; color: rgba(255,255,255,0.75); }

  /* ── DROPDOWNS ── */
  .dropdown-wrap { position: relative; }

  .dropdown-panel {
    position: absolute; top: calc(100% + 12px); right: 0;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    box-shadow: 0 8px 32px rgba(0,0,0,0.13);
    min-width: 300px;
    z-index: 200;
    opacity: 0; transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .dropdown-panel.open {
    opacity: 1; transform: translateY(0) scale(1);
    pointer-events: all;
  }
  /* arrow tip */
  .dropdown-panel::before {
    content: '';
    position: absolute; top: -7px; right: 14px;
    width: 13px; height: 13px;
    background: var(--white);
    border-left: 1px solid var(--border);
    border-top: 1px solid var(--border);
    transform: rotate(45deg);
    border-radius: 2px 0 0 0;
  }

  /* ── NOTIFICATION DROPDOWN ── */
  .notif-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 16px 18px 12px;
    border-bottom: 1px solid var(--border);
  }
  .notif-header h3 { font-size: 15px; font-weight: 700; color: var(--dark); }
  .notif-mark-all {
    font-size: 12px; font-weight: 600; color: var(--orange);
    background: none; border: none; cursor: pointer; font-family: inherit;
    padding: 0; transition: opacity .2s;
  }
  .notif-mark-all:hover { opacity: .7; }
  .notif-list { max-height: 320px; overflow-y: auto; }
  .notif-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 13px 18px;
    border-bottom: 1px solid var(--border);
    transition: background .15s; cursor: pointer;
  }
  .notif-item:last-child { border-bottom: none; }
  .notif-item:hover { background: var(--bg); }
  .notif-item.unread { background: var(--orange-light); }
  .notif-item.unread:hover { background: #ffe8d4; }
  .notif-dot {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--orange); flex-shrink: 0; margin-top: 5px;
  }
  .notif-item.read .notif-dot { background: transparent; border: 1.5px solid var(--border); }
  .notif-icon-wrap {
    width: 36px; height: 36px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .notif-icon-wrap.inquiry { background: #EEF6FF; }
  .notif-icon-wrap.order   { background: #EEFAF4; }
  .notif-icon-wrap.alert   { background: #FFF4EE; }
  .notif-icon-wrap svg { width: 17px; height: 17px; }
  .notif-body { flex: 1; min-width: 0; }
  .notif-title { font-size: 13px; font-weight: 600; color: var(--dark); line-height: 1.4; }
  .notif-desc  { font-size: 12px; color: var(--mid); margin-top: 2px; line-height: 1.4; }
  .notif-time  { font-size: 11px; color: var(--muted); margin-top: 4px; }
  .notif-footer {
    padding: 12px 18px;
    border-top: 1px solid var(--border);
    text-align: center;
  }
  .notif-footer a {
    font-size: 13px; font-weight: 600; color: var(--orange);
    text-decoration: none; transition: opacity .2s;
  }
  .notif-footer a:hover { opacity: .7; }

  /* ── ACCOUNT DROPDOWN ── */
  .account-panel { min-width: 240px; }
  .account-header {
    display: flex; align-items: center; gap: 14px;
    padding: 18px 18px 14px;
    border-bottom: 1px solid var(--border);
  }
  .account-avatar {
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--orange-light); border: 2px solid var(--orange-mid);
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 16px; color: var(--orange);
    flex-shrink: 0;
  }
  .account-name { font-size: 14px; font-weight: 700; color: var(--dark); }
  .account-role { font-size: 12px; color: var(--muted); margin-top: 2px; }
  .account-email { font-size: 11px; color: var(--muted); margin-top: 1px; }
  .account-menu { padding: 8px 0; }
  .account-menu-item {
    display: flex; align-items: center; gap: 12px;
    padding: 10px 18px; font-size: 13px; font-weight: 500; color: var(--mid);
    cursor: pointer; transition: background .15s, color .15s;
    border: none; background: none; width: 100%; text-align: left; font-family: inherit;
  }
  .account-menu-item:hover { background: var(--bg); color: var(--dark); }
  .account-menu-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--muted); }
  .account-menu-item:hover svg { color: var(--orange); }
  .account-menu-item.danger { color: #e05; }
  .account-menu-item.danger svg { color: #e05; }
  .account-menu-item.danger:hover { background: #fff0f0; color: #c00; }
  .account-divider { height: 1px; background: var(--border); margin: 6px 0; }
  .verified-tag {
    margin-left: auto; background: #E8F8F0; color: var(--green);
    font-size: 10px; font-weight: 700; padding: 2px 7px; border-radius: 10px;
  }

  /* ── LAYOUT ── */
  .layout { display: flex; flex: 1; }

  /* ── SIDEBAR ── */
  .sidebar {
    width: var(--sidebar-w);
    background: var(--white);
    border-right: 1px solid var(--border);
    padding: 15px 0;
    position: sticky;
    top: var(--nav-h);
    height: calc(100vh - var(--nav-h));
    overflow-y: auto;
    flex-shrink: 0;
    transition: transform .3s ease;
  }
  .sidebar-section-label {
    font-size: 10px; font-weight: 700; letter-spacing: 1.2px;
    color: var(--muted); text-transform: uppercase;
    padding: 18px 20px 8px;
  }
  .nav-item {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 10px; font-size: 12px; font-weight: 500;
    color: var(--mid); cursor: pointer; border: none; background: none;
    width: auto; text-align: left; transition: all .2s; border-radius: 0;
    position: relative;
  }
  .nav-item:hover { background: var(--orange-light); color: var(--orange); }
  .nav-item.active {
    background: var(--orange-light); color: var(--orange); font-weight: 600;
  }
  .nav-item.active::before {
    content: ''; position: absolute; left: 0; top: 0; bottom: 0;
    width: 3px; background: var(--orange); border-radius: 0 2px 2px 0;
  }
  .nav-item svg { width: 17px; height: 17px; flex-shrink: 0; }
  .nav-badge {
    margin-left: auto; background: var(--orange);
    color: #fff; font-size: 11px; font-weight: 700;
    padding: 2px 7px; border-radius: 10px;
  }
  .sidebar-divider { height: 1px; background: var(--border); margin: 10px 20px; }

  .help-box {
    margin: 20px 14px 0;
    background: var(--orange-light);
    border-radius: var(--radius-sm);
    padding: 14px;
  }
  .help-box h4 { font-size: 13px; font-weight: 700; color: var(--orange); }
  .help-box p { font-size: 12px; color: var(--mid); margin-top: 4px; line-height: 1.5; }
  .help-btn {
    margin-top: 10px; width: 100%;
    display: flex; align-items: center; gap: 6px; justify-content: center;
    background: var(--orange); color: #fff;
    border: none; border-radius: 8px; padding: 8px;
    font-size: 12px; font-weight: 600; cursor: pointer;
    font-family: inherit; transition: opacity .2s;
  }
  .help-btn:hover { opacity: .9; }

  /* ── MAIN ── */
  .main { flex: 1; padding: 30px 25px 50px 25px; max-width: 100%; }

  .page-header { margin-bottom: 28px; }
  .page-header h1 {
    font-family: 'Syne', sans-serif;
    font-size: 26px; font-weight: 700; color: var(--dark);
  }
  .page-header p { font-size: 14px; color: var(--muted); margin-top: 4px; }

  /* ── WIZARD STEPPER ── */
  .wizard-stepper {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 24px 28px 0;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
  }
  .steps-track {
    display: flex; align-items: flex-start;
    position: relative; margin-bottom: 0;
  }
  .step-item {
    flex: 1; display: flex; flex-direction: column; align-items: center;
    position: relative; cursor: pointer;
    padding-bottom: 20px;
  }
  /* connector line between steps */
  .step-item:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 20px; left: 50%; width: 100%;
    height: 2px;
    background: var(--border);
    z-index: 0;
    transition: background .4s;
  }
  .step-item.done:not(:last-child)::after,
  .step-item.active:not(:last-child)::after {
    background: linear-gradient(to right, var(--orange), var(--border));
  }
  .step-item.done:not(:last-child)::after { background: var(--orange); }

  .step-circle {
    width: 40px; height: 40px; border-radius: 50%;
    border: 2px solid var(--border);
    background: var(--white);
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
    font-size: 13px; font-weight: 700; color: var(--muted);
    transition: all .3s;
    flex-shrink: 0;
  }
  .step-item.active .step-circle {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(242,92,5,0.15);
  }
  .step-item.done .step-circle {
    border-color: var(--orange);
    background: var(--orange);
    color: #fff;
  }
  .step-check { display: none; }
  .step-item.done .step-num { display: none; }
  .step-item.done .step-check { display: block; }

  .step-label {
    margin-top: 10px; text-align: center;
    font-size: 12px; font-weight: 500; color: var(--muted);
    line-height: 1.3; max-width: 80px;
    transition: color .3s;
  }
  .step-item.active .step-label { color: var(--orange); font-weight: 700; }
  .step-item.done .step-label { color: var(--dark); font-weight: 600; }

  /* ── WIZARD CARD ── */
  .wizard-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 28px;
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .step-panel { display: none; animation: fadeSlide .35s ease both; }
  .step-panel.active { display: block; }
  @keyframes fadeSlide {
    from { opacity: 0; transform: translateX(20px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  @keyframes fadeSlideBack {
    from { opacity: 0; transform: translateX(-20px); }
    to   { opacity: 1; transform: translateX(0); }
  }
  .step-panel.slide-back { animation: fadeSlideBack .35s ease both; }

  .step-heading {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 24px; padding-bottom: 18px;
    border-bottom: 1px solid var(--border);
  }
  .step-icon {
    width: 44px; height: 44px; border-radius: 10px;
    background: var(--orange-light);
    display: flex; align-items: center; justify-content: center; flex-shrink: 0;
  }
  .step-icon svg { width: 22px; height: 22px; color: var(--orange); }
  .step-heading-text h2 {
    font-family: 'Syne', sans-serif;
    font-size: 18px; font-weight: 700; color: var(--dark);
  }
  .step-heading-text p { font-size: 13px; color: var(--muted); margin-top: 2px; }

  /* ── CARDS ── */
  .card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    padding: 24px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
  }
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .card-title {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Syne', sans-serif;
    font-size: 16px; font-weight: 700; color: var(--dark);
    margin-bottom: 20px;
  }
  .card-title .icon-wrap {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--orange-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .card-title .icon-wrap svg { width: 17px; height: 17px; color: var(--orange); }

  /* ── FORM ELEMENTS ── */
  .form-row { display: flex; gap: 16px; }
  .form-group { display: flex; flex-direction: column; gap: 6px; flex: 1; }
  .form-group + .form-group { }
  label {
    font-size: 13px; font-weight: 600; color: var(--dark);
  }
  label .req { color: var(--orange); margin-left: 2px; }
  .char-count { font-size: 11px; color: var(--muted); text-align: right; }

  input[type="text"], input[type="number"], input[type="email"],
  input[type="tel"], textarea, select {
    width: 100%; padding: 10px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px; color: var(--dark);
    background: var(--white);
    font-family: inherit;
    transition: border-color .2s, box-shadow .2s;
    appearance: none; outline: none;
  }
  input:focus, textarea:focus, select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(242,92,5,0.1);
  }
  select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    cursor: pointer;
  }
  textarea { resize: vertical; min-height: 90px; line-height: 1.6; }

  .input-prefix {
    position: relative;
  }
  .input-prefix span {
    position: absolute; left: 12px; top: 50%; transform: translateY(-50%);
    color: var(--muted); font-size: 14px;
  }
  .input-prefix input { padding-left: 28px; }

  /* attributes grid */
  .attrs-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

  /* add attr btn */
  .add-attr-btn {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--orange); font-size: 13px; font-weight: 600;
    background: none; border: none; cursor: pointer; font-family: inherit;
    padding: 8px 0 0; transition: opacity .2s;
  }
  .add-attr-btn:hover { opacity: .7; }

  /* pricing + description side by side */
  .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

  /* radio */
  .radio-group { display: flex; gap: 20px; align-items: center; margin-top: 4px; }
  .radio-label {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; cursor: pointer; font-weight: 500;
  }
  .radio-label input[type="radio"] { display: none; }
  .radio-custom {
    width: 18px; height: 18px; border-radius: 50%;
    border: 2px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    transition: border-color .2s;
    flex-shrink: 0;
  }
  .radio-label input:checked + .radio-custom {
    border-color: var(--orange);
  }
  .radio-label input:checked + .radio-custom::after {
    content: '';
    width: 9px; height: 9px; background: var(--orange); border-radius: 50%;
  }

  /* image upload */
  .images-grid { display: flex; gap: 12px; flex-wrap: wrap; }
  .img-thumb {
    width: 90px; height: 90px; border-radius: var(--radius-sm);
    border: 1.5px solid var(--border);
    overflow: hidden; position: relative;
    background: var(--bg);
  }
  .img-thumb img { width: 100%; height: 100%; object-fit: cover; }
  .img-remove {
    position: absolute; top: 4px; right: 4px;
    width: 20px; height: 20px; border-radius: 50%;
    background: rgba(0,0,0,0.5); color: #fff;
    border: none; cursor: pointer; font-size: 13px;
    display: flex; align-items: center; justify-content: center; line-height: 1;
  }
  .img-upload-btn {
    width: 90px; height: 90px; border-radius: var(--radius-sm);
    border: 2px dashed var(--orange-mid);
    background: var(--orange-light);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 6px; cursor: pointer; font-size: 12px; color: var(--muted);
    font-family: inherit; transition: border-color .2s, background .2s;
  }
  .img-upload-btn:hover { border-color: var(--orange); background: #fff; }
  .img-upload-btn svg { width: 22px; height: 22px; color: var(--orange); }
  input[type="file"] { display: block; }

  /* availability */
  .avail-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

  /* supplier info */
  .supplier-info-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px;
    background: var(--bg); border-radius: var(--radius-sm); padding: 16px;
  }
  .supplier-info-item label { color: var(--muted); font-weight: 500; }
  .supplier-info-item .val { font-size: 14px; font-weight: 600; color: var(--dark); margin-top: 4px; }

  /* ── WIZARD NAV ── */
  .wizard-nav {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 28px; padding-top: 20px;
    border-top: 1px solid var(--border);
  }
  .wizard-nav-left { display: flex; gap: 10px; }
  .btn-prev {
    padding: 11px 24px; border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--white); color: var(--mid);
    font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit;
    display: flex; align-items: center; gap: 7px;
    transition: all .2s;
  }
  .btn-prev:hover:not(:disabled) { border-color: var(--muted); color: var(--dark); }
  .btn-prev:disabled { opacity: .4; cursor: not-allowed; }
  .btn-prev svg, .btn-next svg { width: 16px; height: 16px; }
  .btn-next {
    padding: 11px 28px; border-radius: 10px;
    background: var(--orange); color: #fff;
    border: none; font-size: 14px; font-weight: 700; cursor: pointer;
    font-family: inherit; display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 14px rgba(242,92,5,0.35);
    transition: all .2s;
  }
  .btn-next:hover { background: #d44d00; box-shadow: 0 6px 18px rgba(242,92,5,0.4); transform: translateY(-1px); }
  .btn-publish {
    padding: 11px 28px; border-radius: 10px;
    background: var(--orange); color: #fff;
    border: none; font-size: 14px; font-weight: 700; cursor: pointer;
    font-family: inherit; display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 14px rgba(242,92,5,0.35);
    transition: all .2s;
  }
  .btn-publish:hover { background: #d44d00; box-shadow: 0 6px 18px rgba(242,92,5,0.4); transform: translateY(-1px); }
  .btn-publish svg { width: 16px; height: 16px; }

  .step-counter {
    font-size: 13px; color: var(--muted); font-weight: 500;
  }
  .step-counter strong { color: var(--dark); }

  /* success screen */
  .success-screen {
    display: none; flex-direction: column; align-items: center; justify-content: center;
    padding: 48px 24px; text-align: center;
  }
  .success-screen.active { display: flex; animation: fadeUp .5s ease both; }
  .success-ring {
    width: 80px; height: 80px; border-radius: 50%;
    background: #E8F8F0; border: 3px solid #12A05C;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    animation: popIn .4s cubic-bezier(.34,1.56,.64,1) both;
  }
  @keyframes popIn { from { transform: scale(0); } to { transform: scale(1); } }
  .success-ring svg { width: 36px; height: 36px; color: #12A05C; }
  .success-screen h2 {
    font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 700; color: var(--dark);
    margin-bottom: 8px;
  }
  .success-screen p { font-size: 14px; color: var(--muted); margin-bottom: 24px; }
  .success-actions { display: flex; gap: 12px; }

  /* bottom actions */
  .form-actions {
    display: flex; justify-content: flex-end; gap: 12px;
    margin-top: 24px;
  }
  .btn-cancel {
    padding: 11px 28px; border-radius: 10px;
    border: 1.5px solid var(--border);
    background: var(--white); color: var(--mid);
    font-size: 14px; font-weight: 600; cursor: pointer; font-family: inherit;
    transition: all .2s;
  }
  .btn-cancel:hover { border-color: var(--muted); color: var(--dark); }

  /* verified badge */
  .verified-chip {
    display: inline-flex; align-items: center; gap: 4px;
    background: #E8F8F0; color: var(--green);
    font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 20px;
  }

  /* overlay sidebar on mobile */
  .sidebar-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.4); z-index: 98;
  }

  @media (max-width: 768px) {
    .sidebar {
      position: fixed; top: var(--nav-h); left: 0; bottom: 0;
      z-index: 99; transform: translateX(-100%);
    }
    .sidebar.open { transform: translateX(0); }
    .sidebar-overlay.open { display: block; }
    .hamburger { display: block; }
    .main { padding: 20px 16px 60px; }
    .two-col { grid-template-columns: 1fr; }
    .attrs-grid { grid-template-columns: 1fr 1fr; }
    .supplier-info-grid { grid-template-columns: 1fr 1fr; }
    .avail-grid { grid-template-columns: 1fr 1fr; }
    .form-row { flex-direction: column; }
    .user-name, .user-role { display: none; }
    .wizard-stepper { padding: 20px 12px 0; }
    .step-label { font-size: 10px; max-width: 60px; }
    .step-circle { width: 32px; height: 32px; font-size: 12px; }
    .step-item:not(:last-child)::after { top: 16px; }
  }
  @media (max-width: 480px) {
    .attrs-grid { grid-template-columns: 1fr; }
    .supplier-info-grid { grid-template-columns: 1fr 1fr; }
    .avail-grid { grid-template-columns: 1fr; }
    .step-label { display: none; }
  }

.img-setting {
  height: 60px;
}
.extraBtn{
  background: rgba(255,255,255,0.15);
  border-radius: 20px;
  padding: 6px 20px 6px 20px;
  cursor: pointer;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.header h3 {
    margin: 0;
    padding: 5px 12px;
}

/* Cards */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.card {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.card h3 {
    margin: 0;
    font-size: 14px;
    color: #6b7280;
}

.card p {
    font-size: 22px;
    margin: 5px 0 0;
}

/* Table */
.table-container {
    margin-top: 25px;
    background: #fff;
    padding: 20px;
    border-radius: 10px;
}

table {
    width: 100%;
    border-collapse: collapse;
}

table th, table td {
    text-align: left;
    padding: 12px;
    border-bottom: 1px solid #eee;
}

table th {
    background: #f9fafb;
}

.prod-img-list {
  width: 150px;
}

.btnPrimary{
  background: #f54702;
  border-color: #f54702;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  color: #fff;
}

.btnWarning{
  background: #ffc107;
  border-color: #ffc107;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 12px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  color: #fff;
}

.btnSuccess{
  background: #198754;
  border-color: #198754;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  color: #fff;
}

.btnDanger{
  background: #dc3545;
  border-color: #dc3545;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  color: #fff;
}
.topHdrBtn{
  background: #f54702;
  border-color: #f54702;
  font-size: 14px;
  font-weight: 500;
  padding: 5px 12px;
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
  color: #fff;
}
.divHdrStg{
  margin: 10px 20px;
}
.formSection{
  background: #eeeeee;
    box-shadow: 0px 2px 3px 0px #ccc;
    padding: 10px 10px;
}