/* ─── RB Showcase: product grid ─── */
.rb-showcase {
  margin: 0;
}

.rb-showcase__eyebrow {
  color: #666;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-align: center;
  margin-bottom: 0.75rem;
}

.rb-showcase__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 8px;
}

.rb-showcase__item {
  display: block;
  text-decoration: none;
  border: 1px solid #1e1e1e;
  border-radius: 3px;
  overflow: hidden;
  transition: border-color 0.2s ease;
}

.rb-showcase__item:hover {
  border-color: #C8A84B;
}

.rb-showcase__img {
  width: 100%;
  height: auto;
  display: block;
}

.rb-showcase__name {
  display: block;
  background: #161616;
  color: #888;
  font-size: 0.8rem;
  text-align: center;
  padding: 6px 8px;
  line-height: 1.3;
}

.rb-showcase__footer {
  text-align: center;
  margin-top: 20px;
}

.rb-showcase__cta {
  display: inline-block;
  color: #C8A84B;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid #C8A84B;
  border-radius: 2px;
  padding: 8px 18px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.rb-showcase__cta:hover {
  background: #C8A84B;
  color: #111;
}

/* ─── Homepage full-width showcase section ─── */
.rb-homepage-showcase {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(200,168,75,0.2);
}

.rb-showcase-section-label {
  color: #C8A84B;
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.rb-homepage-showcase .rb-showcase__grid {
  grid-template-columns: repeat(2, 1fr);
}

/* ─── Shop teaser (desktop bottom section) ─── */
.rb-shop-teaser {
  border-top: 1px solid rgba(200, 168, 75, 0.15);
  background: #0d0d0d;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.rb-shop-teaser__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 860px;
  margin: 0 auto;
}

.rb-shop-teaser__text {
  flex: 1;
}

.rb-shop-teaser__eyebrow {
  color: #C8A84B;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 12px;
}

.rb-shop-teaser__heading {
  color: #e8e8e8;
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.5;
  margin-bottom: 12px;
}

.rb-shop-teaser__heading em {
  color: #C8A84B;
  font-style: normal;
  font-weight: 600;
}

.rb-shop-teaser__desc {
  color: #888;
  font-size: 0.85rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.rb-shop-teaser__btn {
  display: inline-block;
  background: #C8A84B;
  color: #111;
  font-size: 0.85rem;
  font-weight: 700;
  padding: 11px 26px;
  border-radius: 2px;
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: background 0.2s ease;
}

.rb-shop-teaser__btn:hover {
  background: #e6c96a;
}

.rb-shop-teaser__images {
  display: none;
  gap: 8px;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .rb-shop-teaser__images {
    display: flex;
  }
}

.rb-shop-teaser__img-wrap {
  width: 100px;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid #2a2a2a;
  transition: border-color 0.2s ease;
}

.rb-shop-teaser__img-wrap:hover {
  border-color: #C8A84B;
}

.rb-shop-teaser__img-wrap img {
  width: 100%;
  display: block;
}

.rb-shop-teaser__img-label {
  background: #161616;
  color: #666;
  font-size: 0.6rem;
  text-align: center;
  padding: 3px 4px;
  line-height: 1.3;
}

/* ─── Gold heading links — hover effect ─── */
.wp-block-heading a[style*="color:#C8A84B"],
.wp-block-heading a[style*="color: #C8A84B"] {
  transition: color 0.2s ease;
}
.wp-block-heading a[style*="color:#C8A84B"]:hover,
.wp-block-heading a[style*="color: #C8A84B"]:hover {
  color: #ffffff !important;
}

/* ─── Post navigation links (prev/next on single posts) ─── */
.wp-block-post-navigation-link a {
  color: #C8A84B !important;
  text-decoration: none;
  font-weight: 600;
  transition: opacity 0.2s ease;
}
.wp-block-post-navigation-link a:hover {
  opacity: 0.75;
}

/* ─── Blog page pagination ─── */
.wp-block-query-pagination a,
.wp-block-query-pagination-previous a,
.wp-block-query-pagination-next a,
.wp-block-query-pagination-numbers a {
  color: #C8A84B !important;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
}
.wp-block-query-pagination-numbers .current {
  color: #888;
  font-size: 16px;
}

/* ─── Blog category list ─── */
.blog-categories.wp-block-categories-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.blog-categories.wp-block-categories-list li {
  margin: 0;
}

.blog-categories.wp-block-categories-list a {
  display: inline-block;
  color: #C8A84B;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1px solid rgba(200,168,75,0.35);
  border-radius: 2px;
  padding: 3px 10px;
  text-decoration: none;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.blog-categories.wp-block-categories-list a:hover {
  background: rgba(200,168,75,0.12);
  border-color: #C8A84B;
}

/* ─── WPForms dark theme overrides ─── */
.wpforms-form .wpforms-field-label,
.wpforms-form .wpforms-field-sublabel,
.wpforms-form .wpforms-field-description {
  color: #e6d3a3 !important;
}

.wpforms-form .wpforms-field input,
.wpforms-form .wpforms-field textarea,
.wpforms-form .wpforms-field select {
  background: #1e1e1e !important;
  color: #e0e0e0 !important;
  border-color: #3a3a3a !important;
}

.wpforms-form .wpforms-field input::placeholder,
.wpforms-form .wpforms-field textarea::placeholder {
  color: #666 !important;
}

.wpforms-form .wpforms-submit {
  background: #C8A84B !important;
  color: #111 !important;
  border: none !important;
  border-radius: 2px !important;
  font-weight: 600 !important;
}

.wpforms-form .wpforms-submit:hover {
  background: #e6c96a !important;
}

/* ─── Homepage readable font sizes ─── */
.home .wp-block-post-title,
.home .wp-block-post-title a {
  font-size: 1.05rem !important;
  line-height: 1.4 !important;
}

.home .wp-block-post-excerpt p,
.home .wp-block-post-excerpt__excerpt {
  font-size: 1rem !important;
  line-height: 1.7 !important;
}

.home .wp-block-post-excerpt__more-text,
.home .wp-block-post-excerpt__more-link {
  font-size: 0.95rem !important;
}
