header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px; /* Adjust as needed */
    background-color: white;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
  }
  
  
  /* Left section container */
  .header-left {
    display: flex;
    align-items: center;
  }
  
  /* Right section container */
  .header-right {
    display: flex;
    align-items: center;
  }
  
  /* Remove underline and any default styling from links */
  #logo-link, .cart-button, .shop-button {
    text-decoration: none;
    color: inherit;
  } 

  .cart-button {
    margin-left: -150px; /* Adjust this value as needed */
  }
  
  /* Adjust the size of the cart icon, if using an image */
  .cart-button img {
    width: 80px; /* Change as needed */
    height: auto;
  }
  
  /* For a hover effect on the cart button */
  .cart-button:hover {
    opacity: 0.8;
  }
  
  /* Optional: Style for the shop button image */
  .shop-button img {
    height: 50px;
    width: auto;
    object-fit: contain;
  
  }


/* Adjust space for sticky header */
body {
    padding-top: 100px; /* height of header */
}

/* Ensure full height layout */
html, body {
    margin: 0;
    padding: 0;
    height: auto;
    min-height: 100%;
}
html {
    scroll-behavior: smooth;
}

/* Main content grows to fill the space */
main {
    flex: 1;
}

.logo-text {
    margin: 0;
    font-size: 28px;
    letter-spacing: 3px;
    font-weight: bold;
    color: #333;
    transition: color 0.3s ease, -webkit-text-stroke 0.3s ease;
    font-family: -apple-system, 'Samsung Sharp Sans', sans-serif;
}


/* Position shop button */
.shop-button {
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}


.shop-button img:hover {
    transform: scale(1.1);
}


.slideshow {
    position: relative;
    width: 100%;
    height: 98vh; /* Full screen height */
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: -1; /* Push it behind other content */
  }

.slide {
    display: none;
    height: 100%;
}

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

/* When scrolled */
header.scrolled {
    background-color: black;
}

header.scrolled .logo-text {
    color: white;
    -webkit-text-stroke: 1px black;
}

/* Buy section below slideshow */
.buy-section {
    min-height: 100vh; /* taller than full screen */
    padding: 100px 40px; /* space inside the section */
    background-image: url("untitled folder/Kiefscooperbg.png");
    background-size: 200%;
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.buy-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none; /* so clicks go through */
}

/* Main content stays on top */ 
.buy-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    margin-top: 100px;
}

.model-viewer {
    flex: 1;
    min-width: 600px;
    max-width: 600px;
    aspect-ratio: 1 / 1;
    background-color: transparent;
    border-radius: 12px;
    overflow: hidden;
}

.purchase-box {
    flex: 1;
    max-width: 500px; /* Increase width */
    min-width: 280px;
    background: rgba(255, 255, 255, 0.95);
    padding: 40px; /* Adjust padding */
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    margin-left: auto;
    transition: all 0.3s ease; /* Smooth transition for changes */
    margin-top: -170px;
}

/* Adjust the title font size */
.purchase-box h2 {
    font-size: 28px; /* Larger title */
    margin-bottom: 20px;
    font-family: -apple-system, Quicksilver, sans-serif;
}

/* Adjust quantity dropdown */
.purchase-box select {
    font-size: 18px;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 8px;
    width: 100%;
}

/* Style the add to cart button */
.purchase-box button {
    padding: 14px 20px;
    font-size: 18px;
    background-color: #000;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.purchase-box button:hover {
    background-color: #444; /* Darker background on hover */
}


.price {
    font-size: 20px;
    font-weight: normal;
    color: #222;
    margin-bottom: 20px;
    font-family: -apple-system, Quicksilver, sans-serif;
}

.purchase-box input[type="number"] {
    width: 60px;
    padding: 8px;
    font-size: 16px;
    margin: 10px 0 20px;
}

