/* стилі додані до сайту після розробки*/

/*Прибираємо банери, слайдери для мобільної версії */
@media (max-width: 768px) {
    /* класи елементів, які треба сховати */
    [class*="banner"] {
        display: none !important;
    }
    
    /* Slider wrap - всі елементи з класом, що містить "slider-wrap" */
    [class*="slider-wrap"] {
        display: none !important;
    }
}
/* END Прибираємо банери, слайдери для мобільної версії */

/* info-POP-UP */
/* Info Popup Styles */
	.info-popup-overlay {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-color: rgba(0, 0, 0, 0.5);
		backdrop-filter: blur(5px);
		display: flex;
		justify-content: center;
		align-items: center;
		z-index: 9999;
		opacity: 0;
		visibility: hidden;
		transition: opacity 0.4s ease, visibility 0.4s ease;
	}

	.info-popup-overlay.active {
		opacity: 1;
		visibility: visible;
	}

	.info-popup {
		position: relative;
		width: 90%;
		max-width: 500px;
		background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
		border: 3px solid #005691;
		border-radius: 25px;
		padding: 30px 20px 25px;
		box-shadow: 0 25px 40px rgba(0, 0, 0, 0.3), 
					0 0 0 2px #F13340 inset,
					0 0 0 5px rgba(0, 86, 145, 0.2);
		transform: scale(0.9) translateY(-30px);
		opacity: 0;
		transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s ease;
		overflow: hidden;
	}

	.info-popup-overlay.active .info-popup {
		transform: scale(1) translateY(0);
		opacity: 1;
	}

	/* Inner border effect */
	.info-popup::before {
		content: '';
		position: absolute;
		top: -2px;
		left: -2px;
		right: -2px;
		bottom: -2px;
		border: 4px solid #F13340;
		border-radius: 27px;
		pointer-events: none;
		opacity: 0.7;
	}

	.info-popup-close {
		position: absolute;
		top: 15px;
		right: 20px;
		background: none;
		border: none;
		font-size: 32px;
		line-height: 1;
		color: #F13340;
		cursor: pointer;
		padding: 0;
		width: 40px;
		height: 40px;
		display: flex;
		align-items: center;
		justify-content: center;
		border-radius: 50%;
		background-color: rgba(255, 255, 255, 0.8);
		box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
		transition: all 0.3s ease;
		z-index: 10;
	}

	.info-popup-close:hover {
		transform: rotate(90deg) scale(1.1);
		color: #fff;
		background-color: #F13340;
		box-shadow: 0 6px 12px rgba(241, 51, 64, 0.4);
	}

	.info-popup-content {
		position: relative;
		z-index: 5;
	}

	.info-popup-icon {
		text-align: center;
		margin-bottom: 15px;
	}

	.info-popup-icon i {
		font-size: 60px;
		color: #F13340;
		filter: drop-shadow(0 8px 12px rgba(241, 51, 64, 0.4));
		animation: pulse 2s infinite;
	}

	.info-popup-text {
		text-align: center;
	}

	.info-popup-text p {
		margin: 12px 0;
		font-size: 16px;
		line-height: 1.5;
		color: #333;
	}

	.info-popup-text p:first-child {
		font-weight: bold;
		color: #F13340;
		font-size: 18px;
	}

	/* Add button example (можна додати кнопку якщо потрібно) */
	.info-popup-button {
		display: inline-block;
		margin-top: 20px;
		padding: 12px 30px;
		background: linear-gradient(135deg, #2ECC71 0%, #27ae60 100%);
		color: white;
		border: none;
		border-radius: 50px;
		font-size: 16px;
		font-weight: bold;
		cursor: pointer;
		box-shadow: 0 8px 15px rgba(46, 204, 113, 0.3);
		transition: all 0.3s ease;
	}

	.info-popup-button:hover {
		transform: translateY(-3px);
		box-shadow: 0 12px 20px rgba(46, 204, 113, 0.4);
	}

	@keyframes pulse {
		0% {
			transform: scale(1);
		}
		50% {
			transform: scale(1.1);
		}
		100% {
			transform: scale(1);
		}
	}

	/* Mobile Responsive */
	@media (max-width: 768px) {
		.info-popup {
			width: 95%;
			padding: 25px 15px 20px;
		}
		
		.info-popup-icon i {
			font-size: 50px;
		}
		
		.info-popup-text p {
			font-size: 15px;
		}
		
		.info-popup-text p:first-child {
			font-size: 17px;
		}
	}

	@media (max-width: 480px) {
		.info-popup {
			border-radius: 20px;
		}
		
		.info-popup-icon i {
			font-size: 45px;
		}
		
		.info-popup-text p {
			font-size: 14px;
		}
		
		.info-popup-close {
			top: 10px;
			right: 15px;
			width: 35px;
			height: 35px;
			font-size: 28px;
		}
	}

/* END info-POP-UP */