/* Wrapper */
.bmcpc-ddn { width: 100%; }

/* ========== Desktop Bar (default hidden; show on >=768px) ========== */
.bmcpc-ddn__bar { display: none; width: 100%; background: #357369; border-radius: 32px;}
.bmcpc-ddn__bar-inner{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 64px;
  padding: 26px 24px;
}

.bmcpc-ddn__bar-item{
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  font-size: 24px; 
  white-space: nowrap;
}

.bmcpc-ddn__bar-item.is-active{
  color: #deb407;
}

.bmcpc-ddn__bar-item.is-active .bmcpc-ddn__bar-text{
  display: inline-block;
  padding-bottom: 6px;
  border-bottom: 6px solid #deb407;
}

.bmcpc-ddn__bar-item:hover{
  opacity: .9;
}

/* ========== Mobile Dropdown (default show; hide on >=768px) ========== */
.bmcpc-ddn__dropdown{
  position: relative;
  width: 100%;
}

.bmcpc-ddn__select {
  width: 100%;
  background: #357369;
  color: #ffffff;
  border: 0;
  border-radius: 9999px;
  padding: 18px 56px 18px 24px;
  font-weight: 600;
  line-height: 1.2;

  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  cursor: pointer;
}

.bmcpc-ddn__select:focus {
  outline: 2px solid rgba(255,255,255,0.65);
  outline-offset: 2px;
}

.bmcpc-ddn__select option { color: #000; }

.bmcpc-ddn__chevron {
  position: absolute;
  right: 22px;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  pointer-events: none;
}
.bmcpc-ddn__chevron::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

/* Breakpoint */
@media (min-width: 768px) {
  .bmcpc-ddn__bar { display: block; }
  .bmcpc-ddn__dropdown { display: none; }
}