/* ===== CSS Variables ===== */
:root {
  --charcoal-black: #0e0f11;
  --graphite-grey: #1a1c1f;
  --slate-grey: #2b2e31;
  --soft-silver: #d0d1d2;
  --pure-white: #ffffff;
  --deep-blue: #0a3a55;
 --orange-magma: #d9692b;
  --red-magma: #8b1e22;

  --font-family: "Montserrat", sans-serif;

  --header-height: 80px;
  --section-padding: 120px 0;
  --section-padding-mobile: 60px;
}

/* ===== Reset & Base ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  background-color: var(--charcoal-black);
  color: var(--soft-silver);
  line-height: 1.6;
  overflow-x: hidden;
}

.section-padding {
  padding: var(--section-padding);
}

@media(max-width:600px){
    .section-padding {
  padding: 80px 0;
}

}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

.container {
  max-width: 1372px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Typography ===== */
.section-tag {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #136b9d;
  margin-bottom: 1rem;
}

.section-title {
  font-size: 50px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--pure-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

@media (max-width:600px){

.section-title {
  font-size: 30px;
  letter-spacing: 0.05px;

}

}

.section-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--soft-silver);
  max-width: 600px;
}

.section-text-secondary {
  font-size: 14px;
  font-weight: 400;
  font-style: oblique;
  color: #136b9d;
  margin-top: 1.5rem;
}

/* ===== CTA Button ===== */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--deep-blue);
  color: var(--pure-white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background-color: var(--orange-magma);
  transform: translateY(-2px);
}

/* ===== Header ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background-color: rgba(14, 15, 17, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-bottom: 1px solid rgba(208, 209, 210, 0.08);


.header.scrolled {
  background-color: rgba(14, 15, 17, 0.98);
  border-bottom-color: rgba(208, 209, 210, 0.15);
}

.header-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}



.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;  
  width: auto;
  object-fit: contain;
}



.nav {
  display: flex;
  gap: 45px;
  align-items: center;
}

/* Nav links with animated underline effect on hover */
.nav-link {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--soft-silver);
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #155da0,
    transparent
  );
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-53%);
}

.nav-link:hover {
  color: var(--pure-white);
}

.nav-link:hover::after {
  width: 100%;
}

/* Added mega menu styles for Collection dropdown */
.nav-item-dropdown {
  position: relative;
}

.nav-item-dropdown > .nav-link {
  position: relative;
  padding-bottom: 8px;
}

.mega-menu {
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  min-width: 420px;
  background: linear-gradient(
    180deg,
    rgba(26, 28, 31, 0.98) 0%,
    rgba(14, 15, 17, 0.98) 100%
  );
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(208, 209, 210, 0.1);
  border-radius: 4px;
  padding: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6),
    0 0 0 1px rgba(217, 105, 43, 0.05);
  z-index: 1001;
}

.mega-menu::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 0;
  right: 0;
  height: 20px;
}

.mega-menu::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px;
  height: 12px;
  background: rgba(26, 28, 31, 0.98);
  border-left: 1px solid rgba(208, 209, 210, 0.1);
  border-top: 1px solid rgba(208, 209, 210, 0.1);
}

.nav-item-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-menu-inner {
  padding: 28px 32px;
}

.mega-menu-column {
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(208, 209, 210, 0.08);
}

.mega-menu-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange-magma);
  margin-bottom: 6px;
}

.mega-menu-desc {
  font-size: 0.75rem;
  font-weight: 300;
  color: var(--soft-silver);
  opacity: 0.7;
}

.mega-menu-variants {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mega-menu-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  background: rgba(43, 46, 49, 0.3);
  border: 1px solid transparent;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.mega-menu-item:hover {
  background: rgba(43, 46, 49, 0.6);
  border-color: rgba(217, 105, 43, 0.3);
  transform: translateY(-2px);
}

.mega-menu-swatch {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.mega-menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.mega-menu-item-name {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--pure-white);
  letter-spacing: 0.02em;
}

.mega-menu-item-price {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--soft-silver);
  opacity: 0.7;
}

.mega-menu-item-tag {
  font-size: 0.6rem;
  font-weight: 500;
  color: var(--red-magma);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.mega-menu-cta {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(208, 209, 210, 0.08);
  text-align: center;
}

.mega-menu-link {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft-silver);
  transition: color 0.3s ease;
}

