.sidebar {
    width: 220px;
    background: #fff;
    border-right: 1px solid #ddd;
    padding: 15px;
}
.sidebar h3 {
    font-size: 16px;
    margin-bottom: 10px;
}
.sidebar ul {
    list-style: none;
    padding: 0;
}
.sidebar li {
    padding: 8px;
    cursor: pointer;
    color: #333;
    border-radius: 4px;
}
.sidebar li:hover,
.sidebar li.active {
    background: #007bff;
    color: white;
}
.main-content {
    flex: 1;
    padding: 20px;
}
.deals__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 15px;
}
.deal__card {
    background: white;
    border-radius: 12px;
    padding: 16px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.deal__store {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.deal__store-left {
    display: flex;
    align-items: center;
    gap: 10px;
}
.store__logo {
    width: 70px;
    height: 70px;
    border-radius: 6px;
    object-fit: cover;
}
.badge {
    font-size: 12px;
    padding: 4px 10px;
    border-radius: 20px;
    color: white;
}
.badge.hot { background: #007bff; }
.badge.new { background: #28a745; }
.badge.featured { background: #0056b3; }
.deal__title {
    font-size: 18px;
    margin: 10px 0 6px;
}
.deal__desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}
.discount-tag {
    display: inline-block;
    background: #28a745;
    color: white;
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 14px;
    margin-bottom: 10px;
}
.expiry {
    font-size: 12px;
    color: #666;
}
.expired-badge {
    display: inline-block;
    background: #ffe6e6;
    color: #d9534f;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 12px;
    margin-top: 4px;
}
.deal__actions {
    margin-top: 12px;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}
.btn {
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: #0d6efd;
    color: white;
}
.btn-outline {
    background: white;
    border: 1px solid #ccc;
}




/* Popup Background */
.popup-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
}

/* Popup Box */
.popup {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    width: 320px;
    position: relative;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

/* Close Button */
.popup .close-btn {
    position: absolute;
    right: 12px;
    top: 10px;
    font-size: 20px;
    cursor: pointer;
}

/* Promo Code Box */
.code-box {
    background: #f5f9ff;
    border: 2px dashed #4a90e2;
    padding: 10px;
    font-weight: bold;
    font-size: 18px;
    margin: 10px 0;
}

/* Copy Button */
.copy-btn {
    background: #2d7ef7;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}
.copy-btn:hover {
    background: #1c5ec2;
}