.vc-dock {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;
  font-family: "Segoe UI", Tahoma, Arial, sans-serif;
  line-height: 1.2;
}

.vc-dock * {
  box-sizing: border-box;
}

.vc-dock__toggle {
  width: 58px;
  height: 58px;
  border: 0;
  border-radius: 50%;
  background: #9a6512;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(20, 11, 3, 0.25);
  position: relative;
}

.vc-dock__toggle:hover {
  background: #80520b;
}

.vc-dock__toggle-icon {
  display: inline-block;
  font-size: 15px;
  letter-spacing: 1px;
}

.vc-dock__badge {
  position: absolute;
  right: -3px;
  top: -5px;
  min-width: 21px;
  height: 21px;
  padding: 0 5px;
  border-radius: 10px;
  background: #f4c542;
  color: #2d1c05;
  font-size: 12px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #fff;
}

.vc-dock__panel {
  width: min(320px, calc(100vw - 24px));
  position: absolute;
  right: 0;
  bottom: 72px;
  background: #fff;
  border: 1px solid #e6dac8;
  box-shadow: 0 18px 42px rgba(21, 12, 4, 0.18);
  opacity: 0;
  transform: translateY(8px) scale(0.98);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.vc-dock.is-open .vc-dock__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: auto;
}

.vc-dock__header {
  background: #9a6512;
  color: #fff;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.vc-dock__title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.vc-dock__selected {
  font-size: 12px;
  opacity: 0.95;
}

.vc-dock__quick-links {
  display: flex;
  gap: 8px;
  padding: 10px 14px;
  border-bottom: 1px solid #efe7db;
}

.vc-dock__chip {
  border: 1px solid #ddc9ac;
  background: #fff8ee;
  color: #5f4120;
  border-radius: 999px;
  padding: 5px 10px;
  font-size: 12px;
  cursor: pointer;
}

.vc-dock__items {
  padding: 0 0 4px 0;
}

.vc-dock__item {
  width: 100%;
  border: 0;
  border-top: 1px solid #efe7db;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  color: #5a3b1b;
  cursor: pointer;
  text-align: left;
}

.vc-dock__item:first-child {
  border-top: 0;
}

.vc-dock__item:hover {
  background: #fdf8f1;
}

.vc-dock__item-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.vc-dock__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #7e6648;
  display: inline-block;
}

.vc-dock__dot--beer { background: #c79515; }
.vc-dock__dot--whiskey { background: #6a4f1d; }
.vc-dock__dot--wine { background: #7d2b3f; }
.vc-dock__dot--cocktail { background: #417d57; }
.vc-dock__dot--rum { background: #74492b; }

.vc-dock__label {
  font-size: 18px;
}

.vc-dock__count {
  font-size: 12px;
  color: #8e6f4c;
}

.vc-dock__actions {
  display: flex;
  gap: 10px;
  padding: 14px;
  border-top: 1px solid #efe7db;
}

.vc-dock__btn {
  flex: 1;
  padding: 11px 12px;
  border: 1px solid #d1b38a;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}

.vc-dock__btn--light {
  background: #fff;
  color: #5b3d1d;
}

.vc-dock__btn--solid {
  background: #9a6512;
  color: #fff;
  border-color: #9a6512;
}

@media (max-width: 760px) {
  .vc-dock {
    right: 12px;
    bottom: 12px;
  }

  .vc-dock__panel {
    width: min(312px, calc(100vw - 20px));
  }

  .vc-dock__title {
    font-size: 21px;
  }

  .vc-dock__label {
    font-size: 16px;
  }
}
