:root {
  --voraai-black: #0b0b0b;
  --voraai-ink: #171717;
  --voraai-muted: #6b6b67;
  --voraai-line: #deded9;
  --voraai-canvas: #f4f4f1;
  --voraai-paper: #ffffff;
  --voraai-signal: #c8f135;
  --voraai-max: 1440px;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--voraai-canvas);
  color: var(--voraai-ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  letter-spacing: 0;
}

body,
button,
input,
select,
textarea {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}

.site-main {
  min-height: 58vh;
  background: var(--voraai-canvas);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border: 0;
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 1px 0 rgba(0, 0, 0, .09);
  backdrop-filter: blur(18px);
}

.site-topbar {
  min-height: 34px;
  padding: 0 34px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  background: var(--voraai-black);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

.site-topbar__message {
  text-align: center;
}

.site-topbar__contact {
  justify-self: end;
  color: #fff;
  text-decoration: none;
}

.site-topbar__contact:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-header__inner {
  width: 100%;
  max-width: none;
  min-height: 66px;
  margin: 0;
  padding: 0 34px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
  background: transparent;
}

.site-brand {
  display: inline-flex;
  align-items: baseline;
  gap: 7px;
  color: var(--voraai-black);
  text-decoration: none;
  white-space: nowrap;
}

.site-brand-name {
  max-width: none;
  overflow: visible;
  color: var(--voraai-black);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .18em;
}

.site-brand-tech {
  color: #767672;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
}

.site-brand-mark,
.site-brand-store {
  display: none;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.4vw, 42px);
  font-size: 13px;
  font-weight: 500;
}

.site-nav a {
  position: relative;
  padding: 23px 0 21px;
  color: var(--voraai-ink);
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 16px;
  height: 1px;
  background: currentColor;
  transition: right .22s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  right: 0;
}

.site-nav__dropdown {
  position: relative;
}

.site-nav__dropdown summary {
  position: relative;
  padding: 23px 18px 21px 0;
  color: var(--voraai-ink);
  cursor: pointer;
  list-style: none;
  white-space: nowrap;
}

.site-nav__dropdown summary::-webkit-details-marker {
  display: none;
}

.site-nav__dropdown summary::after {
  content: "";
  position: absolute;
  top: 28px;
  right: 1px;
  width: 6px;
  height: 6px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg);
}

.site-nav__dropdown[open] summary::after {
  top: 32px;
  transform: rotate(225deg);
}

.site-nav__dropdown-menu {
  position: absolute;
  top: calc(100% - 2px);
  left: 50%;
  z-index: 80;
  width: min(620px, 82vw);
  padding: 16px 20px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0 24px;
  border: 1px solid var(--voraai-line);
  background: #fff;
  box-shadow: 0 20px 50px rgba(15, 15, 14, .12);
  transform: translateX(-50%);
}

.site-nav__dropdown-menu a {
  padding: 13px 0;
  border-bottom: 1px solid #eeeeea;
  white-space: normal;
}

.site-nav__dropdown-menu a::after {
  bottom: 8px;
}

.site-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.site-icon-link {
  color: var(--voraai-black);
}

.site-cart {
  position: relative;
  width: 26px;
  min-width: 26px;
  height: 28px;
  padding: 0;
  border: 0;
  border-radius: 0;
  font-size: 0;
}

.site-cart::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  left: 4px;
  bottom: 2px;
  border: 1.5px solid currentColor;
}

.site-cart::after {
  content: "";
  width: 7px;
  height: 5px;
  position: absolute;
  left: 8px;
  top: 4px;
  border: 1.5px solid currentColor;
  border-bottom: 0;
  border-radius: 5px 5px 0 0;
}

.site-cart-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-cart-count {
  position: absolute;
  z-index: 1;
  top: -3px;
  right: -5px;
  min-width: 16px;
  height: 16px;
  padding: 0 3px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--voraai-black);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  line-height: 1;
}

body.home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: transparent;
  box-shadow: none;
}

body.admin-bar.home .site-header {
  top: 32px !important;
}

body.home .site-header__inner {
  background: rgba(255, 255, 255, .76);
  border-bottom: 1px solid rgba(17, 17, 17, .10);
  backdrop-filter: blur(18px);
}

.voraai-home {
  overflow: hidden;
  background: var(--voraai-canvas);
}

.voraai-eyebrow {
  margin: 0 0 15px;
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.2;
  text-transform: uppercase;
}

.voraai-hero {
  position: relative;
  min-height: 610px;
  height: calc(100svh - 112px);
  max-height: 760px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #eceeeb;
}

.voraai-hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 58% center;
}

.voraai-hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(244, 245, 242, .97) 0%, rgba(244, 245, 242, .86) 25%, rgba(244, 245, 242, .25) 53%, rgba(244, 245, 242, 0) 74%);
}

.voraai-hero__content {
  position: relative;
  z-index: 2;
  width: min(560px, 46vw);
  margin-left: max(34px, calc((100vw - var(--voraai-max)) / 2 + 42px));
  padding: 0 0 76px;
}

.voraai-hero h1 {
  margin: 0 0 20px;
  max-width: 12ch;
  color: var(--voraai-black) !important;
  font-size: clamp(42px, 5.2vw, 78px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: .98;
}

.voraai-hero__content > p:not(.voraai-eyebrow) {
  max-width: 520px;
  margin: 0;
  color: #44443f;
  font-size: 17px;
  line-height: 1.55;
}

.voraai-hero__actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.voraai-button {
  min-height: 46px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--voraai-black);
  border-radius: 2px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.voraai-button:hover {
  transform: translateY(-1px);
}

.voraai-button--dark {
  background: var(--voraai-black);
  color: #fff;
}

.voraai-button--dark:hover {
  background: #30302d;
  color: #fff;
}

.voraai-button--light {
  border-color: #fff;
  background: #fff;
  color: var(--voraai-black);
}

.voraai-button--light:hover {
  background: var(--voraai-signal);
  border-color: var(--voraai-signal);
  color: var(--voraai-black);
}

.voraai-text-link,
.voraai-arrow-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--voraai-black);
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
}

.voraai-text-link::after,
.voraai-arrow-link::after {
  content: "→";
  font-size: 16px;
  line-height: 1;
  transition: transform .2s ease;
}

.voraai-text-link:hover::after,
.voraai-arrow-link:hover::after {
  transform: translateX(4px);
}

.voraai-text-link--light {
  color: #fff;
}

.voraai-hero__scroll {
  position: absolute;
  z-index: 3;
  right: 38px;
  bottom: 30px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, .32);
  border-radius: 50%;
}

.voraai-hero__scroll span {
  width: 8px;
  height: 8px;
  display: block;
  border-right: 1px solid var(--voraai-black);
  border-bottom: 1px solid var(--voraai-black);
  transform: translateY(-2px) rotate(45deg);
}

