.hero {
  margin-top: 120px;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
  padding: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.text-block {
  width: 60%;
  animation: fadeIn 0.6s ease;
}

.text-block h1 {
  font-size: 40px;
  margin-bottom: 14px;
  line-height: 1.05;
  color: var(--text-color);
}

.text-block p {
  color: var(--text-color);
  opacity: 0.9;
  font-size: 18px;
  margin-bottom: 20px;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.actions .primary {
  background: var(--accent-color);
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  box-shadow: 0 6px 18px rgba(13, 13, 255, 0.08);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.actions .primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

.preview-block {
  width: 35%;
  display: flex;
  justify-content: center;
}

.shoe-preview-card {
  background: var(--card-bg);
  border-radius: 14px;
  padding: 20px;
  box-shadow: 0 12px 40px var(--shadow-color);
  text-align: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid var(--border-color);
}

.shoe-preview-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 45px var(--shadow-color);
}

.shoe-preview-image {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  background: var(--input-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.shoe-preview-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.shoe-preview-card:hover .shoe-preview-image img {
  transform: scale(1.05);
}

.shoe-preview-image.placeholder {
  background: linear-gradient(135deg, var(--input-bg), var(--border-color));
  border: 2px dashed var(--border-color);
}

.shoe-preview-info h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
  color: var(--text-color);
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.shoe-preview-info p {
  color: var(--text-color);
  opacity: 0.8;
  font-size: 14px;
  margin-bottom: 15px;
  transition: color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Исправление для текста "Загружаем обувь..." */
.shoe-preview p {
  color: var(--text-color) !important;
  opacity: 0.7;
}

/* Адаптация для разных тем */
[data-theme="dark"] .text-block p {
  color: #e2e8f0;
  opacity: 0.9;
}

[data-theme="soft"] .text-block p {
  color: #2d3748;
  opacity: 0.9;
}

[data-theme="dark"] .shoe-preview-info h3,
[data-theme="dark"] .shoe-preview-info p {
  color: #e2e8f0;
}

[data-theme="soft"] .shoe-preview-info h3,
[data-theme="soft"] .shoe-preview-info p {
  color: #2d3748;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    gap: 20px;
    padding: 24px;
  }
  .text-block {
    width: 100%;
  }
  .preview-block {
    width: 100%;
    justify-content: center;
  }
  .container {
    margin-top: 220px;
  }
  .shoe-preview-image {
    height: 180px;
  }
  .shoe-preview-info h3 {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .shoe-preview-card {
    padding: 15px;
  }
  .shoe-preview-image {
    height: 150px;
  }
}