body {
    background-color: #f2f2f2;
    font-family: "Comic Sans MS", "Arial", sans-serif;
    text-align: center;
    color: #000;
    padding-bottom: 120px; /* Extra padding below content */
}
h1 {
    font-size: 48px;
    color: #ff0000;
    text-shadow: 2px 2px #00ff00;
}
.product-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px;
    gap: 10px;
}
.product-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}
.product {
    border: 2px solid black;
    box-sizing: border-box;
    overflow: hidden; /* Prevent content overflow */
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
}
.product img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.product:hover {
    transform: rotate(3deg) scale(1.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
    background-color: #f0f0f0; /* Example of lighting up */
}
.product-wrapper p {
    margin: 5px 0;
    text-align: center;
}
.cart-icon {
    cursor: pointer;
    background: none;
    border: none;
    font-size: 20px;
}
.cart-icon:hover {
    color: #ff69b4;
}
#cart-list {
    list-style-type: none; /* Remove bullet points */
    padding: 0;
    text-align: left;
    margin: 10px auto;
    max-width: 300px;
}
.email {
    font-size: 24px;
    color: #00ff00;
    font-weight: bold;
}
.email:hover {
    color: #ff00ff;
    text-decoration: underline;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.overlay img {
    max-width: 90%;
    max-height: 90%;
    border: 4px solid #ff69b4;
}
.switch-btn {
    background-color: #ff69b4;
    color: white;
    border: none;
    padding: 10px;
    margin-top: 10px;
    cursor: pointer;
    font-size: 16px;
}
.special-links {
    position: fixed;
    bottom: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    z-index: 1000;
}
.special-links a {
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 20px;
    color: #ff4500;
    text-decoration: none;
    background-color: #ffff00;
    border: 3px dotted #0000ff;
    padding: 10px 20px;
    margin: 10px;
    transition: transform 0.3s, background-color 0.3s, color 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: auto;
}
.special-link-left {
    position: fixed;
    left: 10px;
    bottom: 10px;
}
.special-link-right {
    position: fixed;
    right: 10px;
    bottom: 10px;
}
.special-links a:hover {
    transform: rotate(-5deg) scale(1.1);
    background-color: #ff69b4;
    color: #fff;
    border-color: #00ff00;
}
.cart-notification {
    position: fixed;
    bottom: 80px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ff69b4;
    color: #fff;
    font-family: "Comic Sans MS", cursive, sans-serif;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    display: none;
    animation: fadeOut 3s forwards; /* Fade out animation */
}
@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}
/* Mobile Styles */
@media (max-width: 768px) {
    .special-links a {
        font-size: 10px; /* Smaller text for the labels */
        color: #fff; /* White text for contrast */
        width: 50px; /* Button width */
        height: 50px; /* Button height */
        border-radius: 50%; /* Makes buttons round */
        background-color: #ff69b4; /* Default pink background */
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 5px;
        padding: 5px; /* Padding for consistent spacing */
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); /* Optional: Adds a slight shadow */
    }

    .special-link-left {
        background-color: #ff69b4; /* Pink for the audiobook link */
    }

    .special-link-right {
        background-color: #00ff00; /* Green for the album link */
    }
}
