.dessert-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

.dessert-popup-content {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: clamp(2.5rem, 5vw, 4rem);
    border-radius: clamp(16px, 2vw, 20px);
    width: 90%;
    max-width: 450px;
    position: relative;
    text-align: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.close-dessert-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

.dessert-popup h2 {
    margin-bottom: 2rem;
    font-size: 2.75rem;
    font-family: 'Vast Shadow', serif;
    line-height: 1;
}

.dessert-popup h2 span {
    color:#ff65d4;
}

.dessert-popup p {
    margin: 2rem auto 1rem;
    font-size: 1.15rem;
    line-height: 1.5;
}

/* MAILCHIMP Form */
#mc_embed_signup {
    background: transparent;
    font-family: 'Roboto', sans-serif;
    justify-content: center;
    align-items: center;
}

#mc_embed_signup_scroll {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    text-align: center;
}

#dessert-popup .form-group {
    position: relative;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
}

#dessert-popup .form-group input {
    width: 100% !important;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.25rem);
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    color: #fff;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    border-radius: clamp(30px, 4vw, 40px);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
    flex-shrink: 0;
}

#dessert-popup .form-group input:focus {
    outline: none;
    border-color: var(--yellow-lights);
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-1px);
}

#dessert-popup .form-group input:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.1);
}

#dessert-popup .form-group label {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
}



#mc_embed_signup .mc-field-group label {
    margin: 0;
    text-align: left;
    display: block;
    white-space: nowrap;
    flex-shrink: 0;
    min-width: 120px;
}

#mc_embed_signup .mc-field-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    margin: 1rem;
    width: 100%;
    flex-wrap: nowrap;
}

#mc_embed_signup .mc-field-group input {
    min-height: 1.5rem;
    width: 100% !important;
    max-width: none !important;
    box-sizing: border-box !important;
}

#mc_embed_signup .button.submit-btn,
.submit-btn {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1.5rem, 3vw, 2rem) !important;
    margin: 0 !important;
    text-align: center;
    text-decoration: none;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    font-size: clamp(0.9rem, 1.5vw, 1rem);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: clamp(30px, 4vw, 40px);
    cursor: pointer;
    font-family: 'Inter', sans-serif;
    min-height: 3rem;
    line-height: 1;
    overflow: visible;
}

#mc_embed_signup .button.submit-btn:hover,
.submit-btn:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.success-message {
    color: #fff;
    background: rgba(251, 191, 36, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(251, 191, 36, 0.3);
    padding: clamp(1rem, 2vw, 1.5rem) clamp(1.5rem, 3vw, 2rem);
    margin-top: 1.5rem;
    font-weight: 600;
    border-radius: clamp(16px, 2vw, 20px);
    font-family: 'Inter', sans-serif;
}

/* Dessert Popup Success Message */
.dessert-success-message {
    text-align: center;
    padding: 2rem;
}

.dessert-success-message .success-icon {
    color: #10b981;
    font-size: 3rem;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.dessert-success-message h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.dessert-success-message p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.continue-btn {
    background: #374151;
    color: white;
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    margin: 1.5rem 0;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.continue-btn:hover {
    background: #4b5563;
    transform: translateY(-1px);
}

.manage-link {
    margin-top: 1rem;
}

.manage-link a {
    color: #9ca3af;
    text-decoration: underline;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.manage-link a:hover {
    color: #d1d5db;
}

#mc_embed_signup .mc-field-group {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    gap: 0.5rem !important;
    margin: 1rem 0 !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
}

#mc_embed_signup .mc-field-group label {
    margin: 0 !important;
    text-align: left !important;
    display: block !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: clamp(0.9rem, 1.5vw, 1rem) !important;
    font-family: 'Inter', sans-serif !important;
    font-weight: 500 !important;
}

#mc_embed_signup .mc-field-group input {
    min-height: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    padding: clamp(0.75rem, 1.5vw, 1rem) clamp(1rem, 2vw, 1.25rem) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    color: #fff !important;
    font-size: clamp(0.9rem, 1.5vw, 1rem) !important;
    border-radius: clamp(30px, 4vw, 40px) !important;
    transition: all 0.3s ease !important;
    font-family: 'Inter', sans-serif !important;
    flex: 1 !important;
}

#mc_embed_signup .mc-field-group input:focus {
    outline: none !important;
    border-color: var(--yellow-lights) !important;
    box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.15) !important;
    background: rgba(255, 255, 255, 0.12) !important;
    transform: translateY(-1px) !important;
}

#mc_embed_signup .mc-field-group input:hover {
    border-color: rgba(255, 255, 255, 0.25) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

#mc_embed_signup .mce_inline_error {
    color: #ff6b6b !important;
    font-size: 0.85rem !important;
    margin-top: 0.25rem !important;
    text-align: left !important;
    width: 100% !important;
}