/* Main stylesheet imports - live reload test */

/* @import url("https://fonts.googleapis.com/css2?family=Poppins&display=swap"); */

/* Add any other base imports here */

/* Component CSS Imports */

/* Navigation container */

.main-swiper>.nav-container {
  width: 100%;
  position: relative;
  padding-bottom: 107.69%;
  /* 650x700 aspect ratio (portrait) */
}

.nav-container {
  position: relative;
}

/* Navigation Menu Styles */

.nav-menu {
  display: flex;
  align-items: stretch;
  padding-left: 1rem;
  padding-right: 1rem;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.nav-menu>li {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.nav-menu>li:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.nav-menu>li:hover>a {
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
}

.nav-menu>li>a {
  display: flex;
  height: 100%;
  align-items: center;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  padding: 1rem;
}

.nav-menu>li>a span {
  padding-top: 0px;
}

/* Submenu */

.submenu {
  position: absolute;
  z-index: 10;
  display: none;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  left: 0;
  top: 100%;
}

.nav-menu>li:hover .submenu {
  display: block;
}

.submenu-inner {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.submenu-inner .menu > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.submenu-inner .menu li a {
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(230 126 34 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.submenu-inner .menu li a:hover {
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
}

/* Split main submenu into two columns with vertical flow */

.main-submenu .menu {
  display: grid;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 0.5rem;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
}

.main-submenu .menu> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: 0;
  margin-bottom: 0;
}

/* Regular submenu spacing */

.submenu-inner .menu:not(.main-submenu .menu) > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.submenu-inner .menu li a {
  font-weight: 400;
  --tw-text-opacity: 1;
  color: rgb(230 126 34 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.submenu-inner .menu li a:hover {
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
}

/* Down arrow for menu items with submenu */

.nav-menu>li.menu-item-has-children>a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-menu>li.menu-item-has-children>a::after {
  content: '';
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  background-position: center;
  background-repeat: no-repeat;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23FFFFFF'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
  transition: background-image 0.2s ease;
}

/* Change arrow color on hover to match primary color */

.nav-menu>li.menu-item-has-children:hover>a::after {
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231A75D1'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
}

/* Split main submenu into two columns with vertical flow */

.main-submenu .menu.two-cols {
  display: grid;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  row-gap: 0.5rem;
  grid-auto-flow: column;
  grid-template-rows: repeat(4, auto);
}

.main-submenu .menu.two-cols> :not([hidden])~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: 0;
  margin-bottom: 0;
}

.sticky-header {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 40;
  transition: top 0.3s ease-in-out;
}

/* Mobile submenu styles */

.mobile-menu-container .submenu-content .mobile-menu li a {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Make sure hover states are also white */

.mobile-menu-container .submenu-content .mobile-menu li a:hover,
.mobile-menu-container .submenu-content .mobile-menu li a:focus {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Mobile menu link styles */

#mobile-menu-container .mobile-menu li,
#mobile-menu-container .mobile-menu li a {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}

/* Ensure hover and focus states maintain white text */

#mobile-menu-container .mobile-menu li a:hover,
#mobile-menu-container .mobile-menu li a:focus,
#mobile-menu-container .mobile-menu li.current-menu-item>a {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}

/* WooCommerce CSS Imports */

.woocommerce-notices-wrapper {
  margin-bottom: 2rem;
}

.woocommerce-message {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(139 197 63 / var(--tw-bg-opacity, 1));
  padding: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.woocommerce-message .button.wc-forward {
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
  flex: none;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  --tw-text-opacity: 1;
  color: rgb(139 197 63 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.woocommerce-message .button.wc-forward:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(139 197 63 / var(--tw-text-opacity, 1));
}

.woocommerce-message > :not(.button) {
  flex-grow: 1;
}

/* Error messages */

.woocommerce-error {
  margin-bottom: 2rem;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
  padding: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Info messages */

.woocommerce-info h1,.woocommerce-info h2,.woocommerce-info h3,.woocommerce-info h4,.woocommerce-info h5,.woocommerce-info h6,.woocommerce-info .h1,.woocommerce-info .h2,.woocommerce-info .h3,.woocommerce-info .h4,.woocommerce-info .h5,.woocommerce-info .h6 {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.woocommerce-info {
  margin-bottom: 2rem;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(50 92 151 / var(--tw-bg-opacity, 1));
  padding: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Override WooCommerce default grid */

body ul.products[class*="columns-"] {
  margin: 0px;
  display: grid;
  width: 100%;
  list-style-type: none;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 2rem;
  padding: 0px;
}

@media (min-width: 640px) {
  body ul.products[class*="columns-"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  body ul.products[class*="columns-"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  body ul.products[class*="columns-"] {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

/* Responsive heading sizes and header height */

.product-card .card-header-content {
  min-height: 5.5rem;
}

/* Fix divider and image spacing */

.product-card .svg-divider {
  aspect-ratio: 458/52;
  width: 100%;
}

.product-card .svg-divider svg {
  height: 100%;
  width: 100%;
}

.product-card .card-image {
  margin-top: -0.25rem;
  /* border-b border-gray-dark; */
}

/* Remove WooCommerce price padding and adjust size */

.woocommerce ul.products li.product .price {
  padding-left: 0px;
  padding-right: 0px;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  .woocommerce ul.products li.product .price {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .woocommerce ul.products li.product .price {
    font-size: 1rem;
    line-height: 1.5rem;
  }
}

.woocommerce ul.products li.product .price ins {
  text-decoration-line: none;
}

/* Button styles */

.button.add_to_cart_button,
    a.button.add_to_cart_button,
.button.product_type_simple,
    a
.button.product_type_simple {
  display: inline-flex;
  width: 100% !important;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(242 138 0 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.button.add_to_cart_button:hover,
    a.button.add_to_cart_button:hover,
.button.product_type_simple:hover,
    a
.button.product_type_simple:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
}

@media (min-width: 768px) {
  .button.add_to_cart_button,
    a.button.add_to_cart_button,
.button.product_type_simple,
    a
.button.product_type_simple {
    width: auto;
  }
}

.button.add_to_cart_button,
    a.button.add_to_cart_button,
.button.product_type_simple,
    a
.button.product_type_simple {
  display: inline-flex;
  width: 100% !important;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(242 138 0 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.button.add_to_cart_button:hover,
    a.button.add_to_cart_button:hover,
.button.product_type_simple:hover,
    a
.button.product_type_simple:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
}

@media (min-width: 768px) {
  .button.add_to_cart_button,
    a.button.add_to_cart_button,
.button.product_type_simple,
    a
.button.product_type_simple {
    width: auto;
  }
}

.button.add_to_cart_button[disabled],
.button.product_type_simple[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

.button.add_to_cart_button,
.button.product_type_simple {
  margin-top: 1rem;
}

/* Card footer layout */

.product-card .card-footer {
  display: flex;
  flex-direction: column;
}

.product-card .card-footer > div:last-of-type {
  margin-top: auto;
}

/* Price and precis container */

.product-card .card-footer > div:not(:last-of-type) {
  flex: none;
}

#delivery-countdown {
  margin-top: 1.5rem;
}

#countdown {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

#countdown strong {
  display: block;
}

#countdown div {
  margin-bottom: 0.75rem;
}

#countdown .timer {
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(200 15 46 / var(--tw-text-opacity, 1));
}

#countdown .disclaimer {
  margin-bottom: 0px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-style: italic;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
  opacity: 0.8;
}

.widget h3 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
  font-size: 1.125rem !important;
  line-height: 1.5 !important;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}

/* Add height control for widgets */

.widget,
.widget-block,
.widget section {
  height: 100%;
}

@media (min-width: 1280px) {
  .widget,
.widget-block,
.widget section {
    height: auto;
  }
}

/* Single Post Heading Styles */

.single-blog-post {
  h1 {
    font-size: 1.75rem;
  }
  h1 {
    margin-bottom: 1.5rem;
  }
  h1 {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  h1 {
    font-weight: 700;
  }
  h1 {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  @media (min-width: 768px) {
    h1 {
      font-size: 2rem;
    }
  }
  @media (min-width: 768px) {
    h1 {
      font-size: 2rem;
      line-height: 1.3;
    }
  }
  h2 {
    font-size: 1.5rem;
  }
  h2 {
    margin-bottom: 1.25rem;
  }
  h2 {
    margin-top: 2rem;
  }
  h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  h2 {
    font-weight: 700;
  }
  h2 {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  @media (min-width: 768px) {
    h2 {
      font-size: 1.75rem;
    }
  }
  @media (min-width: 768px) {
    h2 {
      font-size: 1.75rem;
      line-height: 1.4;
    }
  }
  h3 {
    font-size: 1.375rem;
  }
  h3 {
    margin-bottom: 1rem;
  }
  h3 {
    margin-top: 1.5rem;
  }
  h3 {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  h3 {
    font-weight: 600;
  }
  h3 {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  @media (min-width: 768px) {
    h3 {
      font-size: 1.5rem;
    }
  }
  @media (min-width: 768px) {
    h3 {
      font-size: 1.5rem;
      line-height: 1.4;
    }
  }
  h4 {
    font-size: 1.25rem;
  }
  h4 {
    margin-bottom: 1rem;
  }
  h4 {
    margin-top: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  h4 {
    font-weight: 600;
  }
  h4 {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  @media (min-width: 768px) {
    h4 {
      font-size: 1.375rem;
    }
  }
  @media (min-width: 768px) {
    h4 {
      font-size: 1.375rem;
      line-height: 1.5;
    }
  }
  h5 {
    font-size: 1.125rem;
  }
  h5 {
    margin-bottom: 0.75rem;
  }
  h5 {
    margin-top: 1.25rem;
  }
  h5 {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  h5 {
    font-weight: 600;
  }
  h5 {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  @media (min-width: 768px) {
    h5 {
      font-size: 1.25rem;
    }
  }
  @media (min-width: 768px) {
    h5 {
      font-size: 1.25rem;
      line-height: 1.5;
    }
  }
  h6 {
    font-size: 0.875rem;
  }
  h6 {
    margin-bottom: 0.75rem;
  }
  h6 {
    margin-top: 1.25rem;
  }
  h6 {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  h6 {
    font-weight: 600;
  }
  h6 {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  @media (min-width: 768px) {
    h6 {
      font-size: 1.125rem;
    }
  }
  @media (min-width: 768px) {
    h6 {
      font-size: 1.125rem;
      line-height: 1.5;
    }
  }
  /* Match any tags to parent heading font weights */
  h1 * {
    font-weight: 700 !important;
  }
  h1 * {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  h2 * {
    font-weight: 700 !important;
  }
  h2 * {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  h3 *,
    h4 *,
    h5 *,
    h6 * {
    font-weight: 600 !important;
  }
  h3 *,
    h4 *,
    h5 *,
    h6 * {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
}

/* Content Spacing */

.single-blog-post .content-wrapper {
  /* First paragraph styling */
  > p:first-of-type {
    font-size: 1.25rem;
  }
  > p:first-of-type {
    margin-bottom: 2rem;
  }
  > p:first-of-type {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  > p:first-of-type {
    font-weight: 600;
  }
  @media (min-width: 768px) {
    > p:first-of-type {
      font-size: 1.375rem;
    }
  }
  @media (min-width: 768px) {
    > p:first-of-type {
      font-size: 1.375rem;
      line-height: 1.5;
    }
  }
  > * + * {
    margin-top: 1.5rem;
  }
  > h2, > h3, > h4, > h5, > h6 {
    margin-top: 2rem;
  }
}

*, ::before, ::after {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

::backdrop {
  --tw-border-spacing-x: 0;
  --tw-border-spacing-y: 0;
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
  --tw-pan-x:  ;
  --tw-pan-y:  ;
  --tw-pinch-zoom:  ;
  --tw-scroll-snap-strictness: proximity;
  --tw-gradient-from-position:  ;
  --tw-gradient-via-position:  ;
  --tw-gradient-to-position:  ;
  --tw-ordinal:  ;
  --tw-slashed-zero:  ;
  --tw-numeric-figure:  ;
  --tw-numeric-spacing:  ;
  --tw-numeric-fraction:  ;
  --tw-ring-inset:  ;
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: rgb(59 130 246 / 0.5);
  --tw-ring-offset-shadow: 0 0 #0000;
  --tw-ring-shadow: 0 0 #0000;
  --tw-shadow: 0 0 #0000;
  --tw-shadow-colored: 0 0 #0000;
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
  --tw-backdrop-blur:  ;
  --tw-backdrop-brightness:  ;
  --tw-backdrop-contrast:  ;
  --tw-backdrop-grayscale:  ;
  --tw-backdrop-hue-rotate:  ;
  --tw-backdrop-invert:  ;
  --tw-backdrop-opacity:  ;
  --tw-backdrop-saturate:  ;
  --tw-backdrop-sepia:  ;
  --tw-contain-size:  ;
  --tw-contain-layout:  ;
  --tw-contain-paint:  ;
  --tw-contain-style:  ;
}

/* ! tailwindcss v3.4.17 | MIT License | https://tailwindcss.com */

/*
1. Prevent padding and border from affecting element width. (https://github.com/mozdevs/cssremedy/issues/4)
2. Allow adding a border to an element by just adding a border-width. (https://github.com/tailwindcss/tailwindcss/pull/116)
*/

*,
::before,
::after {
  box-sizing: border-box;
  /* 1 */
  border-width: 0;
  /* 2 */
  border-style: solid;
  /* 2 */
  border-color: currentColor;
  /* 2 */
}

::before,
::after {
  --tw-content: '';
}

/*
1. Use a consistent sensible line-height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
3. Use a more readable tab size.
4. Use the user's configured `sans` font-family by default.
5. Use the user's configured `sans` font-feature-settings by default.
6. Use the user's configured `sans` font-variation-settings by default.
7. Disable tap highlights on iOS
*/

html,
:host {
  line-height: 1.5;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  font-family: Inter, Roboto, Helvetica Neue, Arial Nova, Nimbus Sans, Arial, sans-serif;
  /* 4 */
  font-feature-settings: normal;
  /* 5 */
  font-variation-settings: normal;
  /* 6 */
  -webkit-tap-highlight-color: transparent;
  /* 7 */
}

/*
1. Remove the margin in all browsers.
2. Inherit line-height from `html` so users can set them as a class directly on the `html` element.
*/

body {
  margin: 0;
  /* 1 */
  line-height: inherit;
  /* 2 */
}

/*
1. Add the correct height in Firefox.
2. Correct the inheritance of border color in Firefox. (https://bugzilla.mozilla.org/show_bug.cgi?id=190655)
3. Ensure horizontal rules are visible by default.
*/

hr {
  height: 0;
  /* 1 */
  color: inherit;
  /* 2 */
  border-top-width: 1px;
  /* 3 */
}

/*
Add the correct text decoration in Chrome, Edge, and Safari.
*/

abbr:where([title]) {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/*
Remove the default font size and weight for headings.
*/

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

/*
Reset links to optimize for opt-in styling instead of opt-out.
*/

a {
  color: inherit;
  text-decoration: inherit;
}

/*
Add the correct font weight in Edge and Safari.
*/

b,
strong {
  font-weight: bolder;
}

/*
1. Use the user's configured `mono` font-family by default.
2. Use the user's configured `mono` font-feature-settings by default.
3. Use the user's configured `mono` font-variation-settings by default.
4. Correct the odd `em` font sizing in all browsers.
*/

code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  /* 1 */
  font-feature-settings: normal;
  /* 2 */
  font-variation-settings: normal;
  /* 3 */
  font-size: 1em;
  /* 4 */
}

/*
Add the correct font size in all browsers.
*/

small {
  font-size: 80%;
}

/*
Prevent `sub` and `sup` elements from affecting the line height in all browsers.
*/

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/*
1. Remove text indentation from table contents in Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=999088, https://bugs.webkit.org/show_bug.cgi?id=201297)
2. Correct table border color inheritance in all Chrome and Safari. (https://bugs.chromium.org/p/chromium/issues/detail?id=935729, https://bugs.webkit.org/show_bug.cgi?id=195016)
3. Remove gaps between table borders by default.
*/

table {
  text-indent: 0;
  /* 1 */
  border-color: inherit;
  /* 2 */
  border-collapse: collapse;
  /* 3 */
}

/*
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
3. Remove default padding in all browsers.
*/

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-feature-settings: inherit;
  /* 1 */
  font-variation-settings: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  font-weight: inherit;
  /* 1 */
  line-height: inherit;
  /* 1 */
  letter-spacing: inherit;
  /* 1 */
  color: inherit;
  /* 1 */
  margin: 0;
  /* 2 */
  padding: 0;
  /* 3 */
}

/*
Remove the inheritance of text transform in Edge and Firefox.
*/

button,
select {
  text-transform: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Remove default button styles.
*/

button,
input:where([type='button']),
input:where([type='reset']),
input:where([type='submit']) {
  -webkit-appearance: button;
  /* 1 */
  background-color: transparent;
  /* 2 */
  background-image: none;
  /* 2 */
}

/*
Use the modern Firefox focus style for all focusable elements.
*/

:-moz-focusring {
  outline: auto;
}

/*
Remove the additional `:invalid` styles in Firefox. (https://github.com/mozilla/gecko-dev/blob/2f9eacd9d3d995c937b4251a5557d95d494c9be1/layout/style/res/forms.css#L728-L737)
*/

:-moz-ui-invalid {
  box-shadow: none;
}

/*
Add the correct vertical alignment in Chrome and Firefox.
*/

progress {
  vertical-align: baseline;
}

/*
Correct the cursor style of increment and decrement buttons in Safari.
*/

::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/*
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/

[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/*
Remove the inner padding in Chrome and Safari on macOS.
*/

::-webkit-search-decoration {
  -webkit-appearance: none;
}

/*
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to `inherit` in Safari.
*/

::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/*
Add the correct display in Chrome and Safari.
*/

summary {
  display: list-item;
}

/*
Removes the default spacing and border for appropriate elements.
*/

blockquote,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
figure,
p,
pre {
  margin: 0;
}

fieldset {
  margin: 0;
  padding: 0;
}

legend {
  padding: 0;
}

ol,
ul,
menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

/*
Reset default styling for dialogs.
*/

dialog {
  padding: 0;
}

/*
Prevent resizing textareas horizontally by default.
*/

textarea {
  resize: vertical;
}

/*
1. Reset the default placeholder opacity in Firefox. (https://github.com/tailwindlabs/tailwindcss/issues/3300)
2. Set the default placeholder color to the user's configured gray 400 color.
*/

input::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

input::placeholder,
textarea::placeholder {
  opacity: 1;
  /* 1 */
  color: #9ca3af;
  /* 2 */
}

/*
Set the default cursor for buttons.
*/

button,
[role="button"] {
  cursor: pointer;
}

/*
Make sure disabled buttons don't get the pointer cursor.
*/

:disabled {
  cursor: default;
}

/*
1. Make replaced elements `display: block` by default. (https://github.com/mozdevs/cssremedy/issues/14)
2. Add `vertical-align: middle` to align replaced elements more sensibly by default. (https://github.com/jensimmons/cssremedy/issues/14#issuecomment-634934210)
   This can trigger a poorly considered lint error in some tools but is included by design.
*/

img,
svg,
video,
canvas,
audio,
iframe,
embed,
object {
  display: block;
  /* 1 */
  vertical-align: middle;
  /* 2 */
}

/*
Constrain images and videos to the parent width and preserve their intrinsic aspect ratio. (https://github.com/mozdevs/cssremedy/issues/14)
*/

img,
video {
  max-width: 100%;
  height: auto;
}

/* Make elements with the HTML hidden attribute stay hidden by default */

[hidden]:where(:not([hidden="until-found"])) {
  display: none;
}

[type='text'],input:where(:not([type])),[type='email'],[type='url'],[type='password'],[type='number'],[type='date'],[type='datetime-local'],[type='month'],[type='search'],[type='tel'],[type='time'],[type='week'],[multiple],textarea,select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  border-radius: 0px;
  padding-top: 0.5rem;
  padding-right: 0.75rem;
  padding-bottom: 0.5rem;
  padding-left: 0.75rem;
  font-size: 1rem;
  line-height: 1.5rem;
  --tw-shadow: 0 0 #0000;
}

[type='text']:focus, input:where(:not([type])):focus, [type='email']:focus, [type='url']:focus, [type='password']:focus, [type='number']:focus, [type='date']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='week']:focus, [multiple]:focus, textarea:focus, select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 0px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
  border-color: #2563eb;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #6b7280;
  opacity: 1;
}

input::placeholder,textarea::placeholder {
  color: #6b7280;
  opacity: 1;
}

::-webkit-datetime-edit-fields-wrapper {
  padding: 0;
}

::-webkit-date-and-time-value {
  min-height: 1.5em;
  text-align: inherit;
}

::-webkit-datetime-edit {
  display: inline-flex;
}

::-webkit-datetime-edit,::-webkit-datetime-edit-year-field,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute-field,::-webkit-datetime-edit-second-field,::-webkit-datetime-edit-millisecond-field,::-webkit-datetime-edit-meridiem-field {
  padding-top: 0;
  padding-bottom: 0;
}

select {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
}

[multiple],[size]:where(select:not([size="1"])) {
  background-image: initial;
  background-position: initial;
  background-repeat: unset;
  background-size: initial;
  padding-right: 0.75rem;
  -webkit-print-color-adjust: unset;
          print-color-adjust: unset;
}

[type='checkbox'],[type='radio'] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 0;
  -webkit-print-color-adjust: exact;
          print-color-adjust: exact;
  display: inline-block;
  vertical-align: middle;
  background-origin: border-box;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  flex-shrink: 0;
  height: 1rem;
  width: 1rem;
  color: #2563eb;
  background-color: #fff;
  border-color: #6b7280;
  border-width: 1px;
  --tw-shadow: 0 0 #0000;
}

[type='checkbox'] {
  border-radius: 0px;
}

[type='radio'] {
  border-radius: 100%;
}

[type='checkbox']:focus,[type='radio']:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-inset: var(--tw-empty,/*!*/ /*!*/);
  --tw-ring-offset-width: 2px;
  --tw-ring-offset-color: #fff;
  --tw-ring-color: #2563eb;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow);
}

[type='checkbox']:checked,[type='radio']:checked {
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

[type='checkbox']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M12.207 4.793a1 1 0 010 1.414l-5 5a1 1 0 01-1.414 0l-2-2a1 1 0 011.414-1.414L6.5 9.086l4.293-4.293a1 1 0 011.414 0z'/%3e%3c/svg%3e");
}

@media (forced-colors: active)  {
  [type='checkbox']:checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='radio']:checked {
  background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 16 16' fill='white' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='8' cy='8' r='3'/%3e%3c/svg%3e");
}

@media (forced-colors: active)  {
  [type='radio']:checked {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='checkbox']:checked:hover,[type='checkbox']:checked:focus,[type='radio']:checked:hover,[type='radio']:checked:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='checkbox']:indeterminate {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 16 16'%3e%3cpath stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M4 8h8'/%3e%3c/svg%3e");
  border-color: transparent;
  background-color: currentColor;
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
}

@media (forced-colors: active)  {
  [type='checkbox']:indeterminate {
    -webkit-appearance: auto;
       -moz-appearance: auto;
            appearance: auto;
  }
}

[type='checkbox']:indeterminate:hover,[type='checkbox']:indeterminate:focus {
  border-color: transparent;
  background-color: currentColor;
}

[type='file'] {
  background: unset;
  border-color: inherit;
  border-width: 0;
  border-radius: 0;
  padding: 0;
  font-size: unset;
  line-height: inherit;
}

[type='file']:focus {
  outline: 1px solid ButtonText;
  outline: 1px auto -webkit-focus-ring-color;
}

/* Base text settings */

html {
  font-size: 16px;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

/* Base heading styles */

h1,
  .h1,
  h2,
  .h2,
  h3,
  .h3,
  h4,
  .h4,
  h5,
  .h5,
  h6,
  .h6 {
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
}

/* Specific heading styles */

h1,
  .h1 {
  font-size: 2.125rem;
  line-height: 1.3;
  font-weight: 700;
}

@media (min-width: 768px) {
  h1,
  .h1 {
    font-size: 3.125rem;
    line-height: 1.2;
  }
}

h2,
  .h2 {
  margin-bottom: 0.5rem;
  font-size: 2.375rem;
  line-height: 1.3;
  font-weight: 700;
}

h3,
  .h3 {
  margin-bottom: 0.5rem;
  font-size: 2.375rem;
  line-height: 1.3;
  font-weight: 700;
}

h4,
  .h4 {
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  line-height: 1.4;
  font-weight: 700;
}

h5,
  .h5 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
}

h6,
  .h6 {
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
}

/* Strong text within headings */

h1 strong,
  .h1 strong,
  h2 strong,
  .h2 strong {
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(230 126 34 / var(--tw-text-opacity, 1));
}

/* Custom text sizes */

.text-50 {
  font-size: 3.125rem;
}

.text-38 {
  font-size: 2.375rem;
}

.text-34 {
  font-size: 2.125rem;
}

.text-32 {
  font-size: 2rem;
}

.text-28 {
  font-size: 1.75rem;
}

.text-24 {
  font-size: 1.5rem;
}

.text-22 {
  font-size: 1.375rem;
}

.text-20 {
  font-size: 1.25rem;
}

.\!text-18 {
  font-size: 1.125rem;
}

.text-18 {
  font-size: 1.125rem;
}

.text-14 {
  font-size: 0.875rem;
}

/* Utility classes */

.eyebrow {
  font-size: 0.875rem;
  line-height: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Paragraph spacing */

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0px;
}

/* Add link styles */

a {
  --tw-text-opacity: 1;
  color: rgb(242 138 0 / var(--tw-text-opacity, 1));
}

/* Gutenberg Alignment Styles */

.has-text-align-left {
  text-align: left;
}

.has-text-align-center {
  text-align: center;
}

.has-text-align-right {
  text-align: right;
}

.has-text-align-justify {
  text-align: justify;
}

/* Gutenberg Block Headings */

.wp-block-heading {
  margin-bottom: 1rem;
}

/* Make headings white in primary backgrounds */

.bg-primary-light h1,
  .bg-primary-light h2,
  .bg-primary-light h3,
  .bg-primary-light h4,
  .bg-primary-light h5,
  .bg-primary-light h6,
  .bg-primary-light .h1,
  .bg-primary-light .h2,
  .bg-primary-light .h3,
  .bg-primary-light .h4,
  .bg-primary-light .h5,
  .bg-primary-light .h6,
  .bg-primary-mid h1,
  .bg-primary-mid h2,
  .bg-primary-mid h3,
  .bg-primary-mid h4,
  .bg-primary-mid h5,
  .bg-primary-mid h6,
  .bg-primary-mid .h1,
  .bg-primary-mid .h2,
  .bg-primary-mid .h3,
  .bg-primary-mid .h4,
  .bg-primary-mid .h5,
  .bg-primary-mid .h6 {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Body background */

body {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.container {
  width: 100%;
}

@media (min-width: 640px) {
  .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 1024px;
  }
}

@media (min-width: 1280px) {
  .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .container {
    max-width: 1536px;
  }
}

.aspect-h-9 {
  --tw-aspect-h: 9;
}

.aspect-w-16 {
  position: relative;
  padding-bottom: calc(var(--tw-aspect-h) / var(--tw-aspect-w) * 100%);
  --tw-aspect-w: 16;
}

.aspect-w-16 > * {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

/* Remove RankMath breadcrumb styles as we're not using them */

/* .rank-math-breadcrumb {
        @apply flex flex-wrap items-center;
        
        p {
            @apply m-0;
        }

        a {
            @apply text-primary hover:text-primary-mid transition-colors duration-200;
        }

        .last {
            @apply text-copy;
        }
    } */

/* Base Button Styles */

.woocommerce button.button,
    .woocommerce a.button,
    .woocommerce ul.products li.product .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

/* Primary/Banner Buttons */

.button-banner,
    .button-primary,
    .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(230 126 34 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.button-banner:hover,
    .button-primary:hover,
    .button-secondary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
}

/* WPForms Submit Button */

.wpforms-container .wpforms-submit-container button.wpforms-submit {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  padding-left: 1.5rem !important;
  padding-right: 1.5rem !important;
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(230 126 34 / var(--tw-bg-opacity, 1)) !important;
  font-size: 1.5rem !important;
  line-height: 1.4 !important;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
  font-weight: 600 !important;
  border-radius: 0.25rem !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke !important;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1) !important;
  transition-duration: 200ms !important;
}

.wpforms-container .wpforms-submit-container button.wpforms-submit:hover {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1)) !important;
}

/* Info Button Variant */

.button-info,
    a.button-info,
    .button-banner,
    a.button-banner {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(230 126 34 / var(--tw-bg-opacity, 1));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.button-info:hover,
    a.button-info:hover,
    .button-banner:hover,
    a.button-banner:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}

/* Small Button Modifier */

.button-info.button-small,
    a.button-info.button-small,
    .button-banner.button-small,
    a.button-banner.button-small {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
  font-size: 0.875rem;
  line-height: 1.5;
}

/* Product/Cart Buttons */

.button-product,
    a.button-product,
    .add_to_cart_button,
    .single_add_to_cart_button.button.alt {
  display: inline-flex;
  width: 100% !important;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(242 138 0 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.button-product:hover,
    a.button-product:hover,
    .add_to_cart_button:hover,
    .single_add_to_cart_button.button.alt:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
}

@media (min-width: 768px) {
  .button-product,
    a.button-product,
    .add_to_cart_button,
    .single_add_to_cart_button.button.alt {
    width: auto;
  }
}

/* Checkout Buttons */

.wc-block-cart__submit-button.contained {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(242 138 0 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.wc-block-cart__submit-button.contained:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Outline Button */

.button-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(0 32 98 / var(--tw-border-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.button-outline:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 32 98 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Shop/Product Grid Buttons */

.woocommerce ul.products li.product .button {
  display: block;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(230 126 34 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

/* Disabled States */

.button-primary[disabled],
    .button-secondary[disabled],
    .button-product[disabled],
    .button-banner[disabled],
    .single_add_to_cart_button.button.alt[disabled],
    .wc-block-cart__submit-button.contained[disabled],
    .button-outline[disabled],
    .wpforms-container .wpforms-submit-container button.wpforms-submit[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Checkout Text Styles */

.wc-block-components-button__text {
  font-weight: 600;
}

/* Checkout Place Order Button */

.wc-block-components-checkout-place-order-button.contained {
  display: inline-flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(242 138 0 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.wc-block-components-checkout-place-order-button.contained:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
}

/* Login/Account Buttons */

.woocommerce-button.button.woocommerce-form-login__submit,
    .woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(230 126 34 / var(--tw-bg-opacity, 1));
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.woocommerce-button.button.woocommerce-form-login__submit:hover,
    .woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
}

/* Update disabled states */

.button-primary[disabled],
    .button-secondary[disabled],
    .button-product[disabled],
    .button-banner[disabled],
    .single_add_to_cart_button.button.alt[disabled],
    .wc-block-cart__submit-button.contained[disabled],
    .wc-block-components-checkout-place-order-button.contained[disabled],
    .woocommerce-button.button.woocommerce-form-login__submit[disabled],
    .woocommerce-Button.woocommerce-button.button.woocommerce-form-register__submit[disabled],
    .button-outline[disabled],
    .wpforms-container .wpforms-submit-container button.wpforms-submit[disabled] {
  cursor: not-allowed;
  opacity: 0.5;
}

/* Base content styles */

.content-styles {
  /* Headings */
  h1 {
    font-size: 1.75rem;
  }
  h1 {
    margin-bottom: 1.5rem;
  }
  h1 {
    font-size: 1.75rem;
    line-height: 1.4;
  }
  h1 {
    font-weight: 700;
  }
  h1 {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  @media (min-width: 768px) {
    h1 {
      font-size: 2rem;
    }
  }
  @media (min-width: 768px) {
    h1 {
      font-size: 2rem;
      line-height: 1.3;
    }
  }
  h2 {
    font-size: 1.5rem;
  }
  h2 {
    margin-bottom: 1.25rem;
  }
  h2 {
    margin-top: 2rem;
  }
  h2 {
    font-size: 1.5rem;
    line-height: 1.4;
  }
  h2 {
    font-weight: 700;
  }
  h2 {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  @media (min-width: 768px) {
    h2 {
      font-size: 1.75rem;
    }
  }
  @media (min-width: 768px) {
    h2 {
      font-size: 1.75rem;
      line-height: 1.4;
    }
  }
  h3 {
    font-size: 1.375rem;
  }
  h3 {
    margin-bottom: 1rem;
  }
  h3 {
    margin-top: 1.5rem;
  }
  h3 {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  h3 {
    font-weight: 600;
  }
  h3 {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  @media (min-width: 768px) {
    h3 {
      font-size: 1.5rem;
    }
  }
  @media (min-width: 768px) {
    h3 {
      font-size: 1.5rem;
      line-height: 1.4;
    }
  }
  h4 {
    font-size: 1.25rem;
  }
  h4 {
    margin-bottom: 1rem;
  }
  h4 {
    margin-top: 1.5rem;
  }
  h4 {
    font-size: 1.25rem;
    line-height: 1.5;
  }
  h4 {
    font-weight: 600;
  }
  h4 {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  @media (min-width: 768px) {
    h4 {
      font-size: 1.375rem;
    }
  }
  @media (min-width: 768px) {
    h4 {
      font-size: 1.375rem;
      line-height: 1.5;
    }
  }
  h5 {
    font-size: 1.125rem;
  }
  h5 {
    margin-bottom: 0.75rem;
  }
  h5 {
    margin-top: 1.25rem;
  }
  h5 {
    font-size: 1.125rem;
    line-height: 1.5;
  }
  h5 {
    font-weight: 600;
  }
  h5 {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  @media (min-width: 768px) {
    h5 {
      font-size: 1.25rem;
    }
  }
  @media (min-width: 768px) {
    h5 {
      font-size: 1.25rem;
      line-height: 1.5;
    }
  }
  h6 {
    font-size: 0.875rem;
  }
  h6 {
    margin-bottom: 0.75rem;
  }
  h6 {
    margin-top: 1.25rem;
  }
  h6 {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  h6 {
    font-weight: 600;
  }
  h6 {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  @media (min-width: 768px) {
    h6 {
      font-size: 1.125rem;
    }
  }
  @media (min-width: 768px) {
    h6 {
      font-size: 1.125rem;
      line-height: 1.5;
    }
  }
  /* Match any tags to parent heading font weights */
  h1 * {
    font-weight: 700 !important;
  }
  h1 * {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  h2 * {
    font-weight: 700 !important;
  }
  h2 * {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  h3 *,
        h4 *,
        h5 *,
        h6 * {
    font-weight: 600 !important;
  }
  h3 *,
        h4 *,
        h5 *,
        h6 * {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  /* Typography */
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
  /* Lists */
  ul {
    margin-bottom: 1rem;
  }
  ul {
    list-style-type: disc;
  }
  ul > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
  }
  ul {
    padding-left: 1.25rem;
  }
  ol {
    margin-bottom: 1rem;
  }
  ol {
    list-style-type: decimal;
  }
  ol > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
  }
  ol {
    padding-left: 1.25rem;
  }
  ul ul, ol ol, ul ol, ol ul {
    margin-top: 0.5rem;
  }
  ul ul, ol ol, ul ol, ol ul {
    margin-bottom: 0px;
  }
  /* Links */
  a {
    --tw-text-opacity: 1;
    color: rgb(230 126 34 / var(--tw-text-opacity, 1));
  }
  a {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }
  a:hover {
    --tw-text-opacity: 1;
    color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  }
  /* Tables */
  table {
    margin-bottom: 1rem;
  }
  table {
    width: 100%;
  }
  th, td {
    border-width: 1px;
  }
  th, td {
    --tw-border-opacity: 1;
    border-color: rgb(220 220 222 / var(--tw-border-opacity, 1));
  }
  th, td {
    padding: 0.5rem;
  }
  /* Images */
  img {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  img {
    height: auto;
  }
  img {
    max-width: 100%;
  }
  /* Blockquotes */
  blockquote {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }
  blockquote {
    border-left-width: 4px;
  }
  blockquote {
    --tw-border-opacity: 1;
    border-color: rgb(230 126 34 / var(--tw-border-opacity, 1));
  }
  blockquote {
    padding-left: 1rem;
  }
  blockquote {
    font-style: italic;
  }
  /* About us */
  .circle-text {
    display: table-cell;
    height: 60px;
    width: 60px;
    text-align: center;
    vertical-align: middle;
    border-radius: 50%;
    background: #f39200;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
  }
  .line {
    background-image: url(/images/2019/timeline.png);
    background-repeat: repeat-y;
    background-position: center top;
  }
  .timeline-table {
    margin-top: 3rem;
  }
  .timeline-table {
    border-style: none;
  }
  .timeline-table {
    td {
      border-style: none;
    }
    td {
      padding: 0px;
    }
    td {
      /* Target the third column */
      &:nth-child(3) {
        padding-bottom: 2rem;
      }
    }
  }
}

/* Light variant for dark backgrounds */

.content-styles-light {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  /* Lists */
  ul {
    margin-bottom: 2rem;
  }
  ul {
    list-style-type: none;
  }
  ul > :not([hidden]) ~ :not([hidden]) {
    --tw-space-y-reverse: 0;
    margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
    margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
  }
  ul {
    padding-left: 1.5rem;
  }
  ul {
    .main-swiper>li {
      width: 100%;
    }
    .main-swiper>li {
      position: relative;
      padding-bottom: 107.69%;
      /* 650x700 aspect ratio (portrait) */
    }
    li {
      position: relative;
    }
    li {
      &::before {
        content: "•";
      }
      &::before {
        position: absolute;
      }
      &::before {
        left: -1.75rem;
      }
      &::before {
        font-size: 3rem;
        line-height: 1;
      }
      &::before {
        line-height: 1;
      }
      &::before {
        --tw-text-opacity: 1;
        color: rgb(230 126 34 / var(--tw-text-opacity, 1));
      }
      &::before {
        transform: translateY(-16px);
      }
    }
  }
  /* Links */
  a {
    --tw-text-opacity: 1;
    color: rgb(230 126 34 / var(--tw-text-opacity, 1));
  }
  a {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }
  a:hover {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
  /* Tables */
  th, td {
    /* @apply border-white border-opacity-20; */
  }
  /* Blockquotes */
  blockquote {
    --tw-border-opacity: 1;
    border-color: rgb(230 126 34 / var(--tw-border-opacity, 1));
  }
}

.site-footer {
  .legal-nav li:not(:last-child)::after {
    content: '|';
    padding: 0 0.5rem;
    color: white;
    /* text-gray-500 */
  }
  a {
    color: white;
  }
  .legal-nav a:hover {
    /* colo r: #white; text-gray-200 */
  }
}

.alignright {
  float: right;
  margin-left: 20px;
  margin-bottom: 20px;
}

.entry-content {
  /* @apply prose-headings:text-primary prose-headings:font-bold;
        @apply prose-p:text-copy prose-p:mb-4;
        @apply prose-a:text-primary prose-a:no-underline hover:prose-a:text-primary-mid;
        @apply prose-strong:text-copy;
        @apply prose-ul:text-copy prose-ol:text-copy;
        @apply prose-img:rounded-lg;
        @apply prose-hr:border-gray;

        /* Adjust sizes for better hierarchy */
  /* @apply prose-h1:text-32 md:prose-h1:text-38;
        @apply prose-h2:text-28 md:prose-h2:text-32;
        @apply prose-h3:text-24 md:prose-h3:text-28;
        @apply prose-h4:text-20 md:prose-h4:text-24; */
  /* Block spacing */
  >*+* {
    margin-top: 1.5rem;
  }
  >h2,
        >h3,
        >h4,
        >h5,
        >h6 {
    margin-top: 2rem;
  }
}

/* WooCommerce Pagination */

.pagination-wrapper,
    .woocommerce-pagination {
  margin-top: 3rem;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* All page numbers including current */

.pagination-wrapper .page-numbers,
    .woocommerce-pagination .page-numbers li .page-numbers {
  display: inline-flex;
  min-width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(230 126 34 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.pagination-wrapper .page-numbers:hover,
    .woocommerce-pagination .page-numbers li .page-numbers:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
}

/* Current/Active Page */

.pagination-wrapper .page-numbers.current,
    .woocommerce-pagination .page-numbers li .page-numbers.current {
  cursor: default;
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
}

/* Prev/Next Links */

.pagination-wrapper .next.page-numbers,
    .pagination-wrapper .prev.page-numbers,
    .woocommerce-pagination .page-numbers li .next.page-numbers,
    .woocommerce-pagination .page-numbers li .prev.page-numbers {
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Dots */

.pagination-wrapper .page-numbers.dots,
    .woocommerce-pagination .page-numbers li .page-numbers.dots {
  cursor: default;
  background-color: transparent;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.pagination-wrapper .page-numbers.dots:hover,
    .woocommerce-pagination .page-numbers li .page-numbers.dots:hover {
  background-color: transparent;
}

/* WooCommerce specific adjustments */

.woocommerce-pagination .page-numbers {
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0px;
  li {
    margin: 0px;
  }
}

/* Blog Pagination */

.nav-links {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  .page-numbers {
    display: inline-flex;
  }
  .page-numbers {
    min-width: 40px;
  }
  .page-numbers {
    align-items: center;
  }
  .page-numbers {
    justify-content: center;
  }
  .page-numbers {
    border-radius: 0.25rem;
  }
  .page-numbers {
    --tw-bg-opacity: 1;
    background-color: rgb(242 138 0 / var(--tw-bg-opacity, 1));
  }
  .page-numbers {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .page-numbers {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
  .page-numbers {
    font-weight: 600;
  }
  .page-numbers {
    --tw-text-opacity: 1;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  }
  .page-numbers {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
  }
  .page-numbers {
    transition-duration: 200ms;
  }
  .page-numbers:hover {
    --tw-bg-opacity: 1;
    background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
  }
  .page-numbers:hover {
    --tw-text-opacity: 1 !important;
    color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
  }
  .page-numbers {
    &.current {
      cursor: default;
    }
    &.current {
      --tw-bg-opacity: 1;
      background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
    }
    &.next,
            &.prev {
      min-width: -moz-fit-content;
      min-width: fit-content;
    }
    &.next,
            &.prev {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
  }
}

/* Common Swiper Navigation Styles */

.swiper-button-next,
  .swiper-button-prev {
  position: absolute !important;
  height: 2.5rem !important;
  width: 2.5rem !important;
  border-radius: 0.375rem !important;
  border-width: 1px !important;
  --tw-border-opacity: 1 !important;
  border-color: rgb(230 126 34 / var(--tw-border-opacity, 1)) !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
  top: 50%;
  transform: translateY(-50%) scale(1);
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0;
  z-index: 20;
}

.swiper-button-next:not(.swiper-button-disabled):hover,
  .swiper-button-prev:not(.swiper-button-disabled):hover {
  transform: translateY(-50%) scale(1.05);
}

.swiper-button-next.swiper-button-disabled,
  .swiper-button-prev.swiper-button-disabled {
  pointer-events: none !important;
  --tw-border-opacity: 1 !important;
  border-color: rgb(242 242 242 / var(--tw-border-opacity, 1)) !important;
  --tw-bg-opacity: 1 !important;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1)) !important;
  opacity: 0.7;
}

.swiper-button-next {
  right: calc(0.375rem);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f28a00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m9 18 6-6-6-6'/%3E%3C/svg%3E");
}

.swiper-button-prev {
  left: calc(0.375rem);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f28a00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m15 18-6-6 6-6'/%3E%3C/svg%3E");
}

/* Hide default Swiper arrows */

.swiper-button-next::after,
  .swiper-button-prev::after {
  display: none;
}

.trustpilot {
  display: block;
  text-align: center;
}

.trustpilot .trustpilot-widget {
  width: 100%;
}

/* Remove outline from lazy-loaded YouTube videos */

.rll-youtube-player {
  border-style: none;
  outline: 2px solid transparent;
  outline-offset: 2px;
  &:focus,
        &:focus-visible {
    border-style: none;
  }
  &:focus,
        &:focus-visible {
    outline: 2px solid transparent;
    outline-offset: 2px;
  }
}

/* My Account Layout - Only when logged in */

body.logged-in .woocommerce {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  body.logged-in .woocommerce {
    grid-template-columns: 250px 1fr;
  }
}

/* Remove extra container padding on login page */

body:not(.logged-in) .woocommerce > .container {
  padding: 0px;
}

/* Login/Register columns on larger screens */

@media (min-width: 1024px) {
  body:not(.logged-in) .col2-set {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 3rem;
  }
}

/* My Account Navigation */

.woocommerce-MyAccount-navigation {
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding-top: 1rem;
  padding-bottom: 1rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.woocommerce-MyAccount-navigation ul {
  margin: 0px;
  display: flex;
  list-style-type: none;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0px;
}

.woocommerce-MyAccount-navigation-link a {
  display: block;
  border-radius: 0.25rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.woocommerce-MyAccount-navigation-link.is-active a {
  --tw-bg-opacity: 1;
  background-color: rgb(0 32 98 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.woocommerce-MyAccount-navigation-link:not(.is-active) a {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.woocommerce-MyAccount-navigation-link:not(.is-active) a:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity, 1));
}

/* Account Content */

.woocommerce-MyAccount-content {
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

/* Info message button */

.woocommerce-info .button {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.woocommerce-info .button:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* Login/Register Forms Layout */

.u-column1.col-1,
    .u-column2.col-2 {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

/* Add checkbox styling with higher specificity */

.woocommerce-form__input.woocommerce-form__input-checkbox,
    input[type="checkbox"].woocommerce-form__input-checkbox {
  height: 1rem;
  width: 1rem;
  cursor: pointer;
  padding: 0px;
}

/* Login form button layout */

.woocommerce-form-login p.form-row,
    .woocommerce-form-register p.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* Remember me checkbox container */

.woocommerce-form-login .form-row:has(.woocommerce-form__input-checkbox) {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5rem;
}

/* Button spacing */

.woocommerce-form-login__submit,
    .woocommerce-form-register__submit {
  margin-top: 0.5rem;
  display: block;
}

/* Lost password link */

.woocommerce-LostPassword {
  margin-top: 1rem;
}

.woocommerce-breadcrumb {
  margin-bottom: 1rem;
}

/* Cart Page */

.woocommerce-cart-form {
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding: 1.5rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shop_table {
  width: 100%;
}

.shop_table th {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(220 220 222 / var(--tw-border-opacity, 1));
  padding-top: 1rem;
  padding-bottom: 1rem;
  text-align: left;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.shop_table td {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(220 220 222 / var(--tw-border-opacity, 1));
  padding-top: 1rem;
  padding-bottom: 1rem;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.cart_totals {
  margin-top: 2rem;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding: 1.5rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.checkout-button {
  margin-top: 1rem;
  width: 100%;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(230 126 34 / var(--tw-bg-opacity, 1));
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.checkout-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 32 98 / var(--tw-bg-opacity, 1));
}

/* Checkout Page */

.woocommerce-checkout {
  /* @apply grid grid-cols-1 lg:grid-cols-2 gap-8; */
}

#customer_details > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.woocommerce-billing-fields__field-wrapper,
    .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

@media (min-width: 768px) {
  .woocommerce-billing-fields__field-wrapper,
    .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.form-row input,
    .form-row select,
    .form-row textarea {
  width: 100%;
  border-radius: 0.25rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(220 220 222 / var(--tw-border-opacity, 1));
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

#order_review {
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  padding: 1.5rem;
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

#place_order {
  margin-top: 1rem;
  width: 100%;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(139 197 63 / var(--tw-bg-opacity, 1));
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  text-align: center;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

#place_order:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 32 98 / var(--tw-bg-opacity, 1));
}

/* Checkout Actions Row */

.wc-block-checkout__actions_row {
  display: flex;
  width: 100%;
  flex-direction: column-reverse;
  gap: 1rem;
  .wc-block-components-checkout-place-order-button {
    width: 100% !important;
  }
}

/* Return to Cart Link */

.wc-block-components-checkout-return-to-cart-button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.wc-block-components-checkout-return-to-cart-button:hover {
  --tw-text-opacity: 1;
  color: rgb(230 126 34 / var(--tw-text-opacity, 1));
}

.wc-block-components-checkout-return-to-cart-button {
  svg {
    margin-right: 0.5rem;
  }
}

/* Main container layout */

.columns2-stack-product {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  align-items: flex-start;
  gap: 2rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

@media (min-width: 1024px) {
  .columns2-stack-product {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Components table styling - first table in the container */

.columns2-stack-product > table:first-of-type {
  height: -moz-min-content;
  height: min-content;
  width: 100%;
  border-collapse: collapse;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.columns2-stack-product > table:first-of-type tr {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(242 242 242 / var(--tw-border-opacity, 1));
}

.columns2-stack-product > table:first-of-type tr:nth-child(odd) {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity, 1));
}

.columns2-stack-product > table:first-of-type td {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.columns2-stack-product > table:first-of-type td:first-child {
  width: 90%;
}

.columns2-stack-product > table:first-of-type td:last-child {
  width: 10%;
  text-align: right;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
}

/* Remove the br tag spacing */

.columns2-stack-product > br {
  display: none;
}

/* Sidebar content */

.columns2-stack-product-sidebar > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.columns2-stack-product-sidebar img {
  height: auto;
  width: 100%;
}

/* Specifications table - table inside sidebar */

.columns2-stack-product-sidebar table {
  height: -moz-min-content;
  height: min-content;
  width: 100%;
  border-collapse: collapse;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.columns2-stack-product-sidebar table tr {
  border-bottom-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(242 242 242 / var(--tw-border-opacity, 1));
}

.columns2-stack-product-sidebar table tr:nth-child(odd) {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity, 1));
}

.columns2-stack-product-sidebar table td {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

/* Links and images in sidebar */

.columns2-stack-product-sidebar a {
  display: block;
}

.columns2-stack-product-sidebar a img {
  height: auto;
  width: 100%;
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.columns2-stack-product-sidebar a img:hover {
  opacity: 0.9;
}

/* Warning image specific styling */

/* .columns2-stack-product-sidebar img[src*="warning_correct_products.svg"] {
        @apply max-w-[300px];
    } */

/* Product info table and images */

.product-info-table > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(2rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(2rem * var(--tw-space-y-reverse));
}

.tab-content  h2 {
  font-size: 1.375rem;
  line-height: 1.5;
}

.tab-content  h3 {
  font-size: 1.25rem;
  line-height: 1.5;
}

.tab-content  h4 {
  font-size: 1.125rem;
  line-height: 1.5;
}

.tab-content  h5 {
  font-size: 1.125rem;
  line-height: 1.5;
}

.tab-content  h6 {
  font-size: 1rem;
  line-height: 1.5rem;
}

.product-info-table table {
  width: 100%;
  border-collapse: collapse;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.product-info-table table thead tr {
  --tw-bg-opacity: 1;
  background-color: rgb(0 32 98 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.product-info-table table th {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  text-align: left;
}

.product-info-table table tbody tr:nth-child(odd) {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity, 1));
}

.product-info-table table td {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

/* Product images grid */

.product-info-table .product-images {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .product-info-table .product-images {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.product-info-table .product-images img {
  aspect-ratio: 4/3;
  height: auto;
  width: 100%;
  border-radius: 0.125rem;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Remove br tags inside product-images */

.product-info-table .product-images br {
  display: none;
}

/* Shop Archive/Category Page */

.woocommerce ul.products {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .woocommerce ul.products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.woocommerce ul.products li.product {
  display: flex;
  flex-direction: column;
  border-radius: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.woocommerce ul.products li.product:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.woocommerce ul.products li.product img {
  height: auto;
  width: 100%;
  border-top-left-radius: 0.5rem;
  border-top-right-radius: 0.5rem;
}

.woocommerce ul.products li.product h2 {
  margin-bottom: 0.5rem;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 1rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.woocommerce ul.products li.product .price {
  padding-left: 1rem;
  padding-right: 1rem;
  --tw-text-opacity: 1;
  color: rgb(27 73 139 / var(--tw-text-opacity, 1));
}

.woocommerce ul.products li.product a img {
  border-radius: 0 !important;
}

.woocommerce ul.products li.product {
  border-radius: 0 !important;
}

/* Page Title Styles */

.entry-summary .product_title {
  margin-bottom: 1rem;
  font-size: 2.375rem;
  line-height: 1.3;
}

.single-product h2 {
  margin-bottom: 1rem;
  font-weight: 700;
}

.description-read-more {
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
  cursor: pointer;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(230 126 34 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.description-read-more:hover {
  --tw-text-opacity: 1;
  color: rgb(230 126 34 / var(--tw-text-opacity, 1));
}

/* Product Summary Styles */

.entry-summary .price {
  margin-bottom: 1.5rem;
}

.price-inc-vat {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
  line-height: 1.5;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.price-ex-vat {
  font-size: 2.125rem;
  line-height: 1.3;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
}

.entry-summary .cart > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

/* Add to Cart Form Styles */

.cart {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-quantity-wrapper,
    .simple-product-cart-quantity-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.woocommerce-variation-add-to-cart {
  display: flex;
  flex-direction: row;
  gap: 1rem;
}

.main-swiper>.quantity {
  width: 100%;
  position: relative;
  padding-bottom: 107.69%;
  /* 650x700 aspect ratio (portrait) */
}

.quantity {
  position: relative;
  display: inline-flex;
  align-items: center;
  overflow: hidden;
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(242 138 0 / var(--tw-border-opacity, 1));
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.quantity .qty {
  width: 3rem;
  border-width: 0px;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.5;
  --tw-text-opacity: 1;
  color: rgb(242 138 0 / var(--tw-text-opacity, 1));
}

.quantity .qty:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.quantity .qty {
  -moz-appearance: textfield;
}

.quantity .qty::-webkit-outer-spin-button,
    .quantity .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity-button {
  display: flex;
  height: 100%;
  width: 3.5rem;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  font-size: 1.375rem;
  line-height: 1.5;
  --tw-text-opacity: 1;
  color: rgb(242 138 0 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.quantity-button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity, 1));
}

.single_add_to_cart_button {
  border-radius: 0.375rem;
  --tw-bg-opacity: 1;
  background-color: rgb(242 138 0 / var(--tw-bg-opacity, 1));
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  padding-left: 2rem;
  padding-right: 2rem;
  text-align: center;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 500;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.single_add_to_cart_button:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
}

/* Also target the button element directly */

button.single_add_to_cart_button {
  border-radius: 0.375rem;
}

/* Product Description Styles */

.main-swiper>.woocommerce-product-details__short-description {
  width: 100%;
  position: relative;
  padding-bottom: 107.69%;
  /* 650x700 aspect ratio (portrait) */
}

.woocommerce-product-details__short-description {
  position: relative;
}

.woocommerce-product-details__short-description.is-truncated {
  max-height: 140px;
  overflow: hidden;
}

.woocommerce-product-details__short-description.is-truncated::after {
  position: absolute;
  bottom: 0px;
  left: 0px;
  height: 4rem;
  width: 100%;
  --tw-content: '';
  content: var(--tw-content);
  background: linear-gradient(to bottom, transparent 25%, white 75%);
}

.woocommerce-product-details__short-description ul {
  margin-bottom: 1rem;
  list-style-type: disc;
}

.woocommerce-product-details__short-description ul > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.woocommerce-product-details__short-description ul {
  padding-left: 1.25rem;
}

.woocommerce-product-details__short-description li {
  font-size: 1rem;
  line-height: 1.5rem;
}

/* Product Variations Styles */

.variations {
  width: 100%;
}

.variations tr {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.variations th.label {
  margin-bottom: 0.25rem;
  padding: 0px;
  text-align: left;
  font-size: 1.375rem;
  line-height: 1.5;
  font-weight: 700;
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
}

.variations td.value {
  padding: 0px;
}

.variations select {
  width: 100%;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(242 138 0 / var(--tw-border-opacity, 1));
  background-size: 24px 24px;
  background-position: center right 8px;
  background-repeat: no-repeat;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.variations select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-color: rgb(230 126 34 / var(--tw-ring-opacity, 1));
  --tw-ring-opacity: 0.5;
}

.variations select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f28a00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

.wc-pao-addon-select {
  width: 100% !important;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border-radius: 0.375rem;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(242 138 0 / var(--tw-border-opacity, 1));
  background-size: 24px 24px;
  background-position: center right 8px;
  background-repeat: no-repeat;
  padding-left: 0.75rem;
  padding-right: 0.75rem;
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
  font-size: 1.25rem;
  line-height: 1.5;
}

.wc-pao-addon-select:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
  --tw-ring-color: rgb(230 126 34 / var(--tw-ring-opacity, 1));
  --tw-ring-opacity: 0.5;
}

.wc-pao-addon-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f28a00' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

/* Hide all reset variations links */

.variations button.reset_variations,
    .variations a.reset_variations {
  display: none !important;
}

/* Hide the entire row containing reset variations */

/* .variations tr:last-child {
        @apply !hidden;
        display: none !important;
    } */

/* Price */

.woocommerce-variation-pprice {
  margin-bottom: 1rem;
  font-size: 1.5rem;
  line-height: 2rem;
  --tw-text-opacity: 1;
  color: rgb(27 73 139 / var(--tw-text-opacity, 1));
}

/* Product Gallery Styles */

.product-gallery {
  width: 100%;
  position: relative;
}

.main-swiper {
  width: 100%;
  position: relative;
}

/* Container with aspect ratio */

.main-swiper>.relative {
  width: 100%;
  position: relative;
  padding-bottom: 107.69%;
  /* 650x700 aspect ratio (portrait) */
}

/* Swiper container */

.main-swiper .swiper {
  width: 100%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100% !important;
}

/* Swiper wrapper */

.main-swiper .swiper-wrapper {
  width: 100%;
  height: 100% !important;
}

/* Individual slides */

.main-swiper .swiper-slide {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 100% !important;
  position: relative;
}

/* Image within slides */

.main-swiper .swiper-slide img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  height: 100% !important;
  position: relative !important;
}

/* Navigation buttons */

.swiper-button-next,
    .swiper-button-prev {
  z-index: 10;
  height: 2.5rem !important;
  width: 2.5rem !important;
}

.swiper-button-next:after,
    .swiper-button-prev:after {
  font-size: 1.5rem !important;
  line-height: 2rem !important;
}

/* Pagination */

.swiper-pagination {
  bottom: 0.5rem !important;
}

.swiper-pagination-bullet {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(230 126 34 / var(--tw-bg-opacity, 1)) !important;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(242 138 0 / var(--tw-bg-opacity, 1)) !important;
  opacity: 1;
}

/* Thumbnail Swiper Styles */

.thumbnail-swiper {
  width: 100%;
}

.thumbnail-swiper .swiper-wrapper {
  display: flex;
  gap: 0.5rem;
  /* 8px gap fixed in CSS to prevent CLS */
}

.thumbnail-swiper .swiper-slide {
  cursor: pointer;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  width: calc(25% - 6px) !important;
  /* Account for gap spacing */
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .thumbnail-swiper .swiper-slide {
    width: calc(33.333% - 4px) !important;
    /* 3 slides on mobile with gap */
  }
}

.main-swiper>.thumbnail-swiper .swiper-slide > div {
  width: 100%;
  position: relative;
  padding-bottom: 107.69%;
  /* 650x700 aspect ratio (portrait) */
}

.thumbnail-swiper .swiper-slide > div {
  position: relative;
  overflow: hidden;
  border-width: 1px;
  --tw-border-opacity: 1;
  border-color: rgb(0 32 98 / var(--tw-border-opacity, 1));
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
  padding-bottom: 125%;
  /* Same 4:5 aspect ratio as main image */
}

.thumbnail-swiper .swiper-slide img {
  position: absolute;
  inset: 0px;
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.thumbnail-swiper .swiper-slide-thumb-active > div,
    .thumbnail-swiper .swiper-slide.active > div {
  border-width: 1px;
  --tw-border-opacity: 1 !important;
  border-color: rgb(242 138 0 / var(--tw-border-opacity, 1)) !important;
}

/* Inportant Information Styles */

.product-important-information h2 {
  font-size: 1.375rem;
  line-height: 1.5;
  --tw-text-opacity: 1;
  color: rgb(200 15 46 / var(--tw-text-opacity, 1));
}

.product-important-information .content h1,
    .product-important-information .content h2,
    .product-important-information .content h3,
    .product-important-information .content h4,
    .product-important-information .content h5,
    .product-important-information .content h6 {
  font-size: 1.125rem;
  line-height: 1.5;
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
}

/* Reviews and Image Cards Block Styles */

.single-product .reviews-block h2,
    .single-product .image-cards h2 {
  text-align: left;
}

.single-product .reviews-block h2 {
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
  margin-bottom: 0.5rem;
  font-size: 1.75rem;
  line-height: 1.4;
  font-weight: 700;
}


  .bg-primary-light .single-product .reviews-block h2,
  .bg-primary-mid .single-product .reviews-block h2 {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.single-product .image-cards h2 {
  margin-bottom: 2rem;
  font-size: 1.5rem;
  line-height: 2rem;
}

@media (min-width: 1280px) {
  .single-product .image-cards h2 {
    margin-bottom: 3rem;
  }
}

.single-product .reviews-block .container {
  padding-left: 0px;
  padding-right: 0px;
}

/* Hide required addons validation message */

#required_addons_validation_message {
  display: none !important;
}

.main-swiper>.hero-image {
  width: 100%;
  position: relative;
  padding-bottom: 107.69%;
  /* 650x700 aspect ratio (portrait) */
}

.hero-image {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-image__picture {
  display: block;
  width: 100%;
}

.hero-image__img {
  height: auto;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  height: 500px;
}

@media (min-width: 768px) {
  .hero-image__img {
    height: 800px;
  }
}

/* Alignment variations */

.hero-image.alignfull {
  width: 100%;
  max-width: none;
}

.hero-image.alignwide {
  margin-left: auto;
  margin-right: auto;
  max-width: 1536px;
}

.main-swiper>.hero-images-container {
  width: 100%;
  position: relative;
  padding-bottom: 107.69%;
  /* 650x700 aspect ratio (portrait) */
}

.hero-images-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-images-rotator {
  position: relative;
}

.hero-image-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  display: none;
  transition: opacity var(--hero-images-transition, 0.5s) ease-in-out;
  pointer-events: none;
}

.hero-image-slide.is-active {
  position: relative;
  opacity: 1;
  display: block;
  pointer-events: auto;
  z-index: 1;
}

.hero-image-slide img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.main-swiper>.hero-images-link {
  width: 100%;
  position: relative;
  padding-bottom: 107.69%;
  /* 650x700 aspect ratio (portrait) */
}

.hero-images-link {
  position: relative;
  z-index: 10;
  display: block;
  height: 100%;
  width: 100%;
}

.hero-images-dots {
  display: flex;
  align-items: center;
}

.hero-images-dots > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.hero-images-dots {
  position: absolute;
  z-index: 5;
}

.hero-images-dot {
  height: 0.75rem;
  width: 0.75rem;
  cursor: pointer;
  border-radius: 9999px;
  border-width: 2px;
  --tw-border-opacity: 1;
  border-color: rgb(0 32 98 / var(--tw-border-opacity, 1));
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
  --tw-bg-opacity: 0.5;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

.hero-images-dot.active,
  .hero-images-dot[aria-pressed="true"],
  .hero-images-dot:hover {
  --tw-scale-x: 1.1;
  --tw-scale-y: 1.1;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
  background-color: rgb(0 32 98 / var(--tw-bg-opacity, 1));
  --tw-bg-opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .hero-image-slide {
    transition: none;
  }
}

/* Pagination Container */

.pagination-wrapper,
    .woocommerce-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* All page numbers including current */

.pagination-wrapper .page-numbers,
    .woocommerce-pagination .page-numbers li .page-numbers {
  display: inline-flex;
  min-width: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 0.25rem;
  --tw-bg-opacity: 1;
  background-color: rgb(230 126 34 / var(--tw-bg-opacity, 1));
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  font-weight: 600;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 200ms;
}

.pagination-wrapper .page-numbers:hover,
    .woocommerce-pagination .page-numbers li .page-numbers:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
}

/* Current/Active Page */

.pagination-wrapper .page-numbers.current,
    .woocommerce-pagination .page-numbers li .page-numbers.current {
  cursor: default;
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
}

/* Prev/Next Links */

.pagination-wrapper .next.page-numbers,
    .pagination-wrapper .prev.page-numbers,
    .woocommerce-pagination .page-numbers li .next.page-numbers,
    .woocommerce-pagination .page-numbers li .prev.page-numbers {
  min-width: -moz-fit-content;
  min-width: fit-content;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

/* Dots */

.pagination-wrapper .page-numbers.dots,
    .woocommerce-pagination .page-numbers li .page-numbers.dots {
  cursor: default;
  background-color: transparent;
  padding-left: 0.5rem;
  padding-right: 0.5rem;
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.pagination-wrapper .page-numbers.dots:hover,
    .woocommerce-pagination .page-numbers li .page-numbers.dots:hover {
  background-color: transparent;
}

/* WooCommerce specific adjustments */

.woocommerce-pagination .page-numbers {
  margin: 0px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0px;
  li {
    margin: 0px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

.pointer-events-none {
  pointer-events: none;
}

.visible {
  visibility: visible;
}

.static {
  position: static;
}

.fixed {
  position: fixed;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.inset-0 {
  inset: 0px;
}

.inset-x-0 {
  left: 0px;
  right: 0px;
}

.inset-y-0 {
  top: 0px;
  bottom: 0px;
}

.-left-7 {
  left: -1.75rem;
}

.-right-\[12px\] {
  right: -12px;
}

.-top-2 {
  top: -0.5rem;
}

.bottom-0 {
  bottom: 0px;
}

.bottom-2 {
  bottom: 0.5rem;
}

.left-0 {
  left: 0px;
}

.left-1\/2 {
  left: 50%;
}

.left-\[calc\(0\.375rem\)\] {
  left: calc(0.375rem);
}

.right-0 {
  right: 0px;
}

.right-2 {
  right: 0.5rem;
}

.right-4 {
  right: 1rem;
}

.right-\[calc\(0\.375rem\)\] {
  right: calc(0.375rem);
}

.top-4 {
  top: 1rem;
}

.z-10 {
  z-index: 10;
}

.z-20 {
  z-index: 20;
}

.z-50 {
  z-index: 50;
}

.col-span-3 {
  grid-column: span 3 / span 3;
}

.col-span-9 {
  grid-column: span 9 / span 9;
}

.col-span-full {
  grid-column: 1 / -1;
}

.\!m-0 {
  margin: 0px !important;
}

.m-0 {
  margin: 0px;
}

.\!my-0 {
  margin-top: 0px !important;
  margin-bottom: 0px !important;
}

.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.my-0 {
  margin-top: 0px;
  margin-bottom: 0px;
}

.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.\!mb-0 {
  margin-bottom: 0px !important;
}

.\!mt-0 {
  margin-top: 0px !important;
}

.-mt-3 {
  margin-top: -0.75rem;
}

.mb-0 {
  margin-bottom: 0px;
}

.mb-0\.5 {
  margin-bottom: 0.125rem;
}

.mb-1 {
  margin-bottom: 0.25rem;
}

.mb-10 {
  margin-bottom: 2.5rem;
}

.mb-12 {
  margin-bottom: 3rem;
}

.mb-2 {
  margin-bottom: 0.5rem;
}

.mb-3 {
  margin-bottom: 0.75rem;
}

.mb-4 {
  margin-bottom: 1rem;
}

.mb-5 {
  margin-bottom: 1.25rem;
}

.mb-6 {
  margin-bottom: 1.5rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.ml-2 {
  margin-left: 0.5rem;
}

.ml-3 {
  margin-left: 0.75rem;
}

.ml-auto {
  margin-left: auto;
}

.mr-1 {
  margin-right: 0.25rem;
}

.mr-2 {
  margin-right: 0.5rem;
}

.mt-0 {
  margin-top: 0px;
}

.mt-1 {
  margin-top: 0.25rem;
}

.mt-16 {
  margin-top: 4rem;
}

.mt-2 {
  margin-top: 0.5rem;
}

.mt-3 {
  margin-top: 0.75rem;
}

.mt-4 {
  margin-top: 1rem;
}

.mt-5 {
  margin-top: 1.25rem;
}

.mt-6 {
  margin-top: 1.5rem;
}

.mt-8 {
  margin-top: 2rem;
}

.mt-auto {
  margin-top: auto;
}

.line-clamp-2 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.line-clamp-3 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.\!block {
  display: block !important;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.flex {
  display: flex;
}

.inline-flex {
  display: inline-flex;
}

.table {
  display: table;
}

.grid {
  display: grid;
}

.contents {
  display: contents;
}

.\!hidden {
  display: none !important;
}

.hidden {
  display: none;
}

.aspect-\[300\/254\] {
  aspect-ratio: 300/254;
}

.aspect-\[4\/3\] {
  aspect-ratio: 4/3;
}

.aspect-\[458\/52\] {
  aspect-ratio: 458/52;
}

.aspect-\[60\/75\] {
  aspect-ratio: 60/75;
}

.aspect-\[600\/750\] {
  aspect-ratio: 600/750;
}

.aspect-\[7\/6\] {
  aspect-ratio: 7/6;
}

.\!h-10 {
  height: 2.5rem !important;
}

.\!h-full {
  height: 100% !important;
}

.h-10 {
  height: 2.5rem;
}

.h-12 {
  height: 3rem;
}

.h-16 {
  height: 4rem;
}

.h-28 {
  height: 7rem;
}

.h-3 {
  height: 0.75rem;
}

.h-4 {
  height: 1rem;
}

.h-5 {
  height: 1.25rem;
}

.h-6 {
  height: 1.5rem;
}

.h-7 {
  height: 1.75rem;
}

.h-8 {
  height: 2rem;
}

.h-\[200px\] {
  height: 200px;
}

.h-\[30px\] {
  height: 30px;
}

.h-\[40px\] {
  height: 40px;
}

.h-auto {
  height: auto;
}

.h-full {
  height: 100%;
}

.max-h-\[140px\] {
  max-height: 140px;
}

.max-h-\[200px\] {
  max-height: 200px;
}

.min-h-\[2\.5rem\] {
  min-height: 2.5rem;
}

.min-h-\[200px\] {
  min-height: 200px;
}

.min-h-\[5\.5rem\] {
  min-height: 5.5rem;
}

.\!w-10 {
  width: 2.5rem !important;
}

.\!w-full {
  width: 100% !important;
}

.w-1\/2 {
  width: 50%;
}

.w-10 {
  width: 2.5rem;
}

.w-12 {
  width: 3rem;
}

.w-14 {
  width: 3.5rem;
}

.w-16 {
  width: 4rem;
}

.w-28 {
  width: 7rem;
}

.w-3 {
  width: 0.75rem;
}

.w-4 {
  width: 1rem;
}

.w-5 {
  width: 1.25rem;
}

.w-6 {
  width: 1.5rem;
}

.w-7 {
  width: 1.75rem;
}

.w-8 {
  width: 2rem;
}

.w-\[10\%\] {
  width: 10%;
}

.w-\[40\%\] {
  width: 40%;
}

.w-\[40px\] {
  width: 40px;
}

.w-\[60\%\] {
  width: 60%;
}

.w-\[90\%\] {
  width: 90%;
}

.w-auto {
  width: auto;
}

.w-fit {
  width: -moz-fit-content;
  width: fit-content;
}

.w-full {
  width: 100%;
}

.min-w-\[40px\] {
  min-width: 40px;
}

.max-w-6xl {
  max-width: 72rem;
}

.max-w-\[200px\] {
  max-width: 200px;
}

.max-w-\[300px\] {
  max-width: 300px;
}

.max-w-full {
  max-width: 100%;
}

.max-w-none {
  max-width: none;
}

.max-w-screen-2xl {
  max-width: 1536px;
}

.flex-1 {
  flex: 1 1 0%;
}

.flex-\[2\] {
  flex: 2;
}

.flex-none {
  flex: none;
}

.flex-shrink {
  flex-shrink: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.flex-grow {
  flex-grow: 1;
}

.border-collapse {
  border-collapse: collapse;
}

.-translate-x-1\/2 {
  --tw-translate-x: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transform {
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.cursor-pointer {
  cursor: pointer;
}

.resize {
  resize: both;
}

.list-decimal {
  list-style-type: decimal;
}

.list-disc {
  list-style-type: disc;
}

.list-none {
  list-style-type: none;
}

.appearance-none {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

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

.flex-row {
  flex-direction: row;
}

.flex-col {
  flex-direction: column;
}

.flex-col-reverse {
  flex-direction: column-reverse;
}

.flex-wrap {
  flex-wrap: wrap;
}

.items-start {
  align-items: flex-start;
}

.items-end {
  align-items: flex-end;
}

.items-center {
  align-items: center;
}

.items-stretch {
  align-items: stretch;
}

.justify-start {
  justify-content: flex-start;
}

.justify-end {
  justify-content: flex-end;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.gap-16 {
  gap: 4rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-x-8 {
  -moz-column-gap: 2rem;
       column-gap: 2rem;
}

.space-x-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-x-reverse: 0;
  margin-right: calc(0.5rem * var(--tw-space-x-reverse));
  margin-left: calc(0.5rem * calc(1 - var(--tw-space-x-reverse)));
}

.space-y-12 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(3rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(3rem * var(--tw-space-y-reverse));
}

.space-y-2 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.5rem * var(--tw-space-y-reverse));
}

.space-y-3 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(0.75rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(0.75rem * var(--tw-space-y-reverse));
}

.space-y-4 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1rem * var(--tw-space-y-reverse));
}

.space-y-6 > :not([hidden]) ~ :not([hidden]) {
  --tw-space-y-reverse: 0;
  margin-top: calc(1.5rem * calc(1 - var(--tw-space-y-reverse)));
  margin-bottom: calc(1.5rem * var(--tw-space-y-reverse));
}

.divide-y > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-y-reverse: 0;
  border-top-width: calc(1px * calc(1 - var(--tw-divide-y-reverse)));
  border-bottom-width: calc(1px * var(--tw-divide-y-reverse));
}

.divide-primary > :not([hidden]) ~ :not([hidden]) {
  --tw-divide-opacity: 1;
  border-color: rgb(0 32 98 / var(--tw-divide-opacity, 1));
}

.self-center {
  align-self: center;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-y-auto {
  overflow-y: auto;
}

.whitespace-nowrap {
  white-space: nowrap;
}

.whitespace-pre-line {
  white-space: pre-line;
}

.rounded {
  border-radius: 0.25rem;
}

.rounded-full {
  border-radius: 9999px;
}

.rounded-lg {
  border-radius: 0.5rem;
}

.rounded-md {
  border-radius: 0.375rem;
}

.\!border-0 {
  border-width: 0px !important;
}

.border {
  border-width: 1px;
}

.border-0 {
  border-width: 0px;
}

.border-2 {
  border-width: 2px;
}

.border-8 {
  border-width: 8px;
}

.border-\[1px\] {
  border-width: 1px;
}

.border-b {
  border-bottom-width: 1px;
}

.border-l-2 {
  border-left-width: 2px;
}

.border-l-4 {
  border-left-width: 4px;
}

.border-t {
  border-top-width: 1px;
}

.border-none {
  border-style: none;
}

.\!border-secondary-orange {
  --tw-border-opacity: 1 !important;
  border-color: rgb(242 138 0 / var(--tw-border-opacity, 1)) !important;
}

.border-black {
  --tw-border-opacity: 1;
  border-color: rgb(0 0 0 / var(--tw-border-opacity, 1));
}

.border-copy {
  --tw-border-opacity: 1;
  border-color: rgb(51 51 51 / var(--tw-border-opacity, 1));
}

.border-copy-dark {
  --tw-border-opacity: 1;
  border-color: rgb(27 73 139 / var(--tw-border-opacity, 1));
}

.border-current {
  border-color: currentColor;
}

.border-editor-border {
  --tw-border-opacity: 1;
  border-color: rgb(220 220 222 / var(--tw-border-opacity, 1));
}

.border-gray {
  --tw-border-opacity: 1;
  border-color: rgb(242 242 242 / var(--tw-border-opacity, 1));
}

.border-gray-dark {
  --tw-border-opacity: 1;
  border-color: rgb(229 229 229 / var(--tw-border-opacity, 1));
}

.border-primary {
  --tw-border-opacity: 1;
  border-color: rgb(0 32 98 / var(--tw-border-opacity, 1));
}

.border-primary-dark {
  --tw-border-opacity: 1;
  border-color: rgb(0 32 98 / var(--tw-border-opacity, 1));
}

.border-primary-light {
  --tw-border-opacity: 1;
  border-color: rgb(50 92 151 / var(--tw-border-opacity, 1));
}

.border-primary-mid {
  --tw-border-opacity: 1;
  border-color: rgb(27 73 139 / var(--tw-border-opacity, 1));
}

.border-secondary {
  --tw-border-opacity: 1;
  border-color: rgb(230 126 34 / var(--tw-border-opacity, 1));
}

.border-secondary-orange {
  --tw-border-opacity: 1;
  border-color: rgb(242 138 0 / var(--tw-border-opacity, 1));
}

.border-tertiary {
  --tw-border-opacity: 1;
  border-color: rgb(139 197 63 / var(--tw-border-opacity, 1));
}

.border-tertiary-green {
  --tw-border-opacity: 1;
  border-color: rgb(139 197 63 / var(--tw-border-opacity, 1));
}

.border-transparent {
  border-color: transparent;
}

.border-white {
  --tw-border-opacity: 1;
  border-color: rgb(255 255 255 / var(--tw-border-opacity, 1));
}

.border-opacity-30 {
  --tw-border-opacity: 0.3;
}

.border-opacity-70 {
  --tw-border-opacity: 0.7;
}

.\!bg-secondary {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(230 126 34 / var(--tw-bg-opacity, 1)) !important;
}

.\!bg-secondary-orange {
  --tw-bg-opacity: 1 !important;
  background-color: rgb(242 138 0 / var(--tw-bg-opacity, 1)) !important;
}

.bg-black {
  --tw-bg-opacity: 1;
  background-color: rgb(0 0 0 / var(--tw-bg-opacity, 1));
}

.bg-copy {
  --tw-bg-opacity: 1;
  background-color: rgb(51 51 51 / var(--tw-bg-opacity, 1));
}

.bg-copy-dark {
  --tw-bg-opacity: 1;
  background-color: rgb(27 73 139 / var(--tw-bg-opacity, 1));
}

.bg-current {
  background-color: currentColor;
}

.bg-editor-border {
  --tw-bg-opacity: 1;
  background-color: rgb(220 220 222 / var(--tw-bg-opacity, 1));
}

.bg-gray {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity, 1));
}

.bg-gray-dark {
  --tw-bg-opacity: 1;
  background-color: rgb(229 229 229 / var(--tw-bg-opacity, 1));
}

.bg-primary {
  --tw-bg-opacity: 1;
  background-color: rgb(0 32 98 / var(--tw-bg-opacity, 1));
}

.bg-primary-dark {
  --tw-bg-opacity: 1;
  background-color: rgb(0 32 98 / var(--tw-bg-opacity, 1));
}

.bg-primary-light {
  --tw-bg-opacity: 1;
  background-color: rgb(50 92 151 / var(--tw-bg-opacity, 1));
}

.bg-primary-mid {
  --tw-bg-opacity: 1;
  background-color: rgb(27 73 139 / var(--tw-bg-opacity, 1));
}

.bg-secondary {
  --tw-bg-opacity: 1;
  background-color: rgb(230 126 34 / var(--tw-bg-opacity, 1));
}

.bg-secondary-dark {
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
}

.bg-secondary-orange {
  --tw-bg-opacity: 1;
  background-color: rgb(242 138 0 / var(--tw-bg-opacity, 1));
}

.bg-tertiary {
  --tw-bg-opacity: 1;
  background-color: rgb(139 197 63 / var(--tw-bg-opacity, 1));
}

.bg-tertiary-green {
  --tw-bg-opacity: 1;
  background-color: rgb(139 197 63 / var(--tw-bg-opacity, 1));
}

.bg-tertiary-red {
  --tw-bg-opacity: 1;
  background-color: rgb(200 15 46 / var(--tw-bg-opacity, 1));
}

.bg-transparent {
  background-color: transparent;
}

.bg-white {
  --tw-bg-opacity: 1;
  background-color: rgb(255 255 255 / var(--tw-bg-opacity, 1));
}

.bg-opacity-100 {
  --tw-bg-opacity: 1;
}

.bg-opacity-20 {
  --tw-bg-opacity: 0.2;
}

.bg-opacity-50 {
  --tw-bg-opacity: 0.5;
}

.bg-opacity-60 {
  --tw-bg-opacity: 0.6;
}

.bg-opacity-75 {
  --tw-bg-opacity: 0.75;
}

.bg-\[100\%_auto\] {
  background-size: 100% auto;
}

.bg-\[length\:24px_24px\] {
  background-size: 24px 24px;
}

.bg-\[center_right_8px\] {
  background-position: center right 8px;
}

.bg-bottom {
  background-position: bottom;
}

.bg-center {
  background-position: center;
}

.bg-no-repeat {
  background-repeat: no-repeat;
}

.object-contain {
  -o-object-fit: contain;
     object-fit: contain;
}

.object-cover {
  -o-object-fit: cover;
     object-fit: cover;
}

.object-right-bottom {
  -o-object-position: right bottom;
     object-position: right bottom;
}

.\!p-0 {
  padding: 0px !important;
}

.p-0 {
  padding: 0px;
}

.p-2 {
  padding: 0.5rem;
}

.p-3 {
  padding: 0.75rem;
}

.p-4 {
  padding: 1rem;
}

.p-6 {
  padding: 1.5rem;
}

.p-8 {
  padding: 2rem;
}

.\!py-\[2px\] {
  padding-top: 2px !important;
  padding-bottom: 2px !important;
}

.px-0 {
  padding-left: 0px;
  padding-right: 0px;
}

.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}

.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-0 {
  padding-top: 0px;
  padding-bottom: 0px;
}

.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pb-2 {
  padding-bottom: 0.5rem;
}

.pb-3 {
  padding-bottom: 0.75rem;
}

.pb-4 {
  padding-bottom: 1rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-3 {
  padding-left: 0.75rem;
}

.pl-4 {
  padding-left: 1rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pr-12 {
  padding-right: 3rem;
}

.pr-2 {
  padding-right: 0.5rem;
}

.pr-4 {
  padding-right: 1rem;
}

.pt-0 {
  padding-top: 0px;
}

.pt-2 {
  padding-top: 0.5rem;
}

.pt-3 {
  padding-top: 0.75rem;
}

.pt-4 {
  padding-top: 1rem;
}

.pt-8 {
  padding-top: 2rem;
}

.text-left {
  text-align: left;
}

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

.text-right {
  text-align: right;
}

.\!align-top {
  vertical-align: top !important;
}

.align-top {
  vertical-align: top;
}

.align-middle {
  vertical-align: middle;
}

.\!text-18 {
  font-size: 1.125rem !important;
  line-height: 1.5 !important;
}

.text-14 {
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-18 {
  font-size: 1.125rem;
  line-height: 1.5;
}

.text-20 {
  font-size: 1.25rem;
  line-height: 1.5;
}

.text-22 {
  font-size: 1.375rem;
  line-height: 1.5;
}

.text-24 {
  font-size: 1.5rem;
  line-height: 1.4;
}

.text-28 {
  font-size: 1.75rem;
  line-height: 1.4;
}

.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}

.text-32 {
  font-size: 2rem;
  line-height: 1.3;
}

.text-34 {
  font-size: 2.125rem;
  line-height: 1.3;
}

.text-38 {
  font-size: 2.375rem;
  line-height: 1.3;
}

.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}

.text-4xl {
  font-size: 2.25rem;
  line-height: 2.5rem;
}

.text-50 {
  font-size: 3.125rem;
  line-height: 1.2;
}

.text-5xl {
  font-size: 3rem;
  line-height: 1;
}

.text-\[0\.875rem\] {
  font-size: 0.875rem;
}

.text-\[1\.125rem\] {
  font-size: 1.125rem;
}

.text-\[1\.25rem\] {
  font-size: 1.25rem;
}

.text-\[1\.375rem\] {
  font-size: 1.375rem;
}

.text-\[1\.5rem\] {
  font-size: 1.5rem;
}

.text-\[1\.75rem\] {
  font-size: 1.75rem;
}

.text-\[2\.125rem\] {
  font-size: 2.125rem;
}

.text-\[2\.375rem\] {
  font-size: 2.375rem;
}

.text-\[2rem\] {
  font-size: 2rem;
}

.text-\[3\.125rem\] {
  font-size: 3.125rem;
}

.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}

.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}

.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}

.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}

.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}

.font-bold {
  font-weight: 700;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.\!leading-none {
  line-height: 1 !important;
}

.leading-none {
  line-height: 1;
}

.leading-normal {
  line-height: 1.5;
}

.leading-relaxed {
  line-height: 1.625;
}

.leading-tight {
  line-height: 1.25;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

.\!text-primary {
  --tw-text-opacity: 1 !important;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1)) !important;
}

.\!text-white {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}

.text-black {
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

.text-copy {
  --tw-text-opacity: 1;
  color: rgb(51 51 51 / var(--tw-text-opacity, 1));
}

.text-copy-dark {
  --tw-text-opacity: 1;
  color: rgb(27 73 139 / var(--tw-text-opacity, 1));
}

.text-current {
  color: currentColor;
}

.text-editor-border {
  --tw-text-opacity: 1;
  color: rgb(220 220 222 / var(--tw-text-opacity, 1));
}

.text-gray {
  --tw-text-opacity: 1;
  color: rgb(242 242 242 / var(--tw-text-opacity, 1));
}

.text-gray-dark {
  --tw-text-opacity: 1;
  color: rgb(229 229 229 / var(--tw-text-opacity, 1));
}

.text-primary {
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
}

.text-primary-dark {
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
}

.text-primary-light {
  --tw-text-opacity: 1;
  color: rgb(50 92 151 / var(--tw-text-opacity, 1));
}

.text-secondary {
  --tw-text-opacity: 1;
  color: rgb(230 126 34 / var(--tw-text-opacity, 1));
}

.text-secondary-orange {
  --tw-text-opacity: 1;
  color: rgb(242 138 0 / var(--tw-text-opacity, 1));
}

.text-tertiary {
  --tw-text-opacity: 1;
  color: rgb(139 197 63 / var(--tw-text-opacity, 1));
}

.text-tertiary-green {
  --tw-text-opacity: 1;
  color: rgb(139 197 63 / var(--tw-text-opacity, 1));
}

.text-tertiary-red {
  --tw-text-opacity: 1;
  color: rgb(200 15 46 / var(--tw-text-opacity, 1));
}

.text-transparent {
  color: transparent;
}

.text-white {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.opacity-0 {
  opacity: 0;
}

.opacity-50 {
  opacity: 0.5;
}

.opacity-80 {
  opacity: 0.8;
}

.opacity-90 {
  opacity: 0.9;
}

.shadow-lg {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-md {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.shadow-sm {
  --tw-shadow: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --tw-shadow-colored: 0 1px 2px 0 var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.outline-none {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.outline {
  outline-style: solid;
}

.filter {
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}

.transition {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, -webkit-backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter, -webkit-backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-all {
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-colors {
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-opacity {
  transition-property: opacity;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-shadow {
  transition-property: box-shadow;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.transition-transform {
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}

.duration-200 {
  transition-duration: 200ms;
}

.duration-300 {
  transition-duration: 300ms;
}

.content-\[\'\'\] {
  --tw-content: '';
  content: var(--tw-content);
}

/* Test CSS change for sync verification */

.test-sync-class {
  --tw-bg-opacity: 1;
  background-color: rgb(0 32 98 / var(--tw-bg-opacity, 1));
  padding: 1rem;
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.test-sync-class-2 {
  margin: 0.5rem;
  --tw-bg-opacity: 1;
  background-color: rgb(230 126 34 / var(--tw-bg-opacity, 1));
  --tw-text-opacity: 1;
  color: rgb(0 0 0 / var(--tw-text-opacity, 1));
}

@media (min-width: 768px) {
  .md\:text-34 {
    font-size: 2.125rem;
  }

  .md\:text-32 {
    font-size: 2rem;
  }

  .md\:text-28 {
    font-size: 1.75rem;
  }

  .md\:text-24 {
    font-size: 1.5rem;
  }

  .md\:text-22 {
    font-size: 1.375rem;
  }

  .md\:text-20 {
    font-size: 1.25rem;
  }

  .md\:text-18 {
    font-size: 1.125rem;
  }
}

@media (min-width: 1024px) {
  .lg\:text-24 {
    font-size: 1.5rem;
  }
}

.before\:absolute::before {
  content: var(--tw-content);
  position: absolute;
}

.before\:left-0::before {
  content: var(--tw-content);
  left: 0px;
}

.before\:top-1\/2::before {
  content: var(--tw-content);
  top: 50%;
}

.before\:h-\[calc\(100\%-8px\)\]::before {
  content: var(--tw-content);
  height: calc(100% - 8px);
}

.before\:w-1::before {
  content: var(--tw-content);
  width: 0.25rem;
}

.before\:-translate-y-1\/2::before {
  content: var(--tw-content);
  --tw-translate-y: -50%;
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.before\:bg-secondary-orange::before {
  content: var(--tw-content);
  --tw-bg-opacity: 1;
  background-color: rgb(242 138 0 / var(--tw-bg-opacity, 1));
}

.last\:border-b-0:last-child {
  border-bottom-width: 0px;
}

.hover\:bg-gray:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(242 242 242 / var(--tw-bg-opacity, 1));
}

.hover\:bg-primary:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 32 98 / var(--tw-bg-opacity, 1));
}

.hover\:bg-primary-dark:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(0 32 98 / var(--tw-bg-opacity, 1));
}

.hover\:bg-secondary-dark:hover {
  --tw-bg-opacity: 1;
  background-color: rgb(193 77 0 / var(--tw-bg-opacity, 1));
}

.hover\:bg-transparent:hover {
  background-color: transparent;
}

.hover\:\!text-white:hover {
  --tw-text-opacity: 1 !important;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1)) !important;
}

.hover\:text-primary:hover {
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
}

.hover\:text-primary-dark:hover {
  --tw-text-opacity: 1;
  color: rgb(0 32 98 / var(--tw-text-opacity, 1));
}

.hover\:text-primary-mid:hover {
  --tw-text-opacity: 1;
  color: rgb(27 73 139 / var(--tw-text-opacity, 1));
}

.hover\:text-secondary:hover {
  --tw-text-opacity: 1;
  color: rgb(230 126 34 / var(--tw-text-opacity, 1));
}

.hover\:text-secondary-dark:hover {
  --tw-text-opacity: 1;
  color: rgb(193 77 0 / var(--tw-text-opacity, 1));
}

.hover\:text-tertiary-green:hover {
  --tw-text-opacity: 1;
  color: rgb(139 197 63 / var(--tw-text-opacity, 1));
}

.hover\:text-white:hover {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

.hover\:underline:hover {
  text-decoration-line: underline;
}

.hover\:opacity-100:hover {
  opacity: 1;
}

.hover\:opacity-80:hover {
  opacity: 0.8;
}

.hover\:shadow-lg:hover {
  --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.hover\:shadow-md:hover {
  --tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
  --tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
  box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}

.focus\:outline-none:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
}

.focus\:ring-0:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(0px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-2:focus {
  --tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
  --tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(2px + var(--tw-ring-offset-width)) var(--tw-ring-color);
  box-shadow: var(--tw-ring-offset-shadow), var(--tw-ring-shadow), var(--tw-shadow, 0 0 #0000);
}

.focus\:ring-secondary:focus {
  --tw-ring-opacity: 1;
  --tw-ring-color: rgb(230 126 34 / var(--tw-ring-opacity, 1));
}

@media (min-width: 640px) {
  .sm\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sm\:flex-row {
    flex-direction: row;
  }

  .sm\:gap-6 {
    gap: 1.5rem;
  }

  .sm\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .sm\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }
}

@media (min-width: 768px) {
  .md\:absolute {
    position: absolute;
  }

  .md\:inset-x-0 {
    left: 0px;
    right: 0px;
  }

  .md\:inset-y-0 {
    top: 0px;
    bottom: 0px;
  }

  .md\:block {
    display: block;
  }

  .md\:hidden {
    display: none;
  }

  .md\:\!h-full {
    height: 100% !important;
  }

  .md\:w-\[384px\] {
    width: 384px;
  }

  .md\:w-full {
    width: 100%;
  }

  .md\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .md\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .md\:grid-cols-\[250px_1fr\] {
    grid-template-columns: 250px 1fr;
  }

  .md\:flex-row {
    flex-direction: row;
  }

  .md\:items-center {
    align-items: center;
  }

  .md\:object-cover {
    -o-object-fit: cover;
       object-fit: cover;
  }

  .md\:p-5 {
    padding: 1.25rem;
  }

  .md\:py-0 {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .md\:py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }

  .md\:py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .md\:pb-12 {
    padding-bottom: 3rem;
  }

  .md\:pt-0 {
    padding-top: 0px;
  }

  .md\:text-left {
    text-align: left;
  }

  .md\:text-18 {
    font-size: 1.125rem;
    line-height: 1.5;
  }

  .md\:text-20 {
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .md\:text-22 {
    font-size: 1.375rem;
    line-height: 1.5;
  }

  .md\:text-24 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .md\:text-28 {
    font-size: 1.75rem;
    line-height: 1.4;
  }

  .md\:text-32 {
    font-size: 2rem;
    line-height: 1.3;
  }

  .md\:text-34 {
    font-size: 2.125rem;
    line-height: 1.3;
  }

  .md\:text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
  }

  .md\:text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
  }

  .md\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .md\:text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
  }

  .md\:text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
  }

  .md\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

@media (min-width: 1024px) {
  .lg\:mb-1 {
    margin-bottom: 0.25rem;
  }

  .lg\:block {
    display: block;
  }

  .lg\:grid {
    display: grid;
  }

  .lg\:hidden {
    display: none;
  }

  .lg\:w-\[512px\] {
    width: 512px;
  }

  .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lg\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lg\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .lg\:grid-cols-5 {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .lg\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .lg\:gap-12 {
    gap: 3rem;
  }

  .lg\:gap-4 {
    gap: 1rem;
  }

  .lg\:p-3 {
    padding: 0.75rem;
  }

  .lg\:p-6 {
    padding: 1.5rem;
  }

  .lg\:px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .lg\:py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .lg\:text-left {
    text-align: left;
  }

  .lg\:text-24 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .lg\:text-base {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .lg\:text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
  }

  .lg\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

@media (min-width: 1280px) {
  .xl\:col-span-1 {
    grid-column: span 1 / span 1;
  }

  .xl\:col-span-3 {
    grid-column: span 3 / span 3;
  }

  .xl\:col-span-4 {
    grid-column: span 4 / span 4;
  }

  .xl\:ml-0 {
    margin-left: 0px;
  }

  .xl\:ml-auto {
    margin-left: auto;
  }

  .xl\:mr-0 {
    margin-right: 0px;
  }

  .xl\:mr-auto {
    margin-right: auto;
  }

  .xl\:block {
    display: block;
  }

  .xl\:hidden {
    display: none;
  }

  .xl\:w-\[640px\] {
    width: 640px;
  }

  .xl\:max-w-\[640px\] {
    max-width: 640px;
  }

  .xl\:grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }

  .xl\:grid-cols-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .xl\:grid-cols-6 {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .xl\:gap-24 {
    gap: 6rem;
  }

  .xl\:pl-12 {
    padding-left: 3rem;
  }

  .xl\:pl-4 {
    padding-left: 1rem;
  }

  .xl\:pr-12 {
    padding-right: 3rem;
  }

  .xl\:pr-4 {
    padding-right: 1rem;
  }

  .xl\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}

@media (min-width: 1536px) {
  .\32xl\:block {
    display: block;
  }

  .\32xl\:hidden {
    display: none;
  }

  .\32xl\:w-\[768px\] {
    width: 768px;
  }

  .\32xl\:max-w-\[768px\] {
    max-width: 768px;
  }

  .\32xl\:grid-cols-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .\32xl\:text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
  }
}