/* Texan Supply — site-wide design system */

:root {
  --texan-crimson: #bf0e3d;
  --texan-crimson-dark: #9a0b31;
  --texan-crimson-light: #d4144a;
  --texan-charcoal: #14171b;
  --texan-steel: #23282e;
  --texan-steel-light: #2f363f;
  --texan-silver: #eef0f3;
  --texan-muted: #6b7280;
  --texan-white: #ffffff;
  --texan-shadow: 0 12px 40px rgba(20, 23, 27, 0.12);
  --texan-shadow-soft: 0 4px 20px rgba(20, 23, 27, 0.08);
  --texan-radius: 12px;
  --texan-radius-sm: 8px;
  --texan-success: #4a9e5c;
  --texan-navy: #0a1128;
  --texan-flag-red: #bf0a30;
  --texan-flag-blue: #002868;
}

/* ── Hero ─────────────────────────────────────────────── */

.texan-hero-section {
  margin: 0;
}

.texan-hero {
  position: relative;
  min-height: 0;
  display: flex;
  align-items: center;
  background-color: #f4f5f7;
  overflow: hidden;
}

.texan-hero__media {
  position: absolute;
  inset: 0;
}

.texan-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 88% center;
}

.texan-hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(14, 17, 21, 0.94) 0%, rgba(14, 17, 21, 0.78) 40%, rgba(14, 17, 21, 0.42) 100%),
    linear-gradient(to top, rgba(14, 17, 21, 0.6) 0%, transparent 50%);
}

.texan-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 128rem;
  margin: 0 auto;
  padding: 3.2rem 1.5rem 3rem;
}

@media screen and (min-width: 750px) {
  .texan-hero__content {
    padding: 4rem 4rem 3.6rem;
  }
}

@media screen and (min-width: 990px) {
  .texan-hero__content {
    padding: 4.4rem 5rem 4rem;
  }
}

.texan-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 1.6rem;
  padding: 0.5rem 1.2rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--texan-white);
  background: rgba(191, 14, 61, 0.25);
  border: 1px solid rgba(191, 14, 61, 0.45);
  border-radius: 999px;
}

.texan-hero__eyebrow-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--texan-crimson-light);
  flex-shrink: 0;
}

.texan-hero__title {
  display: flex;
  flex-direction: column;
  margin: 0;
  max-width: 54rem;
  font-family: "Bebas Neue", "Arial Narrow", Impact, sans-serif;
  font-size: clamp(4.8rem, 8vw, 8.6rem);
  line-height: 0.86;
  font-weight: 400;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--texan-white);
  text-shadow:
    0 2px 4px rgba(0, 0, 0, 0.65),
    0 8px 28px rgba(0, 0, 0, 0.5);
}

.texan-hero__title-accent {
  color: var(--texan-crimson);
}

.texan-hero__subtitle {
  margin: 1.8rem 0 0;
  max-width: 46rem;
  font-size: clamp(1.5rem, 2vw, 1.8rem);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  text-shadow:
    0 1px 3px rgba(0, 0, 0, 0.6),
    0 4px 16px rgba(0, 0, 0, 0.45);
}

.texan-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-top: 2.8rem;
}

.texan-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1.4rem 2.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--texan-radius-sm);
  border: 2px solid transparent;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

.texan-btn:hover {
  transform: translateY(-1px);
}

.texan-btn--primary {
  background: var(--texan-crimson);
  color: var(--texan-white);
  border-color: var(--texan-crimson);
}

.texan-btn--primary:hover {
  background: var(--texan-crimson-dark);
  border-color: var(--texan-crimson-dark);
  color: var(--texan-white);
}

.texan-btn--ghost {
  background: transparent;
  color: var(--texan-white);
  border-color: rgba(255, 255, 255, 0.55);
}

.texan-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--texan-white);
  color: var(--texan-white);
}

.texan-hero__search {
  margin-top: 3.2rem;
  max-width: 52rem;
}

.texan-hero__search-label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.55);
}

.texan-hero__search-form {
  display: flex;
  align-items: stretch;
  background: var(--texan-white);
  border-radius: var(--texan-radius);
  box-shadow: var(--texan-shadow);
  overflow: hidden;
}

.texan-hero__search-input {
  flex: 1;
  min-width: 0;
  padding: 1.4rem 1.6rem;
  border: none;
  font-size: 1.5rem;
  color: var(--texan-charcoal);
  background: transparent;
}

.texan-hero__search-input:focus {
  outline: none;
}

.texan-hero__search-input::placeholder {
  color: var(--texan-muted);
}

.texan-hero__search-btn {
  padding: 0 2rem;
  border: none;
  background: var(--texan-crimson);
  color: var(--texan-white);
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.texan-hero__search-btn:hover {
  background: var(--texan-crimson-dark);
}

.texan-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.4rem 2rem;
  margin-top: 2.4rem;
}

.texan-hero__stat {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.texan-hero__stat-icon {
  flex-shrink: 0;
  width: 3.6rem;
  height: 3.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--texan-navy);
  color: var(--texan-white);
}

.texan-hero__stat-icon .icon,
.texan-hero__stat-icon svg {
  width: 1.7rem;
  height: 1.7rem;
  fill: currentColor;
  color: inherit;
}

.texan-hero__stat-text {
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--texan-navy);
}

.texan-hero__stat-text strong {
  font-weight: 800;
  margin-right: 0.3rem;
}

.texan-hero:not(.texan-hero--split) .texan-hero__stat-icon {
  background: rgba(255, 255, 255, 0.16);
}

.texan-hero:not(.texan-hero--split) .texan-hero__stat-text {
  color: var(--texan-white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.texan-hero--split .texan-hero__overlay {
  background: linear-gradient(
    95deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.9) 28%,
    rgba(255, 255, 255, 0.42) 54%,
    rgba(255, 255, 255, 0.08) 100%
  );
}

.texan-hero--split .texan-hero__content {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 2.4rem;
  max-width: 128rem;
}

.texan-hero--split .texan-hero__title {
  font-size: clamp(5.2rem, 8.4vw, 9.2rem);
  color: var(--texan-navy);
  text-shadow: none;
}

.texan-hero--split .texan-hero__subtitle {
  max-width: 42rem;
  margin-top: 1.4rem;
  font-size: clamp(1.4rem, 1.6vw, 1.65rem);
  color: var(--texan-navy);
  text-shadow: none;
}

.texan-hero--split .texan-hero__finder {
  width: 100%;
}

@media screen and (max-width: 749px) {
  .texan-hero--split .texan-hero__stats {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
}

@media screen and (min-width: 990px) {
  .texan-hero--split .texan-hero__content {
    grid-template-columns: minmax(0, 1.15fr) minmax(32rem, 42rem);
    gap: 4rem;
    padding-top: 3.6rem;
    padding-bottom: 3.6rem;
  }
}

/* ── Value props strip ────────────────────────────────── */

.texan-value-props {
  background: var(--texan-steel);
  border-bottom: 3px solid var(--texan-crimson);
}

.texan-value-props__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: 128rem;
  margin: 0 auto;
}

@media screen and (min-width: 750px) {
  .texan-value-props__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.texan-value-props__item {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 2rem 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@media screen and (min-width: 750px) {
  .texan-value-props__item {
    padding: 2.4rem 2rem;
    border-bottom: none;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
  }

  .texan-value-props__item:last-child {
    border-right: none;
  }
}

.texan-value-props__icon {
  flex-shrink: 0;
  width: 4.4rem;
  height: 4.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--texan-radius-sm);
  color: var(--texan-white);
}

.texan-value-props__icon .icon,
.texan-value-props__icon svg {
  width: 2.2rem;
  height: 2.2rem;
  fill: currentColor;
  color: var(--texan-white);
}

.texan-value-props__icon .icon path,
.texan-value-props__icon svg path {
  fill: currentColor;
}

.texan-value-props__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--texan-white);
  line-height: 1.3;
}

.texan-value-props__text {
  margin: 0.4rem 0 0;
  font-size: 1.3rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.68);
}

/* ── Brand strip ──────────────────────────────────────── */

.texan-brand-strip {
  background: var(--texan-silver);
  padding: 2.4rem 0;
}

.texan-brand-strip__inner {
  max-width: 128rem;
  margin: 0 auto;
  padding: 0 1rem;
}

@media screen and (min-width: 750px) {
  .texan-brand-strip__inner {
    padding: 0 2rem;
  }
}

