html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: #f6f7f5;
}

/* ===== SELLER APP WRAPPER ===== 
.seller-app {
  min-height: 100vh;
  background: #f6f7f5;
  position: relative;
}*/

.seller-page {
  width: 100%;
  max-width: 420px;
  padding-top: 56px;
  padding-bottom: 90px;
}

/* ===== SELLER HEADER IOS STYLE ===== 
.seller-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;

  background: #fff;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* SAFE AREA (iOS NOTCH) 
@supports (padding-top: env(safe-area-inset-top)) {
  .seller-header {
    padding-top: env(safe-area-inset-top);
    height: calc(56px + env(safe-area-inset-top));
  }
}*/
/* ===== SELLER HEADER (IOS FIXED WIDTH) ===== */
.seller-header {
  position: sticky;
  top: 0;
  z-index: 1000;

  width: 100%;
  max-width: 420px;
  margin: 0 auto;

  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);

  border-bottom: 1px solid rgba(0,0,0,0.08);
}

/* FORCE CENTER ON DESKTOP */
.seller-app {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* SAFE AREA (NOTCH iOS) */
@supports (padding-top: env(safe-area-inset-top)) {
  .seller-header {
    padding-top: env(safe-area-inset-top);
    height: calc(56px + env(safe-area-inset-top));
  }
}

/* BACK & NEXT */
.seller-header .back,
.seller-header .next {
  width: 44px;
  height: 44px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #1B5E46;
  font-size: 18px;
  text-decoration: none;
}

/* TITLE CENTER ABSOLUTE */
.seller-header .title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #111;
}

.seller-header .btn-add {
  background: #0f3d2e;
  color: #fff;
  margin-left: auto;
  margin-right:10px;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  text-decoration: none;
}

/* TITLE CENTER ABSOLUT (iOS STYLE) 
.seller-header .title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);

  font-size: 16px;
  font-weight: 600;
  color: #111;
  margin: 0;

  pointer-events: none; /* biar klik back/next aman * /
}*/

/* ===== INFO PAGE (iOS SECTION HEADER) ===== */
.info-page {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;

  color: #8E8E93; /* iOS gray label */

  padding: 10px 16px 6px;
  /*margin: 0;*/
  margin-left: 20px;
  margin-bottom: -14px;

  background: transparent;

  /* agar terasa "section", bukan card */
  border: none;
}

/* RIGHT SPACER (BALANCER) */
.seller-header .header-spacer {
  width: 44px;
  height: 44px;
}

.back-btn {
  font-size: 18px;
  color: #111;
}

.dashboard-content {
  padding: 16px;
}

.dashboard-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  margin-bottom: 12px;
}

/* ===== BOTTOM NAV IOS STYLE ===== */
.bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;

  width: 100%;
  max-width: 420px;

  display: flex;
  justify-content: space-around;
  align-items: center;

  padding: 8px 0 12px;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);

  border-top: 1px solid rgba(0,0,0,0.06);
  z-index: 1000;
}

/* NAV ITEM */
.bottom-nav .nav-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  color: #999;
  font-size: 11px;
  gap: 2px;
}

/* ICON */
.bottom-nav .nav-item .material-icons-outlined {
  display: block;
  font-size: 22px;
}

/* ACTIVE STATE */
.bottom-nav .nav-item.active {
  color: #0f3d2e;
  font-weight: 600;
}

.bottom-nav .nav-item.active .material-icons-outlined {
  transform: translateY(-1px);
}

/* ORDER ITEM (TENGAH) */
.nav-order .material-icons-outlined {
  font-size: 22px;
}

.nav-order.active .material-icons-outlined {
  color: #1B5E46;
}


/* SAFE AREA (iOS) */
@supports (padding-bottom: env(safe-area-inset-bottom)) {
  .bottom-nav {
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
  }
}
