.featured-special-container {
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 50%;
    left: 50%;
    padding: 0;
    margin: 0;
    transform: translate(-50%, -50%);
    background: var(--translucent-bg-color);
    backdrop-filter: blur(10px);
    display: none;
    z-index: 99999999 !important;
}

.featured-special-container.show {
    display: flex;
    justify-content: center;
    align-items: center;
}

.featured-special-container .special-content {
    position: relative;
    width: auto;
    height: 100%;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.featured-special-container .featured-special-image {
    width: auto;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

.featured-special-container .close-featured-special {
    position: absolute;
    top: -25px;
    right: -10px;
    font-family: "Archivo Black", sans-serif !important;
    background: var(--primary-color);
    color: var(--light-color);
    border-radius: 5px;
    width: auto;
    display: inline-flex;
    padding: 5px 15px !important;
    flex-wrap: nowrap;
    text-wrap: nowrap;
    white-space: nowrap;
    text-align: center;
    line-height: 20px;
    font-weight: bold;
    cursor: pointer;
}

.featured-special-container .close-featured-special:hover {
    background: var(--dark-color);
}

@media (max-width: 767px) {
    .featured-special-container .special-content {
        width: 80%;
    }

    .featured-special-container .close-featured-special {
        right: 20px;
    }
}