.texan-section-label {
  margin: 0 0 1.4rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--texan-muted);
  text-align: center;
}

.texan-brand-strip__logos {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  align-items: stretch;
}

@media screen and (min-width: 750px) {
  .texan-brand-strip__logos {
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.6rem;
  }
}

.texan-brand-strip__logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  height: 6.4rem;
  min-height: 6.4rem;
  padding: 0.15rem 0.1rem;
  background: var(--texan-white);
  border-radius: var(--texan-radius-sm);
  box-shadow: var(--texan-shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  overflow: hidden;
}

.texan-brand-strip__logo-link:hover {
  transform: translateY(-2px);
  box-shadow: var(--texan-shadow);
}

.texan-brand-strip__logo-link img {
  display: block;
  width: auto;
  max-width: 98%;
  height: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  opacity: 0.95;
  transition: opacity 0.2s ease;
}

@media screen and (min-width: 750px) {
  .texan-brand-strip__logo-link {
    height: 7rem;
    min-height: 7rem;
    padding: 0.18rem 0.12rem;
  }
}

.texan-brand-strip__logo-link:hover img {
  opacity: 1;
}

/* ── Homepage section polish ──────────────────────────── */

.title-wrapper-with-link .title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.collection-list-title,
.title.inline-richtext {
  position: relative;
  padding-bottom: 1rem;
}

.collection-list-title::after,
.title.inline-richtext::after {
  content: '';
  display: block;
  width: 4.8rem;
  height: 3px;
  margin-top: 1rem;
  background: var(--texan-crimson);
  border-radius: 2px;
}

.collection-list-wrapper .title-wrapper-with-link .title::after,
.multicolumn__title .title::after {
  margin-left: auto;
  margin-right: auto;
}

.collection-list-wrapper .title-wrapper-with-link {
  text-align: center;
}

.collection-list-wrapper .title-wrapper-with-link .title {
  display: block;
}

/* Category & collection cards */
.card--card,
.card--standard .card__inner {
  border-radius: var(--texan-radius);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-wrapper:hover .card--card,
.card-wrapper:hover .card--standard .card__inner {
  transform: translateY(-3px);
  box-shadow: var(--texan-shadow);
}

.card__heading a {
  font-weight: 600;
}

/* Testimonials */
.multicolumn.color-scheme-2 .multicolumn-card {
  background: var(--texan-white);
  border-radius: var(--texan-radius);
  padding: 2.4rem 2rem;
  box-shadow: var(--texan-shadow-soft);
  border: 1px solid rgba(20, 23, 27, 0.06);
  height: 100%;
}

.multicolumn.color-scheme-2 .multicolumn-list__item {
  margin-bottom: 1.6rem;
}

.multicolumn.color-scheme-2 .multicolumn-card__info > h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--texan-charcoal);
}

.multicolumn.color-scheme-2 .rte {
  color: var(--texan-muted);
  font-size: 1.4rem;
  line-height: 1.6;
}

/* Dark image-with-text blocks (brand story, promos) */
.image-with-text .color-scheme-3.gradient {
  background: var(--texan-charcoal);
}

.image-with-text .color-scheme-3 .image-with-text__text-item {
  padding: 3.6rem 2rem;
}

@media screen and (min-width: 750px) {
  .image-with-text .color-scheme-3 .image-with-text__text-item {
    padding: 4.8rem 4rem;
  }
}

.image-with-text .color-scheme-3 .image-with-text__heading {
  color: var(--texan-white);
  font-weight: 800;
  letter-spacing: -0.02em;
}

.image-with-text .color-scheme-3 .image-with-text__text {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.6rem;
  line-height: 1.65;
}

.image-with-text .color-scheme-3 .button {
  background: var(--texan-crimson);
  color: var(--texan-white);
  border-color: var(--texan-crimson);
  font-weight: 700;
}

.image-with-text .color-scheme-3 .button:hover {
  background: transparent;
  color: var(--texan-white);
  border-color: var(--texan-white);
}

/* Newsletter CTA */
.newsletter .newsletter__wrapper.color-scheme-3 {
  background: linear-gradient(135deg, var(--texan-steel) 0%, var(--texan-charcoal) 100%);
}

.newsletter .inline-richtext {
  color: var(--texan-white);
  font-weight: 800;
}

.newsletter .newsletter__subheading {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.6rem;
}

.newsletter .newsletter-form__field-wrapper {
  max-width: 48rem;
  margin: 2rem auto 0;
}

.newsletter .newsletter-form__button {
  background: var(--texan-crimson);
  color: var(--texan-white);
  border-color: var(--texan-crimson);
}

.newsletter .newsletter-form__button:hover {
  background: var(--texan-crimson-dark);
}

/* Featured products row */
.collection .card__badge .badge {
  background: var(--texan-crimson);
  color: var(--texan-white);
  border-color: transparent;
}

.collection .card__badge {
  background: transparent;
}

.collection .price {
  color: var(--texan-charcoal);
}

/* ── Site-wide: header & navigation ───────────────────── */

/* Announcement / utility bar */
.texan-site .shopify-section-group-header-group .utility-bar {
  background: linear-gradient(90deg, var(--texan-charcoal) 0%, var(--texan-steel) 50%, var(--texan-charcoal) 100%);
  border-bottom: 2px solid var(--texan-crimson);
}

.texan-site .shopify-section-group-header-group .utility-bar.color-scheme-3.gradient {
  background: linear-gradient(90deg, var(--texan-charcoal) 0%, var(--texan-steel) 50%, var(--texan-charcoal) 100%);
}

.texan-site .announcement-bar__message {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.92);
}

.texan-site .announcement-bar__link:hover .announcement-bar__message {
  color: var(--texan-white);
}

.texan-site .announcement-bar .slider-button {
  color: rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.texan-site .announcement-bar .slider-button:hover {
  color: var(--texan-white);
  background: rgba(255, 255, 255, 0.12);
}

.texan-site .announcement-bar .slider-button .icon {
  width: 1rem;
  height: 1rem;
}

/* Main header shell */
.texan-site .header-wrapper {
  background: var(--texan-white);
  border-bottom: none;
  box-shadow: 0 1px 0 rgba(20, 23, 27, 0.06), 0 8px 24px rgba(20, 23, 27, 0.06);
}

.texan-site .header-wrapper::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--texan-crimson-dark) 0%, var(--texan-crimson) 50%, var(--texan-crimson-dark) 100%);
}

.texan-site .header-wrapper--border-bottom {
  border-bottom: none;
}

.texan-site .section-header.shopify-section-header-sticky .header-wrapper {
  box-shadow: 0 4px 20px rgba(20, 23, 27, 0.12);
}

.texan-site .header {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media screen and (min-width: 990px) {
  .texan-site .header {
    padding-top: 1.2rem;
    padding-bottom: 1.2rem;
  }
}

/* Logo balance */
.texan-site .header__heading-logo {
  max-height: 5.6rem;
  width: auto;
}

@media screen and (min-width: 750px) {
  .texan-site .header__heading-logo {
    max-height: 6.4rem;
  }
}

/* Desktop navigation */
.texan-site .header__inline-menu .list-menu--inline {
  gap: 0.4rem;
}

.texan-site .header__inline-menu .header__menu-item,
.texan-site .header__inline-menu .list-menu__item--link {
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--texan-charcoal);
  padding: 0.7rem 1.4rem;
  border-radius: var(--texan-radius-sm);
  transition: background-color 0.2s ease, color 0.2s ease;
}

@media screen and (min-width: 990px) {
  .texan-site .header__inline-menu .list-menu--inline {
    gap: clamp(0.35rem, 0.1rem + 0.45vw, 1rem);
  }

  .texan-site .header__inline-menu .header__menu-item,
  .texan-site .header__inline-menu .list-menu__item--link {
    font-size: clamp(1.2rem, 0.95rem + 0.55vw, 1.55rem);
    padding: clamp(0.7rem, 0.55rem + 0.25vw, 1rem) clamp(1.2rem, 0.85rem + 0.75vw, 1.9rem);
    line-height: 1.25;
  }
}

@media screen and (min-width: 1400px) {
  .texan-site .header__inline-menu .header__menu-item,
  .texan-site .header__inline-menu .list-menu__item--link {
    font-size: 1.55rem;
    padding: 0.95rem 1.9rem;
  }
}

.texan-site .header__inline-menu .header__menu-item:hover,
.texan-site .header__inline-menu .list-menu__item--link:hover {
  color: var(--texan-crimson);
  background: var(--texan-silver);
}

