/* ---- Variables ---- */
  :root {
    --bee-primary: var(--bs-primary, #2c7be5);
    --bee-radius: 14px;
    --bee-shadow: 0 4px 20px rgba(0, 0, 0, .10);
    --bee-transition: .25s ease;
  }

  /* ---- Hero ---- */
  .bee-menu-hero {
    position: relative;
    background: url('../../../images/foodlogin.webp') center center / cover no-repeat;
    padding: 3rem 1rem 2.5rem;
  }

  /* ---- Navbar menu digital ---- */
  .bee-menu-topbar {
    position: sticky;
    top: 74px;
    z-index: 1040;
    backdrop-filter: blur(8px);
    background: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  }

  .bee-menu-topbar__inner {
    min-height: 54px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
  }

  .bee-menu-topbar__left,
  .bee-menu-topbar__right {
    display: flex;
    align-items: center;
    gap: .55rem;
    min-width: 0;
  }

  .bee-menu-topbar__chip {
    text-decoration: none;
    color: #1f2937;
    background: #f3f4f6;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    font-size: .8rem;
    font-weight: 700;
    padding: .36rem .65rem;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    transition: var(--bee-transition);
  }

  .bee-menu-topbar__chip:hover {
    color: #1453a3;
    background: #eef4ff;
    border-color: #c7dbff;
  }

  .bee-menu-topbar__chip--cart {
    background: #eefaf2;
    border-color: #cfe8d9;
    color: #14532d;
  }

  .bee-menu-topbar__chip--cart:hover {
    background: #e3f5ea;
    border-color: #b8dcc9;
    color: #0f5132;
  }

  .bee-menu-topbar__chip--cats {
    background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%);
    border-color: rgba(43, 107, 49, 0.28);
    color: #14532d;
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
  }

  .bee-menu-topbar__chip--cats:hover {
    background: linear-gradient(180deg, #ffffff 0%, #f2faf5 100%);
    border-color: rgba(43, 107, 49, 0.4);
    color: #0f5132;
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
  }

  .bee-menu-topbar__menu-btn {
    border-radius: 12px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }

  .bee-menu-topbar__menu-btn:focus,
  .bee-menu-topbar__menu-btn:active,
  .bee-menu-topbar__menu-btn.show {
    border-color: rgba(43, 107, 49, 0.42);
    box-shadow: 0 0 0 0.2rem rgba(43, 107, 49, 0.16), 0 8px 18px rgba(15, 23, 42, 0.1);
    color: #0f5132;
  }

  .bee-menu-cats-menu {
    border: 1px solid rgba(43, 107, 49, 0.18);
    border-radius: 14px;
    padding: .45rem;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.14);
    min-width: 220px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(245, 251, 247, 0.95) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: beeMenuCatsIn .2s ease;
  }

  .bee-menu-cats__item {
    border-radius: 9px;
    font-size: .86rem;
    color: #2b6b31;
    padding: .45rem .65rem;
    font-weight: 600;
    transition: background .2s ease, color .2s ease;
  }

  .bee-menu-cats__item:hover {
    background: rgba(43, 107, 49, 0.1);
    color: #1f4f25;
  }

  .bee-menu-cats__item.active,
  .bee-menu-cats__item:active {
    background: linear-gradient(100deg, #2b6b31 0%, #368e3e 70%);
    border-color: #2b6b31;
    color: #fff;
  }

  @keyframes beeMenuCatsIn {
    from {
      opacity: 0;
      transform: translateY(-6px) scale(0.985);
    }

    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  .bee-menu-topbar__count {
    min-width: 20px;
    height: 20px;
    border-radius: 999px;
    background: #dc3545;
    color: #fff;
    font-size: .68rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 .25rem;
    line-height: 1;
  }

  .bee-menu-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2b6b31 0%, #75ad6b 60%, #2b6b31 100%);
    overflow: hidden;
    opacity: 0.94;
  }

  .bee-menu-hero__overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, #7db369 0%, transparent 70%);
    pointer-events: none;
  }

  .bee-menu-hero__content {
    position: relative;
    text-align: center;
    color: #fff;
  }

  .bee-menu-hero__logo {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, .3);
    margin-bottom: .75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .3);
  }

  .bee-menu-hero__logo-placeholder {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: rgba(255, 255, 255, .7);
    margin-bottom: .75rem;
  }

  .bee-menu-hero__name {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-weight: 700;
    margin-bottom: .4rem;
    letter-spacing: -.5px;
  }

  .bee-menu-hero__contact {
    opacity: .8;
    font-size: .9rem;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    justify-content: center;
  }

  .bee-menu-hero__contact span {
    display: flex;
    align-items: center;
    gap: .35rem;
  }

  .btn-add-product {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    background-color: #d88e32 !important;
    color: #fff !important;
    transition: all 0.3s ease;
  }

  .btn-add-product:hover {
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(20, 118, 255, 0.3);
    transform: translateY(-2px);
    filter: brightness(0.8);
  }

  /* ---- Layout principal ---- */
  .bee-menu-main {
    padding-top: 2rem;
    padding-bottom: 6rem;
  }

  /* ---- Sección de categoría ---- */
  .bee-menu-section {
    margin-bottom: 2.5rem;
  }

  .bee-menu-section__title {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: .6rem;
    color: #212529;
  }

  .bee-menu-section__title span {
    position: relative;
    padding-bottom: 4px;
  }

  .bee-menu-section__title span::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--bee-primary);
    border-radius: 2px;
  }

  /* ---- Tarjeta de producto ---- */
  .bee-card {
    background: #fff;
    border-radius: var(--bee-radius);
    overflow: hidden;
    box-shadow: var(--bee-shadow);
    transition: transform var(--bee-transition), box-shadow var(--bee-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .bee-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, .14);
  }

  .bee-card--agotado {
    opacity: .65;
  }

  .bee-card--agotado .bee-card__img {
    filter: grayscale(60%);
  }

  .bee-card__img-wrap {
    position: relative;
    padding-top: 65%;
    overflow: hidden;
    background: #f8f9fa;
    flex-shrink: 0;
  }

  .bee-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s ease;
  }

  .bee-card:hover .bee-card__img {
    transform: scale(1.05);
  }

  .bee-card__img-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #ced4da;
  }

  /* Badges sobre la imagen */
  .bee-card__badge {
    position: absolute;
    top: .6rem;
    left: .6rem;
    padding: .2rem .65rem;
    border-radius: 999px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
  }

  .bee-card__badge--in {
    background: #198754;
    color: #fff;
  }

  .bee-card__badge--out {
    background: #dc3545;
    color: #fff;
  }

  .bee-card__badge-discount {
    position: absolute;
    top: .6rem;
    right: .6rem;
    background: #fd7e14;
    color: #fff;
    padding: .2rem .6rem;
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 700;
  }

  /* Cuerpo */
  .bee-card__body {
    padding: .85rem;
    display: flex;
    flex-direction: column;
    flex: 1;
  }

  .bee-card__name {
    font-size: .95rem;
    font-weight: 700;
    margin-bottom: .3rem;
    line-height: 1.3;
    color: #212529;
  }

  .bee-card__desc {
    font-size: .8rem;
    color: #6c757d;
    margin-bottom: .5rem;
    line-height: 1.45;
    flex: 1;
    display: -webkit-box;
    line-clamp: 2;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .bee-card__detail-btn {
    border: none;
    background: transparent;
    color: #2b6b31;
    font-size: .76rem;
    font-weight: 700;
    padding: 0;
    margin: -.1rem 0 .45rem;
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    cursor: pointer;
    width: fit-content;
  }

  .bee-card__detail-btn:hover {
    color: #245a2a;
    text-decoration: underline;
  }

  .bee-card__price-wrap {
    display: flex;
    align-items: baseline;
    gap: .4rem;
    margin-bottom: .75rem;
  }

  .bee-card__price {
    font-size: 1.1rem;
    font-weight: 800;
    color: #212529;
  }

  .bee-card__price--discount {
    color: #198754;
  }

  .bee-card__price-original {
    font-size: .82rem;
    text-decoration: line-through;
    color: #adb5bd;
  }

  /* Fila cantidad */
  .bee-card__qty-row {
    display: flex;
    align-items: center;
    border: 1.5px solid #dee2e6;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: .5rem;
  }

  .bee-card__qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #f8f9fa;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    color: #495057;
    transition: background var(--bee-transition);
    flex-shrink: 0;
  }

  .bee-card__qty-btn:hover {
    background: #e9ecef;
  }

  .bee-card__qty-input {
    flex: 1;
    border: none;
    text-align: center;
    font-size: .9rem;
    font-weight: 600;
    width: 0;
    min-width: 0;
    outline: none;
    background: transparent;
  }

  .bee-card__add-btn {
    width: 100%;
    padding: .45rem;
    background: var(--bee-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: .85rem;
    font-weight: 600;
    cursor: pointer;
    transition: filter var(--bee-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
  }

  .bee-card__add-btn:hover {
    filter: brightness(1.1);
  }

  .bee-card__agotado-msg {
    text-align: center;
    font-size: .82rem;
    font-weight: 600;
    color: #dc3545;
    padding: .4rem 0;
  }

  @media (max-width: 767.98px) {
    .bee-menu-main .row.g-3 {
      --bs-gutter-x: .85rem;
      --bs-gutter-y: .85rem;
    }

    .bee-card {
      border-radius: 12px;
    }

    .bee-card__img-wrap {
      padding-top: 60%;
    }

    .bee-card__body {
      padding: .72rem;
    }

    .bee-card__desc {
      font-size: .78rem;
      margin-bottom: .42rem;
    }

    .bee-card__qty-btn {
      width: 30px;
      height: 30px;
      font-size: 1rem;
    }

    .bee-card__qty-input {
      font-size: .86rem;
    }

    .btn-add-product {
      font-size: .82rem;
      padding: .4rem .7rem !important;
    }
  }

  /* ---- Responsive ---- */
  @media (max-width: 575px) {
    .bee-menu-topbar {
      top: 70px;
      border-bottom: 0;
      background: transparent;
      backdrop-filter: none;
      box-shadow: none;
    }

    .bee-menu-topbar__inner {
      min-height: 58px;
      gap: .55rem;
      padding: .38rem .55rem;
      justify-content: space-between;
      background: linear-gradient(120deg, #f4faf2 0%, #ffffff 100%);
      border: 1px solid #d8e8d4;
      border-radius: 14px;
      box-shadow: 0 8px 22px rgba(32, 71, 36, 0.12);
    }

    .bee-menu-topbar__chip span {
      display: none;
    }

    .bee-menu-topbar__menu-btn span {
      display: inline !important;
    }

    .bee-menu-topbar__chip {
      padding: .44rem .62rem;
      border-radius: 12px;
      min-height: 42px;
      font-size: .78rem;
      font-weight: 700;
      transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
    }

    .bee-menu-topbar__chip:active {
      transform: scale(0.98);
    }

    .bee-menu-topbar__menu-btn {
      min-width: 122px;
      height: 42px;
      padding: 0 .82rem !important;
      border-radius: 14px !important;
      background: linear-gradient(180deg, #ffffff 0%, #f7fbf8 100%) !important;
      border-color: rgba(43, 107, 49, 0.28) !important;
      color: #14532d !important;
      box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08) !important;
      justify-content: center;
      gap: .4rem;
    }

    .bee-menu-topbar__menu-btn:hover,
    .bee-menu-topbar__menu-btn:focus,
    .bee-menu-topbar__menu-btn:active,
    .bee-menu-topbar__menu-btn.show {
      color: #0f5132 !important;
      background: linear-gradient(180deg, #ffffff 0%, #f2faf5 100%) !important;
      border-color: rgba(43, 107, 49, 0.4) !important;
      transform: translateY(-1px);
      box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12) !important;
    }

    .bee-menu-topbar__menu-btn i {
      font-size: .98rem;
    }

    .bee-menu-topbar__menu-btn.dropdown-toggle::after {
      margin-left: .32rem;
      border-top-color: #14532d;
      vertical-align: .13em;
    }

    .bee-menu-hero {
      padding: 2rem .75rem 1.8rem;
    }

    .bee-menu-hero__logo {
      width: 70px;
      height: 70px;
    }

    .bee-card {
      flex-direction: row;
      min-height: 170px;
    }

    .bee-card__img-wrap {
      width: 40%;
      min-width: 40%;
      padding-top: 0;
      min-height: 100%;
    }

    .bee-card__body {
      width: 60%;
      padding: .62rem;
      gap: .25rem;
    }

    .bee-card__name {
      font-size: .92rem;
      line-height: 1.28;
      margin-bottom: .15rem;
    }

    .bee-card__desc {
      font-size: .76rem;
      line-height: 1.35;
      margin-bottom: .35rem;
    }

    .bee-card__price {
      font-size: 1.02rem;
    }

    .bee-card__price-wrap {
      margin-bottom: .5rem;
      gap: .3rem;
    }

    .bee-card__qty-row {
      margin-bottom: .4rem;
    }

    .bee-card__qty-btn {
      width: 28px;
      height: 28px;
      font-size: .95rem;
    }

    .btn-add-product {
      font-size: .8rem;
      padding: .35rem .6rem !important;
      min-height: 30px;
    }

    .bee-card__badge,
    .bee-card__badge-discount {
      font-size: .68rem;
      padding: .2rem .45rem;
    }
  }

  @media (max-width: 399px) {
    .bee-card__badge {
      top: auto;
      bottom: .6rem;
      left: .6rem;
    }

    .bee-card__badge-discount {
      top: .6rem;
      right: .6rem;
      left: auto;
    }
  }

  /* ---- Mini Cart Drawer ---- */
  .bee-minicart__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.42);
    z-index: 1200;
    backdrop-filter: blur(2px);
  }

  .bee-minicart__overlay.is-open {
    display: block;
  }

  .bee-minicart {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(420px, 96vw);
    background: #fff;
    z-index: 1201;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform .28s cubic-bezier(.4, 0, .2, 1);
    box-shadow: -8px 0 40px rgba(0, 0, 0, .14);
    border-radius: 14px 0 0 14px;
  }

  .bee-minicart.is-open {
    transform: translateX(0);
  }

  .bee-minicart__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid #f1f3f5;
    flex-shrink: 0;
  }

  .bee-minicart__title {
    font-weight: 800;
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    gap: .55rem;
    color: #0f172a;
  }

  .bee-minicart__close {
    background: #f3f4f6;
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1rem;
    color: #374151;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s;
    line-height: 1;
  }

  .bee-minicart__close:hover {
    background: #e5e7eb;
  }

  .bee-minicart__body {
    flex: 1;
    overflow-y: auto;
    padding: .75rem 1.25rem;
    scrollbar-width: thin;
  }

  .bee-minicart__empty {
    text-align: center;
    color: #9ca3af;
    font-size: .9rem;
    padding: 3rem 0;
    line-height: 2;
  }

  .bee-minicart__item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    padding: .85rem 0;
    border-bottom: 1px solid #f1f3f5;
  }

  .bee-minicart__item:last-child {
    border-bottom: none;
  }

  .bee-minicart__item-img {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    object-fit: cover;
    background: #f3f4f6;
    flex-shrink: 0;
  }

  .bee-minicart__item-img-placeholder {
    width: 54px;
    height: 54px;
    border-radius: 10px;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #d1d5db;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .bee-minicart__item-info {
    flex: 1;
    min-width: 0;
  }

  .bee-minicart__item-name {
    font-size: .9rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 .25rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .bee-minicart__item-meta {
    font-size: .78rem;
    color: #6b7280;
  }

  .bee-minicart__item-actions {
    display: flex;
    gap: .4rem;
    margin-top: .45rem;
    flex-wrap: wrap;
  }

  .bee-minicart__action-btn {
    border: 1px solid #dbe1e6;
    background: #fff;
    color: #374151;
    border-radius: 8px;
    font-size: .72rem;
    font-weight: 700;
    padding: .22rem .5rem;
    line-height: 1.2;
    display: inline-flex;
    align-items: center;
    gap: .28rem;
    cursor: pointer;
    transition: all .18s ease;
  }

  .bee-minicart__action-btn:hover {
    background: #f8fafc;
    border-color: #cfd7de;
  }

  .bee-minicart__action-btn:disabled {
    opacity: .65;
    cursor: not-allowed;
  }

  .bee-minicart__action-btn--minus {
    color: #0f5132;
    border-color: #b9dfc8;
    background: #effaf3;
  }

  .bee-minicart__action-btn--minus:hover {
    background: #e6f6ed;
    border-color: #a7d7ba;
  }

  .bee-minicart__action-btn--plus {
    color: #14532d;
    border-color: #b9dfc8;
    background: #eff8ff;
  }

  .bee-minicart__action-btn--plus:hover {
    background: #e4f2ff;
    border-color: #a8cdef;
  }

  .bee-minicart__action-btn--remove {
    color: #842029;
    border-color: #f1c2c7;
    background: #fff5f5;
  }

  .bee-minicart__action-btn--remove:hover {
    background: #ffecef;
    border-color: #ecb0b8;
  }

  .bee-minicart__item-subtotal {
    font-weight: 800;
    font-size: .95rem;
    color: #111827;
    white-space: nowrap;
    flex-shrink: 0;
    align-self: center;
  }

  .bee-minicart__footer {
    border-top: 1px solid #f1f3f5;
    padding: 1rem 1.25rem;
    flex-shrink: 0;
  }

  .bee-minicart__subtotal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: .8rem;
  }

  .bee-minicart__subtotal-label {
    color: #6b7280;
    font-size: .9rem;
    font-weight: 500;
  }

  .bee-minicart__subtotal-value {
    font-weight: 800;
    font-size: 1.1rem;
    color: #111827;
  }

  .bee-minicart__actions {
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }

  .bee-minicart__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    text-decoration: none;
    border-radius: 0.375rem;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
  }

  .bee-minicart__btn--primary {
    background-color: #d88e32;
    color: #ffffff;
  }

  .bee-minicart__btn--primary:hover {
    background-color: #c77d25;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(216, 142, 50, 0.35);
    transform: translateY(-2px);
    text-decoration: none;
  }

  .bee-minicart__btn--secondary {
    background-color: #f3f4f6;
    color: #374151;
    border: 1.5px solid #d1d5db;
  }

  .bee-minicart__btn--secondary:hover {
    background-color: #d88e32;
    color: #ffffff;
    border-color: #d88e32;
    box-shadow: 0 4px 12px rgba(216, 142, 50, 0.35);
    transform: translateY(-2px);
    text-decoration: none;
  }

  /* ---- Product detail modal ---- */
  .bee-product-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 1300;
  }

  .bee-product-modal.is-open {
    display: block;
  }

  .bee-product-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(2px);
  }

  .bee-product-modal__panel {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(560px, 92vw);
    max-height: 88vh;
    overflow-y: auto;
    background: #fff;
    border-radius: 14px;
    padding: 1rem 1rem 1.1rem;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.24);
  }

  .bee-product-modal__close {
    border: none;
    background: #f3f4f6;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    color: #374151;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    float: right;
    margin-bottom: .45rem;
  }

  .bee-product-modal__img-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #f3f4f6;
    margin-bottom: .75rem;
  }

  .bee-product-modal__img-wrap img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
  }

  .bee-product-modal__img-placeholder {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #b7bec8;
    font-size: 2.1rem;
    background: #f3f4f6;
  }

  .bee-product-modal__name {
    font-size: 1.1rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: .45rem;
  }

  .bee-product-modal__meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    margin-bottom: .55rem;
  }

  .bee-product-modal__price {
    display: inline-flex;
    align-items: baseline;
    gap: .45rem;
    font-weight: 800;
    color: #1f2937;
  }

  .bee-product-modal__price-original {
    font-size: .88rem;
    color: #9ca3af;
    text-decoration: line-through;
    font-weight: 600;
  }

  .bee-product-modal__price-current {
    font-size: 1.08rem;
    color: #198754;
  }

  .bee-product-modal__status {
    font-size: .74rem;
    font-weight: 700;
    border-radius: 999px;
    padding: .22rem .58rem;
    border: 1px solid transparent;
  }

  .bee-product-modal__status--in {
    color: #14532d;
    background: #e8f7ec;
    border-color: #b7e2c2;
  }

  .bee-product-modal__status--out {
    color: #842029;
    background: #fdecee;
    border-color: #f5c2c7;
  }

  .bee-product-modal__desc {
    color: #4b5563;
    font-size: .92rem;
    line-height: 1.55;
    margin: 0;
    white-space: pre-line;
  }
