
.cf-section[aria-expanded="false"] {
  display: none;
}

/* Temporary styles */

/* Form Container */
.cf-form {
  margin: 40px auto;
  padding: 30px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

/* Field Styling */
.cf-field {
  margin-bottom: 24px;
}

.cf-field label {
  display: block;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  font-size: 14px;
}

.cf-field--description {
  margin: 4px 0 8px 0;
  font-size: 13px;
  color: #666;
  font-style: italic;
}

/* Input Styling */
.cf-field input[type="text"],
.cf-field input[type="email"],
.cf-field input[type="number"],
.cf-field select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.cf-field input:focus,
.cf-field select:focus {
  outline: none;
  border-color: #4CAF50;
  box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.cf-field input::placeholder {
  color: #999;
}

/* Field Group */
.cf-field-group {
  padding: 20px;
  background: #f9f9f9;
  border-radius: 6px;
  margin-bottom: 24px;
}

.cf-field-group > label {
  display: block;
  font-weight: 600;
  margin-bottom: 16px;
  color: #555;
  font-size: 15px;
}

.cf-field-group .cf-field {
  background: #fff;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 12px;
}

.cf-field-group .cf-field:last-child {
  margin-bottom: 0;
}

/* Special Considerations */
.special-consideration {
  border-left: 4px solid #2196F3;
  padding-left: 16px;
}

.christmas-theme {
  border-left-color: #d32f2f;
}

/* Shopping Cart */
.cf-shopping-cart {
  margin: 24px 0;
  padding: 20px;
  background: #f5f5f5;
  border-radius: 6px;
}

.cf-cart table {
  width: 100%;
  border-collapse: collapse;
}

.cf-cart thead th {
  text-align: left;
  padding: 12px;
  border-bottom: 2px solid #ddd;
  font-weight: 600;
  color: #555;
  font-size: 14px;
}

.cf-cart tbody {
  font-size: 14px;
}

/* Sections */
.cf-sections {
  margin: 24px 0;
  padding: 20px;
  background: #fafafa;
  border-radius: 6px;
}

.cf-sections-label {
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
  font-size: 15px;
}

.cf-section-toggles {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.cf-section-toggle {
  padding: 8px 16px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: all 0.2s;
}

.cf-section-toggle:hover {
  background: #e3f2fd;
  border-color: #2196F3;
}

.cf-section-toggle:active {
  transform: translateY(1px);
}

.cf-section {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  margin-bottom: 12px;
  border: 1px solid #e0e0e0;
}

.cf-section[aria-expanded="false"] {
  display: none;
}

.cf-section-label {
  font-weight: 600;
  margin-bottom: 16px;
  color: #555;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  padding-bottom: 8px;
}

/* Submit Button */
.cf-submit {
  width: 100%;
  padding: 14px 24px;
  background: #4CAF50;
  color: white;
  border: none;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 24px;
}

.cf-submit:hover {
  background: #45a049;
}

.cf-submit:active {
  transform: translateY(1px);
}

/* Select Dropdown */
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  appearance: none;
  padding-right: 36px;
}

/* Responsive */
@media (max-width: 640px) {
  .cf-form {
    margin: 20px;
    padding: 20px;
  }
  
  .cf-section-toggles {
    flex-direction: column;
  }
  
  .cf-section-toggle {
    width: 100%;
  }
}
