* {
    border-width: 0px;
    border-style: solid;
    border-color: red;
}

/* Ensure the entire page takes up the full height */
html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    background-color: #EAEAEA;
}
  
  /* This makes the content area flexible, pushing the footer down */
  .bodyContent {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
  
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 20px;
    width: 100%;
    margin-top: auto; /* Ensures it stays at the bottom */
    border-top: 1px solid black;
    position: relative; /* Prevents it from being overlapped */
    z-index: 10; /* Ensures it appears above other elements */
}

body {
    margin: 0px;
    font-family: OPTIUniversSixtySeven;
    
}

@font-face {
    font-family: OPTIUniversSixtySeven;
    src: url("OPTIUniversSixtySeven.otf") format("opentype");
}


.UpperBar {
  position: sticky;
  top: 0;
  width: 100%;
  background-color: #333;
  color: rgb(0, 0, 0);
  z-index: 9999; /* Keeps the navbar above the rest of the content */
}


.greyBar {
    background-color: #D9D9D9;
    height: 29px;
}

.titleBar {
    display: flex;
    font-family: OPTIUniversSixtySeven;
    font-size: 24;
    letter-spacing: 15%;
    align-items: center;
    justify-content: center;
    background-color: white;
}

.navContainer {
    display: flex;
    justify-content: center;
    align-items: center;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
    height: 26px;
    background-color: white;
}


.navContainer a {
    background-color: transparent; /* Default background */
    color: black;                  /* Default text color */
    text-decoration: none;         /* Remove underline */
    padding: 10px 15px;            /* Optional: add padding for better spacing */
    transition: all 0.3s ease;     /* Smooth transition for hover */
  }
  
  .navContainer a:hover {
    background-color: black;       /* Hover background */
    color: white;                  /* Hover text color */
  }
  
  .navContainer a.active {
    background-color: black;       /* Active background (same as hover) */
    color: white;                  /* Active text color */
  }

.navOptions {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: OPTIUniversSixtySeven;
    font-size: 12px;
    
}

.navOptions li:not(:last-child) {
    margin-right: 30px;
}

.navOptions a {
    text-decoration: none; /* Remove the underline */
    color: black; /* Change text color to black or any color you prefer */
    padding: 5px;
    padding-left: 10px;
    padding-right: 10px;
}

.brands {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin: auto;

}

.brands img {
    margin-left: 40px;
    margin-right: 40px;
    margin-top: 126px;
    margin-bottom: 126px;

}

.brands .gallery {
    height: 39px;
}

.brands .balenci {
    width: 152px;
}

.brands .yzy {
    height: 24px;
}

.brands .bape {
    height: 38px;
}

.brands .vet {
    height: 24px;
}

.brands .chrome {
    height: 64px;
}

.mainContent {
    display: flex;
    flex-direction: column;
}

.mainContent > * {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 76px;

}

.mainLogo {
    letter-spacing: 15%;
    font-size: 64px;
    margin: auto;
    margin-bottom: 76px;

}

.buttons {
    display: flex;
    flex-direction: column
}



.buttons a:hover {
    color: black;
    background-color: white;
    box-shadow:inset 0px 0px 0px 1px rgb(0, 0, 0);
    
}

.optionBlocks1 {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 14px;
    margin: 0; /* Remove any margin around the list */
    padding: 0; /* Remove any padding */

}

.optionBlocks1 > * {
    display: flex;

}

.optionBlocks1 a {
    text-decoration: none; /* Remove the underline */
    margin: 10px;
    color: white;
    background-color: black;
    padding: 10px;
    
}

.optionBlocks2 {
    display: flex;
    align-items: center;
    list-style: none;
    font-size: 14px;
    margin: 0; /* Remove any margin around the list */
    padding: 0; /* Remove any padding */

}

.optionBlocks2 > * {
    display: flex;

}

.optionBlocks2 a {
    text-decoration: none; /* Remove the underline */
    margin: 10px;
    color: white;
    background-color: black;
    padding: 10px;
    
}

