/* ===== CUSTOM BRAND PAGE - FORM STYLES ===== */

/* Compact Brand Form Styles */
.brand-form-compact {
  max-width: 550px;
}

.brand-form-quick .form-group {
  margin-bottom: 20px;
}

.form-note {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 12px;
  line-height: 1.5;
}

.brand-modal-content {
  max-width: 800px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  background: white;
  border-radius: 16px;
}

.brand-modal-content .form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .brand-modal-content {
    padding: 25px;
    max-height: 95vh;
  }

  .brand-modal-content .form-row {
    grid-template-columns: 1fr;
  }
}

/* Brand Form Container */
.brand-form-container {
  background: white;
  border-radius: 20px;
  padding: 55px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 100px;
  transition: all 0.4s ease;
}

.brand-form-container:hover {
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: translateY(-5px);
}

.form-header-container {
  text-align: center;
  margin-bottom: 45px;
}

.form-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #f1d584);
  padding: 10px 24px;
  border-radius: 25px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.form-badge-text {
  color: white;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.form-header-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  color: #2c2c2c;
  margin-bottom: 15px;
  font-weight: 700;
}

.form-header-desc {
  font-size: 16px;
  color: #777;
  line-height: 1.7;
}

.form-header-divider {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, transparent);
  margin: 30px auto 0;
  border-radius: 3px;
}

/* Form Elements */
.brand-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 0;
}

.brand-form .form-group {
  margin-bottom: 25px;
}

.brand-form .form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2c2c2c;
  margin-bottom: 10px;
  font-family: 'Poppins', sans-serif;
}

.brand-form .form-input,
.brand-form .form-select,
.brand-form .form-textarea {
  width: 100%;
  padding: 16px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  color: #2c2c2c;
  transition: all 0.3s ease;
  background: #fafafa;
}

.brand-form .form-input:focus,
.brand-form .form-select:focus,
.brand-form .form-textarea:focus {
  outline: none;
  border-color: #d4af37;
  background: white;
  box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.12);
  transform: translateY(-2px);
}

.brand-form .form-textarea {
  min-height: 140px;
  resize: vertical;
}

.characteristics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-top: 15px;
}

.characteristic-item {
  display: flex;
  align-items: center;
}

.characteristic-item input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 10px;
  cursor: pointer;
  accent-color: #d4af37;
}

.characteristic-label {
  font-size: 14px;
  color: #555;
  cursor: pointer;
  user-select: none;
}

.submit-btn {
  width: 100%;
  padding: 18px;
  background: linear-gradient(135deg, #722f37, #8b3a47);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  margin-top: 15px;
  box-shadow: 0 6px 20px rgba(114, 47, 55, 0.25);
  position: relative;
  overflow: hidden;
}

.submit-btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(114, 47, 55, 0.35);
  background: linear-gradient(135deg, #8b3a47, #722f37);
}

.submit-btn:hover:before {
  left: 100%;
}

.submit-btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(114, 47, 55, 0.3);
}
