.container {
  max-width: 1200px;
  margin: 0 auto;
}

.subtitle {
  margin-bottom: 15px;
}

.store-header {
  font-size: 9pt;
}

.region-header {
  font-size: 7pt;
}

.item {
  font-size: 7pt;
}

.item-count {
  border-bottom: 1px solid #999;
}

.item-note {
  border-bottom: 1px solid #999;
}

.back-link {
  display: inline-block;
  margin-top: 10px;
  color: #ee5a6f;
  text-decoration: none;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s ease;
}

.back-link:hover {
  color: #d63447;
  transform: translateX(-3px);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 30px;
  margin-bottom: 40px;
}

.template-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.template-header {
  margin-bottom: 20px;
}

.template-title {
  font-size: 1.5em;
  font-weight: 700;
  color: #2c3e50;
  margin-bottom: 8px;
}

.template-description {
  color: #7f8c8d;
  font-size: 0.95em;
  margin-bottom: 15px;
}

.download-btn {
  background: linear-gradient(135deg, #ff6b6b, #ee5a6f);
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 0.9em;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Arial', sans-serif;
  font-weight: 600;
  cursor: pointer;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(238, 90, 111, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.download-btn:hover {
  background: linear-gradient(135deg, #ee5a6f, #d63447);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(238, 90, 111, 0.5);
}

.csv-preview {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 8px;
  padding: 15px;
  margin: 15px 0;
  font-family: 'Courier New', monospace;
  font-size: 0.85em;
  overflow-x: auto;
  max-height: 200px;
  overflow-y: auto;
}

.csv-preview pre {
  margin: 0;
  white-space: pre;
  color: #495057;
}

.list-preview {
  margin-top: 20px;
  padding: 20px;
  background: white;
  border-radius: 8px;
  border: 1px solid #e9ecef;
  font-size: 7pt;
  columns: 3;
  column-gap: 12px;
  column-rule: 1px solid #ddd;
}
