.bz-store-page {
  background: #0f1712;
  min-height: 100vh;
  padding: 24px 0;
}

/* Full-bleed merchant variant (no side gaps) */
.bz-merchant-shell {
  padding: 0;
}

.bz-merchant-shell .bz-merchant-portal {
  max-width: 100%;
  margin: 0;
}

/* Merchant portal shell (sidebar + main) */
.bz-merchant-portal {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
}

.bz-merchant-sidebar {
  background: #12241d;
  border-radius: 16px;
  padding: 16px 14px;
  color: #e5f2ec;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.bz-merchant-sidebar-header {
  margin-bottom: 18px;
}

.bz-merchant-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.bz-merchant-brand-icon {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: #2f5d50;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
}

.bz-merchant-brand-text {
  font-weight: 600;
  letter-spacing: 0.03em;
  font-size: 1rem;
}

.bz-merchant-store-meta {
  font-size: 0.86rem;
}

.bz-merchant-store-name {
  font-weight: 600;
}

.bz-merchant-store-link {
  max-width: 100%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bz-merchant-nav {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 10px;
}

.bz-merchant-nav-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border-radius: 10px;
  color: #c6dad1;
  font-size: 0.9rem;
}

.bz-merchant-nav-item i {
  width: 18px;
  text-align: center;
  font-size: 0.9rem;
}

/* Ensure kitchen icon not oversized in sidebar */
.bz-merchant-sidebar .fa-utensils {
  font-size: 0.9rem !important;
  margin: 0 !important;
  color: inherit;
}

/* Round borders for all merchant inputs/buttons inside main content */
.bz-merchant-main .form-control,
.bz-merchant-main .custom-select,
.bz-merchant-main .input-group-text {
  border-radius: 10px;
}

.bz-merchant-main .btn {
  border-radius: 10px;
}

.bz-merchant-nav-item:hover {
  text-decoration: none;
  background: rgba(47, 93, 80, 0.45);
  color: #ffffff;
}

.bz-merchant-nav-item.active {
  background: #2f5d50;
  color: #ffffff;
}

.bz-merchant-nav-item.disabled {
  opacity: 0.6;
  cursor: default;
}

.bz-merchant-main {
  background: #f3ebe2;
  border-radius: 18px;
  padding: 18px 18px 22px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

@media (max-width: 992px) {
  .bz-merchant-portal {
    grid-template-columns: 1fr;
  }

  .bz-merchant-sidebar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
  }

  .bz-merchant-nav {
    flex-wrap: wrap;
    flex-direction: row;
    gap: 4px;
  }

  .bz-merchant-nav-item span {
    display: none;
  }
}

.bz-shell {
  background: #f8f5ef;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.bz-browser-bar {
  background: #e9e3d8;
  padding: 6px 18px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  display: flex;
  align-items: center;
  font-size: 11px;
  color: #7c766c;
}

.bz-browser-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d2ccc1;
  display: inline-block;
  margin-right: 4px;
}

.bz-browser-url {
  flex: 1;
  margin: 0 12px;
  padding: 3px 12px;
  border-radius: 999px;
  background: #f8f5ef;
  border: 1px solid #dcd6c9;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bz-browser-actions {
  font-size: 11px;
  color: #9c978c;
}

.bz-top {
  background: linear-gradient(135deg, #224436 0%, #153428 100%);
  color: #f7f7f7;
  padding: 20px 24px;
}

.bz-brandline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.bz-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0;
}

.bz-sub {
  opacity: 0.9;
  margin: 0;
}

.bz-hero {
  background: radial-gradient(circle at 20% 20%, #355f4c 0%, #173327 62%);
  color: #fff;
  padding: 26px 24px;
}

.bz-hero-inner {
  background: #234736;
  border-radius: 18px;
  padding: 22px 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
}

@media (min-width: 992px) {
  .bz-hero-inner {
    padding-right: 40px;
  }
}

.bz-hero img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 16px;
}

