.ctb-badge {
  display: inline-flex;
  flex-shrink: 0;
  padding: 2px 6px;
  border-radius: 100px;
  font-size: var(--wp--preset--font-size--xx-small);
  font-weight: 400;
  line-height: normal;
}
.ctb-badge--standard {
  background: #DCFCE7;
  color: var(--wp--preset--color--primary-dark);
}
.ctb-badge--option {
  background: #DBEAFE;
  color: var(--wp--preset--color--primary-dark);
}

.ctb-hero {
  padding: 2rem 0;
}
@media only screen and (min-width: 768px) {
  .ctb-hero {
    padding: 4rem 0;
    min-height: 65vh;
    display: flex;
    align-items: center;
  }
}
.ctb-hero__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-hero__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-hero__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .ctb-hero__inner {
    flex-direction: row;
    align-items: center;
    gap: 3rem;
  }
}
.ctb-hero__image {
  flex: 1 1 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ctb-hero__image img {
  width: 100%;
  height: auto;
  max-height: 500px;
  object-fit: contain;
}
.ctb-hero__placeholder {
  width: 100%;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  color: var(--wp--preset--color--gray);
  border-radius: 8px;
}
.ctb-hero__placeholder .dashicons {
  font-size: 64px;
  width: 64px;
  height: 64px;
}
.ctb-hero__content {
  flex: 1 1 52%;
}
.ctb-hero__breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.375rem;
  margin-bottom: 0.75rem;
  font-size: var(--wp--preset--font-size--xx-small);
}
.ctb-hero__breadcrumb-link {
  color: var(--wp--preset--color--off-black);
  text-decoration: none;
}
.ctb-hero__breadcrumb-link:hover {
  text-decoration: underline;
}
.ctb-hero__breadcrumb-sep {
  margin: 0 0.125rem;
  color: var(--wp--preset--color--gray);
}
.ctb-hero__breadcrumb-current {
  color: var(--wp--preset--color--accent);
}
.ctb-hero__title {
  font-size: var(--wp--preset--font-size--h-1);
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--wp--preset--color--off-black);
  font-weight: 700;
}
.ctb-hero__description {
  font-size: var(--wp--preset--font-size--small);
  max-width: 600px;
  margin: 0 0 1.5rem;
  color: var(--wp--preset--color--off-black);
  line-height: 1.6;
}
.ctb-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin: 0 0 1.5rem;
  font-size: var(--wp--preset--font-size--small);
  color: var(--wp--preset--color--off-black);
}
.ctb-hero__meta-item strong {
  margin-right: 0.25rem;
}
.ctb-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.ctb-hero__cta {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.125rem;
  border: none;
  text-decoration: none;
  font-family: var(--wp--preset--font-family--inter, sans-serif);
  font-size: var(--wp--preset--font-size--x-small, 0.875rem);
  font-weight: 600;
  line-height: 1.25rem;
  position: relative;
  isolation: isolate;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
.ctb-hero__cta::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.ctb-hero__cta:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.ctb-hero__cta:hover::before {
  opacity: 1;
}
.ctb-hero__cta {
  color: #fff;
  background: linear-gradient(97deg, var(--wp--preset--color--accent-yellow) 0%, var(--wp--preset--color--accent-orange) 20%, var(--wp--preset--color--accent-orange) 80%, var(--wp--preset--color--accent-yellow) 100%);
}
.ctb-hero__cta::before {
  background: linear-gradient(83deg, var(--wp--preset--color--accent-yellow) 0%, var(--wp--preset--color--accent-orange) 30%, var(--wp--preset--color--accent-orange) 70%, var(--wp--preset--color--accent-yellow) 100%);
}
.ctb-hero__cta:hover {
  color: #fff;
}
.ctb-hero__brochure {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--wp--preset--color--off-black);
  color: var(--wp--preset--color--off-black);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.ctb-hero__brochure:hover {
  border-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary);
}