.texan-site .header__inline-menu .header__menu-item:hover span {
  text-decoration: none;
}

.texan-site .header__menu-item:hover,
.texan-site .header__active-menu-item {
  color: var(--texan-crimson);
}

.texan-site .header__inline-menu .header__menu-item:has(.header__active-menu-item) {
  background: rgba(191, 14, 61, 0.1);
  color: var(--texan-crimson);
}

.texan-site .header__inline-menu .header__menu-item:has(.header__active-menu-item) .header__active-menu-item {
  font-weight: 700;
}

/* Dropdown menus */
.texan-site .header__submenu {
  border-radius: var(--texan-radius-sm);
  box-shadow: var(--texan-shadow);
  border-top: 3px solid var(--texan-crimson);
  overflow: hidden;
}

.texan-site .header__submenu .header__menu-item {
  padding: 1rem 1.6rem;
  color: var(--texan-charcoal);
}

.texan-site .header__submenu .header__menu-item:hover {
  background: var(--texan-silver);
  color: var(--texan-crimson);
}

/* Compact header search (desktop) */
.texan-header-search {
  flex: 1 1 18rem;
  max-width: 26rem;
  min-width: 14rem;
  margin-right: 0.6rem;
}

.texan-header-search__predictive {
  position: relative;
  display: block;
  width: 100%;
}

.texan-header-search__form {
  display: flex;
  align-items: stretch;
  width: 100%;
  background: var(--texan-silver);
  border: 1px solid rgba(20, 23, 27, 0.1);
  border-radius: var(--texan-radius-sm);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.texan-header-search__form:focus-within {
  border-color: rgba(191, 14, 61, 0.4);
  box-shadow: 0 0 0 3px rgba(191, 14, 61, 0.1);
}

.texan-header-search__input {
  flex: 1;
  min-width: 0;
  padding: 0.75rem 1rem;
  border: none;
  background: transparent;
  font-size: 1.35rem;
  color: var(--texan-charcoal);
}

.texan-header-search__input:focus {
  outline: none;
}

.texan-header-search__input::placeholder {
  color: var(--texan-muted);
}

.texan-header-search__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1.1rem;
  border: none;
  background: var(--texan-crimson);
  color: var(--texan-white);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.texan-header-search__btn:hover {
  background: var(--texan-crimson-dark);
}

.texan-header-search__btn .icon {
  width: 1.8rem;
  height: 1.8rem;
  fill: currentColor;
}

.texan-site .texan-header-search .predictive-search--header {
  left: 0;
  right: 0;
  width: 100%;
  border-radius: var(--texan-radius-sm);
}

@media screen and (min-width: 990px) {
  .texan-site .header--middle-left .header__icons {
    justify-self: stretch;
    flex: 1;
    justify-content: flex-end;
    gap: 0.2rem;
    padding-right: 0;
  }

  .texan-site .header__icons .header__search {
    display: none;
  }
}

/* Header action icons */
.texan-site .header__icons {
  gap: 0.2rem;
}

.texan-site .header__icon {
  border-radius: var(--texan-radius-sm);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.texan-site .header__icon:hover {
  background: var(--texan-silver);
}

.texan-site .header__icon:hover .icon {
  color: var(--texan-crimson);
}

.texan-site .cart-count-bubble {
  background-color: var(--texan-crimson);
  color: var(--texan-white);
  font-weight: 700;
  min-width: 1.8rem;
  height: 1.8rem;
  line-height: 1.8rem;
}

/* Mobile menu drawer header */
.texan-site .menu-drawer__navigation .menu-drawer__menu-item {
  font-weight: 600;
  color: var(--texan-charcoal);
}

.texan-site .menu-drawer__navigation .menu-drawer__menu-item--active,
.texan-site .menu-drawer__navigation .menu-drawer__menu-item:hover {
  color: var(--texan-crimson);
}

.texan-site .menu-drawer__inner {
  border-top: 3px solid var(--texan-crimson);
}

/* ── Site-wide: commerce buttons ──────────────────────── */

.texan-site .product-form__submit:not(:disabled):not([aria-disabled='true']),
.texan-site .product-form__submit.button:not(:disabled):not([aria-disabled='true']),
.texan-site .quick-add__submit:not(:disabled):not([aria-disabled='true']),
.texan-site .cart__checkout-button,
.texan-site .cart-notification .button--primary,
.texan-site .template-404 .button,
.texan-site .customer button[type='submit']:not(:disabled),
.texan-site .shopify-challenge__button {
  background-color: var(--texan-crimson) !important;
  color: var(--texan-white) !important;
  border: 2px solid var(--texan-crimson) !important;
  font-weight: 700 !important;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease !important;
}

.texan-site .product-form__submit:hover,
.texan-site .product-form__submit.button:hover,
.texan-site .quick-add__submit:not(:disabled):not([aria-disabled='true']):hover,
.texan-site .cart__checkout-button:hover,
.texan-site .cart-notification .button--primary:hover,
.texan-site .template-404 .button:hover,
.texan-site .customer button[type='submit']:hover {
  background-color: var(--texan-white) !important;
  color: var(--texan-crimson) !important;
  border-color: var(--texan-crimson) !important;
}

.texan-site .card .quick-add__submit:disabled,
.texan-site .card .quick-add__submit[disabled],
.texan-site .card .quick-add__submit[aria-disabled='true'] {
  background-color: var(--texan-silver) !important;
  color: var(--texan-muted) !important;
  border: 1px solid rgba(20, 23, 27, 0.14) !important;
  opacity: 1 !important;
  cursor: not-allowed;
  font-weight: 600 !important;
  box-shadow: none !important;
}

.texan-site .card .quick-add__submit:disabled::after,
.texan-site .card .quick-add__submit:disabled::before,
.texan-site .card .quick-add__submit[disabled]::after,
.texan-site .card .quick-add__submit[disabled]::before,
.texan-site .card .quick-add__submit[aria-disabled='true']::after,
.texan-site .card .quick-add__submit[aria-disabled='true']::before {
  content: none !important;
  display: none !important;
  box-shadow: none !important;
}

/* Native accelerated checkout (product page) */
.texan-site .texan-express-checkout-wrap {
  margin-top: 1rem;
  padding: 1.2rem 1.4rem;
  background: var(--texan-white);
  border: 1px solid rgba(20, 23, 27, 0.12);
  border-radius: var(--texan-radius-sm);
  box-shadow: var(--texan-shadow-soft);
}

.texan-site .texan-express-checkout-label {
  margin: 0 0 1rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texan-muted);
  text-align: center;
}

.texan-site .texan-express-checkout-wrap .shopify-payment-button {
  margin-top: 0;
}

.texan-site .texan-express-checkout-wrap shopify-accelerated-checkout {
  --shopify-accelerated-checkout-button-border-radius: var(--texan-radius-sm);
  --shopify-accelerated-checkout-button-block-size: 44px;
  --shopify-accelerated-checkout-button-box-shadow: none;
  display: block;
  margin-top: 0.6rem;
}

.texan-site .texan-express-checkout-wrap .shopify-payment-button__button {
  margin-top: 0;
}

.texan-site .texan-express-checkout-wrap .shopify-payment-button__more-options {
  display: none;
}

.texan-site .texan-product-info .price__regular .price-item--regular,
.texan-site .texan-product-info .price__sale .price-item--sale,
.texan-site .texan-product-info .price__sale .price-item--regular {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

.texan-site .price__regular .price-item--regular,
.texan-site .price__sale .price-item--sale,
.texan-site .price__sale .price-item--regular {
  font-size: 2rem;
  font-weight: 700;
  color: var(--texan-charcoal);
}

/* ── Site-wide: collection pages ──────────────────────── */

.texan-site .collection-hero__title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.texan-site .collection-hero__title::after {
  content: '';
  display: block;
  width: 4.8rem;
  height: 3px;
  margin-top: 1rem;
  background: var(--texan-crimson);
  border-radius: 2px;
}

.texan-site .collection-hero--with-image {
  position: relative;
  background-color: var(--texan-charcoal);
}

.texan-site .collection-hero--with-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(14, 17, 21, 0.82) 0%, rgba(14, 17, 21, 0.4) 100%);
  pointer-events: none;
  z-index: 1;
}

.texan-site .collection-hero--with-image .collection-hero__inner {
  position: relative;
  z-index: 2;
}

.texan-site .collection-hero--with-image .collection-hero__title,
.texan-site .collection-hero--with-image .collection-hero__description {
  color: var(--texan-white);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
}

