.ccb-sticky-bottom {
  --ccb-dark: #07351f;
  --ccb-deep: #052719;
  --ccb-green: #145a38;
  --ccb-green-soft: #1f6a45;
  --ccb-gold: #f8bd25;
  --ccb-gold-hover: #ffcd38;
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 99990;
  font-family: inherit;
  color: #ffffff;
  transform: translateY(0);
  transition: transform 180ms ease, opacity 180ms ease;
}

.ccb-sticky-bottom.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateY(110%);
}

.ccb-sticky-bottom a,
.ccb-sticky-bottom a:hover,
.ccb-sticky-bottom a:focus {
  text-decoration: none !important;
}

.ccb-sticky-bottom__inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 16px;
  align-items: center;
  width: min(1180px, calc(100% - 24px));
  margin: 0 auto 12px;
  padding: 12px 14px;
  border: 1px solid rgba(248, 189, 37, 0.2);
  border-top: 3px solid #43c879;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(7, 53, 31, 0.98) 0%, rgba(20, 90, 56, 0.98) 100%),
    var(--ccb-dark);
  box-shadow: 0 18px 45px rgba(4, 39, 25, 0.35);
}

.ccb-sticky-bottom__brand {
  display: flex;
  gap: 10px;
  align-items: center;
  min-width: 148px;
}

.ccb-sticky-bottom__brand .ccb-banner-image {
  flex: 0 0 auto;
  height: 70px;
  border-radius: 10px;
  object-fit: contain;
  padding: 4px;
  background: rgba(255, 255, 255, 0.12);
}

.ccb-sticky-bottom__brand-copy {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.ccb-sticky-bottom__label {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--ccb-gold);
  text-transform: uppercase;
}

.ccb-sticky-bottom__label::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ccb-gold);
}

.ccb-sticky-bottom__brand strong {
  font-size: 21px;
  line-height: 1.1;
}

.ccb-sticky-bottom__text {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.45;
}

.ccb-sticky-bottom__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 8px;
  background: linear-gradient(180deg, var(--ccb-gold-hover) 0%, var(--ccb-gold) 100%);
  color: #12351f;
  font-weight: 800;
  text-decoration: none !important;
  white-space: nowrap;
  box-shadow: 0 10px 24px rgba(248, 189, 37, 0.26);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ccb-sticky-bottom__cta:hover,
.ccb-sticky-bottom__cta:focus {
  background: #ffd85a;
  color: #12351f;
  box-shadow: 0 14px 30px rgba(248, 189, 37, 0.34);
  transform: translateY(-2px);
}

.ccb-sticky-bottom__close {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

@media (max-width: 760px) {
  .ccb-sticky-bottom__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    width: calc(100% - 16px);
    margin-bottom: 8px;
    padding: 12px;
  }

  .ccb-sticky-bottom__brand,
  .ccb-sticky-bottom__text {
    grid-column: 1 / -1;
  }

  .ccb-sticky-bottom__brand strong {
    font-size: 19px;
  }

  .ccb-sticky-bottom__text {
    font-size: 14px;
  }

  .ccb-sticky-bottom__cta {
    min-height: 40px;
    padding: 0 14px;
    font-size: 14px;
  }
}
