/* =============================================
   TASTE OF ASIA - PAGE HEADER (SHARED)
   Crimson hero section with breadcrumb for all pages
   ============================================= */

/* Page Header Container */
/* The site header is sticky and remains in normal flow, so this section only
   needs its own internal spacing. */
.toa-page-header {
  background: #82001b; /* Fallback hex crimson */
  background: var(--toa-crimson, #82001b);
  padding: 28px 0 28px;
  margin-bottom: 32px;
}

.toa-page-header-inner {
  max-width: var(--toa-container-width);
  margin: 0 auto;
  padding: 0 var(--toa-gutter);
}

/* Breadcrumb */
.toa-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
}

.toa-breadcrumb-link {
  background: none;
  border: none;
  color: var(--toa-gold);
  font-size: 13px;
  text-decoration: none;
  padding: 0;
  transition: color 0.15s ease;
}

.toa-breadcrumb-link:hover {
  color: var(--toa-white);
}

.toa-breadcrumb-sep {
  color: rgba(255, 255, 255, 0.3);
  font-size: 13px;
}

.toa-breadcrumb-current {
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* Page Title */
.toa-page-title {
  font-family: var(--toa-font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--toa-white);
  margin: 0 0 8px;
  line-height: 1.1;
}

/* Page Description */
.toa-page-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
}

/* Responsive */
@media (max-width: 767px) {
  .toa-page-header {
    padding: 24px 0 20px;
    margin-bottom: 24px;
  }

  .toa-page-title {
    font-size: 28px;
  }

  .toa-breadcrumb {
    margin-bottom: 8px;
  }

  /* Product pages: hide the product name (current item) and its preceding
     "/" separator — the title is right below, and this frees space so the
     category link fits on one line */
  .single-product .toa-breadcrumb-current,
  .single-product .toa-breadcrumb span:nth-last-of-type(2) {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .toa-page-header {
    padding: 24px 0;
  }

  .toa-page-title {
    font-size: 34px;
  }
}