/* Square floated image — text wraps left, full width below */
.texan-site .collection-hero--with-image .collection-hero__inner {
  display: block;
}

.texan-site .collection-hero--with-image .collection-hero__text-wrapper {
  padding: 3.6rem 0 4rem;
  flex-basis: auto;
}

@media screen and (min-width: 750px) {
  .texan-site .collection-hero--with-image .collection-hero__text-wrapper {
    padding: 4.8rem 0 5.6rem;
  }
}

.texan-site .collection-hero__intro {
  margin-top: 2rem;
}

.texan-site .collection-hero__intro--with-image {
  display: flow-root;
}

.texan-site .collection-hero--with-image .collection-hero__description {
  max-width: none;
  margin-top: 0;
  margin-bottom: 0;
}

.texan-site .collection-hero__image-container {
  width: min(100%, 32rem);
  margin: 0 auto 2rem;
  aspect-ratio: 1 / 1;
  align-self: auto;
  flex: none;
  min-height: 0;
  background: var(--texan-white);
  overflow: hidden;
}

.texan-site .collection-hero__image-container img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

@media screen and (min-width: 750px) {
  .texan-site .collection-hero__image-container {
    float: right;
    width: min(36rem, 38vw);
    margin: 0.4rem 0 2rem 3.2rem;
  }

  .texan-site .collection-hero__intro--with-image .collection-hero__description {
    text-align: left;
  }
}

@media screen and (max-width: 749px) {
  .texan-site .collection-hero__image-container {
    height: auto;
  }
}

/* ── Site-wide: product pages ─────────────────────────── */

.texan-site .texan-product-info > * + * {
  margin-top: 1.2rem;
}

.texan-site .texan-product-info .product-form,
.texan-site .texan-product-info .texan-product-description {
  margin-top: 2rem;
}

.texan-site .texan-product-vendor {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.texan-site .product__title {
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--texan-charcoal);
  margin-bottom: 0.8rem;
}

.texan-site .product__title h1,
.texan-site .product__title .h1 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-size: 2.4rem;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.texan-site .product__title::after {
  content: '';
  display: block;
  width: 4.8rem;
  height: 3px;
  margin-top: 1rem;
  background: var(--texan-crimson);
  border-radius: 2px;
}

.texan-site .texan-product-price-cluster {
  margin: 0.4rem 0 1.2rem;
  padding: 1.6rem 1.8rem;
  background: var(--texan-silver);
  border-radius: var(--texan-radius-sm);
  border: 1px solid rgba(20, 23, 27, 0.06);
}

.texan-site .texan-product-price-cluster .price,
.texan-site .texan-product-price-cluster .price--large,
.texan-site .texan-product-price-cluster .price-item--regular,
.texan-site .texan-product-price-cluster .price-item--sale {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-size: 2.4rem;
  font-weight: 800;
  letter-spacing: -0.02em !important;
  line-height: 1.25;
  color: var(--texan-charcoal);
}

.texan-site .texan-product-price-cluster .price,
.texan-site .texan-product-price-cluster .price--large {
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .texan-site .product__title h1,
  .texan-site .product__title .h1,
  .texan-site .texan-product-price-cluster .price,
  .texan-site .texan-product-price-cluster .price--large,
  .texan-site .texan-product-price-cluster .price-item--regular,
  .texan-site .texan-product-price-cluster .price-item--sale {
    font-size: 2.8rem;
    line-height: 1.2;
  }
}

.texan-site .texan-product-price-cluster .price--on-sale .price-item--regular {
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--texan-muted);
}

.texan-site .texan-product-shipping-note {
  margin: 0.75rem 0 0;
  font-size: 1.35rem;
  line-height: 1.4;
  color: var(--texan-muted);
  font-weight: 500;
}

.texan-site .texan-us-flag {
  display: inline-block;
  vertical-align: -0.25em;
  margin-left: 0.45rem;
  line-height: 0;
  width: 3.25rem;
  aspect-ratio: 1235 / 650;
}

.texan-site .texan-product-shipping-note .texan-us-flag {
  margin-left: 0;
  margin-right: 0.45rem;
}

.texan-site .texan-us-flag svg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2px;
  box-shadow: 0 1px 2px rgba(20, 23, 27, 0.14);
}

.texan-site .texan-product-stock {
  font-size: 1.4rem;
  line-height: 1.4;
  margin: 0 0 1rem;
  color: var(--texan-charcoal);
}

.texan-site .texan-product-stock strong {
  font-weight: 700;
}

.texan-site .texan-product-stock span {
  font-weight: 700;
  color: var(--texan-crimson);
}

.texan-site .texan-product-info .quantity__label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--texan-muted);
}

.texan-site .texan-product-description {
  font-size: 1.45rem;
  line-height: 1.75;
  color: var(--texan-steel-light);
}

.texan-site .texan-product-description > p:first-of-type {
  color: var(--texan-charcoal);
  font-size: 1.5rem;
  line-height: 1.7;
}

.texan-site .texan-product-description h3 {
  margin: 2.4rem 0 1.2rem;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--texan-charcoal);
  line-height: 1.3;
}

.texan-site .texan-product-description h3::after {
  content: '';
  display: block;
  width: 3.2rem;
  height: 2px;
  margin-top: 0.55rem;
  background: var(--texan-crimson);
  border-radius: 2px;
}

.texan-site .texan-product-description .texan-feature-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  margin: 0.5rem 0 1.6rem;
  padding: 1rem 1.2rem;
  background: var(--texan-silver);
  border-radius: var(--texan-radius-sm);
  border: 1px solid rgba(20, 23, 27, 0.06);
}

.texan-site .texan-product-description .feature-bullet-line {
  display: block;
  margin: 0;
  padding-left: 1.75em;
  text-indent: -1.75em;
  color: var(--texan-charcoal);
  font-size: 1.42rem;
  line-height: 1.55;
}

.texan-site .texan-product-description .texan-specs-panel {
  margin: 0.5rem 0 1.6rem;
  padding: 1rem 1.4rem;
  background: var(--texan-silver);
  border-radius: var(--texan-radius-sm);
  border: 1px solid rgba(20, 23, 27, 0.06);
}

.texan-site .texan-product-description .texan-spec-line {
  display: block;
  padding: 0.5rem 0;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--texan-charcoal);
  border-bottom: 1px solid rgba(20, 23, 27, 0.07);
}

.texan-site .texan-product-description .texan-spec-line:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.texan-site .texan-product-description ul {
  margin: 0.6rem 0 1.4rem;
  padding: 1rem 1.4rem;
  background: var(--texan-silver);
  border-radius: var(--texan-radius-sm);
  border: 1px solid rgba(20, 23, 27, 0.06);
  list-style: none;
}

.texan-site .texan-product-description ul li {
  padding: 0.55rem 0;
  font-size: 1.4rem;
  line-height: 1.5;
  color: var(--texan-charcoal);
  border-bottom: 1px solid rgba(20, 23, 27, 0.07);
}

.texan-site .texan-product-description ul li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.texan-site .texan-product-description ul li strong {
  font-weight: 700;
  color: var(--texan-steel);
}

.texan-site .product__text.caption-with-letter-spacing {
  color: var(--texan-crimson);
  font-weight: 700;
}

.texan-site .product__accordion .accordion__title {
  font-weight: 700;
}

.texan-site .accordion__content {
  color: var(--texan-muted);
}

/* ── Site-wide: pages, blog, search ───────────────────── */

.texan-site .main-page-title,
.texan-site .title--primary,
.texan-site .article-template__title,
.texan-site .template-search__header .title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.texan-site .main-page-title::after,
.texan-site .title--primary::after,
.texan-site .template-search__header .title::after {
  content: '';
  display: block;
  width: 4.8rem;
  height: 3px;
  margin-top: 1rem;
  background: var(--texan-crimson);
  border-radius: 2px;
}

.texan-site .texan-policy-page {
  padding: 36px 0 52px;
}

.texan-site .texan-policy-page__body {
  font-size: 1.45rem;
  line-height: 1.65;
  color: var(--texan-muted);
}

.texan-site .texan-policy-page__body h2 {
  margin: 2.8rem 0 1rem;
  font-size: clamp(1.8rem, 1.4rem + 0.7vw, 2.2rem);
  font-weight: 800;
  color: var(--texan-charcoal);
  border-left: 4px solid var(--texan-crimson);
  padding-left: 1.2rem;
}

