.popup-container {
    position: fixed;
    right: -400px;
    top: 50%;
    transform: translateY(-50%);
    width: 320px;
    background: white;
    border-radius: 20px 0 0 20px;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
}

.popup-container.show {
    right: 0;
}

.popup-container.hide {
    right: -400px;
}

.popup-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 25px 20px;
    text-align: center;
    position: relative;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
}

.phone-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.popup-header h2 {
    color: white;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.popup-body {
    padding: 30px 20px;
    text-align: center;
}

.popup-body p {
    color: #666;
    font-size: 14px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.qr-code-container {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    display: inline-block;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.qr-code {
    width: 180px;
    height: 180px;
    background: white;
    border-radius: 10px;
    padding: 10px;
}

.store-badges {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 20px;
}

.store-badge {
    width: 120px;
    height: 40px;
    background: #000;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s;
}

.store-badge:hover {
    transform: scale(1.05);
}

.progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    width: 100%;
    animation: shrink 60s linear forwards;
}

@keyframes shrink {
    from { width: 100%; }
    to { width: 0%; }
}
