.card .btn {
    position: relative;
    bottom:15px;
    right: 35px;
}
.plans-navigation-tool {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1155;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 12px;
    width: auto;
    white-space: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}
.plans-navigation-tool .btn {
    margin: 5px;
    min-width: auto;
    padding: 8px 15px;
    font-size: 14px;
}
.text-decoration-line-through {
    text-decoration: line-through;
}
@media (max-width: 768px) {
    .plans-navigation-tool {
        width: 90%;
        display: flex;
        justify-content: space-between;
        padding: 2px;
    }
    .plans-navigation-tool .btn {
        font-size: 11px;
        padding: 8px 1px 8px 1px;
        flex: 1;
    }
    .plans-navigation-tool .btn i {
        margin-right: 4px;
    }
}

/* رسالة الخصومات الحصرية للمصريين */
.egypt-discount-toast {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1200;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 15px;
    max-width: 280px;
    border-right: 4px solid #ce1126;
    animation: slideInLeft 0.5s ease-out forwards;
    direction: rtl;
    text-align: right;
}
.egypt-discount-toast .toast-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}
.egypt-discount-toast .toast-title {
    font-weight: 700;
    font-size: 16px;
    color: #333;
    margin: 0;
    display: flex;
    align-items: center;
}
.egypt-discount-toast .egypt-flag {
    display: inline-block;
    margin-left: 8px;
    width: 24px;
    height: 16px;
    background: linear-gradient(to bottom, #ce1126 33%, #fff 33%, #fff 66%, #000 66%);
    border-radius: 2px;
}
.egypt-discount-toast .toast-body {
    font-size: 14px;
    color: #555;
    line-height: 1.5;
}
.egypt-discount-toast .close-btn {
    background: none;
    border: none;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
@keyframes slideInLeft {
    from { transform: translate(-100%, -50%); opacity: 0; }
    to { transform: translate(0, -50%); opacity: 1; }
}
@media (max-width: 768px) {
    .egypt-discount-toast {
        left: 10px;
        max-width: 220px;
        padding: 10px;
        font-size: 12px;
    }
    .egypt-discount-toast .toast-title {
        font-size: 14px;
    }
    .egypt-discount-toast .toast-body {
        font-size: 12px;
    }
}
@media (max-width: 480px) {
    .egypt-discount-toast {
        bottom: 70px;
        top: auto;
        left: 10px;
        transform: none;
        max-width: 200px;
    }
    @keyframes slideInLeft {
        from { transform: translateX(-100%); opacity: 0; }
        to { transform: translateX(0); opacity: 1; }
    }
}