.title-text {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  font-size: 6rem;
  font-weight: 100;
  margin-bottom: 0;
  padding-bottom: 0;
}

.store-text {
  padding-top: 0;
  margin-top:0;
}

.back-link-store {
  position: fixed;
  margin-left: 70px;
  margin-top: -15px;
  font-size: 1.1rem;
  text-decoration: none;
  color: inherit;
}

  a.button {
    background-color: black;
    color: rgb(255, 255, 255, .8); 
    text-align: center;
    padding: 15px;
    transition-duration: 0.4s;
    text-decoration: none;
    border-radius: 2px;
    border-color: white;

    width: 6rem; 
    display: block; 
    margin-left: auto; 
    margin-right: auto; 
    font-size: 1.2rem; 
    font-weight: 100; 
    padding-top: 0.5rem; 
    padding-bottom: 0.5rem; 
    padding-left: 1rem; 
    padding-right: 1rem;
}

a.button:hover {
  background-color: rgb(255, 255, 255, .8);
  color: black;
  cursor: pointer;
}

.gallery-container {
  max-width: 900px;
  margin: auto;
}

.main-image-container {
  position: relative;
}

#mainImage {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.nav-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.4);
  border: none;
  color: white;
  font-size: 30px;
  padding: 10px;
  cursor: pointer;
  z-index: 1;
}

.nav-arrow.left {
  left: 10px;
}

.nav-arrow.right {
  right: 10px;
}

.thumbnail-row {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 10px;
  flex-wrap: wrap;
}

.thumbnail {
  width: 100px;
  height: auto;
  cursor: pointer;
  opacity: 0.6;
  border-radius: 5px;
  transition: opacity 0.3s, transform 0.3s;
}

.thumbnail:hover,
.thumbnail.active {
  opacity: 1;
  transform: scale(1.05);
}



