body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

nav {
    background-color: var(--bs-gray-dark);
    color: white;
    padding: 1em;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 1em;
}

nav ul li a {
    color: white;
    text-decoration: none;
}

.content {
    padding: 2em;
}

footer {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    background-color: var(--bs-gray-dark);
    color: white;
    text-align: center;
    padding-top: 50px;

}
/* Darker and blurred backdrop */
.modal-backdrop.show {
    opacity: 0.8; /* Adjust opacity to make the backdrop darker */
    background-color: rgba(0, 0, 0, 0.8); /* Dark background with opacity */
}

.modal-open .modal {
    backdrop-filter: blur(5px); /* Blur effect behind the modal */
}

/* Pulsing effect for the modal */
.pulse-modal {
    animation: pulse 0.5s ease-in-out;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
    100% {
        transform: scale(1);
    }
}

.swatch-gift-purple{
    background-color: #492733;
    color: #c5b4be;
}
.swatch-gift-dark-purple{
    background-color: #271a23;
    color: #c5b4be;
}
.max-width512{
    width: 100%;
    max-width: 512px;
    margin: auto!important;
}

.carousel-control-next, .carousel-control-prev{
    opacity: .25;

}
.carousel-control-next:hover, .carousel-control-prev:hover{
    opacity: .5;
}


.img-thumbnail {
    aspect-ratio: 1 / 1;
    width: 100%;           
    object-fit: cover;
    object-position: center;
    padding: 0.25rem;
    background-color: #fff;
	border-radius: 0.25em;
    border: 1px solid #ddd;
    transition: all 0.2s ease-in-out;
}