/* OfertasEnLinea.css — Modal popup */
.ofertas-overlay {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, .85);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 16px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.ofertas-modal {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 16px;
  padding: 28px 24px 24px;
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.ofertas-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: none;
  background: #1e293b;
  color: #94a3b8;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s, color .15s;
}
.ofertas-modal-close:hover {
  background: #334155;
  color: #e2e8f0;
}
.ofertas-header {
  margin-bottom: 24px;
  padding-right: 32px;
}
.ofertas-header h2 {
  font-size: 22px;
  font-weight: 700;
  color: #e2e8f0;
  margin: 0 0 4px;
}
.ofertas-sub {
  font-size: 13px;
  color: #64748b;
  margin: 0;
}
.ofertas-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ofertas-card {
  background: #1e293b;
  border-radius: 12px;
  padding: 12px 12px 12px 52px;
  position: relative;
  border: 1px solid #334155;
}
.ofertas-card-icon {
  font-size: 22px;
  position: absolute;
  top: 12px;
  left: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0f172a;
  border-radius: 8px;
}
.ofertas-card-body {
  min-width: 0;
}
.ofertas-card-body label {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 2px;
}
.ofertas-card-body small {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 10px;
  line-height: 1.4;
}
.ofertas-card-body input[type="number"],
.ofertas-card-body input[type="tel"],
.ofertas-suboption input[type="number"] {
  width: 100%;
  padding: 10px 12px;
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 8px;
  color: #e2e8f0;
  font-size: 15px;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
}
.ofertas-card-body input:focus,
.ofertas-suboption input[type="number"]:focus {
  border-color: #3b82f6;
}
.ofertas-input-group {
  display: flex;
  align-items: center;
  gap: 0;
}
.ofertas-input-group input {
  border-radius: 0 !important;
  text-align: center;
  flex: 1;
}
.ofertas-currency {
  padding: 10px 14px;
  background: #0f172a;
  border: 1px solid #334155;
  color: #64748b;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}
.ofertas-currency:first-child {
  border-radius: 8px 0 0 8px;
  border-right: none;
}
.ofertas-currency:last-child {
  border-radius: 0 8px 8px 0;
  border-left: none;
}

/* Toggle switch */
.ofertas-toggle {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
  margin-top: 6px;
  cursor: pointer;
}
.ofertas-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.ofertas-toggle-slider {
  position: absolute;
  inset: 0;
  background: #334155;
  border-radius: 26px;
  transition: .3s;
}
.ofertas-toggle-slider::before {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  left: 3px;
  bottom: 3px;
  background: #e2e8f0;
  border-radius: 50%;
  transition: .3s;
}
.ofertas-toggle input:checked + .ofertas-toggle-slider {
  background: #22c55e;
}
.ofertas-toggle input:checked + .ofertas-toggle-slider::before {
  transform: translateX(22px);
}

.ofertas-footer {
  margin-top: 24px;
  text-align: center;
}
.ofertas-dirty {
  display: none;
  font-size: 13px;
  color: #fbbf24;
  margin-bottom: 10px;
  font-weight: 500;
}
.ofertas-btn-save {
  background: #3b82f6;
  color: #fff;
  border: none;
  border-radius: 10px;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
  width: 100%;
}
.ofertas-btn-save:hover {
  background: #2563eb;
}
.ofertas-btn-save:active {
  background: #1d4ed8;
}

/* Info summary box */
.ofertas-info-box {
  background: #0f172a;
  border: 1px solid #334155;
  border-radius: 10px;
  padding: 10px 14px;
  margin-top: 8px;
  font-size: 13px;
  color: #94a3b8;
  line-height: 1.5;
}
.ofertas-info-box strong {
  color: #e2e8f0;
}

.ofertas-mensajeria-wrapper {
  background: #1e293b;
  border: 1px solid #334155;
  border-radius: 12px;
}

/* Sub-options inside mensajería */
.ofertas-suboption {
  padding: 12px;
  background: #162032;
  border-radius: 10px;
  border: 1px solid #293548;
}
.ofertas-suboption + .ofertas-suboption {
  margin-top: 8px;
}
.ofertas-suboption-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}
.ofertas-suboption-header label {
  font-size: 14px;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0;
}
.ofertas-suboption small {
  display: block;
  font-size: 12px;
  color: #64748b;
  margin-bottom: 8px;
}
.ofertas-suboption .ofertas-toggle {
  margin-top: 0;
}
