.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__image-container {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 22, 18, 0.4), rgba(26, 22, 18, 0.6));
}

.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-background);
  max-width: 800px;
}

.hero__title {
  font-size: var(--font-size-4xl);
  color: var(--color-background);
  margin-bottom: var(--space-6);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero__subtitle {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-8);
  color: var(--color-gray-100);
}

.hero__cta {
  font-size: var(--font-size-lg);
  padding: var(--space-4) var(--space-8);
}

@media (min-width: 768px) {
  .hero__title {
    font-size: var(--font-size-5xl);
  }
}

.section {
  padding: var(--space-16) 0;
}

.section--alt {
  background-color: var(--color-gray-100);
}

.section--dark {
  background-color: var(--color-gray-900);
  color: var(--color-gray-100);
}

.section--dark .section__title {
  color: var(--color-background);
}

.section--gold {
  background-color: var(--color-accent);
  color: var(--color-gray-900);
}

.section--gold .section__title {
  color: var(--color-gray-900);
}

.section--gray {
  background-color: var(--color-gray-200);
}

.section__header {
  margin-bottom: var(--space-10);
}

.section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.section__title {
  margin-bottom: var(--space-4);
}

.section__title--center {
  text-align: center;
}

.section__subtitle {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.section__text {
  max-width: 65ch;
  margin-bottom: var(--space-6);
}

.section__lead {
  font-size: var(--font-size-xl);
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--space-6);
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
  color: white;
}

.text-center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.split-layout {
  display: grid;
  gap: var(--space-10);
  align-items: center;
}

.split-layout__image img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .split-layout {
    grid-template-columns: 1fr 1fr;
  }
  
  .split-layout--reverse .split-layout__content {
    order: 2;
  }
}

.categories__grid {
  display: grid;
  gap: var(--space-8);
}

.category-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
}

.category-card__image {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

.category-card__content {
  padding: var(--space-6);
}

.category-card__title {
  font-size: var(--font-size-xl);
  margin-bottom: var(--space-3);
}

.category-card__text {
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
}

.category-card__link {
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.categories__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
  margin-top: var(--space-6);
}

.category-link {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  background-color: var(--color-gray-100);
  border: 1px solid var(--color-gray-300);
  border-radius: var(--radius-full);
  color: var(--color-text);
  font-size: var(--font-size-sm);
  transition: all var(--transition-base);
}

.category-link:hover {
  background-color: var(--color-primary);
  color: var(--color-background);
  border-color: var(--color-primary);
}

.bestsellers__featured {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.bestsellers__image {
  width: 100%;
  height: auto;
  display: block;
}

.bestsellers__cta {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
}

.feature-box {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: var(--space-8);
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-gray-200);
}

.testimonials__grid {
  display: grid;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.testimonial {
  background-color: var(--color-surface);
  padding: var(--space-6);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow-sm);
}

.testimonial__text {
  font-family: var(--font-family-heading);
  font-size: var(--font-size-lg);
  font-style: italic;
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.testimonial__author {
  color: var(--color-text-muted);
  font-size: var(--font-size-sm);
  font-weight: 500;
}

.testimonials__footer {
  color: var(--color-text-muted);
  font-size: var(--font-size-base);
}

.promo-card {
  display: grid;
  gap: var(--space-8);
  background-color: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--color-gray-200);
}

.promo-card__content {
  padding: var(--space-8);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.promo-card__title {
  font-size: var(--font-size-3xl);
  margin-bottom: var(--space-4);
}

.promo-card__text {
  margin-bottom: var(--space-6);
  color: var(--color-text-muted);
}

.promo-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 300px;
}

@media (min-width: 768px) {
  .promo-card {
    grid-template-columns: 1fr 1fr;
  }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
}

.link-arrow::after {
  content: '→';
  transition: transform var(--transition-base);
}

.link-arrow:hover::after {
  transform: translateX(4px);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.btn--ghost {
  background-color: transparent;
  color: var(--color-text);
  border-color: var(--color-gray-300);
}

.btn--ghost:hover {
  background-color: var(--color-gray-100);
  border-color: var(--color-gray-400);
}

@media (max-width: 640px) {
  .button-group {
    flex-direction: column;
  }
  
  .btn--ghost {
    margin-left: 0;
  }
}