.ctb-specs-bar {
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
  padding: 1.5rem 0;
}
.ctb-specs-bar__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-specs-bar__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-specs-bar__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media only screen and (min-width: 768px) {
  .ctb-specs-bar__inner {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}
.ctb-specs-bar__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.ctb-specs-bar__icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wp--preset--color--accent);
}
.ctb-specs-bar__icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
}
.ctb-specs-bar__text {
  display: flex;
  flex-direction: column;
}
.ctb-specs-bar__label {
  font-size: var(--wp--preset--font-size--x-small);
  opacity: 0.75;
  line-height: 1.3;
}
.ctb-specs-bar__value {
  font-size: var(--wp--preset--font-size--small);
  font-weight: 700;
  line-height: 1.3;
}

.ctb-about {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.ctb-about__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-about__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-about__inner {
  display: grid;
  gap: 2rem;
}
@media only screen and (min-width: 1024px) {
  .ctb-about__inner {
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}
.ctb-about__heading {
  font-size: var(--wp--preset--font-size--h-2);
  margin: 0 0 1rem;
}
.ctb-about__description {
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.7;
}
.ctb-about__description p {
  margin: 0 0 1rem;
}
.ctb-about__description p:last-child {
  margin-bottom: 0;
}
.ctb-about__features {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.5rem;
}
.ctb-about__feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--wp--preset--font-size--x-small);
}
.ctb-about__check-icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--wp--preset--color--primary-dark);
}
.ctb-about__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  border-radius: 8px;
  overflow: hidden;
}
.ctb-about__gallery-item {
  overflow: hidden;
  border-radius: 8px;
}
.ctb-about__gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
@media only screen and (min-width: 1024px) {
  .ctb-about__gallery-item img {
    height: 220px;
  }
}

