/* Sunlight Art Custom Orders Styles */
.saco-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  background: #ffffff;
  color: #333333;
  font-family: "Arial", sans-serif;
  line-height: 1.6;
}

.saco-page {
  margin-bottom: 60px;
  padding: 40px;
  background: #f8f9fa;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.saco-main-title {
  color: #2c3e50;
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2em;
  font-weight: 300;
}

/* Categories Grid */
.saco-categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.saco-category {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #666;
}

.saco-category h3 {
  color: #444;
  margin-bottom: 15px;
  font-size: 1.3em;
  font-weight: 600;
}

.saco-category ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.saco-category li {
  padding: 5px 0;
  border-bottom: 1px solid #f0f0f0;
}

.saco-category li:last-child {
  border-bottom: none;
}

/* Gallery */
.saco-gallery {
  text-align: center;
}

.saco-gallery h2 {
  color: #444;
  margin-bottom: 30px;
  font-weight: 400;
}

.saco-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.saco-gallery-item {
  background: #e9ecef;
  border-radius: 8px;
  padding: 20px;
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px dashed #ccc;
}

.saco-image-placeholder {
  color: #666;
  font-style: italic;
  text-align: center;
}

/* Pricing Table */
.saco-pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.saco-pricing-table th,
.saco-pricing-table td {
  padding: 15px;
  text-align: left;
  border-bottom: 1px solid #f0f0f0;
}

.saco-pricing-table th {
  background: #444;
  color: white;
  font-weight: 600;
}

.saco-pricing-table tr:hover {
  background: #f8f9fa;
}

/* Order Details */
.saco-order-details {
  background: white;
  padding: 25px;
  border-radius: 8px;
  margin-top: 30px;
  border-left: 4px solid #666;
}

.saco-order-details h3 {
  color: #444;
  margin-bottom: 20px;
  font-weight: 600;
}

.saco-order-details ul {
  list-style: none;
  padding: 0;
}

.saco-order-details li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 20px;
}

.saco-order-details li:before {
  content: "•";
  color: #666;
  position: absolute;
  left: 0;
}

/* Order Form */
.saco-order-form {
  background: white;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.saco-form-section {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
}

.saco-form-section:last-child {
  border-bottom: none;
}

.saco-form-section h3 {
  color: #444;
  margin-bottom: 20px;
  font-weight: 600;
}

.saco-checkbox-group {
  display: grid;
  gap: 15px;
}

.saco-checkbox-group label {
  display: flex;
  align-items: center;
  padding: 12px;
  background: #f8f9fa;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
}

.saco-checkbox-group label:hover {
  background: #e9ecef;
}

.saco-checkbox-group input[type="checkbox"] {
  margin-right: 10px;
}

.saco-form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}

.saco-form-row input {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: border-color 0.3s;
}

.saco-form-row input:focus {
  outline: none;
  border-color: #666;
}

.saco-panel-details {
  display: grid;
  gap: 20px;
}

.saco-panel-item {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  gap: 15px;
  align-items: end;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 6px;
}

.saco-size-inputs {
  display: grid;
  grid-template-columns: auto 1fr 1fr;
  gap: 10px;
  align-items: center;
}

.saco-size-inputs span {
  color: #666;
  font-size: 14px;
}

.saco-order-form textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  resize: vertical;
  min-height: 100px;
}

.saco-order-form input[type="file"] {
  width: 100%;
  padding: 12px;
  border: 2px dashed #ddd;
  border-radius: 6px;
  background: #f8f9fa;
}

.saco-file-info {
  color: #666;
  font-size: 12px;
  margin-top: 5px;
  font-style: italic;
}

.saco-submit-btn {
  background: #444;
  color: white;
  padding: 15px 40px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.saco-submit-btn:hover {
  background: #333;
}

.saco-message {
  padding: 15px;
  border-radius: 6px;
  margin-top: 20px;
  display: none;
}

.saco-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
}

.saco-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .saco-container {
    padding: 10px;
  }

  .saco-page {
    padding: 20px;
  }

  .saco-categories-grid {
    grid-template-columns: 1fr;
  }

  .saco-form-row {
    grid-template-columns: 1fr;
  }

  .saco-panel-item {
    grid-template-columns: 1fr;
  }

  .saco-gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }

  .saco-pricing-table {
    font-size: 14px;
  }

  .saco-pricing-table th,
  .saco-pricing-table td {
    padding: 10px 5px;
  }
}