.texan-site .texan-policy-page__body p,
.texan-site .texan-policy-page__body li {
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.texan-site .texan-policy-page__body a {
  color: var(--texan-crimson);
  font-weight: 600;
}

.texan-site .card__badge {
  background: transparent;
}

.texan-site .card__badge .badge {
  background: var(--texan-crimson);
  color: var(--texan-white);
  border-color: transparent;
}

/* ── Site-wide: footer ─────────────────────────────────── */

.texan-site .footer.texan-footer {
  background: linear-gradient(180deg, var(--texan-steel) 0%, var(--texan-charcoal) 100%) !important;
  border-top: 3px solid var(--texan-crimson);
  color: rgba(255, 255, 255, 0.9);
}

.texan-site .footer.texan-footer.color-scheme-3.gradient {
  background: linear-gradient(180deg, var(--texan-steel) 0%, var(--texan-charcoal) 100%) !important;
}

.texan-site .texan-footer .footer__content-top {
  padding-bottom: 0;
}

.texan-site .texan-footer__brand-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 3.6rem;
  margin-bottom: 3.6rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.texan-site .texan-footer__logo-link {
  display: block;
  margin-bottom: 1.2rem;
  text-decoration: none;
  background: transparent;
}

.texan-site .texan-footer__logo {
  display: block;
  width: auto;
  max-width: 16.8rem;
  height: auto;
  margin: 0 auto;
  background: transparent;
}

.texan-site .texan-footer__logo-text {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: var(--texan-white);
}

.texan-site .texan-footer__tagline {
  font-size: 1.4rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
  max-width: 52rem;
  margin: 0;
}

.texan-site .texan-footer .footer__blocks-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .texan-site .texan-footer .footer__blocks-wrapper {
    grid-template-columns: repeat(3, 1fr);
    gap: 4rem;
    row-gap: 0;
  }
}

.texan-site .texan-footer .footer-block.grid__item {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.texan-site .texan-footer .footer-block:only-child:last-child {
  text-align: left;
  max-width: none;
  margin: 0;
}

.texan-site .texan-footer .footer-block__heading {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texan-white);
  margin-bottom: 1.6rem;
}

.texan-site .texan-footer .footer-block__heading::after {
  content: '';
  display: block;
  width: 3.2rem;
  height: 2px;
  margin-top: 0.6rem;
  background: var(--texan-crimson);
  border-radius: 2px;
}

.texan-site .texan-footer .footer-block__details-content.rte {
  font-size: 1.4rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.72);
}

.texan-site .texan-footer .footer-block__details-content.rte p + p {
  margin-top: 1.2rem;
}

.texan-site .texan-footer .footer-block__details-content.rte strong {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
}

.texan-site .texan-footer .footer-block__details-content.rte a {
  color: rgba(255, 255, 255, 0.92);
  text-decoration: underline;
  text-underline-offset: 0.2em;
  transition: color 0.2s ease;
}

.texan-site .texan-footer .footer-block__details-content.rte a:hover {
  color: var(--texan-crimson-light);
}

.texan-site .texan-footer .footer-block__details-content .list-menu__item--link {
  display: block;
  padding: 0.35rem 0;
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  transition: color 0.2s ease;
}

.texan-site .texan-footer .footer-block__details-content .list-menu__item--link:hover {
  color: var(--texan-crimson-light);
}

.texan-site .texan-footer .footer-block--newsletter {
  margin-top: 4rem;
  padding-top: 3.6rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  align-items: flex-start;
  gap: 2.4rem;
}

