.accessories-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

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

.accessories-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.accessories-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(31, 41, 32, 0.4), rgba(31, 41, 32, 0.6));
}

.accessories-hero__content {
  position: relative;
  z-index: 1;
  color: white;
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.breadcrumb {
  margin-bottom: var(--space-6);
}

.breadcrumb__list {
  display: flex;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb__link {
  color: rgba(255, 255, 255, 0.8);
  transition: color var(--duration-fast) var(--ease-out);
}

.breadcrumb__link:hover {
  color: white;
}

.breadcrumb__item:not(:last-child)::after {
  content: "/";
  margin-left: var(--space-2);
  opacity: 0.6;
}

.accessories-hero__title {
  font-size: var(--text-5xl);
  color: white;
  margin-bottom: var(--space-6);
  max-width: 20ch;
}

.accessories-hero__subtitle {
  font-size: var(--text-xl);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--space-8);
  max-width: 60ch;
  line-height: var(--leading-relaxed);
}

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

.section-header {
  text-align: center;
  margin-bottom: var(--space-16);
  max-width: 60ch;
  margin-left: auto;
  margin-right: auto;
}

.section-header__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.section-header__description {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  margin: 0 auto;
}

.categories-section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--space-8);
}

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

@media (min-width: 1024px) {
  .categories-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.category-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
}

.category-card__image-wrapper {
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.category-card:hover .category-card__image {
  transform: scale(1.05);
}

.category-card__content {
  padding: var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

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

.category-card__description {
  color: var(--color-text-muted);
  font-size: var(--text-base);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-6);
  flex: 1;
}

.category-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-primary-dark);
  font-weight: var(--font-medium);
  font-size: var(--text-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: gap var(--duration-fast) var(--ease-out);
}

.category-card__link:hover {
  gap: var(--space-3);
  color: var(--color-primary);
}

.expertise-section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
  background-color: var(--color-primary-bg);
}

.expertise-section__content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.expertise-section__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.expertise-section__text {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.expertise-section__cta {
  display: inline-flex;
}

.sustainability-section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
}

.sustainability-section__container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .sustainability-section__container {
    grid-template-columns: 1fr 1fr;
  }
}

.sustainability-section__image {
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sustainability-section__image img {
  width: 100%;
  height: auto;
  display: block;
}

.sustainability-section__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.sustainability-section__text {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.sustainability-section__list {
  margin-bottom: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.sustainability-section__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text);
  font-weight: var(--font-medium);
}

.sustainability-section__icon {
  color: var(--color-primary);
  flex-shrink: 0;
}

.community-section {
  padding-top: var(--space-24);
  padding-bottom: var(--space-24);
  background-color: var(--color-bg-alt);
}

.community-section__content {
  max-width: 768px;
  margin: 0 auto;
  text-align: center;
}

.community-section__title {
  font-size: var(--text-4xl);
  margin-bottom: var(--space-6);
  color: var(--color-text);
}

.community-section__text {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.newsletter-form__group {
  display: flex;
  gap: var(--space-4);
  flex-direction: column;
  margin-bottom: var(--space-4);
}

@media (min-width: 640px) {
  .newsletter-form__group {
    flex-direction: row;
  }
}

.newsletter-form__input {
  flex: 1;
  min-width: 0;
}

.newsletter-form__button {
  white-space: nowrap;
}

.newsletter-form__consent {
  font-size: var(--text-sm);
  color: var(--color-text-light);
  margin: 0;
}

.newsletter-form__consent a {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .accessories-hero__title {
    font-size: var(--text-4xl);
  }
  
  .accessories-hero__subtitle {
    font-size: var(--text-lg);
  }
  
  .section-header__title,
  .expertise-section__title,
  .sustainability-section__title,
  .community-section__title {
    font-size: var(--text-3xl);
  }
}