.new-socials {
    margin-top: 15vh;
    align-items: start;
    gap: 20px;
    padding-bottom: 0;
}

.new-socials svg {
    height: 6vh;
    width: auto;
}

.button-row {
    display: flex;
    gap: 10px; /* Adjust the gap between buttons as needed */
    justify-content: center; /* Center the buttons horizontally */
    padding: 10px; /* Add some padding around the buttons */
    margin: 3% 0;
    flex-wrap: wrap;
  }
  
  .filter-button {
    background-color: rgba(46, 46, 46, 0.60); /* Default background color */
    color: white; /* Text color */
    border: none;
    border-radius: 20px; /* Rounded corners */
    padding: 10px 20px; /* Padding inside the buttons */
    cursor: pointer;
    font-size: 16px; /* Adjust font size as needed */
    transition: background-color 0.3s; /* Smooth transition for hover effect */
  }
  
  .filter-button:hover {
    background-color: #6c6c6c; /* Darker background on hover */
  }
  
  .filter-button.active {
    background-color: #DBB584; /* Background color for the active button */
    color: black; /* Text color for the active button */
  }
  
  .item-row {
    display: flex;
    justify-content: center; /* Center the items horizontally */
    padding: 10px; 
    margin: 0% 8%;
    align-items: center;
    flex-wrap: wrap; 
    gap: 20px; /* Adjust the gap between items as needed */

  }
  
  .item {
    background-color: rgba(219, 181, 132, 0.6); /* Background color */
    color: black; /* Text color */
    border: none;
    border-radius: 10px; /* Rounded corners */
    padding: 10px 20px; /* Padding inside the items */
    font-size: 16px; /* Adjust font size as needed */
    display: inline-flex; 
    flex-direction: row;
    align-items: center; 
    gap: 25px; /* Gap between title and prices */
    height: auto;
    height: min-content;
  }
  
  .item-title {
    font-weight: bold; /* Bold text for item titles */
    white-space: nowrap; /* Prevent wrapping */
  }
  
  .item-prices {
    display: flex;
    flex-direction: column; /* Stack prices vertically */
    gap: 5px; /* Gap between prices */
    white-space: nowrap; /* Prevent wrapping */
  }
  
  .spacer {
    width: 160px; /* Adjust the width of the divider */
    height: 1px; /* Thickness of the divider */
    background-color: #000; /* Color of the divider */
    margin: 4% auto; /* Center the divider and provide spacing */
  }

  .image-grid {
    --gap: 24px;
    --num-cols: 3;
    --row-height: 519px;
    margin: 0 6%;
    box-sizing: border-box;
    padding: var(--gap);
    justify-items: center;
    display: grid;
    grid-template-columns: repeat(var(--num-cols), 1fr);
    grid-auto-rows: auto;
    gap: var(--gap);
}

.image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.image-grid > .image-wrapper > img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.image-grid > .image-wrapper:hover > img {
    transform: scale(1.05);
}

.image-wrapper:hover .caption {
    opacity: 1;
}


.hider-button {
    background-color: rgba(46, 46, 46, 0.60); /* Default background color */
    color: white; /* Text color */
    border: none;
    border-radius: 25px; /* Rounded corners */
    padding: 10px 20px; /* Padding inside the buttons */
    cursor: pointer;
    font-size: 3rem; /* Adjust font size as needed */
    display: block;
    margin: 4% auto;
    transition: background-color 0.3s; /* Smooth transition for hover effect */

}

.hider-button:hover {
    background-color: #6c6c6c; /* Darker background on hover */
}


.extra-artwork-container {
  --gap: 24px;
  --num-cols: 12;
  --row-height: 519px;
  margin: 0 6%;
  box-sizing: border-box;
  padding: var(--gap);
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease;
  grid-template-columns: repeat(var(--num-cols), 1fr);
  grid-auto-rows: auto;
  gap: var(--gap);
  align-items: center;
}

.keychains {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    overflow: hidden;
    margin: 4% 8%;
    gap: 1rem;
    
  }
  
.keychains > img {
    width: auto;
    height: 300px; 
}

  @media screen and (max-width: 1024px) {
	.image-grid {
		--num-cols: 2;
        --gap: 4px;
	}
    .extra-artwork-container {
        margin: 0 2%;
        gap: 2vw;
    }
    .hider-button {
        font-size: 2rem;
    }
    .keychains > img {
        height: 40vw;
    }
    .keychains {
        margin: 4% 2%;
    }
}

