@font-face {
  font-family: "Gotham-Light";
  src: url("/template/nomad-origins/assets/fonts/GOTHAM-LIGHT.OTF")
    format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham-Book";
  src: url("/template/nomad-origins/assets/fonts/GOTHAM-BOOK.OTF")
    format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham-Medium";
  src: url("/template/nomad-origins/assets/fonts/GOTHAM-MEDIUM.OTF")
    format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Gotham-Bold";
  src: url("/template/nomad-origins/assets/fonts/GOTHAM-BOLD.OTF")
    format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* Inter from Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@500;900&display=swap");

:root {
  --color-blue: #253349;
  --color-orange: #f8a94b;
  --color-white: #ffffff;
  --color-black: #000000;
}

/* Specific Font Families */
.font-inter-medium {
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
.font-inter-black {
  font-family: "Inter", sans-serif;
  font-weight: 900;
}
.font-gotham-light {
  font-family: "Gotham-Light", sans-serif;
}
.font-gotham-book {
  font-family: "Gotham-Book", sans-serif;
}
.font-gotham-medium {
  font-family: "Gotham-Medium", sans-serif;
}
.font-gotham-bold {
  font-family: "Gotham-Bold", sans-serif;
}

.nomad-origins-page {
  background-color: var(--color-white);
}

section {
  position: relative;
  overflow: hidden;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #000;
  line-height: 0;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.left-gallery {
  background: #253349 !important;
}

.gallery-root-container{
    background: #253349 !important;
}

/* Component: Gallery */
.gallery-container {
  display: flex;
  flex-direction: column;
  height: 100%;
}

#main-carousel {
  flex-grow: 1;
  display: flex;
  align-items: center;
}

#main-carousel .splide__track {
  width: 100%;
}

#main-carousel .splide__slide img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

#thumb-carousel {
  margin-top: 20px;
}

.product-info-column {
  background-color: var(--color-blue);
  color: var(--color-white);
  padding: 60px 40px;
}

.feature-icons {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 20px 0;
  margin: 30px 0;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.feature-item img {
  width: 20px;
  height: auto;
  filter: brightness(0) saturate(100%) invert(80%) sepia(50%) saturate(1000%)
    hue-rotate(345deg) brightness(100%) contrast(100%); /* Orange filter */
}

.feature-item span {
  font-size: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-orange);
}

.swatch-container {
  gap: 30px;
}

.swatch-circle {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  cursor: pointer;
  transition: border-color 0.3s;
}

.swatch-circle.active {
  border-color: var(--color-white);
}

.swatch-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.swatch-item span {
  font-size: 12px;
  margin-top: 8px;
  display: block;
}

.swatch-name {
  max-width: 80px;
  margin: 0 auto;
}
.ships-to img {
  height: 20px;
  width: auto;
}

.btn-preorder {
  background-color: var(--color-orange);
  color: var(--color-black);
  width: 100%;
  padding: 20px;
  border: none;
  font-family: "Inter", sans-serif;
  font-weight: 900;
  font-size: 24px;
  text-transform: uppercase;
  margin-top: 20px;
  transition: opacity 0.3s;
}

.btn-preorder:hover {
  opacity: 0.9;
}

/* Product Info Table-like Specification Styles */
.spec-line {
  border-bottom: 1px solid rgba(37, 51, 73, 0.2);
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.spec-line:last-child {
  border-bottom: none;
}

.spec-label {
  color: var(--color-orange);
  font-family: "Gotham-Bold", sans-serif;
  text-transform: uppercase;
}

/* CTA Styles */
.btn-orange {
  background-color: var(--color-orange);
  color: var(--color-black);
  padding: 15px 40px;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  font-family: "Gotham-Bold", sans-serif;
  text-transform: uppercase;
  transition: filter 0.3s;
  border: none;
  cursor: pointer;
}

.btn-orange:hover {
  filter: brightness(0.9);
  color: var(--color-black);
}

.pre-order-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--color-white);
  padding: 15px 0;
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.08);
  z-index: 1000;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.pre-order-bar.visible {
  transform: translateY(0);
}

.border-white-opacity {
  border-color: rgba(255, 255, 255, 0.1) !important;
}

#main-carousel img {
  width: 100%;
  height: auto;
  border-radius: 4px;
}

