/* 
.products-header .container {
    display: flex;
    flex-direction: column;
  }
  
  .products-header-row {
    z-index: 1;
    display: flex;
    justify-content: space-between;
  }
  
  .products-header-row:nth-child(1) {
    justify-content: baseline;
    padding-left: 15%;
  }
  
  .products-header-row:nth-child(2) {
    justify-content: center;
    padding-right: 12%;
  }
  
  .products-header-row:nth-child(3) {
    justify-content: end;
    padding-right: 10%;
  }
  
  .products-header-copy {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 4em 0;
  }
  
  .products-header-copy h3 {
    z-index: 1;
    width: 50%;
    font-size: var(--font-h3);
    text-align: center;
  } */
  
  /* products */



  #product {
    height: 50vh;
    width: 100%;
    margin-bottom: 2rem;
  } 

  .products .container {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 4em;
    /* padding-bottom: 10em; */
    margin: 1rem 2rem;
  }
  
  .product-item {
    width: 100%;
    z-index: 100;
    padding: 2rem;
    border-radius: 25px;
    background: rgba(255, 255, 255, 0.059);
    box-shadow: 0 1px 30px rgba(0, 0, 0, 0.253);
    backdrop-filter: blur(15px);
    border: .5px solid var(--color-white);
  }
  
  #product-item-1,
  #product-item-2,
  #product-item-3,
  #product-item-4 {
    opacity: 0;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    z-index: 100000000000;
    width: 0;
    background-color: var(--color-white);
    overflow-y: hidden;
    overflow-x: hidden;
    transition: 0.001s;
  }
  
  .product-info {
    padding: 2rem;
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: none;
  }
  
  .product-item-index p {
    font-size: var(--font-small);
    color: var(--color-black);
  }
  
  .product-item-name {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em 0;
    gap: 2em;
  }
  
  .product-item-name .ckeckout-arrow {
    position: absolute;
    transform: rotate(-45deg);
  }
  
  .ckeckout-arrow {
    font-size: var(--font-regular);
    transform: rotate(-45deg);
    color: var(--color-black);

    cursor: pointer;
      width: 35px;
      text-align: center;
      padding: 2px;
      background-color: var(--color-red);
      border: none;
      border-radius: 100%;
      color: var(--color-white);
      font-family: "Forum";
  }
  
  .product-item-name p {
    font-size: var(--font-regular);
    color: var(--color-black);
    font-family: 'Forum';
    font-weight: 600;
    transition: all .2s ease-in-out;
  }
  
  .product-item-name p:hover {
    color: var(--color-red);
  }
  
  .product-item-name p:hover~.arrow {
    padding-left: 20px;
  }
  
  .product-item-name p:nth-child(2) {
    font-size: var(--font-small);
    text-transform: none;
  }
  
  .product-item-nav {
    position: relative;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4em;
    /* padding: 0 0 1rem 0;  */
    /* border-bottom: .51px solid rgba(0, 0, 0, 0.556); */
  }
  
  .product-item-desc p {
    font-size: var(--font-tiny);
    color: var(--color-black);
    width: 50%;
  }
  
  #product-item-index p {
    font-size: var(--font-regular);
    color: var(--color-black);
    font-weight: 100;
    width: 100%;
  
  }

  #product-item-name p {
    font-size: var(--font-h3);
    color: var(--color-black);
    font-weight: 100;
    width: 100%;
  }
  
  #product-item-desc p {
    font-size: var(--font-regular);
    color: var(--color-black);
    font-weight: 100;
    width: 100%;
  }
  
  #product-item-desc p:nth-child(3){
    font-size: var(--font-tiny);
    color: var(--color-black);
    font-weight: 100;
    width: 90%;
    line-height: 40px;
  }
  
  .product-item-link {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000000000000;
  }
  
  .product-item-link button {
    transition: all .2s ease-in-out;
    bottom: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.419);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.574);
    backdrop-filter: blur(7px);
    border: .5px solid rgb(255, 255, 255);
    border-radius: 25px;
    padding: 14px;
    display: flex;
    outline: none;
    cursor: pointer;
    z-index: 10000000;
  }
  
  .product-item-link span {
    font-size: 30px;
  }
  
  .product-item-link button:hover {
    background: var(--color-red);
    border: .5px solid var(--color-red);
    scale: 1.06;
    color: var(--color-white);
  }
  
  .product-item-link a {
    font-size: var(--font-regular);
  }
  
  .products-row {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }
  
  #products-row-1 {
    display: flex;
    gap: 10em;
  }
  
  #products-row-1 .products-col:nth-child(1) {
    flex: 4;
    width: 100%;
    display: flex;
    gap: 1em;
  }
  