.purchase-box button {
    padding: 12px 20px;
    font-size: 16px;
    background-color: black;
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.purchase-box button:hover {
    background-color: #444;
}
.site-footer {
    background-color: #000;
    color: #fff;
    padding: 55px 20px;
    text-align: center;
    font-family: -apple-system, Samsung Sharp Sans, sans-serif;
    overflow-x: hidden;
    overflow-y: hidden;
}

.site-footer .footer-content {
    max-width: 800px;
    margin: 0 auto;
}

.site-footer p {
    margin: 10px 0;
    font-size: 16px;
    line-height: 1.6;
}

.footer-note {
    opacity: 0.7;
    font-size: 14px;
}
#model-canvas {
    width: 100%;
    height: 500px;
    display: block;
    margin: 0 auto;
    background-color: #fff; /* Or set to transparent */

}

#logo-link {
    text-decoration: none;
}
.hero-video {
    cursor: pointer;
    transition: opacity 0.3s ease;
  }
  
  .hero-video:hover {
    opacity: 0.85;
  }

  .cart-button {
    position: relative;
    display: inline-block;
  }
  
  .cart-badge {
    position: absolute;
    top: -6px;
    right: -6px;
    background: red;
    color: white;
    font-size: 12px;
    line-height: 1;
    padding: 2px 6px;
    border-radius: 12px;
    display: none;       /* hide when zero */
    pointer-events: none;
  }
/* Hide the mobile video by default */
.mobile-video {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
}
/*  MOBILE AREA  MOBILE AREA  MOBILE AREA  */
@media (max-width: 768px) {
  /* Prevent horizontal scroll */
  html, body {
    overflow-x: hidden;
    margin: 0;
    padding: 0;
  }

  body {
    padding: 0px;
  }
    
/* HEADER */
@media (max-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: fixed;
  }

  /* Shop Button */
  .shop-button {
    text-align: left;
    font-size: 12px;            /* Smaller font size */
    margin-top: 0px;            /* Adjust to remove unnecessary top margin */
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Align to the left */
  }

  .shop-button img {
    width: 20px;                /* Smaller shop image size */
    height: auto;               /* Maintain aspect ratio */
    margin-right: 0px;         /* Space between image and text */
  }

  /* Logo Text */
  .logo-text {
    text-align: center;
    font-size: 22px;
    flex-grow: 1;               /* Takes up remaining space to center the logo */
    margin: 0;
    display: flex;
    justify-content: flex-start;  /* This aligns the content to the left */
    padding-left: 50px;          /* Move the logo text slightly to the right */
  }

  /* Cart Button */
  .cart-button {
    text-align: right;
    display: flex;
    justify-content: flex-end;
    padding: 5px;               /* Optional, adds some space inside the button */
    margin-left: 0px;           /* No left margin */
    margin-right: 30px;         /* Adds margin to the right for positioning */
  }

  .cart-button img {
    width: 40px;                /* Adjust cart icon size */
    height: auto;
  }

  /* Extra styling for alignment */
  .shop-button, .cart-button {
    display: inline-flex;
    align-items: center;
  }
}

  /* HERO VIDEO (mobile-specific video full screen) */
  #hero-video-mobile {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    object-fit: cover;
    z-index: -1;
  }

  #hero-video-desktop {
    display: none !important;
  }

  .slideshow {
    height: 100vh;
    position: relative;
    overflow: hidden;
  }
    .hero-video,
.slideshow {
  height: 100vh;
  max-height: 100vh;
  overflow: hidden;
}


  /* BUY SECTION – no changes */
  .buy-section {
    padding: 60px 20px;
    background-size: cover;
    background-position: center;
  }

  .buy-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 0;
  }

 .model-viewer {
  min-width: 100%;
  max-width: 100%;
}
    .buy-section,
.buy-section p,
.buy-section h1,
.buy-section h2,
.buy-section h3,
.buy-section h4,
.buy-section h5,
.buy-section h6 {
  color: black;  /* Change text color to black */
}

  .purchase-box {
    margin: 0;
    padding: 20px;
    max-width: 100%;
    box-sizing: border-box;
  }
}
/* MOBILE SPECIFIC */
@media (max-width: 768px) {
  #hero-video-mobile {
    display: block;  /* Show the mobile video */
  }
  
  #hero-video-desktop {
    display: none;   /* Hide the desktop video */
  }
}

/* DESKTOP SPECIFIC */
@media (min-width: 769px) {
  #hero-video-mobile {
    display: none;   /* Hide the mobile video */
  }
  
  #hero-video-desktop {
    display: block;  /* Show the desktop video */
  }
}
