body {
    margin: 0;
    background: whitesmoke;
    color: white;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
  }
  
  header {
    width: 100%;
  }
/* Header Section */
 nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 20px 0;
    font-size: 14px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
    background-color: black;
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav .logo {
    height: 40px;
  }
.hero-banner {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  font-family: 'Oswald', sans-serif;
}

.hero-text h1 {
  font-size: 4rem;
  margin: 0;
}

.hero-text p {
  font-size: 1.5rem;
}
.spec-intro {
  padding: 4rem 2rem;
  background-color: #fff;
  font-family: 'Oswald', sans-serif;
  text-align: center;
}

.spec-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #533636;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 1rem 2rem;
  margin-bottom: 3rem;
  gap: 2rem;
}

.spec-item {
  min-width: 150px;
}

.spec-item h4 {
  font-size: 0.85rem;
  color: #ee8282;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.spec-item p {
  font-size: 1.25rem;
  font-weight: bold;
  margin: 0;
}

.intro-text h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #be1b1b;
}

.intro-text h3 {
    font-size: 20px;
    font-weight: 1000;
    color: #555;
    margin-bottom: 1rem;
}
.intro-text p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 25px;
  line-height: 1.6;
    font-family: 'Replica-Light', system-ui;
  color: #000;
}
.color-selector {
  text-align: center;
  padding: 2rem;
}
.color-selector h2 {
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #111;
  letter-spacing: 1px;
}

.color-selector .highlight {
  color: #111;
  font-weight: bold;
}
.main-bike-image img {
  width: 100%;
  max-width: 600px;
  transition: opacity 0.5s ease-in-out;
}

.color-thumbnails img {
  width: 80px;
  margin: 10px;
  cursor: pointer;
  border-radius: 10px;
  transition: transform 0.3s;
}

.color-thumbnails img:hover {
  transform: scale(1.1);
}
/*VIDEO*/
.video-section {
  text-align: center;
  padding: 60px 20px;
  background-color: #fff;
  color: #000;
}

.video-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.video-description {
  font-size: 25px;
  margin-top: 20px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Replica-Light', system-ui;
  line-height: 1.5;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}




table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    
}
.prices{
    font-size: 15px;
    font-weight: lighter;
    display: inline-block;
}
th, td {
    padding: 10px;
    width: 50%;
    text-align: left;
    border: 1px solid white;
}
th {
    background-color: black;
    color: white;
}


.specs-container {
    display: flex; /* Enables side-by-side layout */
    align-items: flex-start; /* Aligns sidebar & specs at the top */
    gap: 30px; /* Adds space between sidebar & specs */
    max-width: 1200px;
    margin: 40px auto;
}