.voraai-category-rail {
  min-height: 172px;
  padding: 0 max(34px, calc((100vw - var(--voraai-max)) / 2 + 24px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  border-bottom: 1px solid var(--voraai-line);
  background: #fff;
  scrollbar-width: none;
}

.voraai-category-rail::-webkit-scrollbar {
  display: none;
}

.voraai-category-rail a {
  padding: 22px 14px;
  display: grid;
  place-items: center;
  border-right: 1px solid #eeeeea;
  color: var(--voraai-ink);
  text-align: center;
  text-decoration: none;
  font-size: 12px;
  font-weight: 600;
}

.voraai-category-rail a:first-child {
  border-left: 1px solid #eeeeea;
}

.voraai-category-rail a:hover {
  background: var(--voraai-signal);
}

.voraai-featured,
.voraai-products,
.voraai-ecosystem {
  max-width: var(--voraai-max);
  margin: 0 auto;
  padding: 112px 34px;
}

.voraai-section-head {
  margin-bottom: 38px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
}

.voraai-section-head h2 {
  max-width: 780px;
  margin: 0;
  color: var(--voraai-black) !important;
  font-size: clamp(34px, 4.2vw, 58px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.voraai-section-head > div > p:not(.voraai-eyebrow) {
  max-width: 710px;
  margin: 18px auto 0;
  color: var(--voraai-muted);
  font-size: 16px;
  line-height: 1.55;
}

.voraai-section-head--center {
  justify-content: center;
  text-align: center;
}

.voraai-section-head--center h2 {
  margin: 0 auto;
}

.voraai-spotlight-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.voraai-spotlight {
  position: relative;
  min-height: 690px;
  display: flex;
  flex-direction: column;
  border-radius: 6px;
  overflow: hidden;
}

.voraai-spotlight--light {
  background: #e8e9e5;
  color: var(--voraai-black);
}

.voraai-spotlight--dark {
  background: #171717;
  color: #fff;
}

.voraai-spotlight__copy {
  position: relative;
  z-index: 2;
  padding: 44px 44px 10px;
}

.voraai-spotlight__copy h3 {
  max-width: 13ch;
  margin: 0;
  color: inherit !important;
  font-size: clamp(31px, 3vw, 46px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.voraai-spotlight__copy > p:not(.voraai-eyebrow) {
  max-width: 510px;
  margin: 16px 0 24px;
  color: inherit;
  font-size: 15px;
  line-height: 1.55;
  opacity: .74;
}

.voraai-spotlight__media {
  min-height: 360px;
  margin-top: auto;
  display: grid;
  place-items: end center;
}

.voraai-spotlight__image {
  width: 100%;
  height: 100%;
  max-height: 430px;
  display: block;
  object-fit: contain;
  object-position: center bottom;
  transition: transform .5s ease;
}

.voraai-spotlight:hover .voraai-spotlight__image {
  transform: scale(1.025);
}

.voraai-product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.voraai-product-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  border: 1px solid #e6e6e1;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.voraai-product-card__media {
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f6f6f3;
}

.voraai-product-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  transition: transform .45s ease;
}

.voraai-product-card:hover .voraai-product-card__image {
  transform: scale(1.035);
}

.voraai-product-card__body {
  min-height: 188px;
  padding: 22px;
  display: flex;
  flex: 1;
  flex-direction: column;
}

.voraai-product-card__label {
  margin-bottom: 10px;
  color: var(--voraai-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.voraai-product-card h3 {
  min-height: calc(1.3em * 2);
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  color: var(--voraai-black) !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.3;
}

.voraai-product-card h3 a {
  color: inherit;
  text-decoration: none;
}

.voraai-product-card__footer {
  margin-top: 8px;
  padding-top: 0;
  display: block;
}

.voraai-product-card__price {
  display: block;
  min-height: 20px;
  color: var(--voraai-black);
  font-size: 15px;
  font-weight: 650;
}

.voraai-product-card__price del {
  color: #8d8d88;
  font-size: 12px;
  font-weight: 400;
}

.voraai-product-card__price ins {
  text-decoration: none;
}

.voraai-product-card__actions {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.voraai-product-card__cart .button {
  min-height: 38px;
  margin: 0;
  padding: 9px 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--voraai-black);
  border-radius: 2px;
  background: var(--voraai-black);
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.voraai-product-card__cart .button:hover,
.voraai-product-card__cart .button:focus {
  background: #30302d;
  color: #fff;
}

.voraai-arrow-link {
  white-space: nowrap;
}

.voraai-ecosystem {
  max-width: none;
  padding-left: max(34px, calc((100vw - var(--voraai-max)) / 2 + 34px));
  padding-right: max(34px, calc((100vw - var(--voraai-max)) / 2 + 34px));
  background: #fff;
}

.voraai-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.voraai-ecosystem-card {
  position: relative;
  aspect-ratio: .82 / 1;
  min-height: 420px;
  border-radius: 6px;
  overflow: hidden;
  background: #efefeb;
  color: var(--voraai-black);
}

.voraai-ecosystem-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .5s ease;
}

.voraai-ecosystem-card:hover .voraai-ecosystem-card__image {
  transform: scale(1.025);
}

.voraai-ecosystem-card span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  min-height: 48px;
  padding: 13px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111827;
  color: #ffffff;
  text-align: center;
  font-size: 13px;
  font-weight: 650;
  border: 1px solid rgba(255, 255, 255, .22);
}

.voraai-service-band {
  padding: 0 max(34px, calc((100vw - var(--voraai-max)) / 2 + 34px));
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--voraai-line);
  border-bottom: 1px solid var(--voraai-line);
  background: var(--voraai-canvas);
}

.voraai-service-band > div {
  min-height: 158px;
  padding: 34px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-right: 1px solid var(--voraai-line);
}

.voraai-service-band > div:first-child {
  border-left: 1px solid var(--voraai-line);
}

.voraai-service-band strong {
  margin-bottom: 9px;
  color: var(--voraai-black);
  font-size: 15px;
}

.voraai-service-band span {
  color: var(--voraai-muted);
  font-size: 13px;
  line-height: 1.45;
}

.voraai-contact-band {
  min-height: 244px;
  padding: 44px max(34px, calc((100vw - var(--voraai-max)) / 2 + 34px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 32px;
  background: #1b211c;
  color: #fff;
}

.voraai-contact-band h2 {
  margin: 0;
  color: #fff !important;
  font-size: clamp(36px, 4.8vw, 66px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.voraai-contact-band p:not(.voraai-eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, .68);
  font-size: 16px;
}

.voraai-contact-band__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* WooCommerce catalog and product pages */
.woo-main {
  width: 100%;
  max-width: var(--voraai-max);
  margin: 0 auto;
  padding: 70px 34px 110px;
}

.woocommerce .woocommerce-breadcrumb {
  margin: 0 0 32px;
  color: #7b7b76;
  font-size: 12px;
}

.woocommerce-products-header {
  margin-bottom: 38px;
}

body .woocommerce-products-header__title {
  margin: 0;
  color: var(--voraai-black) !important;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

body .woocommerce h1.page-title,
.woo-main h1.page-title {
  margin: 0;
  color: var(--voraai-black) !important;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering {
  margin-bottom: 32px;
  color: var(--voraai-muted);
  font-size: 13px;
}

.woocommerce .woocommerce-ordering select {
  min-height: 42px;
  padding: 0 38px 0 14px;
  border: 1px solid var(--voraai-line);
  border-radius: 2px;
  background: #fff;
  color: var(--voraai-black);
}

.woocommerce ul.products {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 0 0 22px;
  border: 1px solid #e5e5e0;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
}

.woocommerce ul.products li.product > .woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product > .woocommerce-LoopProduct-link {
  display: flex !important;
  flex: 1;
  flex-direction: column;
  min-width: 0;
}

.woocommerce ul.products li.product a img {
  width: 100%;
  margin: 0 0 18px;
  aspect-ratio: 1 / 1;
  border: 0;
  border-radius: 0;
  background: #f6f6f3;
  transition: transform .45s ease;
}

.woocommerce ul.products li.product:hover a img {
  transform: scale(1.025);
}

body.woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce ul.products li.product .price,
body.woocommerce-page ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-page ul.products li.product .price {
  margin-right: 20px !important;
  margin-left: 20px !important;
  color: var(--voraai-black) !important;
}

body.woocommerce ul.products li.product .woocommerce-loop-product__title,
body.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  min-height: calc(1.32em * 2) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  display: -webkit-box !important;
  overflow: hidden !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.32;
}

body.woocommerce ul.products li.product .price,
body.woocommerce-page ul.products li.product .price {
  min-height: 20px !important;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
  font-size: 15px;
  font-weight: 650;
}

.woocommerce ul.products li.product .button {
  align-self: flex-start;
  margin: 16px 20px 0 !important;
}

body .woocommerce a.button,
body .woocommerce button.button,
body .woocommerce input.button,
body .single_add_to_cart_button,
body .weston-inquiry-button {
  min-height: 44px;
  padding: 12px 19px !important;
  border: 1px solid var(--voraai-black) !important;
  border-radius: 2px !important;
  background: var(--voraai-black) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 650 !important;
}

body .woocommerce a.button:hover,
body .woocommerce button.button:hover,
body .woocommerce input.button:hover,
body .single_add_to_cart_button:hover,
body .weston-inquiry-button:hover {
  background: #30302d !important;
  color: #fff !important;
}

.woocommerce div.product {
  max-width: none;
  margin: 0;
  padding: 0;
}

.woocommerce div.product div.images img {
  border: 0;
  border-radius: 2px;
  background: #f4f4f1;
}

.woocommerce div.product div.summary {
  padding: 18px 0 0 36px;
}

.woocommerce div.product .product_title {
  margin: 0 0 18px;
  color: var(--voraai-black);
  font-size: clamp(36px, 4.4vw, 62px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.02;
}

.woocommerce div.product p.price,
.woocommerce div.product span.price {
  color: var(--voraai-black);
  font-size: 24px;
  font-weight: 600;
}

.woocommerce div.product .woocommerce-product-details__short-description {
  color: var(--voraai-muted);
  font-size: 15px;
  line-height: 1.65;
}

.woocommerce div.product form.cart {
  margin: 28px 0;
}

.woocommerce .quantity .qty {
  min-height: 44px;
  border: 1px solid var(--voraai-line);
  border-radius: 2px;
}

.woocommerce div.product .product_meta {
  padding-top: 20px;
  border-top: 1px solid var(--voraai-line);
  color: var(--voraai-muted);
  font-size: 12px;
  line-height: 1.8;
}

.woocommerce div.product .woocommerce-tabs {
  clear: both;
  padding-top: 58px;
}

.woocommerce div.product .woocommerce-tabs ul.tabs {
  padding: 0;
  border-bottom: 1px solid var(--voraai-line);
}

.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 30px 0 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after {
  display: none;
}

.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  padding: 15px 0;
  font-size: 13px;
}

.weston-product-inquiry {
  margin-top: 30px;
  padding: 26px;
  border: 1px solid var(--voraai-line);
  border-radius: 2px;
  background: #f4f4f1;
}

.weston-inquiry-button--light {
  background: #fff !important;
  color: var(--voraai-black) !important;
}

/* Footer */
.site-footer {
  margin-top: 0;
  background: #111;
  color: #fff;
}

.site-footer__inner {
  width: 100%;
  max-width: var(--voraai-max);
  margin: 0 auto;
  padding: 72px 34px 58px;
  display: grid;
  grid-template-columns: minmax(260px, 1.1fr) minmax(0, 2fr);
  gap: 72px;
}

.site-footer__logo {
  display: block;
  color: #fff;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: .16em;
}

.site-footer__logo span {
  color: #999;
  font-size: 10px;
  letter-spacing: .12em;
}

.site-footer__brand p {
  max-width: 390px;
  margin: 24px 0 22px;
  color: #b7b7b2;
  font-size: 14px;
  line-height: 1.65;
}

.site-footer__brand > span {
  color: #8d8d88;
  font-size: 12px;
}

.site-footer__cols {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.site-footer h3 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer a {
  margin: 10px 0;
  color: #b7b7b2;
  font-size: 13px;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.site-footer__bottom {
  width: calc(100% - 68px);
  max-width: calc(var(--voraai-max) - 68px);
  margin: 0 auto;
  padding: 22px 0 34px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: #777;
  font-size: 11px;
}

.site-footer__bottom > div {
  display: flex;
  gap: 22px;
}

.site-footer__bottom a {
  margin: 0;
  color: #999;
  font-size: 11px;
}

.weston-floating-contact {
  display: none;
}

@media (max-width: 1180px) {
  .site-header__inner {
    min-height: 62px;
    padding: 0 24px;
    grid-template-columns: 34px minmax(0, 1fr) auto;
    gap: 12px;
  }

  .site-menu-toggle {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .site-menu-button {
    width: 30px;
    height: 30px;
    display: grid;
    align-content: center;
    gap: 7px;
  }

  .site-menu-button span {
    width: 22px;
    height: 1.5px;
    display: block;
    background: var(--voraai-black);
  }

  .site-brand {
    justify-self: center;
  }

  .site-nav {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    z-index: 60;
    display: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 12px 24px 20px;
    border-top: 1px solid var(--voraai-line);
    border-bottom: 1px solid var(--voraai-line);
    background: rgba(255, 255, 255, .98);
  }

  .site-nav a {
    padding: 14px 0;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav__dropdown {
    grid-column: 1 / -1;
  }

  .site-nav__dropdown summary {
    padding: 14px 18px 14px 0;
  }

  .site-nav__dropdown summary::after {
    top: 19px;
  }

  .site-nav__dropdown[open] summary::after {
    top: 23px;
  }

  .site-nav__dropdown-menu {
    position: static;
    width: auto;
    padding: 4px 0 10px 14px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0 20px;
    border: 0;
    border-left: 1px solid var(--voraai-line);
    box-shadow: none;
    transform: none;
  }

  .site-nav__dropdown-menu a {
    padding: 10px 0;
  }

  .site-menu-toggle:checked ~ .site-nav {
    display: grid;
  }

  .voraai-product-grid,
  .voraai-ecosystem-grid,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voraai-service-band {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .voraai-service-band > div:nth-child(3) {
    border-left: 1px solid var(--voraai-line);
    border-top: 1px solid var(--voraai-line);
  }

  .voraai-service-band > div:nth-child(4) {
    border-top: 1px solid var(--voraai-line);
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  body.admin-bar.home .site-header {
    top: 46px !important;
  }

  .site-topbar {
    min-height: 32px;
    padding: 0 14px;
    display: flex;
    justify-content: center;
  }

  .site-topbar__company,
  .site-topbar__contact {
    display: none;
  }

  .site-topbar__message {
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header__inner {
    min-height: 58px;
    padding: 0 16px;
  }

  .site-brand-name {
    font-size: 18px;
  }

  .site-brand-tech,
  .site-account-link {
    display: none;
  }

  .site-actions {
    gap: 12px;
  }

  .site-nav {
    top: 58px;
    grid-template-columns: 1fr;
    padding: 10px 18px 18px;
  }

  .voraai-hero {
    min-height: 560px;
    height: calc(100svh - 88px);
    max-height: 690px;
  }

  .voraai-hero__image {
    object-position: 65% center;
  }

  .voraai-hero__shade {
    background: linear-gradient(0deg, rgba(244, 245, 242, .98) 0%, rgba(244, 245, 242, .88) 36%, rgba(244, 245, 242, .16) 72%, rgba(244, 245, 242, 0) 100%);
  }

  .voraai-hero__content {
    width: auto;
    margin: 0;
    padding: 0 20px 34px;
  }

  .voraai-hero h1 {
    max-width: 12ch;
    font-size: 40px;
  }

  .voraai-hero__content > p:not(.voraai-eyebrow) {
    max-width: 34ch;
    font-size: 14px;
  }

  .voraai-hero__actions {
    margin-top: 22px;
    gap: 16px;
  }

  .voraai-button {
    min-height: 42px;
    padding: 11px 17px;
  }

  .voraai-hero__scroll {
    display: none;
  }

  .voraai-category-rail {
    min-height: 64px;
    padding: 0;
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .voraai-category-rail a {
    min-width: 148px;
    padding: 18px 14px;
    scroll-snap-align: start;
  }

  .voraai-featured,
  .voraai-products,
  .voraai-ecosystem {
    padding: 72px 18px;
  }

  .voraai-section-head {
    margin-bottom: 28px;
    display: grid;
    align-items: start;
  }

  .voraai-section-head h2 {
    font-size: 36px;
  }

  .voraai-spotlight-grid,
  .voraai-product-grid,
  .voraai-ecosystem-grid,
  .voraai-service-band,
  .voraai-contact-band,
  .site-footer__cols,
  .woocommerce ul.products {
    grid-template-columns: 1fr;
  }

  .voraai-spotlight {
    min-height: 590px;
  }

  .voraai-spotlight__copy {
    padding: 32px 26px 8px;
  }

  .voraai-spotlight__copy h3 {
    font-size: 34px;
  }

  .voraai-spotlight__media {
    min-height: 300px;
  }

  .voraai-product-card__body {
    min-height: 174px;
  }

  .voraai-ecosystem-card {
    min-height: 440px;
    aspect-ratio: .9 / 1;
  }

  .voraai-service-band {
    padding: 0 18px;
  }

  .voraai-service-band > div,
  .voraai-service-band > div:first-child,
  .voraai-service-band > div:nth-child(3),
  .voraai-service-band > div:nth-child(4) {
    min-height: 124px;
    padding: 28px 10px;
    border-left: 0;
    border-right: 0;
    border-top: 1px solid var(--voraai-line);
  }

  .voraai-service-band > div:first-child {
    border-top: 0;
  }

  .voraai-contact-band {
    min-height: 0;
    padding: 42px 20px;
    align-items: start;
  }

  .voraai-contact-band h2 {
    font-size: 43px;
  }

  .voraai-contact-band__actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .woo-main {
    padding: 46px 18px 76px;
  }

  .woocommerce div.product div.summary {
    padding: 24px 0 0;
  }

  .woocommerce div.product .product_title {
    font-size: 38px;
  }

  .site-footer__inner {
    padding: 54px 22px 42px;
    gap: 48px;
  }

  .site-footer__cols {
    gap: 34px;
  }

  .site-footer__bottom {
    width: calc(100% - 44px);
    padding: 22px 0 30px;
    flex-direction: column;
  }

  .site-footer__bottom > div {
    flex-direction: column;
    gap: 8px;
  }
}

/* Xpro/Elementor footer layout. Content remains editable in the builder. */
body.voraaitech-builder-footer-active .site-footer {
  display: none;
}

.voraaitech-builder-footer {
  display: block;
  background: #111;
  color: #fff;
}

.voraaitech-footer-main .elementor-container,
.voraaitech-footer-bottom .elementor-container {
  flex-wrap: wrap;
}

body.voraaitech-builder-footer-active .voraaitech-footer-main .elementor-column.voraaitech-footer-brand {
  flex: 0 0 30% !important;
  width: 30% !important;
  max-width: 30%;
}

body.voraaitech-builder-footer-active .voraaitech-footer-main .elementor-column.voraaitech-footer-nav {
  flex: 0 0 17.5% !important;
  width: 17.5% !important;
  max-width: 17.5%;
}

body.voraaitech-builder-footer-active .voraaitech-footer-bottom .elementor-column.voraaitech-footer-bottom-left,
body.voraaitech-builder-footer-active .voraaitech-footer-bottom .elementor-column.voraaitech-footer-bottom-right {
  flex: 0 0 50% !important;
  width: 50% !important;
  max-width: 50%;
}

.voraaitech-footer-main .elementor-widget-heading .elementor-heading-title {
  margin: 0;
  color: #fff !important;
}

.voraaitech-footer-main .elementor-widget-text-editor p,
.voraaitech-footer-bottom .elementor-widget-text-editor p {
  margin: 0;
}

.voraaitech-footer-main .elementor-widget-text-editor p + p {
  margin-top: 16px;
}

.voraaitech-footer-brand .elementor-widget-heading,
.voraaitech-footer-nav .elementor-widget-heading {
  margin-bottom: 12px !important;
}

.voraaitech-footer-links .elementor-icon-list-icon {
  display: none;
}

.voraaitech-footer-links .elementor-icon-list-item {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  line-height: 1.45;
}

.voraaitech-footer-links .elementor-icon-list-item > a {
  display: flex;
  line-height: inherit;
}

.voraaitech-footer-links .elementor-icon-list-text {
  font-size: inherit;
  line-height: inherit;
}

.voraaitech-footer-links a,
.voraaitech-footer-bottom a {
  color: inherit;
}

.voraaitech-footer-payment .weston-payment-trust {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 6px;
}

.voraaitech-footer-payment .weston-payment-trust p {
  margin: 0;
  white-space: nowrap;
}

.voraaitech-footer-payment .weston-payment-badges {
  flex-wrap: nowrap;
}

.voraaitech-footer-bottom-right {
  text-align: right;
}

.voraaitech-footer-bottom-right p {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1024px) {
  body.voraaitech-builder-footer-active .voraaitech-footer-main .elementor-column.voraaitech-footer-brand {
    flex-basis: 100% !important;
    width: 100% !important;
    max-width: 100%;
    margin-bottom: 30px;
  }

  body.voraaitech-builder-footer-active .voraaitech-footer-main .elementor-column.voraaitech-footer-nav {
    flex-basis: 25% !important;
    width: 25% !important;
    max-width: 25%;
  }
}

@media (max-width: 900px) {
  .voraaitech-footer-payment .weston-payment-trust {
    flex-direction: column;
  }

  .voraaitech-footer-payment .weston-payment-badges {
    width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 2px;
  }
}

@media (max-width: 767px) {
  .voraaitech-footer-main .voraaitech-footer-brand {
    margin-bottom: 18px;
  }

  body.voraaitech-builder-footer-active .voraaitech-footer-main .elementor-column.voraaitech-footer-nav {
    flex-basis: 50% !important;
    width: 50% !important;
    max-width: 50%;
    margin-bottom: 16px;
  }

  .voraaitech-footer-payment .weston-payment-trust {
    padding: 12px;
  }

  .voraaitech-footer-payment .weston-payment-trust p {
    font-size: 11px;
  }

  .voraaitech-footer-payment .weston-payment-badges {
    gap: 8px;
    scrollbar-width: none;
  }

  .voraaitech-footer-payment .weston-payment-badges::-webkit-scrollbar {
    display: none;
  }

  .voraaitech-footer-payment .weston-pay-badge {
    min-width: 64px;
    height: 34px;
    padding: 0 8px;
  }

  body.voraaitech-builder-footer-active .voraaitech-footer-bottom .elementor-column.voraaitech-footer-bottom-left,
  body.voraaitech-builder-footer-active .voraaitech-footer-bottom .elementor-column.voraaitech-footer-bottom-right {
    flex-basis: 100% !important;
    width: 100% !important;
    max-width: 100%;
    text-align: left;
  }

  .voraaitech-footer-bottom-right {
    margin-top: 8px;
  }

  .voraaitech-footer-bottom-right p {
    justify-content: flex-start;
    flex-direction: column;
    gap: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* Keep the Home section transitions compact. */
.voraai-home .voraai-featured {
  padding-bottom: 32px;
}

.voraai-home .voraai-products {
  padding-top: 56px;
  padding-bottom: 56px;
}

.voraai-home .voraai-ecosystem {
  padding-top: 56px;
}

@media (max-width: 760px) {
  .voraai-home .voraai-featured {
    padding-bottom: 32px;
  }

  .voraai-home .voraai-products {
    padding-top: 44px;
    padding-bottom: 40px;
  }

  .voraai-home .voraai-ecosystem {
    padding-top: 40px;
  }
}

/* Keep the feature hierarchy clear and its paired actions aligned. */
.voraai-home .voraai-featured {
  padding-top: 50px;
}

.voraai-home .voraai-featured .voraai-section-head h2 {
  font-size: 36px;
  line-height: 1.08;
}

.voraai-home .voraai-featured .voraai-spotlight__copy h3 {
  max-width: none;
  min-height: calc(1.12em * 2);
  font-size: 30px;
  line-height: 1.12;
}

@media (max-width: 760px) {
  .voraai-home .voraai-featured {
    padding-top: 40px;
  }

  .voraai-home .voraai-featured .voraai-section-head h2 {
    font-size: 28px;
  }

  .voraai-home .voraai-featured .voraai-spotlight__copy h3 {
    min-height: calc(1.16em * 2);
    font-size: 26px;
    line-height: 1.16;
  }
}

/* Keep the ecosystem introduction concise before its catalog cards. */
.voraai-home .voraai-ecosystem {
  padding-top: 40px;
}

.voraai-home .voraai-ecosystem .voraai-section-head {
  margin-bottom: 24px;
}

.voraai-home .voraai-ecosystem .voraai-section-head h2 {
  font-size: 40px;
  line-height: 1.08;
}

.voraai-home .voraai-ecosystem .voraai-section-head > div > p:not(.voraai-eyebrow) {
  margin-top: 12px;
  font-size: 15px;
}

@media (max-width: 760px) {
  .voraai-home .voraai-ecosystem {
    padding-top: 36px;
  }

  .voraai-home .voraai-ecosystem .voraai-section-head {
    margin-bottom: 20px;
  }

  .voraai-home .voraai-ecosystem .voraai-section-head h2 {
    font-size: 30px;
  }
}

/* Compact catalog headers without changing individual product pages. */
body.post-type-archive-product .woo-main,
body.tax-product_cat .woo-main {
  padding-top: 42px;
  padding-bottom: 60px;
}

body.post-type-archive-product .woo-main h1.page-title,
body.tax-product_cat .woo-main h1.page-title {
  font-size: 48px;
}

@media (max-width: 760px) {
  body.post-type-archive-product .woo-main,
  body.tax-product_cat .woo-main {
    padding-top: 36px;
    padding-bottom: 48px;
  }

  body.post-type-archive-product .woo-main h1.page-title,
  body.tax-product_cat .woo-main h1.page-title {
    font-size: 36px;
  }
}

/* Home category carousel. Product imagery and links are sourced from WooCommerce. */
.voraai-category-hero {
  position: relative;
  min-height: 620px;
  height: 100svh;
  max-height: 760px;
  overflow: hidden;
  background: #eef0ed;
}

.voraai-category-hero__slide {
  position: relative;
  min-height: inherit;
  height: 100%;
  overflow: hidden;
  background: #eef0ed;
}

.voraai-category-hero__copy {
  position: relative;
  z-index: 2;
  width: min(520px, 40vw);
  margin-left: max(34px, calc((100vw - var(--voraai-max)) / 2 + 42px));
  padding: 164px 0 100px;
}

.voraai-category-hero__copy h1,
.voraai-category-hero__copy h2 {
  max-width: 12ch;
  margin: 0;
  color: var(--voraai-black) !important;
  font-size: 54px;
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: 0;
}

.voraai-category-hero__description {
  max-width: 470px;
  margin: 22px 0 0;
  color: #44443f;
  font-size: 17px;
  line-height: 1.5;
}

.voraai-category-hero__actions {
  margin-top: 28px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
}

.voraai-category-hero__media {
  position: absolute;
  inset: 0 0 0 40%;
  display: block;
  overflow: hidden;
  background: #e8e9e5;
}

.voraai-category-hero__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center right;
  mix-blend-mode: multiply;
}

.voraai-category-hero__control {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 44px;
  height: 44px;
  padding: 0;
  display: grid;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, .28);
  border-radius: 50%;
  background: rgba(255, 255, 255, .92);
  color: var(--voraai-black);
  font-size: 22px;
  line-height: 1;
  transform: translateY(-50%);
}

.voraai-category-hero__control--previous {
  left: 20px;
}

.voraai-category-hero__control--next {
  right: 20px;
}

.voraai-category-hero__control:hover,
.voraai-category-hero__control:focus-visible {
  border-color: var(--voraai-black);
  background: var(--voraai-black);
  color: #fff;
}

.voraai-category-hero__pagination {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 28px;
  display: flex;
  gap: 8px;
  transform: translateX(-50%);
}

.voraai-category-hero__dot {
  width: 24px;
  height: 3px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: rgba(17, 17, 17, .28);
}

.voraai-category-hero__dot.is-active,
.voraai-category-hero__dot:hover,
.voraai-category-hero__dot:focus-visible {
  background: var(--voraai-black);
}

@media (max-width: 760px) {
  .voraai-category-hero {
    min-height: 650px;
    height: 100svh;
    max-height: 720px;
  }

  .voraai-category-hero__copy {
    width: auto;
    margin: 0;
    padding: 128px 22px 308px;
  }

  .voraai-category-hero__copy h1,
  .voraai-category-hero__copy h2 {
    max-width: 11ch;
    font-size: 38px;
    line-height: 1.04;
  }

  .voraai-category-hero__description {
    max-width: 34ch;
    margin-top: 16px;
    font-size: 15px;
  }

  .voraai-category-hero__actions {
    margin-top: 22px;
    gap: 16px;
  }

  .voraai-category-hero__media {
    inset: auto 0 0;
    height: 310px;
  }

  .voraai-category-hero__control {
    top: auto;
    bottom: 138px;
    transform: none;
  }

  .voraai-category-hero__control--previous {
    left: 14px;
  }

  .voraai-category-hero__control--next {
    right: 14px;
  }

  .voraai-category-hero__pagination {
    bottom: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .voraai-category-hero__slide {
    transition: none;
  }
}


/* VORAAI campaign hero: Xpro content remains editable in template 345. */
body.home .voraai-hero-builder {
  margin-top: 0;
  padding-top: 100px;
  overflow: hidden;
  background: #101214;
}
body.home .voraai-hero-builder .xpro-hero-slider-slide-content-wrapper {
  min-height: min(520px, calc(100svh - 100px));
}
body.home .voraai-hero-builder .xpro-hero-slider-slide-content-area {
  width: min(450px, 42vw);
  padding: 20px;
}
body.home .voraai-hero-builder .xpro-hero-slider-title {
  max-width: 11ch;
  margin: 16px 0 12px;
  font-size: clamp(42px, 4vw, 58px);
  line-height: 1.04;
  letter-spacing: 0;
}
body.home .voraai-hero-builder .xpro-hero-slider-subtitle {
  font-size: 12px;
  letter-spacing: .12em;
}
body.home .voraai-hero-builder .xpro-hero-slider-description {
  max-width: 31ch;
  font-size: 17px;
  line-height: 1.45;
}
body.home .voraai-hero-builder .xpro-hero-slider-slide-button-wrapper {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
body.home .voraai-hero-builder .xpro-hero-slider-button-primary,
body.home .voraai-hero-builder .xpro-hero-slider-button-secondary {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 0;
}
body.home .voraai-hero-builder .xpro-hero-slider-button-secondary {
  border-color: rgba(255,255,255,.8);
}
@media (max-width: 760px) {
  body.home .voraai-hero-builder { margin-top: 0; padding-top: 80px; }
  body.home .voraai-hero-builder .xpro-hero-slider-slide-content-wrapper {
    min-height: min(548px, calc(100svh - 72px));
    align-items: flex-start;
  }
  body.home .voraai-hero-builder .xpro-hero-slider-slide-content-area {
    width: min(100%, 390px);
    padding: 54px 22px 24px;
  }
  body.home .voraai-hero-builder .xpro-hero-slider-title {
    max-width: 10ch;
    font-size: 38px;
  }
  body.home .voraai-hero-builder .xpro-hero-slider-description { font-size: 15px; }
}
@media (prefers-reduced-motion: reduce) {
  body.home .voraai-hero-builder .swiper-wrapper { transition-duration: 0ms !important; }
}

/* VORAAI campaign hero full-bleed refinement 2026-08-21 */
body.home .voraai-hero-builder {
  height: calc(100svh - 144px);
  min-height: 580px;
  max-height: none;
}
body.home .voraai-hero-builder .elementor-element-164b0c2,
body.home .voraai-hero-builder .elementor-element-164b0c2 > .e-con-inner,
body.home .voraai-hero-builder .elementor-element-2777618,
body.home .voraai-hero-builder .xpro-hero-slider-wrapper,
body.home .voraai-hero-builder .xpro-hero-slider {
  width: 100%;
  max-width: none;
}
body.home .voraai-hero-builder .elementor-element-164b0c2 > .e-con-inner {
  padding: 0;
}
body.home .voraai-hero-builder .xpro-hero-slider,
body.home .voraai-hero-builder .xpro-hero-slider .swiper-slide,
body.home .voraai-hero-builder .xpro-hero-slider-slide-bg,
body.home .voraai-hero-builder .xpro-hero-slider-slide-content-wrapper {
  height: calc(100svh - 244px);
  min-height: 480px;
}
body.home .voraai-hero-builder .xpro-hero-slider-slide-bg {
  background-size: cover !important;
  background-position: center center !important;
}
body.home .voraai-hero-builder .xpro-hero-slider-slide-bg::before {
  inset: 0 auto 0 0;
  width: 43%;
  opacity: .46;
  background: #090b0d;
  clip-path: polygon(0 0, 84% 0, 100% 100%, 0 100%);
}
body.home .voraai-hero-builder .xpro-hero-slider-slide-content-area {
  width: min(470px, 33vw);
  padding: 26px 42px;
}
body.home .voraai-hero-builder .xpro-hero-slider-title {
  max-width: 14ch;
  font-size: clamp(40px, 3.1vw, 52px);
}
body.home .voraai-hero-builder .xpro-hero-slider .swiper-button-prev,
body.home .voraai-hero-builder .xpro-hero-slider .swiper-button-next {
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 0;
  background: rgba(7,9,11,.18);
  color: #fff;
  box-shadow: none;
}
body.home .voraai-hero-builder .xpro-hero-slider .swiper-button-prev {
  left: 24px;
}
body.home .voraai-hero-builder .xpro-hero-slider .swiper-button-next {
  right: 24px;
}
body.home .voraai-hero-builder .xpro-hero-slider .swiper-button-prev::after,
body.home .voraai-hero-builder .xpro-hero-slider .swiper-button-next::after {
  font-size: 18px;
}
@media (max-width: 760px) {
  body.home .voraai-hero-builder {
    height: calc(100svh - 72px);
    min-height: 560px;
    padding-top: 80px;
  }
  body.home .voraai-hero-builder .xpro-hero-slider,
  body.home .voraai-hero-builder .xpro-hero-slider .swiper-slide,
  body.home .voraai-hero-builder .xpro-hero-slider-slide-bg,
  body.home .voraai-hero-builder .xpro-hero-slider-slide-content-wrapper {
    height: calc(100svh - 152px);
    min-height: 480px;
  }
  body.home .voraai-hero-builder .xpro-hero-slider-slide-bg::before {
    width: 72%;
    opacity: .54;
  }
  body.home .voraai-hero-builder .xpro-hero-slider-slide-content-area {
    width: min(100%, 390px);
    padding: 46px 22px 24px;
  }
  body.home .voraai-hero-builder .xpro-hero-slider-title {
    max-width: 13ch;
    font-size: 38px;
  }
  body.home .voraai-hero-builder .xpro-hero-slider .swiper-button-prev {
    left: 12px;
  }
  body.home .voraai-hero-builder .xpro-hero-slider .swiper-button-next {
    right: 12px;
  }
}
/* VORAAI campaign hero control correction 2026-08-21 */
body.home .voraai-hero-builder .xpro-hero-slider-slide-bg::before {
  width: 32% !important;
  opacity: 1 !important;
  background: rgba(7, 9, 11, .30) !important;
  -webkit-backdrop-filter: blur(8px) saturate(.88);
  backdrop-filter: blur(8px) saturate(.88);
}
body.home .voraai-hero-builder .xpro-hero-slider-wrapper .swiper-button-prev,
body.home .voraai-hero-builder .xpro-hero-slider-wrapper .swiper-button-next {
  width: 48px !important;
  height: 48px !important;
  border: 1px solid rgba(255,255,255,.68) !important;
  border-radius: 0 !important;
  background: rgba(7,9,11,.18) !important;
  color: #fff !important;
  box-shadow: none !important;
}
body.home .voraai-hero-builder .xpro-hero-slider-wrapper .swiper-button-prev {
  left: 24px !important;
}
body.home .voraai-hero-builder .xpro-hero-slider-wrapper .swiper-button-next {
  right: 24px !important;
}
body.home .voraai-hero-builder .xpro-hero-slider-wrapper .swiper-button-prev::after,
body.home .voraai-hero-builder .xpro-hero-slider-wrapper .swiper-button-next::after {
  font-size: 18px !important;
}
@media (max-width: 760px) {
  body.home .voraai-hero-builder .xpro-hero-slider-slide-bg::before {
    width: 56% !important;
    opacity: 1 !important;
    background: rgba(7, 9, 11, .38) !important;
    -webkit-backdrop-filter: blur(7px) saturate(.88);
    backdrop-filter: blur(7px) saturate(.88);
  }
  body.home .voraai-hero-builder .xpro-hero-slider-wrapper .swiper-button-prev {
    left: 12px !important;
  }
  body.home .voraai-hero-builder .xpro-hero-slider-wrapper .swiper-button-next {
    right: 12px !important;
  }
}
/* VORAAI campaign hero no-overlay correction 2026-08-21 */
body.home .voraai-hero-builder .xpro-hero-slider-slide-bg::before {
  display: none !important;
}
body.home .voraai-hero-builder .xpro-hero-slider-subtitle,
body.home .voraai-hero-builder .xpro-hero-slider-title,
body.home .voraai-hero-builder .xpro-hero-slider-description,
body.home .voraai-hero-builder .xpro-hero-slider-description p {
  color: #111315 !important;
  text-shadow: none !important;
}
body.home .voraai-hero-builder .xpro-hero-slider-button-primary {
  background: #fff !important;
  border-color: #111315 !important;
  color: #111315 !important;
}
body.home .voraai-hero-builder .xpro-hero-slider-button-secondary {
  border-color: #111315 !important;
  color: #111315 !important;
  background: transparent !important;
}
/* VORAAI approved campaign hero V3 */
body.home .voraai-hero-builder .xpro-hero-slider-subtitle,
body.home .voraai-hero-builder .xpro-hero-slider-title,
body.home .voraai-hero-builder .xpro-hero-slider-description,
body.home .voraai-hero-builder .xpro-hero-slider-description p {
  color: #fff !important;
  text-shadow: none !important;
}
body.home .voraai-hero-builder .xpro-hero-slider-button-primary {
  background: #fff !important;
  border-color: #fff !important;
  color: #111315 !important;
}
body.home .voraai-hero-builder .xpro-hero-slider-button-secondary {
  border-color: rgba(255,255,255,.86) !important;
  color: #fff !important;
  background: transparent !important;
}
/* VORAAI Hero V3 mobile header clearance */
@media (max-width: 760px) {
  body.home .voraai-hero-builder {
    padding-top: 90px !important;
  }
  body.home .voraai-hero-builder .xpro-hero-slider,
  body.home .voraai-hero-builder .xpro-hero-slider .swiper-slide,
  body.home .voraai-hero-builder .xpro-hero-slider-slide-bg,
  body.home .voraai-hero-builder .xpro-hero-slider-slide-content-wrapper {
    height: calc(100svh - 162px) !important;
    min-height: 470px;
  }
}

/* VORAAI Hero V4 mobile subject focus */
@media (max-width: 767px) {
  .elementor-element-2777618 .xpro-hero-slider-slide-bg {
    background-position: 68% center !important;
  }
}


/* VORAAI dedicated mobile hero banners V1 */
@media (max-width: 767px) {
  .elementor-element-2777618 .swiper-slide[data-swiper-slide-index="0"] .xpro-hero-slider-slide-bg {
    background-image: url("https://voraaitech.com/wp-content/uploads/2026/08/hero-scooter-mobile-v1.png") !important;
  }
  .elementor-element-2777618 .swiper-slide[data-swiper-slide-index="1"] .xpro-hero-slider-slide-bg {
    background-image: url("https://voraaitech.com/wp-content/uploads/2026/08/hero-birdie-mobile-v1.png") !important;
  }
  .elementor-element-2777618 .swiper-slide[data-swiper-slide-index="2"] .xpro-hero-slider-slide-bg {
    background-image: url("https://voraaitech.com/wp-content/uploads/2026/08/hero-wagon-mobile-v1.png") !important;
  }
  .elementor-element-2777618 .swiper-slide[data-swiper-slide-index="3"] .xpro-hero-slider-slide-bg {
    background-image: url("https://voraaitech.com/wp-content/uploads/2026/08/hero-glasses-mobile-v1.png") !important;
  }
  .elementor-element-2777618 .swiper-slide[data-swiper-slide-index="4"] .xpro-hero-slider-slide-bg {
    background-image: url("https://voraaitech.com/wp-content/uploads/2026/09/hero-real-products-v5/hero-walking-assist-mobile-real-v5.png") !important;
  }
  .elementor-element-2777618 .xpro-hero-slider-slide-bg {
    background-position: center center !important;
    background-size: cover !important;
  }
  .elementor-element-2777618 .xpro-hero-slider-subtitle-wrapper,
  .elementor-element-2777618 .xpro-hero-slider-title-wrapper,
  .elementor-element-2777618 .xpro-hero-slider-description-wrapper {
    display: none !important;
  }
  .elementor-element-2777618 .xpro-hero-slider-slide-content-area {
    position: relative !important;
    height: 100% !important;
    padding: 0 !important;
  }
  .elementor-element-2777618 .xpro-hero-slider-slide-button-wrapper {
    position: absolute !important;
    top: 220px !important;
    left: 22px !important;
    right: 22px !important;
    z-index: 4 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 0 !important;
  }
  .elementor-element-2777618 .xpro-hero-slider-slide-button-wrapper a {
    min-height: 44px !important;
    padding: 11px 14px !important;
    font-size: 13px !important;
    line-height: 20px !important;
  }
  .elementor-element-2777618 .xpro-hero-slider-button-primary {
    color: #ffffff !important;
    background: #101820 !important;
    border-color: #101820 !important;
  }
  .elementor-element-2777618 .xpro-hero-slider-button-secondary {
    color: #101820 !important;
    background: rgba(255, 255, 255, 0.88) !important;
    border-color: rgba(16, 24, 32, 0.35) !important;
  }
}


/* VORAAI mobile hero force portrait fill */
@media (max-width: 767px) {
  .elementor-element-2777618 .xpro-hero-slider-slide-bg {
    background-size: 100% 100% !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
  }
}


/* VORAAI mobile hero single clear CTA */
@media (max-width: 767px) {
  body.home .voraai-hero-builder .elementor-element-2777618 a.xpro-hero-slider-button-secondary {
    display: none !important;
  }
}


/* VORAAI remaining hero banners V2 */
@media (max-width: 767px) {
  .elementor-element-2777618 .swiper-slide[data-swiper-slide-index="5"] .xpro-hero-slider-slide-bg { background-image: url("https://voraaitech.com/wp-content/uploads/2026/09/hero-real-products-v5/hero-earbuds-mobile-real-v5.png") !important; }
  .elementor-element-2777618 .swiper-slide[data-swiper-slide-index="6"] .xpro-hero-slider-slide-bg { background-image: url("https://voraaitech.com/wp-content/uploads/2026/08/hero-translator-mobile-v3.png") !important; }
  .elementor-element-2777618 .swiper-slide[data-swiper-slide-index="7"] .xpro-hero-slider-slide-bg { background-image: url("https://voraaitech.com/wp-content/uploads/2026/09/hero-real-products-v5/hero-toy-mobile-real-v5.png") !important; }
  .elementor-element-2777618 .swiper-slide[data-swiper-slide-index="8"] .xpro-hero-slider-slide-bg { background-image: url("https://voraaitech.com/wp-content/uploads/2026/09/hero-real-products-v5/hero-pet-mobile-real-v5.png") !important; }
}

/* Compact marketplace single-product layout, 2026-08-29. */
body.single-product.voraai-marketplace-compact {
  background: #F7F8FA;
  color: #111827;
  font-family: Arial, Helvetica, sans-serif;
}
body.single-product.voraai-marketplace-compact .woo-main {
  max-width: 1480px;
  padding: 28px 24px 72px;
}
body.single-product.voraai-marketplace-compact .woocommerce-breadcrumb {
  margin-bottom: 18px;
  color: #5B6470;
  font-size: 12px;
}
body.single-product.voraai-marketplace-compact div.product {
  display: block;
}
body.single-product.voraai-marketplace-compact .voraai-product-top {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(360px, .85fr);
  gap: 28px;
  align-items: start;
}
body.single-product.voraai-marketplace-compact .voraai-product-top > .woocommerce-product-gallery {
  position: relative;
  width: 100% !important;
  margin: 0 !important;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 12px;
}
body.single-product.voraai-marketplace-compact .woocommerce-product-gallery__wrapper,
body.single-product.voraai-marketplace-compact .voraai-gallery-video {
  grid-column: 2;
  grid-row: 1;
  min-width: 0;
}
body.single-product.voraai-marketplace-compact .woocommerce-product-gallery__image img,
body.single-product.voraai-marketplace-compact .voraai-gallery-video {
  border: 1px solid rgba(91, 100, 112, .18) !important;
  border-radius: 6px !important;
  background: #FFFFFF !important;
}
body.single-product.voraai-marketplace-compact .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: min(620px, calc(100vh - 160px)) !important;
  aspect-ratio: auto !important;
  object-fit: contain;
  background: #FFFFFF !important;
}
body.single-product.voraai-marketplace-compact .voraai-gallery-video {
  display: block;
  overflow: hidden;
  height: min(620px, calc(100vh - 160px));
  aspect-ratio: auto;
  background: #0B0D10 !important;
}
body.single-product.voraai-marketplace-compact .voraai-gallery-video[hidden] {
  display: none;
}
body.single-product.voraai-marketplace-compact .voraai-gallery-video video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
body.single-product.voraai-marketplace-compact .woocommerce-product-gallery.voraai-video-active .woocommerce-product-gallery__wrapper {
  display: none !important;
}
body.single-product.voraai-marketplace-compact .weston-gallery-thumbnails {
  grid-column: 1;
  grid-row: 1;
  align-self: start;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
  max-height: min(620px, calc(100vh - 160px));
  margin: 0;
  padding-right: 3px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}
body.single-product.voraai-marketplace-compact .weston-gallery-thumbnail {
  padding: 4px;
  border-color: rgba(91, 100, 112, .24);
  border-radius: 4px;
}
body.single-product.voraai-marketplace-compact .weston-gallery-thumbnail[aria-pressed="true"] {
  padding: 3px;
  border: 2px solid #1E5EFF;
  box-shadow: none;
}
body.single-product.voraai-marketplace-compact .voraai-video-thumbnail {
  position: relative;
  background: #0B0D10;
}
body.single-product.voraai-marketplace-compact .voraai-video-thumbnail::after {
  content: "\25B6";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF;
  font-size: 24px;
  line-height: 1;
  text-shadow: 0 1px 3px #0B0D10;
}
body.single-product.voraai-marketplace-compact .voraai-gallery-controls {
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}
body.single-product.voraai-marketplace-compact .voraai-gallery-prev,
body.single-product.voraai-marketplace-compact .voraai-gallery-next,
body.single-product.voraai-marketplace-compact .voraai-gallery-count {
  position: absolute;
  border: 1px solid rgba(91, 100, 112, .18);
  border-radius: 4px;
  background: #FFFFFF;
  color: #111827;
}
body.single-product.voraai-marketplace-compact .voraai-gallery-prev,
body.single-product.voraai-marketplace-compact .voraai-gallery-next {
  top: 50%;
  width: 42px;
  height: 48px;
  padding: 0;
  transform: translateY(-50%);
  font-size: 30px;
  line-height: 1;
  pointer-events: auto;
}
body.single-product.voraai-marketplace-compact .voraai-gallery-prev {
  left: 100px;
}
body.single-product.voraai-marketplace-compact .voraai-gallery-next {
  right: 14px;
}
body.single-product.voraai-marketplace-compact .voraai-gallery-count {
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  font-size: 12px;
  font-weight: 700;
}
body.single-product.voraai-marketplace-compact .voraai-product-top > .summary {
  position: sticky;
  top: 96px;
  width: 100% !important;
  max-height: calc(100vh - 116px);
  margin: 0 !important;
  padding: 0 6px 0 0 !important;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
}
body.single-product.voraai-marketplace-compact .product_title {
  max-width: 25ch;
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(22px, 1.7vw, 26px);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1.12;
}
body.single-product.voraai-marketplace-compact .voraai-product-store {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  margin: 0 0 12px;
  padding: 8px 0 12px;
  border-bottom: 1px solid rgba(91, 100, 112, .18);
}
body.single-product.voraai-marketplace-compact .voraai-product-store__mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 4px;
  background: #0B0D10;
  color: #FFFFFF;
  font-weight: 800;
}
body.single-product.voraai-marketplace-compact .voraai-product-store__name {
  display: grid;
  gap: 2px;
  min-width: 0;
}
body.single-product.voraai-marketplace-compact .voraai-product-store__name strong {
  color: #111827;
  font-size: 14px;
}
body.single-product.voraai-marketplace-compact .voraai-product-store__name span,
body.single-product.voraai-marketplace-compact .voraai-product-store a {
  color: #5B6470;
  font-size: 12px;
}
body.single-product.voraai-marketplace-compact p.price,
body.single-product.voraai-marketplace-compact span.price {
  margin: 0 0 10px;
  color: #111827;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.05;
}
body.single-product.voraai-marketplace-compact p.price del,
body.single-product.voraai-marketplace-compact span.price del {
  color: #5B6470;
  font-size: 17px;
  font-weight: 400;
  opacity: 1;
}
body.single-product.voraai-marketplace-compact p.price ins,
body.single-product.voraai-marketplace-compact span.price ins {
  color: #111827;
  text-decoration: none;
}
body.single-product.voraai-marketplace-compact .voraai-sale-summary {
  margin: 0 0 7px;
  color: #5B6470;
  font-size: 13px;
}
body.single-product.voraai-marketplace-compact .voraai-sale-summary strong {
  color: #1E5EFF;
}
body.single-product.voraai-marketplace-compact .voraai-financing {
  display: grid;
  gap: 4px;
  margin: 0 0 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(91, 100, 112, .18);
  color: #5B6470;
  font-size: 12px;
  line-height: 1.4;
}
body.single-product.voraai-marketplace-compact .voraai-stripe-messaging:empty {
  display: none;
}
body.single-product.voraai-marketplace-compact .voraai-financing__fallback {
  display: grid;
  gap: 4px;
}
body.single-product.voraai-marketplace-compact .voraai-financing__fallback > p {
  margin: 0;
}
body.single-product.voraai-marketplace-compact .voraai-financing__fallback > p strong {
  color: #111827;
}
body.single-product.voraai-marketplace-compact .voraai-financing summary {
  color: #1E5EFF;
  cursor: pointer;
  font-weight: 700;
}
body.single-product.voraai-marketplace-compact .voraai-financing details p {
  margin: 5px 0 0;
  color: #5B6470;
}
body.single-product.voraai-marketplace-compact .woocommerce-product-details__short-description {
  display: -webkit-box;
  margin-bottom: 12px;
  overflow: hidden;
  color: #5B6470;
  font-size: 13px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
body.single-product.voraai-marketplace-compact .woocommerce-product-details__short-description p {
  margin: 0;
}
body.single-product.voraai-marketplace-compact .voraai-product-facts {
  margin: 0 0 18px;
  padding: 0;
  border-top: 1px solid rgba(91, 100, 112, .18);
}
body.single-product.voraai-marketplace-compact .voraai-product-facts > div {
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr);
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(91, 100, 112, .18);
}
body.single-product.voraai-marketplace-compact .voraai-product-facts dt {
  color: #5B6470;
  font-size: 13px;
}
body.single-product.voraai-marketplace-compact .voraai-product-facts dd {
  margin: 0;
  color: #111827;
  font-size: 13px;
  font-weight: 700;
}
body.single-product.voraai-marketplace-compact form.cart {
  margin: 0 0 14px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 9px;
}
body.single-product.voraai-marketplace-compact form.cart > .quantity {
  width: 84px !important;
  margin: 0 0 2px !important;
  float: none !important;
}
body.single-product.voraai-marketplace-compact .woocommerce .quantity .qty {
  width: 84px;
  min-height: 44px;
  border-color: rgba(91, 100, 112, .34);
  border-radius: 4px;
  background: #FFFFFF;
  color: #111827;
  font-weight: 700;
}
body.single-product.voraai-marketplace-compact .voraai-buy-now,
body.single-product.voraai-marketplace-compact button.single_add_to_cart_button {
  width: 100%;
  min-height: 44px;
  margin: 0 !important;
  border-radius: 4px !important;
  font-size: 15px !important;
  font-weight: 800 !important;
}
body.single-product.voraai-marketplace-compact .voraai-buy-now {
  order: 2;
  border: 1px solid #1E5EFF !important;
  background: #1E5EFF !important;
  color: #FFFFFF !important;
}
body.single-product.voraai-marketplace-compact button.single_add_to_cart_button {
  order: 3;
  float: none !important;
  border: 1px solid #1E5EFF !important;
  background: #FFFFFF !important;
  color: #1E5EFF !important;
}
body.single-product.voraai-marketplace-compact .voraai-buy-now:hover,
body.single-product.voraai-marketplace-compact button.single_add_to_cart_button:hover {
  border-color: #0B0D10 !important;
  background: #0B0D10 !important;
  color: #FFFFFF !important;
}
body.single-product.voraai-marketplace-compact .voraai-buy-now:active,
body.single-product.voraai-marketplace-compact button.single_add_to_cart_button:active {
  transform: translateY(1px);
}
body.single-product.voraai-marketplace-compact .voraai-buy-now:focus-visible,
body.single-product.voraai-marketplace-compact button.single_add_to_cart_button:focus-visible,
body.single-product.voraai-marketplace-compact .weston-gallery-thumbnail:focus-visible,
body.single-product.voraai-marketplace-compact .voraai-gallery-prev:focus-visible,
body.single-product.voraai-marketplace-compact .voraai-gallery-next:focus-visible {
  outline: 3px solid rgba(30, 94, 255, .32);
  outline-offset: 2px;
}
body.single-product.voraai-marketplace-compact #wc-stripe-express-checkout-element {
  margin: 0 0 14px;
}
body.single-product.voraai-marketplace-compact .weston-product-inquiry {
  margin: 16px 0 0;
  padding: 16px;
  border-color: rgba(91, 100, 112, .18);
  border-radius: 4px;
  background: #F7F8FA;
}
body.single-product.voraai-marketplace-compact .weston-product-inquiry h2,
body.single-product.voraai-marketplace-compact .weston-product-inquiry h3 {
  margin: 0 0 6px;
  color: #111827;
  font-size: 16px;
  line-height: 1.2;
}
body.single-product.voraai-marketplace-compact .weston-product-inquiry p {
  margin: 0 0 10px;
  color: #5B6470;
  font-size: 13px;
  line-height: 1.45;
}
body.single-product.voraai-marketplace-compact .product_meta {
  margin-top: 16px;
  padding-top: 14px;
  border-color: rgba(91, 100, 112, .18);
  color: #5B6470;
  font-size: 12px;
  line-height: 1.6;
}
body.single-product.voraai-marketplace-compact .voraai-product-confidence {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  margin: 34px 0 0;
  padding: 20px 0;
  border-top: 1px solid rgba(91, 100, 112, .18);
  border-bottom: 1px solid rgba(91, 100, 112, .18);
}
body.single-product.voraai-marketplace-compact .voraai-product-confidence > div {
  display: grid;
  gap: 3px;
}
body.single-product.voraai-marketplace-compact .voraai-product-confidence strong {
  color: #111827;
  font-size: 14px;
}
body.single-product.voraai-marketplace-compact .voraai-product-confidence span,
body.single-product.voraai-marketplace-compact .voraai-product-confidence a {
  color: #5B6470;
  font-size: 13px;
}
body.single-product.voraai-marketplace-compact .voraai-product-confidence nav {
  display: flex;
  gap: 20px;
}
body.single-product.voraai-marketplace-compact .woocommerce-tabs {
  padding-top: 34px;
}
body.single-product.voraai-marketplace-compact .woocommerce-tabs ul.tabs {
  margin: 0;
  border-color: rgba(91, 100, 112, .18);
}
body.single-product.voraai-marketplace-compact .woocommerce-tabs ul.tabs li {
  margin-right: 24px;
}
body.single-product.voraai-marketplace-compact .woocommerce-tabs ul.tabs li a {
  padding: 12px 0;
  color: #5B6470;
  font-size: 13px;
  font-weight: 700;
}
body.single-product.voraai-marketplace-compact .woocommerce-tabs ul.tabs li.active a {
  color: #111827;
}
body.single-product.voraai-marketplace-compact .woocommerce-tabs .panel {
  max-width: 920px;
  margin: 0 auto;
  padding: 34px 0 0;
  color: #111827;
}
body.single-product.voraai-marketplace-compact .woocommerce-tabs .panel > p,
body.single-product.voraai-marketplace-compact .woocommerce-tabs .panel > ul {
  max-width: 70ch;
}
body.single-product.voraai-marketplace-compact .woocommerce-tabs .panel h2 {
  margin: 34px 0 10px;
  color: #111827;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}
body.single-product.voraai-marketplace-compact .woocommerce-tabs .panel h3 {
  margin: 24px 0 6px;
  color: #111827;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}
body.single-product.voraai-marketplace-compact .woocommerce-tabs .panel p,
body.single-product.voraai-marketplace-compact .woocommerce-tabs .panel li {
  color: #5B6470;
  font-size: 15px;
  line-height: 1.65;
}
body.single-product.voraai-marketplace-compact .woocommerce-tabs .panel figure {
  max-width: 920px;
  margin-right: auto !important;
  margin-left: auto !important;
}
body.single-product.voraai-marketplace-compact .related.products {
  margin-top: 52px;
  padding-top: 30px;
  border-top: 1px solid rgba(91, 100, 112, .18);
}
body.single-product.voraai-marketplace-compact .related.products > h2 {
  margin: 0 0 20px;
  color: #111827 !important;
  font-size: 24px;
  font-weight: 800;
}
@media (max-width: 980px) {
  body.single-product.voraai-marketplace-compact .woo-main {
    padding: 22px 18px 56px;
  }
  body.single-product.voraai-marketplace-compact .voraai-product-top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  body.single-product.voraai-marketplace-compact .voraai-product-top > .summary {
    position: static;
    max-height: none;
    padding-right: 0 !important;
    overflow: visible;
  }
}
@media (max-width: 600px) {
  body.single-product.voraai-marketplace-compact .woo-main {
    padding: 16px 14px 44px;
  }
  body.single-product.voraai-marketplace-compact .woocommerce-breadcrumb {
    margin-bottom: 12px;
  }
  body.single-product.voraai-marketplace-compact .voraai-product-top > .woocommerce-product-gallery {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  body.single-product.voraai-marketplace-compact .woocommerce-product-gallery__wrapper,
  body.single-product.voraai-marketplace-compact .voraai-gallery-video {
    grid-column: 1;
    grid-row: 1;
  }
  body.single-product.voraai-marketplace-compact .weston-gallery-thumbnails {
    grid-column: 1;
    grid-row: 2;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 72px;
    gap: 7px;
    max-height: none;
    padding: 0 0 4px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
  }
  body.single-product.voraai-marketplace-compact .woocommerce-product-gallery__image img,
  body.single-product.voraai-marketplace-compact .voraai-gallery-video {
    height: min(470px, calc(100vw - 28px)) !important;
  }
  body.single-product.voraai-marketplace-compact .weston-gallery-thumbnail {
    scroll-snap-align: start;
  }
  body.single-product.voraai-marketplace-compact .voraai-gallery-prev {
    left: 14px;
  }
  body.single-product.voraai-marketplace-compact .product_title {
    max-width: none;
    font-size: 23px;
  }
  body.single-product.voraai-marketplace-compact p.price,
  body.single-product.voraai-marketplace-compact span.price {
    font-size: 26px;
  }
  body.single-product.voraai-marketplace-compact .voraai-product-confidence {
    align-items: flex-start;
    flex-direction: column;
  }
  body.single-product.voraai-marketplace-compact .voraai-product-confidence nav {
    flex-wrap: wrap;
    gap: 10px 18px;
  }
  body.single-product.voraai-marketplace-compact .woocommerce-tabs {
    padding-top: 26px;
  }
  body.single-product.voraai-marketplace-compact .woocommerce-tabs .panel {
    padding-top: 24px;
  }
  body.single-product.voraai-marketplace-compact .woocommerce-tabs .panel h2 {
    font-size: 21px;
  }
}
