.tables-hero {
  background: radial-gradient(circle at top left, var(--color-primary-soft), transparent 55%), var(--color-bg);
}

.tables-hero__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: var(--space-8);
  align-items: center;
}

.tables-hero__title {
  margin-bottom: var(--space-3);
}

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

.tables-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-3);
}

.tables-hero__meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.tables-hero__image-wrapper {
  position: relative;
}

.tables-hero__image {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.tables-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-4);
  padding-left: 0;
  list-style: none;
}

.tables-breadcrumb li+li::before {
  content: "/";
  margin-inline: 0.25rem;
  color: var(--gray-400);
}

.tables-section-header {
  max-width: var(--container-max-width);
  margin-inline: auto;
  margin-bottom: var(--space-6);
}

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

.tables-section-header__text {
  color: var(--color-text-muted);
  max-width: 40rem;
}

.tables-section-header--center .tables-section-header__text {
  margin-inline: auto;
}

.tables-highlight__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr);
}

.tables-product {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: var(--space-6);
  align-items: stretch;
}

.tables-product__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
}

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

.tables-product__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--space-4);
}

.tables-specs {
  display: grid;
  gap: var(--space-3);
}

.tables-specs__item dt {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: var(--gray-700);
}

.tables-specs__item dd {
  margin: 0.1rem 0 0;
  color: var(--color-text-muted);
}

.tables-product__meta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.tables-rating__stars span {
  letter-spacing: 0.08em;
  color: #fbbf24;
}

.tables-rating__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.tables-product__availability {
  font-size: var(--font-size-sm);
  color: var(--color-success);
}

.tables-categories__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-4);
}

.tables-category__title {
  margin-bottom: var(--space-2);
}

.tables-category__text {
  color: var(--color-text-muted);
}

.tables-category__list {
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
}

.tables-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.4fr);
  gap: var(--space-8);
  align-items: center;
}

.tables-detail__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.tables-detail__list {
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
}

.tables-guide__layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.tables-guide__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}

.tables-guide-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-subtle);
}

.tables-guide-card p {
  color: var(--color-text-muted);
}

.tables-guide-card ul {
  margin-top: var(--space-3);
}

.tables-reviews {
  background-color: var(--color-surface-subtle);
}

.tables-reviews__summary {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-6);
}

.tables-reviews__score-text {
  font-size: var(--font-size-sm);
}

.tables-reviews__note {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.tables-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}

.tables-review__title {
  margin-bottom: var(--space-2);
}

.tables-review__text {
  color: var(--color-text);
}

.tables-review__meta {
  margin-top: var(--space-3);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.tables-inspiration__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.1fr);
  gap: var(--space-8);
  align-items: center;
}

.tables-inspiration__list {
  margin-top: var(--space-3);
  margin-bottom: var(--space-4);
}

.tables-inspiration__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.tables-sellers__layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.tables-sellers__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
}

.tables-seller-card {
  background-color: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border-subtle);
}

.tables-sellers__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-4);
  border-radius: var(--radius-lg);
  background-color: var(--color-primary-soft);
}

.tables-deals__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: var(--space-4);
}

.tables-deals__cta {
  margin-top: var(--space-6);
  text-align: center;
}

.tables-deals .tables-deal ul {
  margin-top: var(--space-3);
}

.tables-recommendations__layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.tables-recommendations__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-4);
}

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

.tables-faq {
  background-color: var(--color-surface-subtle);
}

.tables-faq__layout {
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.tables-faq__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr);
  gap: var(--space-3);
  margin-inline: auto;
}

.tables-faq-item {
  border-radius: var(--radius-md);
  background-color: var(--color-surface);
  border: 1px solid var(--color-border-subtle);
}

.tables-faq-item__button {
  width: 100%;
  text-align: left;
  padding: var(--space-4) var(--space-5);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--font-size-base);
  cursor: pointer;
  background-color: transparent;
}

.tables-faq-item__button:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}

.tables-faq-item__icon {
  font-size: var(--font-size-lg);
  color: var(--gray-500);
}

.tables-faq-item__panel {
  padding: 0 var(--space-5) var(--space-4);
  border-top: 1px solid var(--color-border-subtle);
}

.tables-faq-item__panel p {
  color: var(--color-text-muted);
}

.tables-faq__contact {
  text-align: center;
}

.tables-faq__contact p {
  margin-bottom: var(--space-3);
}

@media (max-width: 960px) {
  .tables-hero__layout,
  .tables-detail__layout,
  .tables-inspiration__layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .tables-product {
    grid-template-columns: minmax(0, 1fr);
  }

  .tables-hero__image-wrapper,
  .tables-detail__image-wrapper,
  .tables-inspiration__image-wrapper {
    order: -1;
  }
}

@media (max-width: 640px) {
  .tables-hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .tables-sellers__cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .tables-faq__grid {
    grid-template-columns: minmax(0, 1fr);
  }
}
