#cta-bar-c {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #212121;
  padding: 1rem;
  z-index: 9999;
  
  display: grid;
  grid-template-columns: 1fr 1fr; 
  gap: 1rem;
  text-align: center;
  border-top: 2px solid #b28504;
  
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

#cta-bar-c.show{
    opacity:1;
    pointer-events:auto;
}
#cta-bar-c a{
    text-decoration:none;
}
#cta-bar-c a.cta-btn-c:hover {
    color: #ffffff;
}
.cta-btn-c {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  min-width: 120px;
  margin: 0 auto;             
}

.orange-btn-c { background-color: #febb00; }
.green-btn-c  { background-color: #16a34a; }

/* Mobile: stack in one column */
@media (max-width: 768px) {
  #cta-bar-c {
    grid-template-columns: 1fr;  
  }
}