.mega-menu-link:hover {
  color: var(--orange-magma);
}

/* Hide mega menu on mobile */
@media (max-width: 768px) {
  .mega-menu {
    display: none;
  }
}

/* Premium CTA button with refined gradient styling */
.header-cta {
  padding: 12px 28px;
  font-size: 14px;
  background: #136b9d;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.header-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #d9692b 0%, #d9692b  100%);
  border: 1px solid transparent;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.header-cta span {
  position: relative;
  z-index: 1;
}

.header-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(217, 105, 43, 0.35);
}

.header-cta:hover::before {
  opacity: 1;
}


}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}

.mobile-menu-btn img{
 
  transition: all 0.3s ease;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background-color: var(--graphite-grey);
  padding: 30px 40px;
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: all 0.3s ease;
}

.mobile-nav.active {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft-silver);
}

.mobile-cta {
  margin-top: 20px;
  width: 100%;
}



/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  gap: 80px;
  align-items: center;
  position: relative;
  justify-content: space-between;
  margin: 0;
}

.hero-content {
  flex: 1;
  z-index: 2;
}

.hero-tag {
  display: block;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #136b9d;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 300;
  letter-spacing: 0.15em;
  color: var(--pure-white);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  line-height: 1.8;
  color: var(--soft-silver);
  margin-bottom: 3rem;
  max-width: 480px;
}

.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image img {
  max-width: 100%;
  height: 300px;
  object-fit:contain;
  filter: drop-shadow(0 40px 80px rgba(51, 50, 50, 0.5));
}

/* default glow */
.hero-image::before {
  content: "";
  position: absolute;
  inset: -20px;
  border-radius: 32px;
  background: radial-gradient(
   
    circle,
    rgba(14, 16, 39, 0.45),
    rgba(44, 43, 43, 0.1),
    transparent
  );
  filter: blur(45px);
  transition: all 0.6s ease;
  z-index: 0;
}

/* hover glow color change */
.hero-image:hover::before {
  background: radial-gradient(
    circle,
    rgba(0, 102, 255, 0.35),
    rgba(0, 102, 255, 0.08),
    transparent
  );
  transform: scale(1.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: var(--soft-silver);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.7;
}

@media (max-width:1000px){
    .scroll-indicator {
    bottom: -15%;

}
}

@media (max-width:600px){
    .scroll-indicator {
    bottom: 0%;

}
}



/* mouse icon */
.mouse-icon img {
  width: 30px;
  height: auto;
  opacity: 0.8;
  animation: mouseFloat 2s ease-in-out infinite;
}

/* animated line */
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--soft-silver), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* animations */
@keyframes scrollPulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scaleY(1);
  }
  50% {
    opacity: 1;
    transform: scaleY(1.2);
  }
}

@keyframes mouseFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* ===== Story Blocks ===== */
.story-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.story-block-alt {
  background-color: var(--graphite-grey);
}

.story-block-alt .story-content {
  order: 2;
}

.story-block-alt .story-image {
  order: 1;
}

.story-content {
  padding: 40px 0;
}

.story-image {
  position: relative;
  overflow: hidden;
}

.story-image img {
  width: 100%;
  height: 100%;
 max-height: 650px;
  object-fit: cover;
  opacity: 0.9;
}

/* ===== Variant Ribbon ===== */
.variant-ribbon {
  background-color: var(--graphite-grey);
  padding: 80px 40px;
  text-align: center;
}

.variant-ribbon-header {
  margin-bottom: 50px;
}

.variant-ribbon-title {
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 10px;
}

.variant-ribbon-subtitle {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--soft-silver);
  opacity: 0.7;
}

.variant-selector {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 0 auto;
}

.variant-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 20px 30px;
  background-color: var(--slate-grey);
  border: 1px solid transparent;
  transition: all 0.3s ease;
  min-width: 180px;
}

.variant-btn:hover {
  border-color: var(--soft-silver);
}

.variant-btn.active {
  border-color: var(--orange-magma);
  background-color: rgba(217, 105, 43, 0.1);
}