@media screen and (min-width: 750px) {
  .texan-site .texan-footer .footer-block--newsletter {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
}

.texan-site .texan-footer .footer-block__newsletter {
  flex: 1 1 28rem;
  max-width: 52rem;
  text-align: left;
}

.texan-site .texan-footer .footer-block__newsletter .footer-block__heading {
  margin-bottom: 1.2rem;
}

.texan-site .texan-footer .newsletter-form__field-wrapper {
  max-width: 100%;
}

.texan-site .texan-footer .field {
  border-radius: var(--texan-radius-sm);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.texan-site .texan-footer .field::after {
  box-shadow: none;
}

.texan-site .texan-footer .field__input {
  background: transparent;
  color: var(--texan-white);
  border: none;
  padding: 1.4rem 1.6rem;
}

.texan-site .texan-footer .field__input:focus {
  box-shadow: none;
}

.texan-site .texan-footer .field__label {
  color: rgba(255, 255, 255, 0.5);
}

.texan-site .texan-footer .field__input:focus ~ .field__label,
.texan-site .texan-footer .field__input:not(:placeholder-shown) ~ .field__label {
  color: rgba(255, 255, 255, 0.45);
}

.texan-site .texan-footer .newsletter-form__button.field__button {
  background: var(--texan-crimson);
  color: var(--texan-white);
  border-radius: 0 var(--texan-radius-sm) var(--texan-radius-sm) 0;
  transition: background-color 0.2s ease;
}

.texan-site .texan-footer .newsletter-form__button.field__button:hover {
  background: var(--texan-crimson-light);
}

.texan-site .texan-footer .newsletter-form__button .icon {
  color: var(--texan-white);
}

.texan-site .texan-footer .footer__follow-on-shop {
  flex-shrink: 0;
  align-self: flex-end;
}

.texan-site .texan-footer .footer__list-social .list-social__link {
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s ease;
}

.texan-site .texan-footer .footer__list-social .list-social__link:hover {
  color: var(--texan-crimson-light);
}

.texan-site .texan-footer .footer__content-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2.8rem;
  margin-top: 3.6rem;
}

.texan-site .texan-footer .footer__content-bottom-wrapper {
  justify-content: center;
}

.texan-site .texan-footer .footer__column--info {
  align-items: center;
  padding: 0;
}

.texan-site .texan-footer .footer__payment {
  background: rgba(255, 255, 255, 0.06);
  padding: 1.2rem 1.8rem;
  border-radius: var(--texan-radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.texan-site .texan-footer .list-payment {
  justify-content: center;
  gap: 0.6rem;
}

.texan-site .texan-footer .footer__copyright {
  text-align: center;
  margin-top: 2rem;
}

.texan-site .texan-footer .copyright__content {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.2rem;
}

.texan-site .texan-footer .copyright__content a {
  color: rgba(255, 255, 255, 0.68);
  transition: color 0.2s ease;
}

.texan-site .texan-footer .copyright__content a:hover {
  color: var(--texan-crimson-light);
}

.texan-site .texan-footer .footer__copyright > small.copyright__content:nth-of-type(2) {
  display: none;
}

.texan-site .texan-footer .policies {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem 1.6rem;
  margin-top: 0.8rem;
}

@media screen and (max-width: 749px) {
  .texan-site .texan-footer .footer-block--newsletter {
    flex-direction: column;
    align-items: stretch;
  }

  .texan-site .texan-footer .footer-block__newsletter {
    text-align: center;
  }

  .texan-site .texan-footer .footer__follow-on-shop {
    align-self: center;
  }

  .texan-site .texan-footer .footer-block__heading::after {
    margin-left: auto;
    margin-right: auto;
  }

  .texan-site .texan-footer .footer-block--menu .footer-block__heading::after,
  .texan-site .texan-footer .footer-block .footer-block__heading::after {
    margin-left: 0;
    margin-right: auto;
  }

  .texan-site .texan-footer .footer-block.footer-block--menu {
    text-align: left;
  }
}

/* ── Site-wide: filters, facets, pagination ─────────────── */

.texan-site .facets__heading,
.texan-site .facet-filters__label {
  font-weight: 700;
  color: var(--texan-charcoal);
}

.texan-site .pagination__item--current {
  background: var(--texan-crimson);
  border-color: var(--texan-crimson);
  color: var(--texan-white);
}

.texan-site .pagination__item--link:hover {
  color: var(--texan-crimson);
}

.texan-site .facet-checkbox > input[type='checkbox']:checked ~ .facet-checkbox__text-label {
  color: var(--texan-crimson);
}

/* ── Site-wide: cart ───────────────────────────────────── */

.texan-site .cart-item__name {
  font-weight: 600;
}

.texan-site .cart__checkout-button {
  border-radius: var(--texan-radius-sm);
}

.texan-site .totals__total-value {
  color: var(--texan-charcoal);
  font-weight: 800;
}

.texan-site .cart__free-shipping-notice {
  margin: 12px 0;
}

.texan-site .cart__free-shipping-text {
  color: var(--texan-success);
  font-weight: 600;
  margin: 0;
}

/* Constrain tall/wide product thumbnails so rows and cards stay even */
.texan-site .product-card-wrapper .card.ratio::before,
.texan-site .product-card-wrapper .card__inner.ratio::before {
  padding-bottom: min(var(--ratio-percent), 100%);
}

.texan-site .product-card-wrapper .card__media .media img {
  object-fit: contain;
  background-color: var(--texan-white);
}

.texan-site .cart-item__image-container {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 10rem;
  height: 10rem;
  max-width: 10rem;
  max-height: 10rem;
  overflow: hidden;
  flex-shrink: 0;
}

.texan-site .cart-item__image {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.texan-site .cart-drawer .cart-item__image-container {
  width: 8rem;
  height: 8rem;
  max-width: 8rem;
  max-height: 8rem;
}

.texan-site .variant-item__image-container {
  overflow: hidden;
  flex-shrink: 0;
}

.texan-site .variant-item__image {
  object-fit: contain;
  background: rgb(var(--color-background));
}

.texan-site .predictive-search__image {
  width: 5rem;
  height: 5rem;
  max-width: 5rem;
  max-height: 5rem;
  object-fit: contain;
}

.texan-site .cart-notification .button--secondary {
  color: var(--texan-crimson) !important;
  border: 2px solid var(--texan-crimson) !important;
  background: var(--texan-white) !important;
  font-weight: 700 !important;
  border-radius: var(--texan-radius-sm);
}

.texan-site .cart-notification .button--secondary:hover {
  background: var(--texan-crimson) !important;
  color: var(--texan-white) !important;
}

.texan-site .cart-notification .button--primary {
  border-radius: var(--texan-radius-sm);
}

/* ── Site-wide: content links ─────────────────────────── */

.texan-site .rte a {
  color: var(--texan-crimson);
}

.texan-site .rte a:hover {
  color: var(--texan-crimson-dark);
}

/* ── Collections list page (/collections) ─────────────── */

.texan-site .texan-collections-page-section {
  background: var(--texan-silver);
}

.texan-site .texan-collections-page {
  padding: 3.6rem 0 5.6rem;
}

@media screen and (min-width: 750px) {
  .texan-site .texan-collections-page {
    padding: 4.8rem 0 6.4rem;
  }
}

.texan-site .texan-collections-page__header {
  margin-bottom: 2.8rem;
  max-width: 52rem;
}

.texan-site .texan-collections-page__subtitle {
  margin: 1.2rem 0 0;
  font-size: 1.6rem;
  line-height: 1.55;
  color: var(--texan-muted);
}

.texan-site .texan-collections-page__group {
  margin-bottom: 4.4rem;
}

.texan-site .texan-collections-page__group:last-of-type {
  margin-bottom: 0;
}

.texan-site .texan-collections-page__group-heading {
  margin: 0 0 2rem;
  font-size: clamp(2rem, 2.4vw, 2.6rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--texan-charcoal);
  letter-spacing: -0.02em;
}

.texan-site .texan-collections-page__group-heading::after {
  content: '';
  display: block;
  width: 4.8rem;
  height: 0.3rem;
  margin-top: 1rem;
  border-radius: 999px;
  background: var(--texan-crimson);
}

.texan-site .texan-collections-page .collection-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 0;
  margin-bottom: 0;
  padding: 0;
}

@media screen and (min-width: 750px) {
  .texan-site .texan-collections-page .collection-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.6rem;
  }
}

.texan-site .texan-collections-page .collection-list > .collection-list__item {
  width: auto;
  max-width: none;
  margin-bottom: 0;
  flex-grow: 0;
  flex-shrink: 0;
}

/* Card shell */
.texan-site .texan-collection-card.card-wrapper .card {
  border-radius: var(--texan-radius);
  overflow: hidden;
  background: var(--texan-white);
  box-shadow: var(--texan-shadow-soft);
  border: 1px solid rgba(20, 23, 27, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.texan-site .texan-collection-card.card-wrapper:hover .card {
  transform: translateY(-4px);
  box-shadow: var(--texan-shadow);
}

.texan-site .texan-collection-card .card__inner {
  background: var(--texan-white);
  border-radius: var(--texan-radius) var(--texan-radius) 0 0;
}

/* Hide duplicate overlay title on standard cards */
.texan-site .texan-collection-card .card__inner > .card__content {
  display: none;
}

.texan-site .texan-collection-card .card__media {
  margin: 0;
  width: 100%;
  background: var(--texan-white);
}

.texan-site .texan-collection-card .card__media .media img {
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
  padding: 1.2rem;
  box-sizing: border-box;
}

.texan-site .texan-collection-card--hero .card__media .media img {
  object-fit: cover;
  object-position: center center;
  padding: 0;
}

.texan-site .texan-collection-card--brand-logo .card__inner.ratio::before {
  padding-bottom: 100%;
}

.texan-site .texan-collection-card--brand-logo .card__media .media img {
  object-fit: contain;
  object-position: center center;
  width: 100%;
  height: 100%;
  padding: 0;
  box-sizing: border-box;
}

.texan-site .texan-collection-card .card__content {
  padding: 1.2rem 1.4rem 1.4rem;
  background: var(--texan-white);
  border-top: 1px solid rgba(20, 23, 27, 0.06);
}

.texan-site .texan-collection-card .card__information {
  text-align: center;
}

.texan-site .texan-collection-card .card__heading {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.3;
}

.texan-site .texan-collection-card .card__heading a {
  color: var(--texan-charcoal);
  transition: color 0.2s ease;
}

.texan-site .texan-collection-card.card-wrapper:hover .card__heading a {
  color: var(--texan-crimson);
}

.texan-site .texan-collection-card .card__caption {
  display: none;
}

.texan-site .texan-collection-card .icon-wrap {
  display: inline-flex;
  margin-left: 0.4rem;
  color: var(--texan-crimson);
  vertical-align: middle;
  transition: transform 0.2s ease;
}

.texan-site .texan-collection-card.card-wrapper:hover .icon-wrap {
  transform: translateX(2px);
}

.texan-site .texan-collection-card .icon-wrap .icon {
  width: 1.2rem;
  height: 1.2rem;
}

.texan-site .texan-collections-page .pagination-wrapper {
  margin-top: 3.2rem;
}

/* ── Recently viewed (product page) ─────────────────────── */

.texan-site .shopify-section.texan-recently-viewed-section,
.texan-site .texan-recently-viewed-section .texan-recently-viewed {
  background-color: var(--texan-silver);
  background-image: none;
}

.texan-site .texan-brand-strip-section + .texan-recently-viewed-section .texan-recently-viewed {
  padding-top: 0;
}

.texan-site .texan-brand-strip-section + .texan-recently-viewed-section [id^="rv-wrap-"] {
  padding-top: 2rem;
}

.texan-site .texan-recently-viewed .title.inline-richtext {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
}

.texan-site .texan-recently-viewed .title.inline-richtext::after {
  content: '';
  display: block;
  width: 4.8rem;
  height: 3px;
  margin-top: 1rem;
  background: var(--texan-crimson);
  border-radius: 2px;
}

.texan-site .texan-rv-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--grid-mobile-vertical-spacing) var(--grid-mobile-horizontal-spacing);
  margin-bottom: 0;
}

@media screen and (min-width: 750px) {
  .texan-site .texan-rv-grid {
    gap: var(--grid-desktop-vertical-spacing) var(--grid-desktop-horizontal-spacing);
  }
}

@media screen and (min-width: 990px) {
  .texan-site .texan-rv-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.texan-site .texan-rv-grid .grid__item {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  flex-grow: unset;
  flex-shrink: unset;
}

.texan-site .texan-rv-card {
  background: var(--texan-white);
  border-radius: var(--texan-radius-sm);
  box-shadow: var(--texan-shadow-soft);
  border: 1px solid rgba(20, 23, 27, 0.06);
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.texan-site .texan-rv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--texan-shadow);
}

.texan-site .texan-rv-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}

.texan-site .texan-rv-card__media {
  aspect-ratio: 1 / 1;
  background: var(--texan-white);
  overflow: hidden;
}

.texan-site .texan-rv-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.texan-site .texan-rv-card__media--placeholder {
  background: var(--texan-silver);
}

.texan-site .texan-rv-card__info {
  padding: 1rem 1.2rem 1.2rem;
}

.texan-site .texan-rv-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  line-height: 1.35;
  font-weight: 600;
  color: var(--texan-charcoal);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.texan-site .texan-rv-card__price {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--texan-charcoal);
}