#thumb-carousel .splide__slide {
  border-radius: 4px;
  overflow: hidden;
  border: 2px solid transparent;
}

#thumb-carousel .splide__slide.is-active {
  border-color: var(--color-orange);
}

#thumb-carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Utilities */
.primary-blue {
  color: var(--color-blue);
}
.primary-orange {
  color: var(--color-orange);
}
.bg-blue {
  background-color: var(--color-blue);
}
.bg-orange {
  background-color: var(--color-orange);
}
.text-white {
  color: var(--color-white);
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}

.strike-diagonal {
  position: relative;
  display: inline-block;
}

.strike-diagonal-large {
  position: relative;
  display: inline-block;
}

.strike-diagonal::after {
  content: "";
  position: absolute;
  top: 44%;
  left: -2px;
  width: calc(100% + 4px);
  height: 2px;
  background: var(--color-orange);
  transform: rotate(-9deg);
  opacity: 0.8;
}

.strike-diagonal-large::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 5px;
  width: calc(95% + 4px);
  height: 2px;
  background: var(--color-orange);
  transform: rotate(-7deg);
  opacity: 0.8;
}

.affirm-modal-trigger{
  color:white;
}

.pre-order-bar .strike-diagonal::after {
  background: var(--color-blue);
  opacity: 0.5;
}

/* Technical Specifications */
.tech-specs {
  background-color: var(--color-blue);
}

.tech-specs .spec-line {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 15px 0;
  flex-wrap: wrap;
  align-items: center;
}

@media (max-width: 767.98px) {
  .tech-specs .spec-line {
      flex-direction: column;
      align-items: flex-start;
      gap: 5px;
  }
}

.tech-specs .spec-label {
  color: var(--color-orange);
}

/* Features Showcase */
.features-showcase {
  background-color: var(--color-black);
  color: var(--color-white);
}

.feature-tag {
  display: inline-block;
  border: 1px solid var(--color-orange);
  color: var(--color-orange);
  padding: 4px 12px;
  font-family: "Gotham-Medium", sans-serif;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.features-showcase h2 {
  color: var(--color-white);
}

.features-showcase p {
  color: rgba(255, 255, 255, 0.8) !important;
}


.why-nomad {
  background-image: url("/template/nomad-origins/assets/BG.webp");
  background-size: cover;
  position: relative;
  overflow: hidden;
  background-position: center;
}

.why-nomad .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.section-overlay{
  min-height:613px;
  display:flex;
  flex-direction: column;
  justify-content: center;
}


.testimonials {
  background-color: var(--color-black);
  color: var(--color-white);
}

.ugc-card {
  background-color: transparent;
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.ugc-card:hover {
  border-color: var(--color-orange);
  transform: translateY(-5px);
}

.ugc-card img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 0;
  margin-bottom: 0;
}

.ugc-card .card-content {
  padding: 25px 20px;
}

.ugc-card .card-quote {
  font-family: "Gotham-Light", sans-serif;
  font-style: italic;
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.9);
}

.ugc-card .card-author {
  font-family: "Gotham-Bold", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  margin-bottom: 5px;
  color: var(--color-white);
}

/* Spacing Utilities */
.section-py {
  padding-top: 100px;
  padding-bottom: 100px;
}

.section-mb {
  margin-bottom: 100px;
}

@media (max-width: 991.98px) {
  .section-py {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .section-mb {
    margin-bottom: 60px;
  }

  .btn-orange{
    padding: 15px 17px;
  }
}

.bg-dark-grey {
  background-color: #1c1c1c;
}

.text-grey {
  color: #adb5bd;
}

.letter-spacing-1 {
  letter-spacing: 1px;
}

.letter-spacing-2 {
  letter-spacing: 2px;
}

/* Product Info Refinements */
.quick-specs-row span {
    font-size: 11px;
    letter-spacing: 0.5px;
}

.feature-icons.mt-auto {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: none; /* Removed the previous top border since it's now at the bottom */
}

.feature-icons.mt-auto .feature-item img {
    width: 14px;
    filter: brightness(0) saturate(100%) invert(80%) sepia(50%) saturate(1000%) hue-rotate(345deg) brightness(100%) contrast(100%);
}

.feature-icons.mt-auto .feature-item span {
    font-size: 9px;
    font-family: "Gotham-Bold", sans-serif;
    color: var(--color-orange);
}

.feature{
  gap:10px;
}
