/**
 * Aroma Template Widget styles.
 *
 * @package AromaTemplateWidget
 */

/* Widget container */
.aroma-template-widget {
  margin: 20px 0;
  padding: 0;
  box-sizing: border-box;
}

/* Error messages */
.aroma-template-widget-error {
  padding: 15px;
  background-color: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  border-radius: 4px;
  margin-bottom: 20px;
}

/* Debug info */
.aroma-template-widget-debug {
  margin-bottom: 20px;
  padding: 15px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

.aroma-template-widget-debug h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: bold;
}

.aroma-template-widget-debug pre {
  margin: 0;
  padding: 10px;
  background-color: #e9ecef;
  border-radius: 4px;
  overflow: auto;
  font-family: monospace;
  font-size: 14px;
}

/* Default template styles */
.aroma-template-default {
  display: flex;
  flex-direction: column;
  border: 1px solid #dee2e6;
  border-radius: 4px;
  overflow: hidden;
}

.aroma-template-default-header {
  padding: 15px;
  background-color: #f8f9fa;
  border-bottom: 1px solid #dee2e6;
}

.aroma-template-default-title {
  margin: 0 0 10px 0;
  font-size: 24px;
  font-weight: bold;
}

.aroma-template-default-aroma {
  display: inline-block;
  padding: 5px 10px;
  background-color: #e9ecef;
  border-radius: 4px;
  font-size: 14px;
}

.aroma-template-default-aroma .aroma-label {
  font-weight: bold;
  margin-right: 5px;
}

.aroma-template-default-content {
  display: flex;
  flex-wrap: wrap;
  padding: 15px;
}

.aroma-template-default-image {
  flex: 0 0 40%;
  margin-right: 20px;
  margin-bottom: 15px;
}

.aroma-template-default-image img {
  max-width: 100%;
  height: auto;
  border-radius: 4px;
}

.aroma-template-default-info {
  flex: 1 1 50%;
}

.aroma-template-default-price {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  color: #28a745;
}

.aroma-template-default-description {
  margin-bottom: 20px;
  line-height: 1.5;
}

.aroma-template-default-actions {
  margin-bottom: 15px;
}

.aroma-template-default-actions .button {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 4px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.aroma-template-default-actions .button:hover {
  background-color: #0069d9;
}

.aroma-template-default-footer {
  padding: 15px;
  background-color: #f8f9fa;
  border-top: 1px solid #dee2e6;
  font-size: 14px;
  color: #6c757d;
}

.aroma-template-default-notice {
  margin: 0;
}

/* Admin settings page */
.aroma-template-widget-settings {
  margin-top: 20px;
}

.aroma-template-widget-help {
  margin-top: 30px;
  padding: 20px;
  background-color: #f8f9fa;
  border: 1px solid #dee2e6;
  border-radius: 4px;
}

.aroma-template-widget-help h2 {
  margin-top: 0;
}

.aroma-template-widget-help ol,
.aroma-template-widget-help ul {
  margin-left: 20px;
}

.aroma-template-widget-help li {
  margin-bottom: 10px;
}

/* Responsive styles */
@media (max-width: 768px) {
  .aroma-template-default-content {
    flex-direction: column;
  }

  .aroma-template-default-image {
    flex: 0 0 100%;
    margin-right: 0;
  }
}