.variant-color {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid var(--soft-silver);
}

.variant-name {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pure-white);
}

.variant-badge {
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--red-magma);
  background-color: rgba(139, 30, 34, 0.2);
  padding: 4px 10px;
  border-radius: 2px;
}

/* ===== Product Section ===== */
.product-section {
  .variant-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }

  .variant-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--pure-white);
    margin-bottom: 1.5rem;
  }

  .variant-description {
    font-size: 0.9375rem;
    font-weight: 300;
    line-height: 1.9;
    color: var(--soft-silver);
  }

  .product-layout {
    display: grid;
    grid-template-columns: 80px 1fr 400px;
    gap: 40px;
    align-items: start;
  }

  @media (max-width: 900px) {
    .product-layout {
      grid-template-columns: auto !important;
    }
  }

  /* Thumbnail Strip */
  .thumbnail-strip {
    display: flex;
    flex-wrap: wrap !important;
    gap: 10px;
  }

  @media (max-width: 800px) {
    .thumbnail-strip {
      display: flex !important;
      flex-wrap: wrap !important;
      gap: 10px;
    }
  }

  .thumbnail {
    width: 70px;
    height: 70px;
    padding: 4px;
    border: 1px solid var(--slate-grey);
    background-color: var(--graphite-grey);
    transition: all 0.3s ease;
    overflow: hidden;
  }

  .thumbnail:hover {
    border-color: var(--soft-silver);
  }

  .thumbnail.active {
    border-color: var(--orange-magma);
  }

  .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Main Image */
  .main-image-container {
    position: relative;
    background-color: var(--graphite-grey);
    padding: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 600px;
  }

  .main-image {
    max-width: 100%;
    max-height: 550px;
    object-fit: contain;
    transition: opacity 0.3s ease;
  }

  /* Product Info Panel */
  .product-info {
    position: sticky;
    top: calc(var(--header-height) + 40px);
  }

  .product-info-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--slate-grey);
  }

  .product-price {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--pure-white);
    letter-spacing: 0.05em;
  }

  .product-ref {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: var(--soft-silver);
    opacity: 0.6;
    margin-bottom: 10px;
  }

  .strap-note {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--slate-grey);
  }

  .strap-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--soft-silver);
  }

  .strap-value {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--pure-white);
  }

  .product-cta {
    width: 100%;
    margin-bottom: 30px;
  }

  /* ===== Accordions ===== */
  .accordions {
    display: flex;
    flex-direction: column;
  }

  .accordion {
    border-top: 1px solid var(--slate-grey);
  }

  .accordion:last-child {
    border-bottom: 1px solid var(--slate-grey);
  }

  .accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    text-align: left;
    transition: color 0.3s ease;
  }

  .accordion-header:hover {
    color: var(--pure-white);
  }

  .accordion-title {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--soft-silver);
  }

  .accordion-icon {
    width: 12px;
    height: 12px;
    position: relative;
  }

  .accordion-icon::before,
  .accordion-icon::after {
    content: "";
    position: absolute;
    background-color: var(--soft-silver);
    transition: all 0.3s ease;
  }

  .accordion-icon::before {
    width: 12px;
    height: 1px;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .accordion-icon::after {
    width: 1px;
    height: 12px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
  }

  .accordion.active .accordion-icon::after {
    transform: translateX(-50%) rotate(90deg);
    opacity: 0;
  }

  .accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .accordion.active .accordion-content {
    max-height: 2000px;
  }

  .accordion-content p {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--soft-silver);
    margin-bottom: 1rem;
    padding-right: 20px;
  }

  .accordion-content p:last-child {
    margin-bottom: 20px;
  }

  .accordion-accroche {
    font-weight: 400 !important;
    color: var(--pure-white) !important;
  }

  .accordion-expanded {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--slate-grey);
  }

  .accordion-highlight {
    color: var(--orange-magma) !important;
    font-style: italic;
  }

  /* Specifications Styles */
  .specs-overview {
    margin-bottom: 20px;
  }

  .specs-image {
    margin-bottom: 30px;
    background-color: var(--slate-grey);
    padding: 20px;
  }

  .specs-image img {
    width: 100%;
    opacity: 0.8;
  }

  .specs-section {
    margin-bottom: 25px;
  }

  .specs-category {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange-magma);
    margin-bottom: 12px;
  }

  .specs-list {
    list-style: none;
    padding-left: 0;
  }

  .specs-list li {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--soft-silver);
    padding: 6px 0;
    padding-left: 15px;
    position: relative;
  }

  .specs-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background-color: var(--slate-grey);
    border-radius: 50%;
  }

  .specs-note {
    font-size: 0.75rem;
    font-style: italic;
    color: var(--soft-silver);
    opacity: 0.7;
    margin-top: 10px;
  }

  .specs-variant {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--slate-grey);
  }

  .specs-variant-content {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 20px;
    align-items: start;
  }

  .specs-variant-image {
    background-color: var(--slate-grey);
    padding: 10px;
  }

  /* Story Accordion */
  .story-headline {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--orange-magma);
    margin-bottom: 1.5rem;
  }

  .story-emphasis {
    color: var(--pure-white) !important;
    font-weight: 400 !important;
  }

  .story-tagline {
    font-style: italic;
    color: var(--pure-white) !important;
    text-align: center;
    margin-top: 1.5rem;
  }

  .story-signature {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--slate-grey);
    color: var(--pure-white) !important;
    font-weight: 500 !important;
  }
}



