/* ═══════════════════════════════════════════════════════ */
/* CUSTOM PRESS-ON ORDER SECTION */
/* ═══════════════════════════════════════════════════════ */

.custom-order-section {
  padding: 4rem 0 3rem;
}
.custom-order-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.custom-order-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.custom-order-badge {
  display: inline-block;
  padding: 6px 18px;
  background: linear-gradient(135deg, #4a4e84 0%, #202240 100%);
  color: #fff;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 1rem;
}

/* Features Grid */
.custom-order-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  .custom-order-features { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .custom-order-features { grid-template-columns: 1fr; }
}
.custom-feature {
  text-align: center;
  padding: 1.5rem 1rem;
  background: #f8f8ff;
  border-radius: 12px;
  border: 1px solid #e6e9ef;
  transition: all 0.3s;
}
.custom-feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(74,78,132,0.1);
}
.custom-feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #4a4e84 0%, #202240 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin: 0 auto 0.75rem;
}
.custom-feature h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #202240;
  margin-bottom: 0.4rem;
}
.custom-feature p {
  font-size: 0.8rem;
  color: #6b7280;
  line-height: 1.4;
  margin: 0;
}

/* Form */
.custom-order-form-wrap {
  background: #fff;
  border: 1px solid #e6e9ef;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}
.custom-form-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #202240;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.custom-form-title i { color: #4a4e84; }

.custom-order-form .co-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (max-width: 576px) {
  .custom-order-form .co-form-row { grid-template-columns: 1fr; }
}
.co-form-field {
  margin-bottom: 1rem;
}
.co-form-field.full {
  grid-column: 1 / -1;
}
.co-form-field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #4a4e84;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}
.co-form-field input,
.co-form-field select,
.co-form-field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1.5px solid #e6e9ef;
  border-radius: 8px;
  font-size: 0.9rem;
  color: #202240;
  background: #fafbfc;
  font-family: 'Roboto', sans-serif;
  transition: all 0.3s;
}
.co-form-field input:focus,
.co-form-field select:focus,
.co-form-field textarea:focus {
  border-color: #4a4e84;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(74,78,132,0.1);
  outline: none;
}
.co-form-field textarea {
  resize: vertical;
  min-height: 80px;
}

/* Upload */
.co-custom-upload {
  border: 2px dashed #c5c5e0;
  border-radius: 12px;
  padding: 2rem 1rem;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  background: #fafbfc;
}
.co-custom-upload:hover {
  border-color: #4a4e84;
  background: #f0f1fb;
}
.co-custom-upload i {
  font-size: 2rem;
  color: #a5a5c4;
  margin-bottom: 0.5rem;
  display: block;
}
.co-custom-upload p {
  font-size: 0.85rem;
  color: #4a4e84;
  font-weight: 600;
  margin: 0 0 0.25rem;
}
.co-custom-upload span {
  font-size: 0.75rem;
  color: #9ca3af;
}
.co-custom-upload img {
  display: none;
  max-width: 100%;
  max-height: 150px;
  border-radius: 8px;
  margin-top: 0.75rem;
}

/* Submit Button */
.co-custom-submit {
  width: 100%;
  padding: 0.85rem;
  background: linear-gradient(135deg, #4a4e84 0%, #202240 100%);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.co-custom-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(74,78,132,0.3);
}
.co-custom-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
.co-form-divider {
  text-align: center;
  margin: 1rem 0 0.5rem;
  position: relative;
}
.co-form-divider span {
  background: #f8f9fe;
  padding: 0 12px;
  color: #4a4e84;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}
.co-form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: #e6e9ef;
}

/* Success */
.co-custom-success {
  text-align: center;
  padding: 2rem 1rem;
}
.co-custom-success i {
  font-size: 3rem;
  color: #22c55e;
  margin-bottom: 1rem;
}
.co-custom-success h3 {
  font-size: 1.2rem;
  color: #202240;
  margin-bottom: 0.5rem;
}
.co-custom-success p {
  font-size: 0.9rem;
  color: #6b7280;
  line-height: 1.5;
}
