* {
    box-sizing: border-box;
}

body {
    padding: 0;
    margin: 0;
}

#tab-items {
    border-right: 1px solid black;
}


#tab-form,
#tab-items:hover {
    cursor: pointer;
}

#tab-form,
#tab-items {
    width: 50%;
    background: #cdd9e5;
    font-size: large;
}

@media (max-width: 640px) {
    #mobile-menu {
        background-color: #faeed5;
    }
}

/* Banner Container */
.promo-banner {
    background: linear-gradient(135deg, #fff0f5 0%, #ffe4e1 100%);
    /* Soft rose/blush gradient */
    border-top: 1px solid #ffb6c1;
    border-bottom: 1px solid #ffb6c1;
    padding: 12px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-family: 'Helvetica Neue', Arial, sans-serif;
    /* z-index: 10; */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

/* Inner Content Wrapper */
.promo-content {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

/* "Mother's Day" Tag */
.promo-tag {
    background-color: #d11a5b;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
    letter-spacing: 0.5px;
}

/* Main Text */
.promo-text {
    color: #333333;
    margin: 0;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Action Button */
.promo-btn {
    background-color: #333333;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.promo-btn:hover {
    background-color: #d11a5b;
    /* Turns pink on hover */
}

/* Close Button */
.promo-close {
    position: absolute;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #888888;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s ease;
}

.promo-close:hover {
    color: #333333;
}

/* Responsive design for smaller screens */
@media (max-width: 768px) {
    .promo-banner {
        padding: 16px 40px 16px 16px;
        /* Leave room for close button */
    }

    .promo-content {
        flex-direction: column;
        gap: 8px;
    }
}