/* ================= ENGINEERED FOR THE OCEAN ================= */

.engineered-section {
  background: radial-gradient(
    60% 60% at 70% 40%,
    rgba(20, 90, 130, 0.12),
    transparent 70%
  );
}

.engineered-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  gap: 80px;
}

.engineered-content {
  max-width: 520px;
}

.engineered-specs {
  margin-top: 40px;
  display: flex;
  gap: 40px;
}

.spec-item {
  display: flex;
  flex-direction: column;
}

.spec-value {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent-blue);
}

.spec-label {
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.engineered-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.45);
}

/* Responsive */
@media (max-width: 900px) {
  .engineered-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .engineered-content {
    max-width: 100%;
  }

  .engineered-specs {
    flex-direction: column;
    gap: 24px;
  }
}


/* get-early-access-section  */

.get-early-access-section{

  .get-early-access-form{
      display: flex;
  justify-content: center
  }

  .modal-submit {
  width: fit-content;
  display: flex;
  justify-content: center
}

.get-early-access-input {
  width: 100%;
  max-width: 400px;
  padding: 15px 20px;
  background-color: var(--slate-grey);
  border: 1px solid transparent;
  color: var(--pure-white);
  font-family: var(--font-family);
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}


.get-early-access-input:focus{
   outline: none;
}

.cta-form-submit:hover {
  background-color: var(--orange-magma);
}

.cta-form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  background-color: var(--deep-blue);
  color: var(--pure-white);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.get-early-access-content {
  text-align: center;
}

.get-early-access-title {
  font-size: 32px;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 10px;
}

.get-early-access-text {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--soft-silver);
  margin-bottom: 2rem;
}

.get-early-access-note {
  font-size: 16px;
  font-weight: 400;
  color: var(--soft-silver);
  opacity: 0.5;
  margin-top: 10px;
}

}


/* ===== Footer ===== */
.footer {
  background-color: var(--graphite-grey);
  padding: 80px 40px 40px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 60px;
  align-items: center;
  margin-bottom: 60px;
}

.footer-logo {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: var(--pure-white);
  text-transform: uppercase;
}

.footer-tagline {
  font-size: 0.8rem;
  font-weight: 300;
  font-style: italic;
  color: var(--soft-silver);
  margin-top: 10px;
  opacity: 0.7;
}

/* Updated footer links with animated underline effect matching header nav */
.footer-links {
  display: flex;
  gap: 40px;
}

.footer-links a {
  position: relative;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft-silver);
  padding-bottom: 4px;
  transition: color 0.3s ease;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 60px;  
  width: auto;
  object-fit: contain;
}


.footer-links a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    #155da0,
    transparent
  );
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
}

.footer-links a:hover {
  color: var(--pure-white);
}

.footer-links a:hover::after {
  width: 100%;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--slate-grey);
  color: var(--soft-silver);
  transition: all 0.3s ease;
}

.social-link:hover {
  border-color: var(--orange-magma);
  color: var(--orange-magma);
}

