/**
 * Stili Frontend - Pause Sales for WooCommerce
 *
 * @package Eraclito_Woo_Pause_Sales
 * @since   1.3.0
 */

.eraclito-pause-message {
	position: fixed;
	left: 0;
	right: 0;
	width: 100%;
	z-index: 999999;
	padding: 15px 20px;
	text-align: center;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
	animation: slideIn 0.5s ease-out;
}

.eraclito-pause-message-top {
	top: 0;
}

.admin-bar .eraclito-pause-message-top {
	top: 32px;
}

.eraclito-pause-message-bottom {
	bottom: 0;
}

.eraclito-pause-message-content {
	max-width: 1200px;
	margin: 0 auto;
	font-size: 16px;
	line-height: 1.6;
}

.eraclito-pause-message-content p {
	margin: 0;
	padding: 0;
}

.eraclito-pause-message-content p:not(:last-child) {
	margin-bottom: 10px;
}

/* Animazione di entrata */
@keyframes slideIn {
	from {
		transform: translateY(-100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

.eraclito-pause-message-bottom {
	animation-name: slideInBottom;
}

@keyframes slideInBottom {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Responsive */
@media (max-width: 768px) {
	.eraclito-pause-message {
		padding: 12px 15px;
	}

	.eraclito-pause-message-content {
		font-size: 14px;
	}
}

@media (max-width: 782px) {
	.admin-bar .eraclito-pause-message-top {
		top: 46px;
	}
}

/* Aggiusta il body per evitare sovrapposizioni */
body.eraclito-pause-active-top {
	padding-top: 60px;
}

body.eraclito-pause-active-bottom {
	padding-bottom: 60px;
}
