
#productsGallery
{
}
.hiddenProducts
{
  overflow: auto;
}
input:checked ~ .hiddenProducts
{
  display: none;
}
.productPadding
{
  padding: 15px 10px 0 10px;
  margin: 0 0 70px 0;
}
.product
{
  /* cursor: pointer; */
  border-radius: 25px;
  transition: all 550ms ease-in-out;
}
/* .product:hover
{
  border-radius: 33vw;
  box-shadow: 0px 0px 100px 0px #e1a900;
} */
.productImagesWrap
{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  text-decoration: none;  
}

.productImage
{
  text-align: center; 
  color:#e1a900;
  font-size: 2vw;
  position: relative;
  display: inline-flex;
  justify-content: center;
  width: 13vw;
}
.imgCanvas
{
  width: 17vw;
  height: 17vw;
  overflow: hidden;
  border-radius: 50%;
  border-style: solid;
  border-color: #806000;
  position: absolute;
  z-index: 1;
  transition: all 150ms ease-in-out;
}
.imgCanvas:hover
{
  z-index: 2;
  width: 18vw;
  height: 18vw;
  transform: translate(0, -0.5vw);
  cursor: pointer;
}
.productImg
{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.productTitle 
{
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
  justify-content: center;
  overflow: hidden;
  font-size: 1.5vw;
  color: #e1a900;
  margin: 0 auto;
  border-radius: 30px;
  background-color: #806000;
  height: 7vh;
  width: 30vw;
  cursor: pointer;
}

.productImgTitle
{
  font-size: 2vw;
  position: absolute;
  bottom: 1vh;
  color: #e1a900;
  -webkit-text-stroke-width: 0.1vw;
  -webkit-text-stroke-color: #806000;
  z-index: 2;
  cursor: pointer;
}

#slideshowGallery
{
  width: 100%;
  overflow: auto;
  white-space: nowrap;
  display:flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color:#b6bcbe;
}

#slideshowGallery::-webkit-scrollbar
{
  display: none;
}

#imagesGallery
{
    width: 100%;
    background-color: #474b4f;
    display: none;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}
.galleryWrap
{
    width: 100%;
    display: inline-flex;
    justify-content: center;
}

.galleryImage
{
    max-height: 64vh;
    border-radius: 20px;
    margin: auto 10px;
}

.galleryTitle
{
  font-size: 2vw;
  color: #b6bcbe;
}

.galleryImages
{
  text-align: center; 
}

#galleryNavigationButtons
{
  display: inline-flex;
  width: 100%;
  justify-content: center;
}
/* https://uiverse.io/AlimurtuzaCodes/average-liger-0 */
.galleryButton {
  border: none;
  width: 10em;
  height: 5em;
  /*border-radius: 3em;*/
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  background: #e1a900;
  cursor: pointer;
  transition: all 150ms ease-in-out;
}
  
.galleryButtonText {
  font-weight: 600;
  color: #806000;
  font-size: medium;
}

.galleryButton:hover {
  background: linear-gradient(0deg,#e1a900,#806000);
  box-shadow: inset 0px 1px 0px 0px #806000,
  inset 0px -4px 0px 0px rgba(0, 0, 0, 0.2),
  0px 0px 0px 4px #806000,
  0px 0px 180px 0px #e1a900;
  transform: translateY(-2px);
}

.galleryButton:hover .text {
  color: white;
}

.galleryButton:hover .sparkle {
  fill: white;
  transform: scale(1.2);
} 
/*https://uiverse.io/Randdose/brown-grasshopper-46*/
.categoryButton {
  all: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0.6em 2em;
  border: #806000 solid 0.15em;
  border-radius: 2vw;
  color: #e1a900;
  font-size: 1.5em;
  height: 50px;
  width: auto;
  margin: auto;
  font-weight: 600;
  cursor: pointer;
  overflow: hidden;
  transition: border 300ms, color 300ms;
  user-select: none;
}

.categoryButton p {
  z-index: 1;
}

.categoryButton:hover {
  color: #e1a900;
}

.categoryButton:active {
  border-color: teal;
}

.categoryButton::after, .categoryButton::before {
  content: "";
  position: absolute;
  width: 110%;
  aspect-ratio: 1;
  background: #e1a900;
  opacity: 50%;
  border-radius: 50%;
  transition: transform 1400ms, background 300ms;
}

.categoryButton::before {
  left: 0;
  transform: translateX(-85%);
}

.categoryButton::after {
  right: 0;
  transform: translateX(85%);
}

.categoryButton:hover:before {
  transform: translateX(-1%);
}

.categoryButton:hover:after {
  transform: translateX(1%);
}

.categoryButton:active:before,
.categoryButton:active:after {
  background: teal;
}
@media (max-width: 500px) 
{
  .galleryButton
  {
    border: none;
    width: 9em;
    height: 5em;
    /*border-radius: 3em;*/
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    background: #e1a900;
    cursor: pointer;
    transition: all 150ms ease-in-out;
  }
}
@media (max-width: 799px)
{
  .productTitle 
  {
    font-size: 4vw;
    height: 7vh;
    width: 80vw;
  }
  .imgCanvas
  {
    width: 40vw;
    height: 40vw;
  }
  .productImgTitle
  {
    font-size: 4vw;
  }
  .imgCanvas:hover
  {
    z-index: 2;
    width: 43vw;
    height: 43vw;
    transform: translate(0, -1.5vw);
  }
  .productImage
  {
    width: 37vw;
  }
  .galleryTitle
  {
    font-size: 5vw;
  }
  .categoryButton 
  {
    width: auto;
  }
}