.size-chart p{
  color: var(--color-black);
  font-size: var(--font-medium);
  font-family: "Forum";
  font-weight: 900;
}

.about-modal {
  overflow: hidden;
}

.about-modal p {
  color: var(--color-black);
  font-size: var(--font-regular);
  font-family: "Urbanist";
  text-transform: none;
  font-weight: 300;
  text-align: center;
}

.about-modal h2 {
  text-align: center;
  color: var(--color-red);
  font-size: var(--font-medium);
  font-family: "Forum";
  font-weight: 900;
  text-transform: uppercase;
}


thead tr {
  background: var(--color-red);
  font-family: "Forum";
  font-size: var(--font-regular);
    color: #fff;
  }

  
  tr td {
    border-top: .5px  solid rgba(0, 0, 0, 0.388);
    padding: 2rem;
  }
  
  td:nth-child(1) {
    border-radius: 25px 0 0 25px;
  }
  
  td:nth-child(5) {
    border-radius: 0 25px 25px 0;
  }

  .red-top {
    border-radius: 25px;
  }


  .modal-window {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.334);
    backdrop-filter: blur(10px);
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000000000000;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
    &:target {
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
    }
    & > div {
      width: 50%;
      /* height: 50%; */
      position: absolute;
      border-radius: 25px;
      padding: 4rem;
      background: rgb(255, 255, 255);
      box-shadow: 0 1px 20px rgba(0, 0, 0, 0.574);
      backdrop-filter: blur(15px);
      border: .001px solid rgba(255, 255, 255, 0.147);
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
    }
  }
  
  .close-btn {
    position: absolute;
    color: var(--color-black);
    top: 1rem;
    right: 1rem;
    padding: 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.067);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.574);
    backdrop-filter: blur(15px);
    border: .001px solid rgba(255, 255, 255, 0.147);
    transition: .1s all ease-in-out;
    &:hover {
      color: var(--color-red);
      scale: 1.1;
    }
  }

  .product-sizes{
    display: flex;
    gap: 20px;
  }

  .sizes {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: .5px solid var(--color-gray);
    border-radius: 100%;
    cursor: pointer;
    opacity: 1;
  }

  /* Default size styles */
/* .sizes {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 5px;
  display: inline-block;
  background-color: lightgray;
  cursor: pointer;
} */

/* Active size (black background) */
.sizes.active {
  background-color: black;
  color: white; /* Make the text visible on a black background */
}
  
  .product-colour{
    display: flex;
    gap: 20px;
  }

  .colour {
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    border: .5px solid var(--color-gray);
    border-radius: 100%;
    cursor: pointer;
    transition: all .1s ease-in-out;
  }

  .colour:hover {
    scale: 1.1;
  }

  .colour:nth-child(1) {
    background-color: #fe6e20;
  }
  
  .colour:nth-child(2) {
    background-color: rgb(74, 120, 220);
  }

  .colour:nth-child(3) {
    background-color: rgb(0, 0, 0);
  }

  button.colour-btn {
    position: relative;
    margin: 50px 0;
    width: 50%;
    padding: 20px;
    background: rgba(255, 255, 255, 0.419);
    box-shadow: 0 1px 20px rgba(0, 0, 0, 0.574);
    backdrop-filter: blur(7px);
    border: .5px solid rgb(255, 255, 255);
    transition: all .2s ease-in-out;
    border-radius: 20px;
    padding: 15px;
    display: flex;
    outline: none;
    cursor: pointer;
    z-index: 10000000000000;
    justify-content: space-between;
  }
/* Full-screen  */

.full-screen {
  transition: all .1s ease-in-out;
  position: absolute;
  top: 0;
  right: 0;
  margin: 2rem 2rem; 
  height: fit-content;
  width: fit-content;
  background: rgba(255, 255, 255, 0.419);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.574);
  backdrop-filter: blur(7px);
  border: .5px solid rgb(255, 255, 255);
  border-radius: 50%;
  padding: 16px;
  display: flex;
  outline: none;
  cursor: pointer;
  z-index: 10;
  transition: all .2s ease-in-out;
}

.full-screen:hover {
  background: rgb(255, 255, 255);
  scale: 1.08;
}

#product-item-3 {
  opacity: 0;
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 100000000000;
  width: 0;
  background-color: var(--color-white);
  overflow-y: hidden;
  overflow-x: hidden;
  transition: 0.001s;
}

.product-item-3d {
  width: 100%;
  height: 100%;
}

#productOne {
  height: 70vh;
  width: 100%;
} 

#product {
  /* height: 0vh; */
  width: 100%;
} 

#product-full-screen{
  height: 100vh;
  width: 100vw;
} 