@charset "utf-8";
/* CSS Document */

        /* Popup Container */
        .popup-container {
			position: relative;
            width: 560px;
			height: auto;
			float: left;
			margin: 40px 40px 180px 40px;
            background: white;
            border-radius: 35px;
            box-shadow: 0px 6px 30px rgba(0, 0, 0, 0.5);
            animation: popupEnter 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
			padding: 0px 0px 50px 0px;
        }

        @keyframes popupEnter {
            from {
                transform: scale(0.8) translateY(50px);
                opacity: 0;
            }
            to {
                transform: scale(1) translateY(0);
                opacity: 1;
            }
        }
.category-icon{
	position: relative;
	width: 100%;
	height: 70px;
	float: left;
	margin: 0px;
	background-repeat: no-repeat;
	background-position: center top;
	background-size: auto 100%;
	
}
        /* Header with Category Info */
        .popup-header {
            background: linear-gradient(135deg, #ef3349, #ce142a);
            padding: 30px;
            text-align: center;
            position: relative;
        }

        .category-name {
            color: white;
            font-size: 42px;
            font-weight: 900;
            margin: 0 0 10px 0;
            text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .category-subtitle {
            color: #fff;
            font-size: 24px;
            margin: 0;
        }

        /* Content */
        .popup-content {
            padding: 30px;
        }

        .price-section {
            text-align: center;
            margin-bottom: 30px;
        }

        .current-price {
            font-size: 48px;
            font-weight: 900;
            color: #ef3349;
            margin: 0;
        }

        .price-currency {
            font-size: 24px;
            margin-right: 5px;
        }

        .price-error {
			position: relative;
			width: 100%;
			height: auto;
			float: left;
            color: #ce142a;
            font-size: 24px;
			text-align: center;
            margin: 30px 0 0 0;
        }
        .price-description {
            color: #666;
            font-size: 24px;
            margin: 10px 0 0 0;
        }

        /* Purchase Options */
        .purchase-options {
            margin: 25px 0;
        }

        .option-title {
            color: #333;
            font-size: 26px;
            font-weight: 600;
            margin: 0 0 15px 0;
            text-align: center;
        }

        .option-card {
            border: 2px solid #ddd;
            border-radius: 15px;
            padding: 15px;
            margin: 20px 0;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
        }

        .option-card:hover {
            border-color: #ce142a;
            box-shadow: 0 4px 15px rgba(206, 20, 42, 0.1);
        }

        .option-card.selected {
            border-color: #ce142a;
            background: #fff5f5;
        }

        .option-card.recommended {
            border-color: #4CAF50;
            background: #f8fff8;
        }

        .option-card.recommended::before {
            content: "מומלץ";
            position: absolute;
            top: -22px;
            right: 15px;
            background: #4CAF50;
            color: white;
            font-size: 22px;
            padding: 4px 12px;
            border-radius: 12px;
            font-weight: 600;
        }

        .option-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 8px;
        }

        .option-name {
            font-weight: 700;
            color: #333;
            font-size: 24px;
        }

        .option-price {
            font-weight: 900;
            color: #ef3349;
            font-size: 32px;
        }

        .option-description {
            color: #666;
            font-size: 24px;
            margin: 0;
        }

        .option-savings {
            color: #4CAF50;
            font-size: 20px;
            font-weight: 600;
            margin-top: 5px;
        }

        /* PayPal Button */
        .payment-section {
			position: relative;
			width: 100%;
			height: auto;
			float: right;
            text-align: center;
        }

        #paypal-button-container {
 			position: relative;
			width: 100%;
			height: auto;
			float: right;
            margin: 15px 0;

        }

        .payment-placeholder {
            background: #0070ba;
            color: white;
            padding: 12px 30px;
            border-radius: 25px;
            font-size: 26px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            width: 426px;
			height: 80px;
            transition: all 0.3s ease;
			direction: rtl!important;
			text-align: center;
			-webkit-box-shadow: 0px 6px 9.6px 0.4px rgba(0, 0, 0, 0.5);
			-moz-box-shadow: 0px 6px 9.6px 0.4px rgba(0, 0, 0, 0.5);
			box-shadow: 0px 6px 9.6px 0.4px rgba(0, 0, 0, 0.5);
        }

        .payment-placeholder:hover:not(:disabled) {
            background: #005ea6;
            transform: translateY(-2px);
        }

        .payment-placeholder:disabled {
            background: #888;
            cursor: not-allowed;
            transform: none;
        }

        .security-info {
			position: relative;
			width: 100%;
			height: auto;
			float: right;
			margin: 15px 0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #666;
            font-size: 20px;
			text-align: center;
			direction: rtl;
        }

        .security-info i {
            margin: 0 5px;
            color: #4CAF50;
        }

        /* Benefits */
        .benefits {
			position: relative;
			width: 455px;
			height: 200px;
            background: #f8f9fa;
            border-radius: 15px;
            padding: 20px;
            margin: 25px 0;
        }

        .benefits-title {
			position: relative;
			width: 100%;
			height: auto;
			float: right;
            color: #ce142a;
            font-size: 32px;
            font-weight: 700;
            margin: 0 0 15px 0;
            text-align: center;
        }

        .benefit-item {
			position: relative;
			float: right;
			width: 100%;
			height: auto;
            margin: 8px 0;
            color: #333;
            font-size: 24px;
			direction: rtl;
			text-align: right;
        }

        .benefit-item-helf {
			position: relative;
			float: right;
			width: 50%;
			height: auto;
            margin: 8px 0;
            color: #333;
            font-size: 24px;
			direction: rtl;
			text-align: right;
        }

        .benefit-icon {
            margin-left: 10px;
            color: #4CAF50;
            font-size: 16px;
        }

        /* Spinner animation */
        .fa-spin {
            -webkit-animation: fa-spin 2s infinite linear;
            animation: fa-spin 2s infinite linear;
        }

        @-webkit-keyframes fa-spin {
            0% {
                -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
            }
            100% {
                -webkit-transform: rotate(359deg);
                transform: rotate(359deg);
            }
        }

        @keyframes fa-spin {
            0% {
                -webkit-transform: rotate(0deg);
                transform: rotate(0deg);
            }
            100% {
                -webkit-transform: rotate(359deg);
                transform: rotate(359deg);
            }
        }