/**
 * TAMMIM Express Checkout Styles
 */

.tammim-express-checkout {
	margin: 20px 0;
	padding: 20px;
	text-align: center;
	background: #f9f9f9;
	border-radius: 8px;
}

.tammim-express-checkout--cart {
	margin-top: 15px;
}

.tammim-express-checkout--checkout {
	margin-bottom: 30px;
}

/* Button */
.tammim-express-checkout__button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	width: 100%;
	max-width: 400px;
	padding: 15px 30px;
	font-size: 16px;
	font-weight: 600;
	color: #fff;
	background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
	border: none;
	border-radius: 8px;
	cursor: pointer;
	transition: all 0.3s ease;
	box-shadow: 0 4px 14px rgba(99, 102, 241, 0.4);
}

.tammim-express-checkout__button:hover {
	background: linear-gradient(135deg, #4f46e5 0%, #4338ca 100%);
	box-shadow: 0 6px 20px rgba(99, 102, 241, 0.5);
	transform: translateY(-2px);
}

.tammim-express-checkout__button:active {
	transform: translateY(0);
	box-shadow: 0 2px 10px rgba(99, 102, 241, 0.4);
}

.tammim-express-checkout__button:focus {
	outline: none;
	box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3), 0 4px 14px rgba(99, 102, 241, 0.4);
}

/* Loading state */
.tammim-express-checkout__button.tammim-loading {
	opacity: 0.8;
	cursor: not-allowed;
}

.tammim-express-checkout__button-loading {
	display: inline-flex;
	align-items: center;
	gap: 8px;
}

/* Button spinner */
.tammim-spinner {
	display: inline-block;
	width: 18px;
	height: 18px;
	border: 2px solid rgba(255, 255, 255, 0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: tammim-spin 0.8s linear infinite;
}

@keyframes tammim-spin {
	to { transform: rotate(360deg); }
}

/* Description */
.tammim-express-checkout__description {
	margin-top: 10px;
	margin-bottom: 0;
	font-size: 12px;
	color: #666;
}

/* Notice styles */
.tammim-notice {
	margin-bottom: 20px;
}

/* ---- Full-page overlay ---- */
#tammim-overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.75);
	z-index: 999999;
}

#tammim-overlay.tammim-overlay--visible {
	display: flex;
	align-items: center;
	justify-content: center;
}

#tammim-overlay-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
}

.tammim-overlay-spinner {
	width: 50px;
	height: 50px;
	border: 4px solid rgba(255, 255, 255, 0.3);
	border-top-color: #fff;
	border-radius: 50%;
	animation: tammim-spin 0.9s linear infinite;
}

#tammim-overlay-message {
	color: #fff;
	font-size: 16px;
	font-weight: 500;
	margin: 0;
	text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
	.tammim-express-checkout__button {
		padding: 12px 20px;
		font-size: 14px;
	}
}
