/* ===== CHECKOUT POPUP NOTICE ===== */
.popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    justify-content: center;
    align-items: center;
    padding: 16px;
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(4px);
}
.popup-box {
    position: relative;
    width: 100%;
    max-width: 580px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.25);
    overflow: hidden;
    animation: popupIn 0.3s ease-out;
}
@keyframes popupIn {
    from { opacity: 0; transform: scale(0.95) translateY(20px); }
    to   { opacity: 1; transform: scale(1) translateY(0); }
}
.popup-header {
    background: linear-gradient(to right, #f97316, #ef4444);
    padding: 24px 30px;
}
.popup-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.popup-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}
.popup-header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 22px;
    color: #fff;
}
.popup-header h2 {
    color: #fff;
    font-size: 21px;
    font-weight: 500;
    margin: 0;
}
.popup-content {
    padding: 28px 30px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}
.popup-info-card {
    background: linear-gradient(135deg, #fff7ed, #fef2f2);
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 22px 24px;
}
.popup-info-card h3 {
    font-size: 19px;
    color: #1f2937;
    margin: 0 0 14px 0;
    font-weight: 600;
}
.popup-info-card p {
    font-size: 16px;
    line-height: 1.9;
    color: #374151;
    margin: 0 0 12px 0;
    text-align: justify;
}
.popup-info-card p:last-child { margin-bottom: 0; }
.popup-info-card .highlight-orange { font-weight: 600; color: #ea580c; }
.popup-info-card .highlight-red    { font-weight: 600; color: #dc2626; }
.popup-info-card .highlight-dark   { font-weight: 600; color: #111827; }
.popup-contact {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f97316;
    font-size: 16px;
}
.popup-contact i { font-size: 15px; flex-shrink: 0; }
.popup-eid {
    text-align: center;
    font-size: 17px;
    color: #374151;
    margin: 0;
}
.popup-eid .moon {
    display: inline-block;
    animation: moonPulse 0.5s ease 0.5s 2;
}
@keyframes moonPulse {
    0%,100% { transform: scale(1); }
    50%      { transform: scale(1.3); }
}
.popup-ok-btn {
    width: 100%;
    background: linear-gradient(to right, #f97316, #ef4444);
    color: #fff;
    border: none;
    padding: 16px;
    border-radius: 14px;
    font-size: 18px;
    font-weight: 500;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(249,115,22,0.3);
    transition: transform 0.15s, box-shadow 0.15s;
}
.popup-ok-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 25px rgba(249,115,22,0.4);
}
.popup-ok-btn:active { transform: scale(0.98); }

@media (max-width: 480px) {
    .popup-box         { border-radius: 14px; max-width: 100%; }
    .popup-header      { padding: 16px 18px; }
    .popup-header h2   { font-size: 15px; }
    .popup-header-icon { width: 38px; height: 38px; font-size: 17px; }
    .popup-content     { padding: 18px; gap: 16px; }
    .popup-info-card   { padding: 16px; }
    .popup-info-card h3 { font-size: 16px; }
    .popup-info-card p  { font-size: 14px; }
    .popup-contact     { font-size: 13.5px; }
    .popup-eid         { font-size: 14.5px; }
    .popup-ok-btn      { padding: 13px; font-size: 15px; }
}
/* ===== CHECKOUT POPUP NOTICE END ===== */