/* Sidebar */
.sidebar {
    position: block; 
    margin-top: 0.80%;
    margin-left: 10px;
    top: 100px; /* Adjust based on header height */
    width: 250px; /* Adjust width as needed */
    background: black; /* Sidebar background */
    padding: 15px; 
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar button {

    background: white;
    height: 45px;
    color: black;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold ;
}

.sidebar button:hover {
    background-color: maroon;
    color: white;
}

/* Specifications Section */
.specs-section {
    flex: 1; /* Takes the remaining space */
    text-align: center;
}

.spec-section {
    border-top: 5px solid #000;
    display: none;
    background: linear-gradient(to left, gray 10%, white 200%);
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0;
}

.spec-section h3 {
    color: white;
}

.spec-section p {
    color: rgb(0, 0, 0);
    font-size: 1rem;
}

.specs{
    font-style: italic;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 1.5cm;
    margin-top: 3.5cm;
    text-align: center;
    text-decoration: underline  ;

}
.specs-section {
    flex: 1; /* Takes the remaining space */
    text-align: center;
}

.spec-section h3 {
    color: white;
}

.spec-section p {
    color: rgb(0, 0, 0);
    font-size: 1rem;
}

.specs{
    font-style: italic;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 1.5cm;
    margin-top: 3.5cm;
    text-align: center;
    text-decoration: underline  ;

}
.specs-section {
    flex: 1; /* Takes the remaining space */
    text-align: center;
}

.spec-section {
    border-top: 5px solid #000;
    display: none;
    background: linear-gradient(to left, gray 10%, white 200%);
    padding: 20px;
    border-radius: 10px;
    margin: 10px 0;
}

.spec-section h3 {
    color: white;
}

.spec-section p {
    color: rgb(0, 0, 0);
    font-size: 1rem;
}

.specs{
    font-style: italic;
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 1.5cm;
    margin-top: 0%;
    text-align: center;
    text-decoration: underline  ;

}


@import url('https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@1,700&display=swap');

.back-container {
    position: fixed; /* Keeps the button fixed even when scrolling */
    top: 50%;
    left: 30px; /* Back button stays on the left */
    transform: translateY(-50%);
    z-index: 1000;
}

/* From Uiverse.io by xopc333 */ 
.back-button {
    display: block;
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0;
    overflow: hidden;
    outline: hidden;
    background-color: transparent;
    cursor: pointer;
    animation: pop-glow 2s infinite alternate ease-in-out;
}
  
  .back-button:before,
  .back-button:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 7px;
  }
  
  .back-button:before {
    border: 4px solid #be1b1b;
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
      transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
  }
  
  .back-button:after {
    border: 4px solid #000;
    transform: scale(1.3);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
  }
  
  .back-button:hover:before,
  .back-button:focus:before {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .back-button:hover:after,
  .back-button:focus:after {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
      transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
  }
  
  .button-box {
    display: flex;
    position: absolute;
    top: 9;
    left: 4;
  }
  
  .button-elem {
    display: block;
    width: 20px;
    height: 20px;
    margin: 17px 18px 0 18px;
    transform: rotate(180deg);
    fill: #ff1a1a;
  }
  
  .button:hover .button-box,
  .button:focus .button-box {
    transition: 0.4s;
    transform: translateX(-56px);
  }

/* Popping animation */
@keyframes pop-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(transparent);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(transparent);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(transparent);
    }
}
.footer {
    background: black;
    color: #dbe7ff;
    padding: 80px 5% 30px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: auto;
  }
  
  .footer h3 {
    font-size: 1.2rem;
    color: #ffffff;
    margin-bottom: 15px;
  }
  
  .footer-brand img {
    max-width: 120px;
    margin-bottom: 20px;
  }
  
  .footer-brand p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #ffffff;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 8px 0;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-contact li {
    font-size: 0.95rem;
    margin-bottom: 10px;
  }
  
  .footer-contact i {
    margin-right: 8px;
    color: #ffffff;
  }
  
  .footer-social .social-icons a {
    font-size: 1.3rem;
    margin-right: 14px;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer-social .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
  }
  
  .footer-bottom {
    border-top: 1px solid #ffffff;
    text-align: center;
    margin-top: 50px;
    padding-top: 20px;
    font-size: 0.85rem;
    color: #ffffff;
  }
    #viewer-container {
    width: 500px;
    height: 500px;
    overflow: hidden;
    cursor: grab;
    user-select: none;
  }

  #object-viewer {
    width: 100%;
    height: auto;
    display: block;
  }
    /***************************************************************************Mobile Responsive******************************************************************************/

  @media (max-width: 1024px){
}
@media (max-width: 540px) and (orientation: portrait) {
    body {
    margin: 0;
    background: whitesmoke;
    color: white;
    font-family: 'Arial', sans-serif;
    overflow-x: hidden;
  }
  
  header {
    width: 100%;
  }
/* Header Section */
 nav {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 10px 0;
    font-size: 7px;
    text-transform: uppercase;
  }
  
  #main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: background-color 0.3s ease;
    background-color: transparent;
    z-index: 1000;
  }
  
  #main-nav.scrolled {
    background-color: black;
  }
  
  #main-nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
  }
  
  #main-nav .logo {
    height: 20px;
  }
.hero-banner {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.hero-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-text {
  position: absolute;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  color: white;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.7);
  font-family: 'Oswald', sans-serif;
}

.hero-text h1 {
  font-size: 2rem;
  margin: 0;
}

.hero-text p {
  font-size: .7rem;
}
.spec-intro {
  padding: 2rem 1rem;
  background-color: #fff;
  font-family: 'Oswald', sans-serif;
  text-align: center;
}

.spec-box {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: #533636;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: .5rem 1rem;
  margin-bottom: 1.5rem;
  gap: 1rem;
}

.spec-item {
  min-width: 75px;
}