/* ── Site-wide: search page ───────────────────────────── */

.texan-site .template-search__header {
  margin-bottom: 3rem;
}

.texan-site .template-search__search {
  margin: 0 auto 3.5rem;
  max-width: 74.1rem;
}

.texan-site .template-search__search .search {
  margin-top: 3rem;
}

.texan-site .template-search--empty {
  padding-bottom: 18rem;
}

@media screen and (min-width: 750px) {
  .texan-site .template-search__header {
    margin-bottom: 5rem;
  }
}

.texan-site .template-search .search__button .icon {
  height: 1.8rem;
}

.texan-site .template-search .field__input {
  border-radius: var(--texan-radius-sm);
  border-color: rgba(20, 23, 27, 0.15);
}

.texan-site .template-search .field__input:focus {
  border-color: var(--texan-crimson);
  box-shadow: 0 0 0 1px var(--texan-crimson);
}

/* ── Site-wide: 404 ───────────────────────────────────── */

.texan-site .template-404 .title--primary + * {
  margin-top: 1rem;
}

@media screen and (min-width: 750px) {
  .texan-site .template-404 .title--primary + * {
    margin-top: 2rem;
  }
}

.texan-site .template-404 .button {
  margin-top: 2rem;
  border-radius: var(--texan-radius-sm);
}

/* ── Site-wide: customer account ──────────────────────── */

.texan-site .customer h1,
.texan-site .customer .customer__title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.texan-site .customer a {
  transition: color 0.2s ease;
}

.texan-site .customer a:hover {
  color: var(--texan-crimson);
}

/* ── Site-wide: blog cards ────────────────────────────── */

.texan-site .blog-articles .card {
  border-radius: var(--texan-radius);
  box-shadow: var(--texan-shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.texan-site .blog-articles .card:hover {
  transform: translateY(-3px);
  box-shadow: var(--texan-shadow);
}

.texan-site .main-blog {
  background: var(--texan-silver);
  border-radius: var(--texan-radius);
  padding: 2.4rem;
}

@media screen and (min-width: 750px) {
  .texan-site .main-blog {
    padding: 3.6rem;
  }
}

/* ── Site-wide: product inventory status ──────────────── */

.texan-site .inventory-status--low {
  color: rgb(238, 148, 65);
}

.texan-site .inventory-status--in-stock {
  color: rgb(62, 214, 96);
}

.texan-site .inventory-status--out {
  color: rgb(200, 200, 200);
}

/* ── Site-wide: cart drawer (if enabled) ──────────────── */

.texan-site .cart-drawer .drawer__heading {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.texan-site .cart-drawer .drawer__inner {
  border-top: 3px solid var(--texan-crimson);
}

.texan-site .cart-drawer .cart__checkout-button {
  border-radius: var(--texan-radius-sm);
}

/* ── Site-wide: contact page ──────────────────────────── */

/* Form first when legacy main-page section is still on the template */
.texan-site.template-contact #MainContent {
  display: flex;
  flex-direction: column;
}

.texan-site.template-contact #MainContent > .shopify-section:has(.texan-contact) {
  order: -1;
}

.texan-site.template-contact #MainContent > .shopify-section:has(.main-page-title):not(:has(.texan-contact)) {
  display: none;
}

.texan-site .template-contact .main-page-title {
  font-weight: 800;
  letter-spacing: -0.02em;
}

.texan-site .template-contact .main-page-title::after {
  content: '';
  display: block;
  width: 4.8rem;
  height: 3px;
  margin-top: 1rem;
  background: var(--texan-crimson);
  border-radius: 2px;
}

.texan-site .texan-contact__intro {
  margin: 0 0 2.4rem;
  color: var(--texan-muted);
  font-size: 1.6rem;
  line-height: 1.6;
}

.texan-site .texan-contact__layout {
  display: grid;
  gap: 2.4rem;
}

@media screen and (min-width: 750px) {
  .texan-site .texan-contact__layout {
    grid-template-columns: minmax(0, 22rem) minmax(0, 1fr);
    gap: 2.8rem;
    align-items: start;
  }
}

@media screen and (min-width: 990px) {
  .texan-site .texan-contact__layout {
    grid-template-columns: minmax(0, 24rem) minmax(0, 1fr);
    gap: 3.2rem;
  }
}

.texan-site .texan-contact__form-wrap {
  padding: 2.4rem;
  background: var(--texan-white);
  border: 1px solid rgba(20, 23, 27, 0.12);
  border-radius: var(--texan-radius-sm);
  box-shadow: var(--texan-shadow-soft);
}

@media screen and (min-width: 750px) {
  .texan-site .texan-contact__form-wrap {
    padding: 2.8rem 3.2rem;
  }
}

.texan-site .texan-contact__info {
  padding: 2rem;
  background: var(--texan-white);
  border: 1px solid rgba(20, 23, 27, 0.12);
  border-radius: var(--texan-radius-sm);
  box-shadow: var(--texan-shadow-soft);
}

.texan-site .texan-contact__info-heading {
  margin: 0 0 1.6rem;
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texan-charcoal);
}

.texan-site .texan-contact__info-list {
  display: grid;
  gap: 1.4rem;
  margin: 0;
}

.texan-site .texan-contact__info-item {
  display: grid;
  gap: 0.35rem;
}

.texan-site .texan-contact__info-label {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texan-muted);
}

.texan-site .texan-contact__info-item a {
  font-weight: 600;
  color: var(--texan-charcoal);
}

.texan-site .texan-contact__info-item a:hover {
  color: var(--texan-crimson);
}

.texan-site .texan-contact__info-note {
  margin: 1.6rem 0 0;
  font-size: 1.3rem;
  color: var(--texan-muted);
}

.texan-site .texan-contact .title {
  margin-bottom: 1.2rem;
}

.texan-site .texan-contact .field__input,
.texan-site .texan-contact .text-area {
  border-radius: var(--texan-radius-sm);
}

.texan-site .texan-contact .field__input:focus,
.texan-site .texan-contact .text-area:focus {
  border-color: var(--texan-crimson);
  box-shadow: 0 0 0 1px rgba(191, 14, 61, 0.15);
}

.texan-site .texan-contact__honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.texan-site .texan-contact__captcha {
  margin-top: 0.4rem;
  padding: 1.6rem 1.8rem;
  background: linear-gradient(180deg, rgba(191, 14, 61, 0.05) 0%, rgba(255, 255, 255, 0.9) 100%);
  border: 1px solid rgba(191, 14, 61, 0.18);
  border-radius: var(--texan-radius-sm);
}

.texan-site .texan-contact__captcha-header {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.4rem;
}

@media screen and (min-width: 750px) {
  .texan-site .texan-contact__captcha-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
}

.texan-site .texan-contact__captcha-badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 0.35rem 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--texan-white);
  background: var(--texan-crimson);
  border-radius: 999px;
}

.texan-site .texan-contact__captcha-hint {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.5;
  color: var(--texan-muted);
}

.texan-site .texan-contact__captcha-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media screen and (min-width: 550px) {
  .texan-site .texan-contact__captcha-row {
    flex-direction: row;
    align-items: center;
    gap: 1.4rem;
  }
}

.texan-site .texan-contact__captcha-question {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--texan-charcoal);
  white-space: nowrap;
}

.texan-site .texan-contact__captcha-required {
  margin-left: 0.2rem;
  color: var(--texan-crimson);
}

.texan-site .texan-contact__captcha-input {
  width: 100%;
  max-width: 12rem;
  min-height: 4.8rem;
  padding: 1rem 1.2rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  color: var(--texan-charcoal);
  background: var(--texan-white);
  border: 1px solid rgba(20, 23, 27, 0.18);
  border-radius: var(--texan-radius-sm);
  box-shadow: inset 0 1px 2px rgba(20, 23, 27, 0.04);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

@media screen and (min-width: 550px) {
  .texan-site .texan-contact__captcha-input {
    flex-shrink: 0;
  }
}

.texan-site .texan-contact__captcha-input:focus {
  outline: none;
  border-color: var(--texan-crimson);
  box-shadow: 0 0 0 3px rgba(191, 14, 61, 0.12);
}

.texan-site .texan-contact__captcha-input[aria-invalid='true'] {
  border-color: var(--texan-crimson);
  background: rgba(191, 14, 61, 0.04);
}

.texan-site .texan-contact__captcha-error {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1rem 0 0;
  padding: 0.8rem 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--texan-crimson);
  background: rgba(191, 14, 61, 0.08);
  border-radius: var(--texan-radius-sm);
}

