.shop-hover-div {
    display: none;
    position: absolute;
    left: 0;
    width: 100vw;
    background-color: #ffffff;
    z-index: 10000;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 100ms ease-in;
}

/* Pseudo-element to bridge gap between header and div */
.shop-hover-div::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 0;
    width: 100%;
    height: 20px;
    background-color: #ffffff;
    z-index: 10001;
    transition: opacity 100ms ease-in;
}

/* Apply fade-out transition */
.shop-hover-div.fading-out {
    transition: opacity 50ms ease-out;
}

.shop-hover-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    text-align: center;
}

.shop-hover-content h2 {
    margin: 0 0 10px;
    font-size: 24px;
    color: #1a1a1a;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
}

.shop-hover-content p {
    margin: 0 0 15px;
    font-size: 16px;
    color: #333;
}

.shop-hover-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.shop-hover-categories li {
    text-align: center;
}

.shop-hover-categories a {
    display: block;
    padding: 10px;
    background-color: #f5f5f5;
    color: #2271b1;
    text-decoration: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
}

.shop-hover-categories a:hover {
    background-color: #e5e5e5;
    color: #135e96;
}

/* Ensure hidden on mobile */
@media (max-width: 768px) {
    .shop-hover-div {
        display: none !important;
    }
}