.smartphones-hero {
  position: relative;
}

.smartphones-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: var(--space-32);
  align-items: center;
}

.smartphones-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-8);
  list-style: none;
  margin-bottom: var(--space-16);
  font-size: var(--font-size-xs);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
}

.smartphones-breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: var(--space-8);
  color: var(--gray-500);
}

.smartphones-breadcrumbs a {
  color: var(--color-text-muted);
}

.smartphones-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-16);
  margin-top: var(--space-24);
  margin-bottom: var(--space-24);
}

.smartphones-hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-16);
  font-size: var(--font-size-sm);
}

.smartphones-hero__highlights dt {
  font-weight: var(--font-weight-medium);
  margin-bottom: var(--space-4);
  color: var(--color-accent-silver);
}

.smartphones-hero__highlights dd {
  margin: 0;
  color: var(--color-text-muted);
}

.smartphones-hero__image {
  min-height: 260px;
}

.smartphones-section-header {
  max-width: 720px;
  margin-bottom: var(--space-32);
}

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

.smartphones-featured__layout {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 3fr);
  gap: var(--space-32);
  align-items: stretch;
}

.smartphones-featured__image {
  height: 100%;
}

.smartphones-featured__image .product-image-wrap {
  height: 100%;
}

.smartphones-featured__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

.smartphones-featured__list,
.smartphones-tool__list,
.smartphones-gallery__list,
.smartphones-bundles__list,
.smartphones-delivery__list,
.smartphones-support__list,
.smartphones-promotions__list {
  list-style: none;
  padding-left: 0;
}

.smartphones-featured__list li,
.smartphones-tool__list li,
.smartphones-gallery__list li,
.smartphones-bundles__list li,
.smartphones-delivery__list li,
.smartphones-support__list li,
.smartphones-promotions__list li {
  position: relative;
  padding-left: 1.4rem;
  margin-bottom: var(--space-8);
}

.smartphones-featured__list li::before,
.smartphones-tool__list li::before,
.smartphones-gallery__list li::before,
.smartphones-bundles__list li::before,
.smartphones-delivery__list li::before,
.smartphones-support__list li::before,
.smartphones-promotions__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent-cyan));
}

.smartphones-featured__cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-12);
  margin-bottom: var(--space-12);
}

.smartphones-featured__hint {
  font-size: var(--font-size-xs);
}

.smartphones-tools__grid {
  margin-top: var(--space-32);
}

.smartphones-tool__note,
.smartphones-gallery__note,
.smartphones-bundles__note,
.smartphones-support__note {
  font-size: var(--font-size-xs);
  margin-top: var(--space-12);
}

.smartphones-tool__links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-8);
  margin-top: var(--space-16);
}

.smartphones-gallery__container {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.4fr);
  gap: var(--space-32);
  align-items: center;
}

.smartphones-gallery__image {
  min-height: 260px;
}

.smartphones-reviews__grid {
  margin-top: var(--space-32);
}

.smartphones-bundles__layout {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 3fr);
  gap: var(--space-32);
  align-items: center;
}

.smartphones-bundles__image {
  min-height: 260px;
}

.smartphones-delivery__container {
  display: grid;
  grid-template-columns: minmax(0, 2.4fr) minmax(0, 3fr);
  gap: var(--space-32);
  align-items: flex-start;
}

.smartphones-promotions__layout {
  display: grid;
  grid-template-columns: minmax(0, 2.8fr) minmax(0, 3fr);
  gap: var(--space-32);
  align-items: center;
}

.smartphones-promotions__image {
  min-height: 260px;
}

@media (max-width: 1024px) {
  .smartphones-hero__layout,
  .smartphones-featured__layout,
  .smartphones-gallery__container,
  .smartphones-bundles__layout,
  .smartphones-delivery__container,
  .smartphones-promotions__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .smartphones-hero__highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .smartphones-hero__highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .smartphones-section-header {
    text-align: left;
  }

  .smartphones-section-header--center {
    text-align: center;
  }

  .smartphones-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .smartphones-featured__layout {
    gap: var(--space-24);
  }
}

@media (max-width: 480px) {
  .smartphones-breadcrumbs ol {
    font-size: var(--font-size-2xs);
  }

  .smartphones-featured__cta-group {
    flex-direction: column;
    align-items: stretch;
  }
}