.bz-store-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.bz-store-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bz-chip {
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 12px;
  margin-right: 6px;
}

.bz-hero-buttons .btn {
  min-width: 140px;
  border-radius: 999px;
  margin-right: 8px;
  margin-bottom: 8px;
}

.bz-feature {
  background: #fff;
  border-right: 1px solid #ececec;
  text-align: center;
  padding: 20px 10px;
}

.bz-offer-card,
.bz-menu-card {
  background: #fff;
  border: 1px solid #e8e6e2;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

/* Wrapper around image + badge so the badge sits on top of the photo (not the beige area) */
.bz-offer-media {
  position: relative;
  overflow: hidden;
}

/* Discount badge: dark green bar, white text, rounded, with drop shadow (reference design) */
.bz-offer-badge {
  position: absolute;
  top: 10px;
  left: 12px;
  background: #2f5d50; /* Bizzspot green */
  color: #fff;
  padding: 6px 16px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 4px;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.bz-offer-media img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.bz-offers-carousel {
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #1b2a24;
  box-shadow: 0 20px 44px rgba(8, 17, 13, 0.28);
}

.bz-offers-indicators {
  bottom: 18px;
  margin-bottom: 0;
}

.bz-offers-indicators li {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.38);
  margin: 0 5px;
}

.bz-offers-indicators .active {
  background: #ffffff;
}

.bz-offer-slide {
  background: linear-gradient(135deg, #060b09 0%, #0d1511 55%, #111c17 100%);
  min-height: 540px;
}

.bz-offer-slide-media img {
  height: 540px;
  width: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(1.02) contrast(1.05);
}

.bz-offer-slide-content {
  margin: 0;
  padding: 56px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 540px;
  background: transparent;
}

.bz-offer-slide-title {
  color: #ffffff;
  font-size: 2.55rem;
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 18px;
}

.bz-offer-slide-copy {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.06rem;
  line-height: 1.8;
  max-width: 520px;
  margin-bottom: 28px;
}

.bz-offer-slide-pricing {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.bz-offer-slide-pricing .bz-price {
  font-size: 1.6rem;
  color: #ffffff;
}

.bz-offer-slide-pricing .bz-strike {
  color: rgba(255, 255, 255, 0.62);
}

.bz-offer-slide-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.bz-offer-slide-actions .btn {
  min-width: 150px;
  border-radius: 999px;
  padding: 11px 20px;
  font-weight: 600;
}

.bz-offer-slide-actions .btn-outline-secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: #ffffff;
  background: transparent;
}

.bz-offer-slide-actions .btn-outline-secondary:hover {
  background: #ffffff;
  border-color: #ffffff;
  color: #102019;
}

.bz-offers-control {
  width: 64px;
  opacity: 1;
}

.bz-offers-control .carousel-control-prev-icon,
.bz-offers-control .carousel-control-next-icon {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background-color: rgba(20, 58, 46, 0.9);
  background-size: 45%;
}

.bz-menu-card img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  display: block;
}

.bz-price {
  color: #143a2e;
  font-weight: 700;
}

.bz-strike {
  color: #8d8d8d;
  text-decoration: line-through;
  font-size: 0.9rem;
}

.bz-section {
  padding: 24px;
}

.bz-tag {
  background: #234938;
  color: #fff;
  border-radius: 7px;
  padding: 6px 14px;
  font-size: 14px;
  margin-right: 8px;
}

.bz-register {
  background: #f8f5ef;
  border: 1px solid #e4decf;
  border-radius: 10px;
  padding: 18px;
}

.bz-merchant-wrap {
  min-height: calc(100vh - 80px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
}

.bz-merchant-card {
  width: 100%;
  max-width: 760px;
  background: #f7f4f5;
  border: 1px solid #d8d2d3;
  border-radius: 12px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}

.bz-merchant-head {
  border-bottom: 1px solid #dfd9db;
  padding: 16px 22px;
  text-align: center;
}

.bz-logo-text {
  font-size: 2rem;
  color: #404346;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.bz-logo-icon {
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: #6ea275;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 8px;
}

.bz-merchant-body {
  padding: 24px;
}

.bz-step-title {
  color: #2f5b4d;
  font-weight: 600;
  margin-bottom: 4px;
}

.bz-step-subtitle {
  color: #7b7d80;
  margin-bottom: 16px;
}

.bz-panel {
  border: 1px solid #ded7d8;
  border-radius: 16px;
  background: #fdf9f5;
  padding: 20px 22px;
}

.bz-field-label {
  font-weight: 600;
  color: #3f4447;
  margin-bottom: 6px;
}

.bz-merchant-card .form-control,
.bz-merchant-card .custom-select {
  border-color: #d9d4d5;
  border-radius: 10px;
  background: #fbfbfb;
}

.bz-step-footer {
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.bz-progress-dots {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.bz-dot {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1px solid #c9c5c6;
  color: #7f7c7d;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background: #ece8e9;
}

.bz-dot.active {
  background: #3f6f5f;
  border-color: #3f6f5f;
  color: #fff;
}

.bz-btn-main {
  background: #2f5d50;
  border-color: #2f5d50;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
}

.bz-btn-main:hover {
  background: #254c41;
  border-color: #254c41;
  color: #fff;
}

.bz-btn-outline-green {
  background-color: transparent !important;
  border: 1px solid #2f5d50;
  color: #2f5d50;
}
.bz-btn-outline-green:hover {
  background-color: #2f5d50 !important;
  border-color: #2f5d50 !important;
  color: #fff !important;
}

.bz-back-link {
  color: #686566;
  font-size: 0.95rem;
}

.bz-soft-box {
  border: 1px solid #ddd6d7;
  border-radius: 10px;
  padding: 10px 12px;
  background: #fbfafb;
}

/* Store settings layout (merchant side) */
.bz-settings-nav {
  background: #f3ebe2;
  border-radius: 14px;
  padding: 8px 6px;
  border: 1px solid #e0d3c4;
}

.bz-settings-nav .list-group-item {
  border: none;
  background: transparent;
  color: #5b5a58;
  font-weight: 500;
  border-radius: 10px;
  padding: 8px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
}

.bz-settings-nav .list-group-item .bz-settings-icon {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  background: rgba(47, 93, 80, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #2f5d50;
}

.bz-settings-nav .list-group-item.active {
  background: #2f5d50;
  color: #fff;
}

.bz-settings-nav .list-group-item.active .bz-settings-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.bz-settings-nav .list-group-item:hover {
  background: rgba(47, 93, 80, 0.12);
  color: #2b5145;
}

.bz-merchant-card .nav-tabs {
  border-bottom: 1px solid #e0d6ca;
}

.bz-merchant-card .nav-tabs .nav-link {
  border: none;
  color: #8a8680;
  font-weight: 500;
  padding-bottom: 10px;
}

.bz-merchant-card .nav-tabs .nav-link.active {
  color: #2f5d50;
  border-bottom: 3px solid #2f5d50;
}

/* Inventory / Product Setup page */
.bz-inventory-wrap .bz-inventory-card {
  max-width: 1000px;
}

.bz-inventory-tabs {
  border-bottom: 1px solid #e0d6ca;
  flex-wrap: nowrap;
}

.bz-inventory-tabs .nav-link {
  border: none;
  color: #6b6a68;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 0;
}

.bz-inventory-tabs .nav-link.active {
  color: #2f5d50;
  border-bottom: 3px solid #2f5d50;
  background: transparent;
}

.bz-toolbar {
  gap: 10px;
}

.bz-search-box {
  max-width: 220px;
}

.bz-search-box .input-group-text {
  background: #f5f2ef;
  border-color: #ddd6d0;
  border-radius: 8px 0 0 8px;
}

.bz-filter-select {
  max-width: 140px;
  border-radius: 8px;
  border-color: #ddd6d0;
}

.bz-products-table-wrap {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #e5dfda;
  overflow: hidden;
}

.bz-products-table {
  margin-bottom: 0;
}

.bz-products-table thead th {
  background: #f8f5f2;
  border-color: #e5dfda;
  font-weight: 600;
  color: #3f4447;
  padding: 12px 14px;
}

.bz-products-table tbody td {
  padding: 12px 14px;
  vertical-align: middle;
  border-color: #eeeae6;
}

.bz-product-thumb {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: #f0edeb;
}

.bz-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bz-price-current {
  font-weight: 600;
  color: #2f5d50;
}

.bz-price-old {
  display: block;
  font-size: 0.85rem;
  color: #999;
  text-decoration: line-through;
}

/* Toggle switch (availability) */
.bz-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  cursor: pointer;
}

.bz-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.bz-toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ccc;
  border-radius: 24px;
  transition: 0.25s;
}

.bz-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 3px;
  bottom: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.25s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.bz-toggle input:checked + .bz-toggle-slider {
  background: #2f5d50;
}

.bz-toggle input:checked + .bz-toggle-slider:before {
  transform: translateX(20px);
}

.bz-discount-row .bz-toggle {
  flex-shrink: 0;
}

.bz-landing-page {
  background: #ffffff;
  padding-bottom: 30px;
}

/* Sticky footer: main content grows so footer stays at bottom (overrides min-height) */
body > .bz-landing-page {
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.bz-landing-wrap {
  max-width: 1140px;
  margin: 0 auto;
  padding: 26px 18px;
}

.bz-landing-hero {
  background: linear-gradient(180deg, #f6fbf8 0%, #ffffff 100%);
  border-radius: 12px;
  padding: 24px 14px 40px;
  border: 1px solid #e4efe8;
}

.bz-hero-title {
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
  font-weight: 600;
}

.bz-hero-sub {
  color: #3f5b4b;
  font-size: 1.25rem;
  max-width: 620px;
  margin-bottom: 22px;
}

.bz-hero-form {
  max-width: 460px;
}

.bz-hero-form .form-control {
  height: 48px;
  border-radius: 999px;
  border: 1px solid #d7d7d7;
  padding: 0 18px;
}

.bz-hero-form .btn {
  width: 100%;
  margin-top: 10px;
  border-radius: 999px;
  height: 46px;
  font-weight: 600;
  background: #2f5d50;
  border-color: #2f5d50;
  color: #fff;
}

.bz-landing-page .btn-success,
.bz-landing-page .btn-dark,
.bz-landing-page .btn-primary {
  background: #2f5d50;
  border-color: #2f5d50;
  color: #fff;
}

.bz-landing-page .btn-success:hover,
.bz-landing-page .btn-dark:hover,
.bz-landing-page .btn-primary:hover {
  background: #24493f;
  border-color: #24493f;
  color: #fff;
}

.bz-hero-note {
  color: #60806f;
  font-size: 0.92rem;
  margin-top: 12px;
}

.bz-visual {
  position: relative;
  margin-top: 20px;
}

.bz-visual-main {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #dbe9e0;
  box-shadow: 0 12px 30px rgba(47, 93, 80, 0.12);
  overflow: hidden;
}

.bz-visual-main img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.bz-visual-caption {
  padding: 10px 12px;
  font-size: 0.95rem;
}

.bz-visual-float {
  position: absolute;
  right: -15px;
  bottom: 18px;
  width: 145px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #dbe9e0;
  box-shadow: 0 10px 22px rgba(47, 93, 80, 0.2);
  padding: 8px;
}

.bz-visual-float img {
  width: 100%;
  height: 70px;
  border-radius: 6px;
  object-fit: cover;
}

.bz-powered {
  margin: 30px 0 16px;
  font-size: 2rem;
  font-weight: 500;
  color: #2f5d50;
}

.bz-store-grid .card {
  border: 1px solid #e5e5e5;
  border-radius: 12px;
}

.bz-restaurants-page {
  background: linear-gradient(180deg, #f7fbf8 0%, #ffffff 40%, #f8faf9 100%);
  min-height: calc(100vh - 72px);
}

.bz-restaurants-hero {
  background:
    radial-gradient(circle at top left, rgba(47, 93, 80, 0.12), transparent 36%),
    linear-gradient(135deg, #f8fcf9 0%, #edf7f1 52%, #ffffff 100%);
  border: 1px solid #dfede5;
  border-radius: 24px;
  padding: 34px 30px;
  box-shadow: 0 22px 44px rgba(47, 93, 80, 0.1);
}

.bz-restaurants-kicker {
  display: inline-block;
  margin-bottom: 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e6f1eb;
  color: #2f5d50;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.bz-restaurants-title {
  color: #173327;
  font-size: 2.6rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  font-weight: 700;
}

.bz-restaurants-subtitle {
  color: #4d6559;
  font-size: 1.08rem;
  max-width: 620px;
  margin-bottom: 0;
  line-height: 1.7;
}

.bz-restaurants-highlight {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid #e0ebe4;
  box-shadow: 0 10px 26px rgba(47, 93, 80, 0.06);
}

.bz-restaurants-highlight strong {
  display: block;
  color: #173327;
  margin-bottom: 4px;
}

.bz-restaurants-highlight p {
  color: #607267;
  line-height: 1.6;
}

.bz-restaurants-highlight-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #2f5d50;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}

.bz-restaurants-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.bz-restaurants-stat {
  min-width: 128px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2ebe5;
  box-shadow: 0 14px 28px rgba(47, 93, 80, 0.08);
}

.bz-restaurants-stat strong {
  display: block;
  color: #173327;
  font-size: 1.45rem;
  line-height: 1;
  margin-bottom: 6px;
}

.bz-restaurants-stat span {
  color: #6c7d74;
  font-size: 0.88rem;
}

.bz-restaurants-actions {
  background: #fff;
  border: 1px solid #e2ebe5;
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(47, 93, 80, 0.08);
}

.bz-restaurants-actions-head {
  margin-bottom: 16px;
}

.bz-restaurants-actions-head h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #173327;
  margin-bottom: 4px;
}

.bz-restaurants-actions-head p {
  margin: 0;
  color: #66756d;
  line-height: 1.6;
}

.bz-restaurants-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.bz-restaurants-toolbar .form-control {
  min-height: 46px;
  border-radius: 12px;
  border-color: #d5e1da;
  box-shadow: none;
}

.bz-restaurants-toolbar .form-control:focus {
  border-color: #2f5d50;
  box-shadow: 0 0 0 0.2rem rgba(47, 93, 80, 0.12);
}

.bz-restaurants-section-title {
  color: #173327;
  font-size: 1.75rem;
  font-weight: 700;
}

.bz-restaurant-card {
  height: 100%;
  background: #fff;
  border: 1px solid #e4ebe7;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 16px 34px rgba(31, 41, 55, 0.07);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.bz-restaurant-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 42px rgba(31, 41, 55, 0.12);
  border-color: #c8ddd2;
}

.bz-restaurant-media {
  position: relative;
  overflow: hidden;
  background: #eef2ef;
}

.bz-restaurant-media img {
  width: 100%;
  height: 232px;
  object-fit: cover;
  display: block;
}

.bz-restaurant-media-overlay {
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}

.bz-restaurant-status,
.bz-restaurant-category {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

.bz-restaurant-status.is-live {
  background: rgba(16, 99, 73, 0.88);
  color: #fff;
}

.bz-restaurant-status.is-draft {
  background: rgba(82, 82, 91, 0.88);
  color: #fff;
}

.bz-restaurant-category {
  background: rgba(255, 255, 255, 0.9);
  color: #24493f;
}

.bz-restaurant-content {
  padding: 20px 20px 18px;
  display: flex;
  flex-direction: column;
  min-height: 245px;
}

.bz-restaurant-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.bz-restaurant-title-wrap h5 {
  color: #182a22;
  font-size: 1.25rem;
  font-weight: 700;
}

.bz-restaurant-meta {
  color: #6b7280;
  font-size: 0.92rem;
}

.bz-restaurant-tagline {
  color: #51625b;
  min-height: 58px;
  line-height: 1.65;
}

.bz-restaurant-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bz-restaurant-chip {
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  background: #eff6f2;
  color: #2f5d50;
  font-size: 0.82rem;
  font-weight: 600;
}

.bz-restaurant-address {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  color: #5f6b65;
  font-size: 0.93rem;
  min-height: 44px;
}

.bz-restaurant-address i {
  color: #2f5d50;
  margin-top: 3px;
}

.bz-restaurant-footer {
  margin-top: auto;
  padding-top: 6px;
}

.bz-restaurant-footer .btn {
  min-width: 150px;
  border-radius: 999px;
  padding-left: 16px;
  padding-right: 16px;
}

@media (max-width: 991px) {
  .bz-restaurants-title {
    font-size: 2.1rem;
  }
}

@media (max-width: 767px) {
  .bz-restaurants-hero {
    padding: 22px 18px;
  }

  .bz-restaurants-title {
    font-size: 1.85rem;
  }

  .bz-restaurants-highlight {
    padding: 14px;
  }

  .bz-restaurants-toolbar {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .bz-hero-title {
    font-size: 2.2rem;
  }
  .bz-hero-sub {
    font-size: 1.1rem;
  }
  .bz-visual-float {
    display: none;
  }
  .bz-offer-slide {
    min-height: 0;
  }
  .bz-offer-slide-media img,
  .bz-offer-slide-content {
    min-height: 0;
    height: auto;
  }
  .bz-offer-slide-media img {
    height: 320px;
  }
  .bz-offer-slide-content {
    padding: 28px 20px 30px;
  }
  .bz-offer-slide-title {
    font-size: 1.95rem;
  }
  .bz-offers-control {
    width: 44px;
  }
}

/* Order Management page: force dark green, no blue */
.bz-order-management-page .nav-pills .nav-link {
  color: #2f5d50 !important;
}
.bz-order-management-page .nav-pills .nav-link:hover {
  background-color: #e6f1eb !important;
  color: #24493f !important;
}
.bz-order-management-page .nav-pills .nav-link.active,
.bz-order-management-page .nav-pills .show > .nav-link {
  background-color: #2f5d50 !important;
  border-color: #2f5d50 !important;
  color: #fff !important;
}
.bz-order-management-page .btn-outline-primary {
  border-color: #2f5d50 !important;
  color: #2f5d50 !important;
  background-color: transparent !important;
}
.bz-order-management-page .btn-outline-primary:hover,
.bz-order-management-page .btn-outline-primary:focus {
  background-color: #2f5d50 !important;
  border-color: #2f5d50 !important;
  color: #fff !important;
}

/* Merchant — Menu categories */
.bz-cat-title {
  font-weight: 600;
  letter-spacing: -0.02em;
}
.bz-cat-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
  overflow: hidden;
}
.bz-cat-add-form {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 12px;
  padding: 1.1rem 1.25rem;
}
.bz-cat-input {
  flex: 1 1 220px;
  min-width: 0;
  border-radius: 10px;
  border: 1px solid #d1d5db;
  padding: 0.55rem 0.9rem;
  font-size: 0.95rem;
}
.bz-cat-input:focus {
  border-color: #2f5d50;
  box-shadow: 0 0 0 3px rgba(47, 93, 80, 0.15);
}
.bz-cat-add-btn {
  flex: 0 0 auto;
  white-space: nowrap;
  background: #2f5d50;
  border: none;
  color: #fff;
  font-weight: 600;
  padding: 0.55rem 1.35rem;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: background 0.15s ease;
}
.bz-cat-add-btn:hover {
  background: #24493f;
  color: #fff;
}
.bz-cat-list-wrap {
  padding: 0;
}
.bz-cat-table thead th {
  border-top: none;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #6b7280;
  font-weight: 600;
  border-bottom: 1px solid #e5e7eb;
  padding: 0.85rem 1.25rem;
}
.bz-cat-table tbody td {
  padding: 0.9rem 1.25rem;
  border-color: #f3f4f6;
  vertical-align: middle;
}
.bz-cat-toggle-btn {
  border: 1px solid #d1d5db;
  color: #374151;
  border-radius: 8px;
  font-size: 0.8rem;
}
.bz-cat-toggle-btn:hover {
  border-color: #2f5d50;
  color: #2f5d50;
  background: #f0fdf4;
}
.bz-cat-empty-icon {
  font-size: 2rem;
  color: #9ca3af;
}
.bz-cat-edit-banner {
  border-color: #2f5d50;
  box-shadow: 0 0 0 1px rgba(47, 93, 80, 0.12);
}
.bz-cat-actions {
  gap: 6px;
}
.bz-cat-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: 1px solid transparent;
  border-radius: 10px;
  color: #6b7280;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.bz-cat-icon-btn:hover {
  background: #f3f4f6;
  color: #2f5d50;
  border-color: #e5e7eb;
}
/* Delete: red icon, no border (browser/Bootstrap often add button chrome). */
.bz-cat-icon-btn.bz-cat-icon-danger {
  -webkit-appearance: none;
  appearance: none;
  border: none !important;
  box-shadow: none !important;
  color: #dc2626;
  background: transparent;
}
.bz-cat-icon-btn.bz-cat-icon-danger:hover {
  color: #b91c1c !important;
  background: #fef2f2 !important;
  border: none !important;
}
.bz-cat-icon-btn.bz-cat-icon-danger:focus {
  outline: none;
  box-shadow: none !important;
}
.bz-cat-icon-btn.bz-cat-icon-danger:focus-visible {
  outline: 2px solid rgba(220, 38, 38, 0.45);
  outline-offset: 2px;
}
.bz-cat-cancel-btn {
  border-radius: 10px;
  font-weight: 600;
}

/* Flash alerts: smooth JS fade-out */
.bz-auto-flash {
  transition: opacity 0.35s ease, transform 0.35s ease;
}

/* Merchant global topbar (search + profile) */
.bz-merchant-topbar {
  gap: 12px;
}
.bz-merchant-topbar-search {
  min-width: 200px;
  max-width: 560px;
}
.bz-merchant-topbar .bz-merchant-topbar-icon {
  background: #f3f4f6;
  border: 1px solid #2f5d50;
  color: #374151;
}
.bz-merchant-topbar .input-group .form-control.bz-merchant-topbar-input {
  border: 1px solid #2f5d50;
}
.bz-merchant-topbar-search-btn {
  background: #fff !important;
  border: 1px solid #2f5d50 !important;
  color: #2f5d50 !important;
  font-weight: 600;
  border-radius: 0 10px 10px 0 !important;
}
.bz-merchant-topbar-search-btn:hover {
  background: #f0fdf4 !important;
  color: #1d4338 !important;
}
.bz-merchant-profile-pill {
  border: 1px solid #2f5d50 !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: #2f5d50 !important;
  font-weight: 600;
  padding: 6px 14px !important;
  max-width: 100%;
}
.bz-merchant-profile-pill:hover,
.bz-merchant-profile-pill:focus {
  background: #f0fdf4 !important;
  color: #1d4338 !important;
}
.bz-merchant-avatar-ico {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #2f5d50;
  color: #fff !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bz-merchant-profile-name {
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 576px) {
  .bz-merchant-profile-name {
    max-width: 120px;
  }
}