p {
    text-align: center;
}

footer {
    background-color: #ffffff;
    margin: 0px;
    color:#333;
    border-top: 1px solid black;
}

footer * {
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    justify-content: center;
    font-size: 12px;
    margin: auto;
    padding: 10px;
    color:#333;
}

.items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0px;
    min-height: auto; /* Prevents it from forcing a full page height */
}

.product {
    position: relative;        /* Establish a positioning context for children */
    width: 555px;
    height: 391px;
    background-color: rgb(255, 255, 255); /* Optional: just for visibility */
    border: 1px solid rgb(209, 209, 209);
    overflow: hidden;          /* Prevent content from overflowing */
  }
  
  .product img {
    position: absolute;        /* Fix the image placement */
    top: 20px;                 /* Position the image */
    left: 50%;                 /* Center horizontally */
    transform: translateX(-50%); /* Ensure horizontal centering */
    height: 350px;             /* Keep the image size fixed */
  }
  
  .product p {
    position: absolute;        /* Position the text independently */
    bottom: 40px;              /* Place it 10px from the bottom of the container */
    left: 54px;                /* Place it 10px from the left of the container */
    margin: 0;                 /* Reset margins for consistency */
    padding: 0;                /* Reset padding for consistency */
    font-size: 16px;           /* Optional: adjust font size */
    color: black;              /* Optional: set text color */
    text-align: left;
}
  
.product .price {
    position: absolute;        /* Position the text independently */
    bottom: 40px;              /* Place it 10px from the bottom of the container */
    right: 54px;                /* Place it 10px from the left of the container */
    margin: 0;                 /* Reset margins for consistency */
    padding: 0;                /* Reset padding for consistency */
    font-size: 16px;           /* Optional: adjust font size */
    color: black;              /* Optional: set text color */
    text-align: right;
    font-size: 24px;

}





.product-tshirts {
    position: relative;        /* Establish a positioning context for children */
    width: 555px;
    height: 391px;
    background-color: rgb(255, 255, 255); /* Optional: just for visibility */
    border: 1px solid rgb(209, 209, 209);
    overflow: hidden;          /* Prevent content from overflowing */
  }
  
  .product-tshirts img {
    position: absolute;        /* Fix the image placement */
    top: 10px;                 /* Position the image */
    left: 50%;                 /* Center horizontally */
    transform: translateX(-50%); /* Ensure horizontal centering */
    height: 280px;             /* Keep the image size fixed */
  }
  
  .product-tshirts p {
    position: absolute;        /* Position the text independently */
    bottom: 40px;              /* Place it 10px from the bottom of the container */
    left: 54px;                /* Place it 10px from the left of the container */
    margin: 0;                 /* Reset margins for consistency */
    padding: 0;                /* Reset padding for consistency */
    font-size: 16px;           /* Optional: adjust font size */
    color: black;              /* Optional: set text color */
    text-align: left;
}
  
.product-tshirts .price {
    position: absolute;        /* Position the text independently */
    bottom: 40px;              /* Place it 10px from the bottom of the container */
    right: 54px;                /* Place it 10px from the left of the container */
    margin: 0;                 /* Reset margins for consistency */
    padding: 0;                /* Reset padding for consistency */
    font-size: 16px;           /* Optional: adjust font size */
    color: black;              /* Optional: set text color */
    text-align: right;
    font-size: 24px;

}  




.product-tshirts, .product-tshirts * {
    margin: 0;
}


.pageButtons {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 100px;
}
.leftButton {
    display: flex;
    justify-content: center;
    align-items: center;
    border-width: 1px;
    border-style: solid;
    border-color: black;
    padding: 5px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 10px;
    background-color: white;
}

.rightButton {
    display: flex;
    justify-content: center;
    align-items: center;
    border-width: 1px;
    border-style: solid;
    border-color: black;
    padding: 5px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 10px;
    background-color: white;
}

.affiliateLink * {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 5px;
    font-size: 16px;
}