/* Font Definitions */
@font-face {
  font-family: "Gotham-Light";
  src: url("/template/asset/stratton-axiom/fonts/GOTHAM-LIGHT.OTF")
    format("opentype");
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Bold";
  src: url("/template/asset/stratton-axiom/fonts/MONTSERRAT-BOLD.TTF")
    format("truetype");
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Regular";
  src: url("/template/asset/stratton-axiom/fonts/MONTSERRAT-REGULAR.TTF")
    format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-SemiBold";
  src: url("/template/asset/stratton-axiom/fonts/MONTSERRAT-SEMIBOLD.TTF")
    format("truetype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Montserrat-Light";
  src: url("/template/asset/stratton-axiom/fonts/MONTSERRAT-LIGHT.TTF")
    format("truetype");
  font-weight: 300;
  font-style: normal;
}

:root {
  --color-primary: #2d448c;
  --color-text-blue: var(--color-primary);
  --color-navy: #021a37;
  --color-light-bg: #f8f8f5;
  --color-black: #000000;
  --color-white: #ffffff;
  --color-text-grey: #636466;
  --color-light: #4f6fa5;

  --font-ms-bold: "Montserrat-Bold", sans-serif;
  --font-ms-reg: "Montserrat-Regular", sans-serif;
  --font-ms-semi: "Montserrat-SemiBold", sans-serif;
  --font-ms-light: "Montserrat-Light", sans-serif;
  --font-gotham-light: "Gotham-Light", sans-serif;
}

/* Global Typography Utilities */
.font-ms-bold {
  font-family: var(--font-ms-bold);
}
.font-ms-reg {
  font-family: var(--font-ms-reg);
}
.font-ms-semi {
  font-family: var(--font-ms-semi);
}
.font-ms-light {
  font-family: var(--font-ms-light);
}
.font-gotham-light {
  font-family: var(--font-gotham-light);
}

.primary-color {
  color: var(--color-primary);
}

.btn-black {
  background-color: var(--color-black);
  color: var(--color-white);
  border-radius: 0;
  border: none;
  font-size: 14px;
  letter-spacing: 1px;
  transition: opacity 0.3s;
}
.btn-black:hover {
  opacity: 0.8;
  color: var(--color-white);
}

.max-width-1300 {
  max-width: 1300px;
}

main {
  overflow: hidden;
}

.secondary-color {
  color: var(--color-light);
}

.section-title {
  font-size: 48px;
  line-height: 1.1;
}

.hero-section {
  position: relative;
  width: 100%;
  height: auto;
  background-color: #000;
  line-height: 0;
}

.hero-video {
  width: 100%;
  height: auto;
  display: block;
}

.video-container {
  width: 100%;
  height: 100%;
}

.product-showcase {
  background-color: var(--color-white);
  padding: 100px 0;
}

.product-media-container {
  border-radius: 4px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-series {
  color: #818286;
  font-size: 14px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 10px;
}

.product-title {
  color: var(--color-text-blue);
  font-size: 40px;
  line-height: 1.1;
  margin-bottom: 25px;
}

.product-description {
  color: var(--color-text-grey);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 30px;
}

.product-price {
  color: var(--color-text-blue);
  font-size: 36px;
  margin-bottom: 5px;
}

.financing-text {
  color: #818286;
  font-size: 13px;
}
.financing-text span {
  text-decoration: underline;
  cursor: pointer;
}

.swatch-label {
  font-size: 13px;
  letter-spacing: 1.5px;
  color: var(--color-black);
  display: block;
  margin-bottom: 20px;
}

.swatch-list {
  display: flex;
  gap: 25px;
}

.swatch-item {
  width: 85px;
}

.swatch-circle {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: block;
  margin: 0 auto 12px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  border: 3px solid #eee;
  transition: all 0.3s ease;
}
.swatch-item:hover .swatch-circle {
  border-color: var(--color-text-blue);
  transform: translateY(-2px);
}

.swatch-name {
  font-size: 11px;
  letter-spacing: 0.5px;
  color: var(--color-text-grey);
  display: block;
  text-transform: uppercase;
  max-width: 80px;
  margin: 0 auto;
  line-height: 1.3;
}

.cta-actions .btn {
  font-size: 13px;
  letter-spacing: 1.5px;
  font-weight: 700;
  border: 1px solid var(--color-black);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px 10px;
}

/* Section 3: Trust Badges */
.trust-badges-section {
  background-color: var(--color-white);
}
.trust-img {
  opacity: 0.9;
}

/* Section 4: Philosophy Split Section */
.philosophy-section {
  position: relative;
}

.bg-navy {
  background-color: var(--color-navy);
}

.philosophy-label {
  font-size: 12px;
  letter-spacing: 2px;
  color: #a6afb5;
  display: block;
  margin-bottom: 20px;
}

.philosophy-title {
  font-size: 42px;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.philosophy-description {
  font-size: 16px;
  line-height: 1.7;
  color: #a6afb5;
}

.object-fit-cover {
  object-fit: cover;
}

/* Callout Styling */
.callout-badge {
  display: inline-block;
  padding: 8px 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  font-size: 12px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.callout-title {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 15px;
}

.callout-description {
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 20px;
}

.callout-media img {
  border-radius: 4px;
}

/* Section Spacing */
.section-gap {
  height: 40px;
  background-color: #fff;
}

/* Section 7: Technical Specifications */
.specs-section {
  background-color: #ededed;
}

.spec-badge {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid var(--color-primary);
  font-size: 16px;
  letter-spacing: 2px;
  color: var(--color-primary);
  margin-bottom: 35px;
}

.spec-table .spec-row {
  border-bottom: 1px solid #c4c4c4 !important;
  padding: 12px 0;
}

.spec-label {
  color: var(--color-primary);
  width: 140px;
  flex-shrink: 0;
}

.spec-value {
  color: var(--color-light);
}

/* Section 8: Sanctuary Reviews */
.sanctuary-section {
  border-color: rgba(0, 0, 0, 0.05) !important;
}
.sanctuary-item {
  padding: 15px;
}
.sanctuary-item img {
  border-radius: 4px;
}

.bottom-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--color-white);
  border-top: 1px solid rgba(0, 0, 0, 0.1) !important;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.05);
  z-index: 1000;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

@media (max-width: 768px) {
  .bottom-cta-bar {
    position: static;
    box-shadow: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
  }
}

.bottom-cta-bar .col-md-6:first-child {
  border-right: 1px solid rgba(0, 0, 0, 0.1);
}
@media (max-width: 767px) {
  .bottom-cta-bar .col-md-6:first-child {
    border-right: none !important;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
}

/* Add padding to page bottom to prevent footer cover - Desktop only */
.stratton-axiom-page {
  padding-bottom: 110px;
}
@media (max-width: 768px) {
  .stratton-axiom-page {
    padding-bottom: 0;
  }
}

/* Responsiveness */
@media (max-width: 991px) {
  .product-title {
    font-size: 38px;
  }
  .philosophy-title {
    font-size: 32px;
  }
  .callout-title {
    font-size: 28px;
  }
  .section-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    height: auto;
  }
  .product-showcase {
    padding: 20px 0;
  }
  .product-title {
    font-size: 28px;
  }
  .philosophy-title {
    font-size: 26px;
  }
  .callout-title {
    font-size: 24px;
  }
  .philosophy-section .py-5 {
    padding-top: 40px !important;
    padding-bottom: 40px !important;
  }
  .lifestyle-section {
    padding: 40px 0;
  }
  .section-title {
    font-size: 28px;
  }
}


.price-strike-container {
  position: relative;
  display: inline-block;
}

.angled-strike {
  position: absolute;
  left: 0;
  top: 45%;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: rotate(-8deg);
  pointer-events: none;
}

.angled-strike-2 {
  top: 52% !important;
}

.bottom-cta-bar .angled-strike {
  height: 1.5px;
}



.stratton-gallery-wrap{
  display: flex;
  gap: 24px;
  align-items: stretch;
}


.stratton-thumbs-outside{
  width: 100px;
  flex: 0 0 100px;
}

#stratton-thumbnail-carousel{
  width: 100%;
  height: 440px;
}

#stratton-thumbnail-carousel .splide__slide{
  height: 65px;
}

#stratton-image-carousel .splide__slide img,
#stratton-thumbnail-carousel .splide__slide img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


.stratton-gallery-wrap,
.stratton-thumbs-outside,
.product-image-frame{
  min-width: 0;
}


@media (max-width: 768px){
  .stratton-gallery-wrap{
    flex-direction: column-reverse;
    gap: 12px;
  }
  .stratton-thumbs-outside{
    width: 100%;
    flex: 0 0 auto;
  }
  #stratton-thumbnail-carousel{
    height: 80px;
  }
}

.swatch-item.active .swatch-circle{
  border-color: var(--color-primary);
  box-shadow:
    0 0 0 2px rgba(45, 68, 140, 0.22),
    0 6px 16px rgba(0, 0, 0, 0.12); 
}

.swatch-item.active .swatch-name{
  color: var(--color-primary);
}

