/*This element makes sure there is no weird spacing as default */
* {
    margin: 0;
    padding: 0;
  }
  
  
  /* -------------------------------------------------------- */
  /* BASIC STYLING OF THE ENTIRE PAGE, TITLE AND NAVIGATION */
  
  body {
    background-color: #f2edda;
    /* light grey DCDCDC */
  }

  header {
    display: flex;
    flex-direction: row;
    height: 5vw;
    justify-items: auto;
    position: sticky;  /* Make the header sticky */
    top: 0;            /* Stick to the top of the page */
    z-index: 1000;     /* Ensures the header stays on top of other elements */
    background-color: white; /* Optional: background color to prevent transparency issues */
  }
  

  header #link {
    text-decoration: none;
    color: black;
    margin-left: 2%;
    font-size: 20px;
    margin-left: 20px;
    margin-top: 2vw;
    

  }

  #shopify_box {
    height: auto;
    border-style: solid;
    border: black;
  }

  #logo {
    margin-top: 1%;
    width: 200px;
    height: auto;
    margin-left: 5%;
    padding-bottom: 1%;
    margin-right: 50px;
  }

  #banner {
    padding-top: 2px;
    width: 100%;
    max-height: 600px; /* Adjust this to make it shorter or taller */
    object-fit: cover;
    object-position: top; /* Ensures the top of the image is displayed */
    overflow: hidden;
}


#banner_div {
    position: relative; /* Make the container a positioned element */
    width: 100%; /* Optional: Ensures the container is responsive */
    max-height: 600px; /* Matches the image height */
}

#banner {
    width: 100%; /* Ensures the image is responsive */
    max-height: 600px; /* Ensures the image doesn't exceed a certain height */
    object-fit: cover; /* Ensures the image covers the container */
    object-position: top; /* Ensures the top of the image is displayed */
    overflow: hidden;
}

#banner_text {
    position: absolute; /* Position the text absolutely within the container */
    top: 50%; /* Centers the text vertically */
    left: 50%; /* Centers the text horizontally */
    transform: translate(-70%, -50%); /* Adjusts the position to be truly centered */
    color: white; /* Set the text color for better visibility */
    font-size: 5rem; /* Adjust font size as needed */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Optional: Adds shadow to make text stand out */
}

#collection-component-1724037237845 {
    margin-top: 3%;
}

#productCategoryGrid {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 20vw 20vw; /* Creates two equal columns */
  grid-template-rows: 35vh 35vh;    /* Creates two equal rows */
  gap: 50px; /* Optional: Adds space between the grid items */
  padding: 20px; /* Optional: Adds padding inside the grid container */
  /* align-items: center; */
  justify-content: center;
}

#productCategory {
  width: 20vw;
  height: 35vh;
  background-color: white;
  align-items: center;
  min-width: 35vh
}

#productPage {
  display: flex;
  flex-direction: row;
}

#productImages {
  min-width: 50%;
  min-height: 90vh;
}

#productInfo {
  min-width: 50%;
  min-height: 50%;
  padding-left: 20px;
  padding-top: 50px;
}

#productTitle {
  font-family: "Arial", "Helvetica", sans-serif; /* Fallback sans-serif fonts */
  font-weight: 900; /* Extra bold */
  letter-spacing: 0.002em; /* Space between letters */
  font-size: 2.2rem; /* Adjust size as needed */
  text-transform: uppercase; /* Ensures all caps */
  color: #000000; /* Black or dark text */
  line-height: 1.2; /* Tight line spacing */
}

#productPrice {
  font-family:Arial, Helvetica, sans-serif;
  font-size: 30px;
  font-weight: 100;
}

#productImageHolder1 {
  margin-top: 20px;
  min-height: 80vh;
  margin-left: 30px;
  display: flex;
  flex-direction: row;
}

#productImageHolderSide {
  width: 120px;
  height: 600px;
  display: flex;
  flex-direction: column;
}

#productImageMain {
  background-color: purple;
  width: 40vw;
  height: 80vh;
}

#productText {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1.1em;
}

.smallProductImage {
  margin-bottom: 10px;
  width: 120px;
  height: 180px;
}

.smallProductImage:hover {
  opacity: 0.7;
  transform: scale(1.1);

}

.buttonSmallImage {
  width: 120px;
  height: 215px;
  margin-bottom: 2px;
  overflow: hidden;
}

#bigProductImageContainer {
  position: relative; /* Ensure the container is positioned relatively */
  width: 600px;
  height: 600px;
  overflow: hidden; /* Ensure the image doesn't overflow the container */
  cursor: grab; /* Change cursor to grab */
}

#bigProductImage {
  width: 100%; /* Make the image fill the container */
  height: 100%; /* Make the image fill the container */
  object-fit: cover; /* Ensure the image covers the container */
  cursor: zoom-in; /* Change cursor to zoom-in */
  transition: transform 0.3s ease; /* Smooth transition for the zoom effect */
}

#bigProductImageContainer.grabbing {
  cursor: grabbing; /* Change cursor to grabbing while dragging */
}