.texan-site .texan-contact__captcha-error[hidden] {
  display: none;
}

.texan-site .texan-contact__captcha-error::before {
  content: '!';
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--texan-white);
  background: var(--texan-crimson);
  border-radius: 50%;
}

.texan-site .texan-contact .contact__button {
  margin-top: 2rem;
}

.texan-site .texan-contact .contact__button .button {
  min-width: 16rem;
  border-radius: var(--texan-radius-sm);
}

.texan-site .texan-contact__success {
  padding: 1.6rem;
  background: rgba(34, 139, 34, 0.08);
  border: 1px solid rgba(34, 139, 34, 0.25);
  border-radius: var(--texan-radius-sm);
}

.texan-site .texan-contact .contact__button .button,
.texan-site .contact .contact__button .button {
  background-color: var(--texan-crimson) !important;
  color: var(--texan-white) !important;
  border: 2px solid var(--texan-crimson) !important;
  font-weight: 700 !important;
}

.texan-site .texan-contact .contact__button .button:hover,
.texan-site .contact .contact__button .button:hover {
  background-color: var(--texan-white) !important;
  color: var(--texan-crimson) !important;
}

.texan-site .texan-contact__map-wrap {
  margin-top: 3.2rem;
  overflow: hidden;
  border: 1px solid rgba(20, 23, 27, 0.12);
  border-radius: var(--texan-radius-sm);
  box-shadow: var(--texan-shadow-soft);
}

.texan-site .texan-contact__map {
  display: block;
  width: 100%;
  min-height: 32rem;
  border: 0;
}

@media screen and (min-width: 750px) {
  .texan-site .texan-contact__map {
    min-height: 42rem;
  }
}

/* ── FAQ page ─────────────────────────────────────────── */

.texan-site.template-faq #MainContent {
  background: linear-gradient(180deg, var(--texan-silver) 0%, var(--texan-white) 24rem);
}

.texan-site .texan-faq {
  max-width: 92rem;
}

.texan-site .texan-faq__header {
  margin-bottom: 3.2rem;
}

.texan-site .texan-faq__intro {
  max-width: 62rem;
  margin-top: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.65;
  color: var(--texan-muted);
}

.texan-site .texan-faq__intro a {
  color: var(--texan-crimson);
  font-weight: 600;
}

.texan-site .texan-faq__intro a:hover {
  color: var(--texan-crimson-dark);
}

.texan-site .texan-faq__categories {
  display: grid;
  gap: 2.4rem;
}

@media screen and (min-width: 750px) {
  .texan-site .texan-faq__categories {
    gap: 3.2rem;
  }
}

.texan-site .texan-faq__category {
  background: var(--texan-white);
  border: 1px solid rgba(20, 23, 27, 0.08);
  border-radius: var(--texan-radius);
  box-shadow: var(--texan-shadow-soft);
  overflow: hidden;
}

.texan-site .texan-faq__category-title {
  margin: 0;
  padding: 1.8rem 2rem;
  font-size: clamp(1.5rem, 1.2rem + 0.6vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--texan-charcoal);
  background: linear-gradient(90deg, rgba(191, 14, 61, 0.08) 0%, rgba(191, 14, 61, 0) 100%);
  border-bottom: 1px solid rgba(20, 23, 27, 0.08);
  border-left: 4px solid var(--texan-crimson);
}

@media screen and (min-width: 750px) {
  .texan-site .texan-faq__category-title {
    padding: 2rem 2.4rem;
  }
}

.texan-site .texan-faq__items {
  padding: 0.4rem 0;
}

.texan-site .texan-faq__item {
  border-bottom: 1px solid rgba(20, 23, 27, 0.08);
}

.texan-site .texan-faq__item:last-child {
  border-bottom: 0;
}

.texan-site .texan-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.6rem;
  padding: 1.6rem 2rem;
  cursor: pointer;
  list-style: none;
  font-size: inherit;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.texan-site .texan-faq__question::-webkit-details-marker {
  display: none;
}

@media screen and (min-width: 750px) {
  .texan-site .texan-faq__question {
    padding: 1.9rem 2.4rem;
  }
}

.texan-site .texan-faq__question-text {
  flex: 1;
  font-size: clamp(1.9rem, 1.55rem + 0.9vw, 2.4rem);
  font-weight: 700;
  line-height: 1.3;
  color: var(--texan-charcoal);
}

@media screen and (min-width: 990px) {
  .texan-site .texan-faq__question-text {
    font-size: clamp(2.2rem, 1.85rem + 0.55vw, 2.8rem);
  }
}

@media screen and (min-width: 1400px) {
  .texan-site .texan-faq__question-text {
    font-size: 2.8rem;
  }
}

.texan-site .texan-faq__icon {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 999px;
  background: rgba(191, 14, 61, 0.1);
  position: relative;
  transition: background-color 0.2s ease, transform 0.2s ease;
}

.texan-site .texan-faq__icon::before,
.texan-site .texan-faq__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.2rem;
  height: 2px;
  background: var(--texan-crimson);
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.texan-site .texan-faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.texan-site .texan-faq__item[open] .texan-faq__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.texan-site .texan-faq__item[open] .texan-faq__question {
  background: rgba(191, 14, 61, 0.05);
}

.texan-site .texan-faq__item[open] .texan-faq__question-text {
  color: var(--texan-crimson);
}

.texan-site .texan-faq__question:hover {
  background: rgba(191, 14, 61, 0.04);
}

.texan-site .texan-faq__question:hover .texan-faq__icon {
  background: rgba(191, 14, 61, 0.16);
}

.texan-site .texan-faq__answer {
  padding: 0 2rem 1.8rem;
  font-size: 1.45rem;
  line-height: 1.65;
  color: var(--texan-muted);
}

@media screen and (min-width: 750px) {
  .texan-site .texan-faq__answer {
    padding: 0 2.4rem 2.2rem;
    font-size: 1.5rem;
  }
}

.texan-site .texan-faq__answer p {
  margin: 0 0 1rem;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
}

.texan-site .texan-faq__answer p:last-child {
  margin-bottom: 0;
}

.texan-site .texan-faq__answer a {
  color: var(--texan-crimson);
  font-weight: 600;
}

/* Fallback styling before JS enhancement */
.texan-site .texan-faq__source:not(.texan-faq__source--enhanced) h2,
.texan-site .texan-faq__source:not(.texan-faq__source--enhanced) h2[style] {
  margin: 3rem 0 1.2rem !important;
  font-size: clamp(1.8rem, 1.4rem + 0.7vw, 2.2rem) !important;
  font-weight: 800 !important;
  color: var(--texan-charcoal) !important;
  border-left: 4px solid var(--texan-crimson);
  padding-left: 1.2rem;
}

.texan-site .texan-faq__source:not(.texan-faq__source--enhanced) h3,
.texan-site .texan-faq__source:not(.texan-faq__source--enhanced) h3[style] {
  margin: 2rem 0 0.8rem !important;
  font-size: clamp(2rem, 1.6rem + 0.9vw, 2.8rem) !important;
  font-weight: 700 !important;
  color: var(--texan-charcoal) !important;
}

.texan-site .texan-faq__source:not(.texan-faq__source--enhanced) p {
  font-size: 1.45rem !important;
  line-height: 1.65 !important;
  color: var(--texan-muted) !important;
}

/* Product gallery: compact 4-across thumbnails under the main image */
.texan-site .product--thumbnail .thumbnail-slider,
.texan-site .product--mobile-show .thumbnail-slider {
  margin-top: 1rem;
}

.texan-site .product--thumbnail .thumbnail-slider .slider-button,
.texan-site .product--mobile-show .thumbnail-slider .slider-button {
  display: none;
}

.texan-site .product--thumbnail .thumbnail-list,
.texan-site .product--medium .thumbnail-list,
.texan-site .product--large .thumbnail-list {
  grid-template-columns: repeat(4, 1fr);
  gap: 0.8rem;
}

@media screen and (max-width: 749px) {
  .texan-site .thumbnail-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.6rem;
  }

  .texan-site .thumbnail-list__item.slider__slide {
    width: auto;
  }
}

@media screen and (min-width: 990px) {
  .texan-site .product--medium .thumbnail-list,
  .texan-site .product--large .thumbnail-list {
    grid-template-columns: repeat(4, 1fr);
  }
}

