/* ═══════════ COLIS PAGE — Additional Styles ═══════════ */
/* These extend the base styles.css — no overrides of the core design */

.cl-urgency-bar {
  background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
  color: #fff; text-align: center; padding: 10px 16px;
  font-size: 13px; font-weight: 600;
}

/* Package Cards */
.cl-pkg-card { position: relative; }
.cl-pkg-card:hover { border-color: var(--accent); }
.cl-popular { border: 2px solid var(--accent) !important; box-shadow: 0 0 30px rgba(255,94,0,.1); }
.cl-popular-tag {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), #ff8c00); color: #fff;
  padding: 5px 20px; border-radius: 0 0 10px 10px;
  font-size: 11px; font-weight: 800; z-index: 2; letter-spacing: .5px;
}

/* Price Block */
.cl-price-block {
  background: var(--accent-light); border: 1px solid rgba(255,94,0,.15);
  border-radius: var(--radius); padding: 14px; margin: 12px 0; text-align: center;
}
.cl-old-price { display: block; font-size: 13px; color: var(--danger); }
.cl-price { display: block; font-size: 34px; font-weight: 900; color: var(--accent); margin: 4px 0; }
.cl-save { display: block; font-size: 12px; color: var(--success); font-weight: 700; }

/* Contents List */
.cl-contents { margin-bottom: 16px; }
.cl-contents small { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; }
.cl-contents ul { list-style: none; margin-top: 6px; }
.cl-contents li { font-size: 13px; color: var(--text-secondary); padding: 3px 0; }

/* Sold indicator */
.cl-sold { text-align: center; margin-top: 10px; font-size: 12px; color: var(--success); font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 6px; }
.cl-pulse { width: 8px; height: 8px; border-radius: 50%; background: var(--success); animation: clPulse 1.5s infinite; }
@keyframes clPulse { 0%,100% { opacity:1 } 50% { opacity:.3 } }

/* FAQ */
.cl-faq-list { display: flex; flex-direction: column; gap: 8px; }
.cl-faq {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: var(--transition);
}
.cl-faq:hover { border-color: var(--primary); }
.cl-faq-q {
  padding: 16px 20px; font-size: 15px; font-weight: 600; color: var(--text);
  display: flex; justify-content: space-between; align-items: center;
}
.cl-faq-q::after { content: '+'; font-size: 18px; color: var(--text-muted); transition: .3s; }
.cl-faq.open .cl-faq-q::after { content: '−'; color: var(--primary); }
.cl-faq-a {
  max-height: 0; overflow: hidden; transition: max-height .3s ease, padding .3s ease;
  padding: 0 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.7;
}
.cl-faq.open .cl-faq-a { max-height: 200px; padding: 0 20px 16px; }

/* Live Feed Items */
.cl-feed-item {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 8px; padding: 10px 14px; font-size: 13px;
  animation: clFeedIn .5s ease;
}
@keyframes clFeedIn { from { opacity:0; transform:translateY(-8px) } to { opacity:1; transform:translateY(0) } }

/* Checkout Modal */
.cl-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.6); backdrop-filter: blur(6px);
  z-index: 1000; display: none; justify-content: center; align-items: flex-start;
  padding: 24px; overflow-y: auto;
}
.cl-modal-overlay.open { display: flex; }
.cl-modal-box {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); max-width: 520px; width: 100%;
  margin: 40px auto; position: relative; padding: 28px;
  box-shadow: var(--shadow-lg);
}
.cl-modal-close {
  position: absolute; top: 12px; right: 12px; background: none;
  border: none; color: var(--text-muted); font-size: 18px;
  width: 32px; height: 32px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer;
}
.cl-modal-close:hover { background: var(--bg); color: var(--text); }

/* Progress Steps */
.cl-progress { display: flex; justify-content: center; gap: 8px; margin-bottom: 24px; }
.cl-step { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--text-muted); font-weight: 600; }
.cl-step span {
  width: 26px; height: 26px; border-radius: 50%; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800;
}
.cl-step.active { color: var(--primary); }
.cl-step.active span { background: var(--primary); color: #fff; }
.cl-step.done { color: var(--success); }
.cl-step.done span { background: var(--success); color: #fff; }

/* Toast */
#toast.show { transform: translateX(-50%) translateY(0) !important; opacity: 1 !important; }

/* Form rows responsiveness */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.form-row-plz {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 12px;
}

/* Responsive */
@media (max-width: 1024px) {
  .contests-grid { grid-template-columns: 1fr !important; }
}
@media (max-width: 768px) {
  .about-extra { grid-template-columns: 1fr !important; }
  .cl-modal-box { margin: 20px auto; padding: 20px; width: calc(100% - 40px); }
}
@media (max-width: 480px) {
  .cl-modal-overlay {
    padding: 10px;
  }
  .cl-modal-box {
    margin: 10px auto;
    padding: 16px;
    border-radius: var(--radius);
    width: calc(100% - 20px);
  }
  .cl-progress {
    gap: 16px;
  }
  /* Hide the text labels for steps on mobile, only show circled numbers */
  .cl-step {
    font-size: 0;
  }
  .cl-step span {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
  .form-row-2col, .form-row-plz {
    grid-template-columns: 1fr;
    gap: 0;
  }
}