.ctb-option-card {
  display: flex;
  flex-direction: column;
  background: var(--wp--preset--color--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: var(--wp--preset--color--off-black);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  cursor: pointer;
}
.ctb-option-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.ctb-option-card__image {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #f8f9fa;
}
.ctb-option-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.ctb-option-card:hover .ctb-option-card__image img {
  transform: scale(1.05);
}
.ctb-option-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}
.ctb-option-card__placeholder .dashicons {
  font-size: 48px;
  width: 48px;
  height: 48px;
}
.ctb-option-card__content {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ctb-option-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}
.ctb-option-card__title {
  font-family: var(--wp--preset--font-family--inter);
  font-size: var(--wp--preset--font-size--x-small);
  font-weight: 700;
  color: #101828;
  margin: 0;
  line-height: normal;
}
.ctb-option-card__desc {
  font-size: var(--wp--preset--font-size--xx-small);
  color: #4A5565;
  margin: 0;
  line-height: normal;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.ctb-option-card__desc--override {
  font-style: italic;
}

.ctb-option-grid,
.ctb-options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  transition: opacity 150ms ease;
}
.ctb-option-grid.is-switching,
.ctb-options-grid.is-switching {
  opacity: 0;
}
@media only screen and (min-width: 768px) {
  .ctb-option-grid,
  .ctb-options-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

.ctb-option-grid--list {
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 768px) {
  .ctb-option-grid--list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.ctb-option-grid--list .ctb-option-card {
  flex-direction: row;
  border: 1px solid #E5E7EB;
  box-shadow: none;
}
.ctb-option-grid--list .ctb-option-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.ctb-option-grid--list .ctb-option-card .ctb-option-card__image {
  width: 120px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.ctb-option-grid--list .ctb-option-card .ctb-option-card__image img {
  height: 100%;
  object-fit: cover;
}

.ctb-standard-features {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.ctb-standard-features__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-standard-features__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-standard-features__header {
  margin-bottom: 2rem;
}
.ctb-standard-features__title {
  font-size: var(--wp--preset--font-size--h-3);
  margin: 0;
}
.ctb-standard-features__subtitle {
  font-size: var(--wp--preset--font-size--small);
  color: #666;
  margin: 0.25rem 0 0;
  max-width: 600px;
}
.ctb-standard-features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .ctb-standard-features__grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
.ctb-standard-features {
  background: #f8f9fa;
}

.ctb-interior-options {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.ctb-interior-options__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-interior-options__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-interior-options__header {
  margin-bottom: 2rem;
}
.ctb-interior-options__title {
  font-size: var(--wp--preset--font-size--h-3);
  margin: 0;
}
.ctb-interior-options__subtitle {
  font-size: var(--wp--preset--font-size--small);
  color: #666;
  margin: 0.25rem 0 0;
  max-width: 600px;
}
.ctb-interior-options__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .ctb-interior-options__grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}

.ctb-all-options {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.ctb-all-options__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-all-options__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-all-options__header {
  margin-bottom: 2rem;
}
.ctb-all-options__title {
  font-size: var(--wp--preset--font-size--h-3);
  margin: 0;
}
.ctb-all-options__subtitle {
  font-size: var(--wp--preset--font-size--small);
  color: #666;
  margin: 0.25rem 0 0;
  max-width: 600px;
}
.ctb-all-options__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .ctb-all-options__grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
.ctb-all-options {
  background: #EFF1F3;
}
.ctb-all-options__inner {
  background: var(--wp--preset--color--white);
  border-radius: 16px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.06), 0 4px 16px rgba(0, 0, 0, 0.04);
  padding: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .ctb-all-options__inner {
    padding: 2rem 2.5rem;
  }
}
.ctb-all-options__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.ctb-all-options__subtitle {
  margin-bottom: 1.5rem;
}
.ctb-all-options__toolbar {
  margin-bottom: 1.5rem;
}
.ctb-all-options__view-toggle {
  display: none;
}
@media only screen and (min-width: 768px) {
  .ctb-all-options__view-toggle {
    position: relative;
    display: flex;
    align-items: center;
    background: #E5E7EB;
    border-radius: 8px;
    padding: 4px;
  }
}
.ctb-all-options__view-toggle::before {
  content: "";
  position: absolute;
  top: 4px;
  bottom: 4px;
  left: 4px;
  width: calc(50% - 4px);
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: left 0.3s ease;
  pointer-events: none;
}
.ctb-all-options__view-toggle--list-active::before {
  left: 50%;
}
.ctb-all-options__desktop {
  display: none;
}
@media only screen and (min-width: 768px) {
  .ctb-all-options__desktop {
    display: block;
  }
}
.ctb-all-options__mobile {
  display: block;
}
@media only screen and (min-width: 768px) {
  .ctb-all-options__mobile {
    display: none;
  }
}

.ctb-category-group {
  border-bottom: 1px solid #E5E7EB;
}
.ctb-category-group:first-child {
  border-top: 1px solid #E5E7EB;
}
.ctb-category-group__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 1rem;
}
.ctb-category-group__header[aria-expanded=true] .ctb-category-group__icon {
  transform: rotate(180deg);
}
.ctb-category-group__name {
  flex: 1;
  font-family: var(--wp--preset--font-family--inter);
  font-size: var(--wp--preset--font-size--x-small);
  font-weight: 600;
  color: #0D2440;
}
.ctb-category-group__count {
  font-weight: 400;
  color: #6B7280;
  margin-left: 0.25rem;
}
.ctb-category-group__icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #0D2440;
}
.ctb-category-group__body {
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.ctb-category-group__body[hidden] {
  display: block;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.ctb-category-group__body:not([hidden]) {
  max-height: 4000px;
  padding-bottom: 1rem;
}
.ctb-category-group__cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.ctb-category-group__cards .ctb-option-card {
  flex-direction: row;
  border: 1px solid #E5E7EB;
  box-shadow: none;
}
.ctb-category-group__cards .ctb-option-card:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.ctb-category-group__cards .ctb-option-card .ctb-option-card__image {
  width: 100px;
  flex-shrink: 0;
  aspect-ratio: 1/1;
}
.ctb-category-group__cards .ctb-option-card .ctb-option-card__image img {
  height: 100%;
  object-fit: cover;
}

.ctb-liftgate-options {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.ctb-liftgate-options__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-liftgate-options__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-liftgate-options__header {
  margin-bottom: 2rem;
}
.ctb-liftgate-options__title {
  font-size: var(--wp--preset--font-size--h-3);
  margin: 0;
}
.ctb-liftgate-options__subtitle {
  font-size: var(--wp--preset--font-size--small);
  color: #666;
  margin: 0.25rem 0 0;
  max-width: 600px;
}
.ctb-liftgate-options__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
}
@media only screen and (min-width: 768px) {
  .ctb-liftgate-options__grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  }
}
.ctb-liftgate-options__grid {
  margin-top: 1.5rem;
}

.ctb-view-btn {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 6px;
  padding: 0.375rem 0.5rem;
  cursor: pointer;
  color: #9CA3AF;
  transition: color 0.3s ease;
}
.ctb-view-btn--active {
  color: #FF6A00;
}
.ctb-view-btn:hover:not(.ctb-view-btn--active) {
  color: #6B7280;
}
.ctb-view-btn svg {
  width: 20px;
  height: 20px;
  display: block;
}

.ctb-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.ctb-popup-overlay[open], .ctb-popup-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.ctb-popup {
  background: var(--wp--preset--color--white);
  border-radius: 12px;
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}
.ctb-popup-overlay[open] .ctb-popup, .ctb-popup-overlay.is-open .ctb-popup {
  transform: translateY(0);
}
.ctb-popup__close {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(0, 0, 0, 0.05);
  border: none;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: background 0.3s ease;
}
.ctb-popup__close:hover {
  background: rgba(0, 0, 0, 0.1);
}
.ctb-popup__image {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #f8f9fa;
  border-radius: 12px 12px 0 0;
}
.ctb-popup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ctb-popup__image:empty {
  display: none;
}
.ctb-popup__content {
  padding: 1.5rem;
}
.ctb-popup__title {
  font-size: var(--wp--preset--font-size--h-3);
  margin: 0.5rem 0;
}
.ctb-popup__note {
  font-size: var(--wp--preset--font-size--x-small);
  color: #666;
  font-style: italic;
  margin: 0 0 1rem;
}
.ctb-popup__note:empty {
  display: none;
}
.ctb-popup__description {
  font-size: var(--wp--preset--font-size--x-small);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.ctb-popup__description p {
  margin: 0 0 0.75rem;
}
.ctb-popup__description:empty {
  display: none;
}
.ctb-popup__specs {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
}
.ctb-popup__specs:empty, .ctb-popup__specs:has(tbody:empty) {
  display: none;
}
.ctb-popup__specs tr {
  border-bottom: 1px solid #eee;
}
.ctb-popup__specs th, .ctb-popup__specs td {
  padding: 0.5rem 0.75rem;
  text-align: left;
  font-size: var(--wp--preset--font-size--x-small);
}
.ctb-popup__specs th {
  font-weight: 600;
  width: 40%;
  color: #555;
}
.ctb-popup__gallery {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}
.ctb-popup__gallery:empty {
  display: none;
}
.ctb-popup__gallery img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  border-radius: 4px;
  flex-shrink: 0;
  cursor: pointer;
}
.ctb-popup__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--wp--preset--color--primary);
  font-weight: 600;
  text-decoration: none;
}
.ctb-popup__link:hover {
  text-decoration: underline;
}

.ctb-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.ctb-tab {
  padding: 0.5rem 1.25rem;
  border: 1px solid #E5E7EB;
  border-radius: 100px;
  background: #E5E7EB;
  color: #0D2440;
  font-family: var(--wp--preset--font-family--inter);
  font-size: var(--wp--preset--font-size--x-small);
  font-weight: 500;
  line-height: normal;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.ctb-tab:hover {
  background: #D1D5DB;
  border-color: #D1D5DB;
}
.ctb-tab--active {
  background: #0D2440;
  border-color: #0D2440;
  color: #fff;
}
.ctb-tab--active:hover {
  background: #0D2440;
  border-color: #0D2440;
  color: #fff;
}

.ctb-accordion-item {
  border-bottom: 1px solid #e0e0e0;
}
.ctb-accordion-item:first-child {
  border-top: 1px solid #e0e0e0;
}
.ctb-accordion-item__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-size: var(--wp--preset--font-size--small);
  font-weight: 600;
  color: var(--wp--preset--color--off-black);
  gap: 1rem;
  transition: color 0.3s ease;
}
.ctb-accordion-item__header:hover {
  color: var(--wp--preset--color--primary);
}
.ctb-accordion-item__header[aria-expanded=true] .ctb-accordion-item__icon {
  transform: rotate(180deg);
}
.ctb-accordion-item__title {
  flex: 1;
}
.ctb-accordion-item__icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: #999;
}
.ctb-accordion-item__body {
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.ctb-accordion-item__body[hidden] {
  display: block;
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}
.ctb-accordion-item__body:not([hidden]) {
  max-height: 2000px;
  padding-bottom: 1.5rem;
}
@media only screen and (min-width: 1024px) {
  .ctb-accordion-item__body--has-image {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 2rem;
    align-items: start;
  }
}
.ctb-accordion-item__image {
  margin-bottom: 1rem;
}
@media only screen and (min-width: 1024px) {
  .ctb-accordion-item__image {
    margin-bottom: 0;
  }
}
.ctb-accordion-item__image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.ctb-accordion-item__content {
  font-size: var(--wp--preset--font-size--x-small);
  line-height: 1.7;
}
.ctb-accordion-item__content p {
  margin: 0 0 0.75rem;
}
.ctb-accordion-item__content p:last-child {
  margin-bottom: 0;
}
.ctb-accordion-item__content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: var(--wp--preset--font-size--x-small);
}
.ctb-accordion-item__content table th, .ctb-accordion-item__content table td {
  padding: 0.5rem 0.75rem;
  border-bottom: 1px solid #eee;
  text-align: left;
}
.ctb-accordion-item__content table th {
  font-weight: 600;
  color: #555;
}

