/*
 * Daily Deals Popup Styles
 */
.daily-deals-popup {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
}
.popup-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.7);
}
.popup-content {
    position: relative;
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 400px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    z-index: 2;
    animation: fadeInUp 0.5s ease;
}
.popup-content h2 {
    font-size: 1.4rem;
    color: #1b3022;
    margin-bottom: 25px;
    line-height: 1.4;
}
.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 30px;
}
.time-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f5f5f5;
    padding: 12px 15px;
    border-radius: 10px;
    min-width: 60px;
}
.time-block span:first-child {
    font-size: 2rem;
    font-weight: 800;
    color: #d81b60;
}
.time-block small {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: #777;
    margin-top: 4px;
}
.btn-popup {
    display: inline-block;
    background: #c59b27;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}
.btn-popup:hover { background: #a6821f; }
.popup-close {
    position: absolute;
    top: 10px; right: 15px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}
.popup-close:hover { color: #333; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Dark mode */
body.dark-mode .popup-content { background: #2a2a2a; }
body.dark-mode .popup-content h2 { color: #eee; }
body.dark-mode .time-block { background: #3a3a3a; }
body.dark-mode .popup-close { color: #ccc; }