.footer-bottom {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--slate-grey);
}

.footer-bottom p {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--soft-silver);
  opacity: 0.5;
}

/* ===== Mobile Sticky CTA ===== */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px 20px;
  background-color: var(--charcoal-black);
  border-top: 1px solid var(--slate-grey);
  z-index: 998;
}

.mobile-sticky-btn {
  width: 100%;
}

/* ===== Countdown Bar (Hidden) ===== */
.countdown-bar {
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  background-color: var(--deep-blue);
  padding: 12px 40px;
  z-index: 999;
}

.countdown-bar.hidden {
  display: none;
}

.countdown-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.countdown-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pure-white);
}

.countdown-timer {
  display: flex;
  gap: 20px;
}

.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.countdown-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--pure-white);
  font-variant-numeric: tabular-nums;
}

.countdown-text {
  font-size: 0.6rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--soft-silver);
  opacity: 0.8;
}

/* ===== Modal ===== */
.modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(14, 15, 17, 0.95);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background-color: var(--graphite-grey);
  max-width: 480px;
  width: 100%;
  padding: 50px 40px;
  position: relative;
  border: 1px solid var(--slate-grey);
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.5rem;
  color: var(--soft-silver);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.modal-close:hover {
  color: var(--pure-white);
}

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

.modal-title {
  font-size: 1.5rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--pure-white);
  margin-bottom: 1rem;
}

.modal-text {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--soft-silver);
  margin-bottom: 2rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.modal-input {
  width: 100%;
  padding: 15px 20px;
  background-color: var(--slate-grey);
  border: 1px solid transparent;
  color: var(--pure-white);
  font-family: var(--font-family);
  font-size: 0.875rem;
  transition: border-color 0.3s ease;
}

.modal-input::placeholder {
  color: var(--soft-silver);
  opacity: 0.5;
}

.modal-input:focus {
  outline: none;
  border-color: var(--pure-white);
}

.modal-submit {
  width: 100%;
}

.modal-note {
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--soft-silver);
  opacity: 0.5;
  margin-top: 1rem;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .product-layout {
    grid-template-columns: 70px 1fr 350px;
    gap: 30px;
  }
}

@media (max-width: 1024px) {
  .nav {
    display: none !important;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero {
    flex-direction: column;
    text-align: center;
    padding-top: calc(var(--header-height) + 40px);
  }

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-image {
    margin-top: 40px;
  }

  .story-block {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
  }

  .story-block-alt .story-content,
  .story-block-alt .story-image {
    order: unset;
  }

  .story-image img {
    height: 350px;
  }

  .thumbnail {
    flex-shrink: 0;
  }

  .main-image-container {
    order: 1;
    min-height: 400px;
  }

  .product-info {
    position: static;
    order: 3;
  }

  .specs-variant-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    justify-content: center;
    gap: 20px;
  }

  .footer-social {
    justify-self: center;
  }

  .mobile-sticky-cta {
    display: block;
  }
}

@media (max-width: 768px) {
  :root {
    --header-height: 70px;
  }

  .header-container {
    padding: 0 20px;
  }

  .hero {
    padding: calc(var(--header-height) + 20px) 20px 100px;
  }

  .hero-title {
    letter-spacing: 0.1em;
  }

  .variant-ribbon {
    padding: 60px 20px;
  }

  .variant-selector {
    gap: 15px;
  }

  .variant-btn {
    min-width: 140px;
    padding: 15px 20px;
  }

 

  .footer {
    padding: 60px 20px 30px;
  }

  .countdown-content {
    flex-direction: column;
    gap: 15px;
  }
}

@media (max-width: 480px) {
  .variant-selector {
    flex-direction: column;
    align-items: stretch;
  }

  .variant-btn {
    flex-direction: row;
    justify-content: flex-start;
    gap: 15px;
    min-width: unset;
  }

  .variant-color {
    width: 30px;
    height: 30px;
  }

  .modal {
    padding: 40px 25px;
  }
}



.read-more-content {
  display: none;
}

.read-more-btn {
  background: none;
  border: none;
  color: #d9692b;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 12px;
}

.read-more-btn:hover {
  opacity: 0.8;
}