.ctb-gallery {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #f8f9fa;
}
.ctb-gallery__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-gallery__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-gallery__heading {
  font-size: var(--wp--preset--font-size--h-3);
  margin: 0 0 2rem;
}
.ctb-gallery__grid {
  -moz-columns: 1;
       columns: 1;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
@media only screen and (min-width: 480px) {
  .ctb-gallery__grid {
    -moz-columns: 2;
         columns: 2;
  }
}
@media only screen and (min-width: 768px) {
  .ctb-gallery__grid {
    -moz-columns: 3;
         columns: 3;
  }
}
@media only screen and (min-width: 1248px) {
  .ctb-gallery__grid {
    -moz-columns: 4;
         columns: 4;
  }
}
.ctb-gallery__item {
  display: block;
  -moz-column-break-inside: avoid;
       break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
}
.ctb-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.ctb-gallery__item:hover img {
  transform: scale(1.03);
}

.ctb-faqs {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.ctb-faqs__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-faqs__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-faqs__inner {
  max-width: 900px;
}
.ctb-faqs__heading {
  font-size: var(--wp--preset--font-size--h-3);
  margin: 0 0 2rem;
  text-align: center;
}

.ctb-applications {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.ctb-applications__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-applications__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-applications__heading {
  font-size: var(--wp--preset--font-size--h-3);
  margin: 0 0 2rem;
  text-align: center;
}
.ctb-applications__grid {
  display: grid;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  .ctb-applications__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.ctb-applications__card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #f8f9fa;
  border-radius: 8px;
}
.ctb-applications__icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1rem;
}
.ctb-applications__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.ctb-applications__title {
  font-size: var(--wp--preset--font-size--small);
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.ctb-applications__description {
  font-size: var(--wp--preset--font-size--x-small);
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.ctb-why-choose {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--wp--preset--color--secondary);
  color: var(--wp--preset--color--white);
}
.ctb-why-choose__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-why-choose__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-why-choose__heading {
  font-size: var(--wp--preset--font-size--h-3);
  margin: 0 0 2.5rem;
  text-align: center;
}
.ctb-why-choose__grid {
  display: grid;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  .ctb-why-choose__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1248px) {
  .ctb-why-choose__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.ctb-why-choose__card {
  text-align: center;
  padding: 1.5rem 1rem;
}
.ctb-why-choose__icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  opacity: 0.9;
}
.ctb-why-choose__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.ctb-why-choose__title {
  font-size: var(--wp--preset--font-size--small);
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.ctb-why-choose__description {
  font-size: var(--wp--preset--font-size--x-small);
  opacity: 0.85;
  line-height: 1.6;
  margin: 0;
}

.ctb-cta-missing {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #f8f9fa;
  text-align: center;
}
.ctb-cta-missing__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-cta-missing__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-cta-missing__inner {
  max-width: 700px;
}
.ctb-cta-missing__heading {
  font-size: var(--wp--preset--font-size--h-3);
  margin: 0 0 0.75rem;
}
.ctb-cta-missing__text {
  font-size: var(--wp--preset--font-size--small);
  color: #666;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}
.ctb-cta-missing__button {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.125rem;
  border: none;
  text-decoration: none;
  font-family: var(--wp--preset--font-family--inter, sans-serif);
  font-size: var(--wp--preset--font-size--x-small, 0.875rem);
  font-weight: 600;
  line-height: 1.25rem;
  position: relative;
  isolation: isolate;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
.ctb-cta-missing__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.ctb-cta-missing__button:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.ctb-cta-missing__button:hover::before {
  opacity: 1;
}
.ctb-cta-missing__button {
  color: #fff;
  background: linear-gradient(97deg, var(--wp--preset--color--accent-yellow) 0%, var(--wp--preset--color--accent-orange) 20%, var(--wp--preset--color--accent-orange) 80%, var(--wp--preset--color--accent-yellow) 100%);
}
.ctb-cta-missing__button::before {
  background: linear-gradient(83deg, var(--wp--preset--color--accent-yellow) 0%, var(--wp--preset--color--accent-orange) 30%, var(--wp--preset--color--accent-orange) 70%, var(--wp--preset--color--accent-yellow) 100%);
}
.ctb-cta-missing__button:hover {
  color: #fff;
}

.ctb-cta-band {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--wp--preset--color--off-black);
  color: var(--wp--preset--color--white);
  text-align: center;
}
.ctb-cta-band__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-cta-band__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-cta-band__inner {
  max-width: 800px;
}
.ctb-cta-band__heading {
  font-size: var(--wp--preset--font-size--h-2);
  margin: 0 0 0.5rem;
}
.ctb-cta-band__subheading {
  font-size: var(--wp--preset--font-size--small);
  opacity: 0.8;
  margin: 0 0 2rem;
  line-height: 1.6;
}
.ctb-cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
.ctb-cta-band__button--primary {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.125rem;
  border: none;
  text-decoration: none;
  font-family: var(--wp--preset--font-family--inter, sans-serif);
  font-size: var(--wp--preset--font-size--x-small, 0.875rem);
  font-weight: 600;
  line-height: 1.25rem;
  position: relative;
  isolation: isolate;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
.ctb-cta-band__button--primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.ctb-cta-band__button--primary:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.ctb-cta-band__button--primary:hover::before {
  opacity: 1;
}
.ctb-cta-band__button--primary {
  color: #fff;
  background: linear-gradient(97deg, var(--wp--preset--color--accent-yellow) 0%, var(--wp--preset--color--accent-orange) 20%, var(--wp--preset--color--accent-orange) 80%, var(--wp--preset--color--accent-yellow) 100%);
}
.ctb-cta-band__button--primary::before {
  background: linear-gradient(83deg, var(--wp--preset--color--accent-yellow) 0%, var(--wp--preset--color--accent-orange) 30%, var(--wp--preset--color--accent-orange) 70%, var(--wp--preset--color--accent-yellow) 100%);
}
.ctb-cta-band__button--primary:hover {
  color: #fff;
}
.ctb-cta-band__button--secondary {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.125rem;
  border: none;
  text-decoration: none;
  font-family: var(--wp--preset--font-family--inter, sans-serif);
  font-size: var(--wp--preset--font-size--x-small, 0.875rem);
  font-weight: 600;
  line-height: 1.25rem;
  position: relative;
  isolation: isolate;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
.ctb-cta-band__button--secondary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.ctb-cta-band__button--secondary:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.ctb-cta-band__button--secondary:hover::before {
  opacity: 1;
}
.ctb-cta-band__button--secondary {
  color: var(--wp--preset--color--primary-dark);
  background: linear-gradient(97deg, var(--wp--preset--color--background-light) 0%, var(--wp--preset--color--background-light) 10%, var(--wp--preset--color--background-light) 90%, var(--wp--preset--color--background-light) 100%);
}
.ctb-cta-band__button--secondary::before {
  background: linear-gradient(83deg, var(--wp--preset--color--accent-orange) 0%, var(--wp--preset--color--background-light) 10%, var(--wp--preset--color--background-light) 90%, var(--wp--preset--color--accent-orange) 100%);
}
.ctb-cta-band__button--secondary:hover {
  color: var(--wp--preset--color--primary-dark);
}

.ctb-tech-specs {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #f8f9fa;
}
.ctb-tech-specs__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-tech-specs__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-tech-specs__heading {
  font-size: var(--wp--preset--font-size--h-3);
  margin: 0 0 2rem;
  text-align: center;
}

.ctb-acc-description {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.ctb-acc-description__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-acc-description__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-acc-description__inner {
  max-width: 900px;
}
.ctb-acc-description__content {
  font-size: var(--wp--preset--font-size--small);
  line-height: 1.7;
}
.ctb-acc-description__content p {
  margin: 0 0 1rem;
}
.ctb-acc-description__content p:last-child {
  margin-bottom: 0;
}
.ctb-acc-description__content h2, .ctb-acc-description__content h3, .ctb-acc-description__content h4 {
  margin: 1.5rem 0 0.75rem;
}
.ctb-acc-description__content ul, .ctb-acc-description__content ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
}
.ctb-acc-description__content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.ctb-acc-specs {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: #f8f9fa;
}
.ctb-acc-specs__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-acc-specs__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-acc-specs__inner {
  max-width: 800px;
}
.ctb-acc-specs__heading {
  font-size: var(--wp--preset--font-size--h-3);
  margin: 0 0 1.5rem;
}
.ctb-acc-specs__table {
  width: 100%;
  border-collapse: collapse;
  background: var(--wp--preset--color--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.ctb-acc-specs__row {
  border-bottom: 1px solid #eee;
}
.ctb-acc-specs__row:last-child {
  border-bottom: none;
}
.ctb-acc-specs__label {
  padding: 0.875rem 1.25rem;
  font-weight: 600;
  color: #444;
  width: 40%;
  font-size: var(--wp--preset--font-size--x-small);
  background: rgba(0, 0, 0, 0.02);
}
.ctb-acc-specs__value {
  padding: 0.875rem 1.25rem;
  font-size: var(--wp--preset--font-size--x-small);
}

.ctb-compatible-bodies {
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.ctb-compatible-bodies__inner {
  max-width: 1500px;
  width: 94%;
  margin: 0 auto;
  padding: 0 3%;
  transition: padding 0.2s ease;
}
@media all and (min-width: 1500px) {
  .ctb-compatible-bodies__inner {
    padding: 0 0.5%;
    width: 99%;
  }
}
.ctb-compatible-bodies__heading {
  font-size: var(--wp--preset--font-size--h-3);
  margin: 0 0 2rem;
}
.ctb-compatible-bodies__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media only screen and (min-width: 768px) {
  .ctb-compatible-bodies__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1024px) {
  .ctb-compatible-bodies__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.ctb-truck-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease, background 0.3s ease;
  background: var(--wp--preset--color--off-white);
}
@media only screen and (min-width: 768px) {
  .ctb-truck-card {
    overflow: visible;
  }
}
.ctb-truck-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
  background: var(--wp--preset--color--off-black);
}
.ctb-truck-card__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  border-radius: 8px;
}
@media only screen and (min-width: 768px) {
  .ctb-truck-card__link {
    overflow: visible;
  }
}
.ctb-truck-card:hover .ctb-truck-card__link {
  text-decoration: none;
}
.ctb-truck-card__image-wrapper {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 8px 8px 0 0;
  z-index: 1;
  transition: background 0.3s ease;
}
@media only screen and (min-width: 768px) {
  .ctb-truck-card__image-wrapper {
    overflow: visible;
  }
}
.ctb-truck-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.4s ease;
}
.ctb-truck-card:hover .ctb-truck-card__image {
  transform: scale(1.12);
}
.ctb-truck-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ccc;
}
.ctb-truck-card__placeholder .dashicons {
  font-size: 48px;
  width: 48px;
  height: 48px;
}
.ctb-truck-card__content {
  flex: 1;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ctb-truck-card__name {
  font-family: var(--wp--preset--font-family--clarendon-text-pro, serif);
  font-size: var(--wp--preset--font-size--medium);
  font-weight: 500;
  color: var(--wp--preset--color--off-black);
  margin: 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}
.ctb-truck-card:hover .ctb-truck-card__name {
  color: var(--wp--preset--color--white);
}
.ctb-truck-card__desc {
  font-size: var(--wp--preset--font-size--x-small);
  color: var(--wp--preset--color--gray);
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}
.ctb-truck-card:hover .ctb-truck-card__desc {
  color: rgba(255, 255, 255, 0.7);
}
.ctb-truck-card__footer {
  padding: 1rem 1.5rem;
  border-radius: 0 0 8px 8px;
  text-align: center;
}
.ctb-truck-card__button {
  display: inline-flex;
  padding: 0.75rem 1.5rem;
  justify-content: center;
  align-items: center;
  border-radius: 0.125rem;
  border: none;
  text-decoration: none;
  font-family: var(--wp--preset--font-family--inter, sans-serif);
  font-size: var(--wp--preset--font-size--x-small, 0.875rem);
  font-weight: 600;
  line-height: 1.25rem;
  position: relative;
  isolation: isolate;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.25);
  transition: box-shadow 0.3s ease;
  cursor: pointer;
}
.ctb-truck-card__button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}
.ctb-truck-card__button:hover {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.ctb-truck-card__button:hover::before {
  opacity: 1;
}
.ctb-truck-card__button {
  color: var(--wp--preset--color--primary-dark);
  background: linear-gradient(97deg, var(--wp--preset--color--background-light) 0%, var(--wp--preset--color--background-light) 10%, var(--wp--preset--color--background-light) 90%, var(--wp--preset--color--background-light) 100%);
}
.ctb-truck-card__button::before {
  background: linear-gradient(83deg, var(--wp--preset--color--accent-orange) 0%, var(--wp--preset--color--background-light) 10%, var(--wp--preset--color--background-light) 90%, var(--wp--preset--color--accent-orange) 100%);
}
.ctb-truck-card__button:hover {
  color: var(--wp--preset--color--primary-dark);
}
.ctb-truck-card__button {
  width: 100%;
}
.ctb-truck-card:hover .ctb-truck-card__button {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}
.ctb-truck-card:hover .ctb-truck-card__button::before {
  opacity: 1;
}
.ctb-truck-card .ctb-badge {
  align-self: flex-start;
  transition: opacity 0.3s ease;
}
.ctb-truck-card:hover .ctb-badge {
  opacity: 0.85;
}