.spec-item h4 {
  font-size: .42rem;
  color: #ee8282;
  margin-bottom: 0.12rem;
  text-transform: uppercase;
}

.spec-item p {
  font-size: 0.625rem;
  font-weight: bold;
  margin: 0;
}

.intro-text h2 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: .5rem;
  color: #be1b1b;
}

.intro-text h3 {
    font-size: 10px;
    font-weight: 1000;
    color: #555;
    margin-bottom: .5rem;
}
.intro-text p {
  max-width: 400px;
  margin: 0 auto;
  font-size: 12.5px;
  line-height: 1.6;
    font-family: 'Replica-Light', system-ui;
  color: #000;
}
.color-selector {
  text-align: center;
  padding: 1rem;
}
.color-selector h2 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  color: #111;
  letter-spacing: .5px;
}

.color-selector .highlight {
  color: #111;
  font-weight: bold;
}
.main-bike-image img {
  width: 100%;
  max-width: 300px;
  transition: opacity 0.5s ease-in-out;
}

.color-thumbnails img {
  width: 40px;
  margin: 5px;
  cursor: pointer;
  border-radius: 5px;
  transition: transform 0.3s;
}

.color-thumbnails img:hover {
  transform: scale(1.1);
}
/*VIDEO*/
.video-section {
  text-align: center;
  padding: 30px 10px;
  background-color: #fff;
  color: #000;
}

.video-wrapper {
  max-width: 400px;
  margin: 0 auto;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  display: block;
}

.video-description {
  font-size: 12.5px;
  margin-top: 10px;
  max-width: 450px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Replica-Light', system-ui;
  line-height: 1.5;
}
.fade-in-up {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.show {
  opacity: 1;
  transform: translateY(0);
}




table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 5px;
    
}
.prices{
    font-size: 7.5px;
    font-weight: lighter;
    display: inline-block;
}
th, td {
    padding: 5px;
    width: 50%;
    text-align: left;
    border: .5px solid white;
}
th {
    background-color: rgb(100, 96, 96);
    color: white;
}


.specs-container {
    display: flex; /* Enables side-by-side layout */
    align-items: flex-start; /* Aligns sidebar & specs at the top */
    gap: 15px; /* Adds space between sidebar & specs */
    max-width: 600px;
    margin: 20px auto;
}

