main{
    margin-top: 85px;
}

.nav-text{
    color: rgba(0, 0, 0, 0.5);
}

.title-shop{
    margin-top: 0;
    display: flex;
    justify-content: center;
}

.frame-gallery{
    max-width: 1280px;
    padding: 0 24px;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}
  
.gallery-image {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(auto-fit, minmax(289.25px, 1fr));
    gap: 25px;
    justify-items: center;
}
  
.gallery-image img {
    height: 250px;
    width: 350px;
    transform: scale(1.0);
    transition: transform 0.4s ease;
}
  
.img-box {
    box-sizing: content-box;
    height: 216.9px;
    width: 289.25px;
    overflow: hidden;
    display: inline-block;
    color: white;
    position: relative;
    background-color: white;
    animation: fadeEffect 1s;
    border-radius: 12px;
}
  
.img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover; 
}
  
.caption {
    position: absolute;
    bottom: 5px;
    left: 20px;
    opacity: 0.0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    color: #ffffff;
}

.caption p {
    font-weight: 500;
    color: #fff;
}
  
.transparent-box {
    height: 225px;
    width: 300px;
    background-color:rgba(0, 0, 0, 0);
    position: absolute;
    top: 0;
    left: 0;
    transition: background-color 0.3s ease;
}
  
.img-box:hover img { 
    transform: scale(1.1);
}
  
.img-box:hover .transparent-box {
    background-color:rgba(0, 0, 0, 0.5);
}
  
.img-box:hover .caption {
    transform: translateY(-20px);
    opacity: 1.0;
}
  
.img-box:hover {
    cursor: pointer;
    border-radius: 12px;
}
  
.caption > p:nth-child(2) {
    font-size: 0.8em;
}
  
.opacity-low {
    opacity: 0.5;
}   
  
  
@keyframes fadeEffect {
    from {opacity: 0;}
    to {opacity: 1;}
}
  
.tab {
    width: 100%;
    display: flex;
    overflow: hidden;
    overflow-x: auto;
    white-space: nowrap;
    justify-content: space-evenly;
}
  
.tab button {
    color: black;
    background-color: inherit;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 12px 14px;
    transition: 0.3s;
    font-size: 17px;
    border-radius: 12px;
}
  
.tab button:hover {
    background-color: #ddd;
    border-radius: 12px;
}

.tabcontent {
    display: none;
    border-top: none;
}

.unset{
    height: 68.5vh;
}

button .tablinks::selection{
    .unset{
        display: none;
    }
}