/* Sidebar */
.sidebar {
    position: block; 
    margin-top: 0.80%;
    margin-left: 5px;
    top: 50px; /* Adjust based on header height */
    width: 125px; /* Adjust width as needed */
    background: black; /* Sidebar background */
    padding: 7.5px; 
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.sidebar button {

    background: white;
    height: 22.5px;
    color: black;
    padding: 5px;
    border: none;
    border-radius: 2.5px;
    cursor: pointer;
    font-weight: bold ;
    font-size: 9px;
}

.sidebar button:hover {
    background-color: maroon;
    color: white;
}

/* Specifications Section */
.specs-section {
    flex: 1; /* Takes the remaining space */
    text-align: center;
}

.spec-section {
    border-top: 2.5px solid #000;
    display: none;
    background: linear-gradient(to left, gray 10%, white 200%);
    padding: 10px;
    border-radius: 5px;
    margin: 5px 0;
}

.spec-section h3 {
    color: white;
}

.spec-section p {
    color: rgb(0, 0, 0);
    font-size: .5rem;
}

.specs{
    font-style: italic;
    font-size: 17.5px;
    font-weight: bold;
    margin-bottom: 1.5cm;
    margin-top: 3.5cm;
    text-align: center;
    text-decoration: underline  ;

}
.specs-section {
    flex: 1; /* Takes the remaining space */
    text-align: center;
}

.spec-section h3 {
    color: white;
}

.spec-section p {
    color: rgb(0, 0, 0);
    font-size: .5rem;
}

.specs{
    font-style: italic;
    font-size: 17.5px;
    font-weight: bold;
    margin-bottom: 1.5cm;
    margin-top: 3.5cm;
    text-align: center;
    text-decoration: underline  ;

}
.specs-section {
    flex: 1; /* Takes the remaining space */
    text-align: center;
}

.spec-section {
    border-top: 2.5px solid #000;
    display: none;
    background: linear-gradient(to left, gray 10%, white 200%);
    padding: 10px;
    border-radius: 5px;
    margin: 5px 0;
}

.spec-section h3 {
    color: white;
}

.spec-section p {
    color: rgb(0, 0, 0);
    font-size: .5rem;
}

.specs{
    font-style: italic;
    font-size: 17.5px;
    font-weight: bold;
    margin-bottom: 1.5cm;
    margin-top: 0%;
    text-align: center;
    text-decoration: underline  ;

}


@import url('https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@1,700&display=swap');

.back-container {
    position: fixed; /* Keeps the button fixed even when scrolling */
    top: 50%;
    left: 15px; /* Back button stays on the left */
    transform: translateY(-50%);
    z-index: 1000;
}

/* From Uiverse.io by xopc333 */ 
.back-button {
    display: block;
    position: relative;
    width: 32.5px;
    height: 32.5px;
    margin: 0;
    overflow: hidden;
    outline: hidden;
    background-color: transparent;
    cursor: pointer;
    animation: pop-glow 2s infinite alternate ease-in-out;
}
  
  .back-button:before,
  .back-button:after {
    content: "";
    position: absolute;
    border-radius: 50%;
    inset: 3.5px;
  }
  
  .back-button:before {
    border: 2px solid #be1b1b;
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
      transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
  }
  
  .back-button:after {
    border: 2px solid #000;
    transform: scale(1.3);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0;
  }
  
  .back-button:hover:before,
  .back-button:focus:before {
    opacity: 0;
    transform: scale(0.7);
    transition: opacity 0.4s cubic-bezier(0.165, 0.84, 0.44, 1),
      transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  }
  
  .back-button:hover:after,
  .back-button:focus:after {
    opacity: 1;
    transform: scale(1);
    transition: opacity 0.4s cubic-bezier(0.77, 0, 0.175, 1) 80ms,
      transform 0.5s cubic-bezier(0.455, 0.03, 0.515, 0.955) 80ms;
  }
  
  .button-box {
    display: flex;
    position: absolute;
    top: 7px;
    left: 3px;
  }
  
  .button-elem {
    display: block;
    width: 10px;
    height: 10px;
    margin: 8.6px 9px 0 9px;
    transform: rotate(180deg);
    fill: #ff1a1a;
  }
  
  .button:hover .button-box,
  .button:focus .button-box {
    transition: 0.4s;
    transform: translateX(-56px);
  }
/* Popping animation */
@keyframes pop-glow {
    0% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(transparent);
    }
    50% {
        transform: scale(1.2);
        box-shadow: 0 0 20px rgba(transparent);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 10px rgba(transparent);
    }
}
.footer {
    background: black;
    color: #dbe7ff;
    padding: 40px 5% 15px;
    font-family: 'Montserrat', sans-serif;
  }
  
  .footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    max-width: 600px;
    margin: auto;
  }
  
  .footer h3 {
    font-size: .6rem;
    color: #ffffff;
    margin-bottom: 7.5px;
  }
  
  .footer-brand img {
    max-width: 60px;
    margin-bottom: 10px;
  }
  
  .footer-brand p {
    font-size: .46rem;
    line-height: 1.5;
    color: #ffffff;
  }
  
  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
  }
  
  .footer-links a {
    color: #ffffff;
    text-decoration: none;
    display: block;
    margin: 4px 0;
    transition: color 0.3s;
  }
  
  .footer-links a:hover {
    color: #ffffff;
  }
  
  .footer-contact li {
    font-size: .46rem;
    margin-bottom: 5px;
  }
  
  .footer-contact i {
    margin-right: 4px;
    color: #ffffff;
  }
  
  .footer-social .social-icons a {
    font-size: .6rem;
    margin-right: 7px;
    color: #ffffff;
    transition: color 0.3s, transform 0.3s;
  }
  
  .footer-social .social-icons a:hover {
    color: #ffffff;
    transform: scale(1.1);
  }
  
  .footer-bottom {
    border-top: .5px solid #ffffff;
    text-align: center;
    margin-top: 25px;
    padding-top: 10px;
    font-size: .42rem;
    color: #ffffff;
  }
    
}
.footer-links{
    display: none;
}
@media screen and (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social .social-icons a {
    font-size: 1rem;
  }
}

