.et-payments-module .cards-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	perspective: 1000px;
}

.et-payments-module .pay-card {
	width: 100px;
	height: 100px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.03);
	backdrop-filter: blur(12px);
	-webkit-backdrop-filter: blur(12px);
	border: 1px solid rgba(255, 255, 255, 0.1);
	box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
	position: relative;
	overflow: hidden;
}

.et-payments-module .pay-card span {
	font-weight: 700;
	font-size: 0.9rem;
	color: rgba(255, 255, 255, 0.8);
	pointer-events: none;
}

.et-payments-module .pay-card img {
	max-width: 60%;
	max-height: 60%;
	object-fit: contain;
}

.et-payments-module .pay-card:hover {
	transform: translateY(-10px) scale(1.05);
	background: rgba(255, 255, 255, 0.08);
	border-color: rgba(255, 255, 255, 0.2);
	box-shadow:
		0 10px 40px -10px rgba(139, 92, 246, 0.5),
		inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.et-payments-module .pay-card.active {
	background: rgba(139, 92, 246, 0.15);
	border-color: #a78bfa;
	box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

@keyframes et-payments-float {
	0%   { transform: translateY(0px); }
	50%  { transform: translateY(-6px); }
	100% { transform: translateY(0px); }
}

.et-payments-module .pay-card:nth-child(odd)  { animation: et-payments-float 6s ease-in-out infinite; }
.et-payments-module .pay-card:nth-child(even) { animation: et-payments-float 7s ease-in-out infinite 1s; }
.et-payments-module .pay-card:nth-child(3n)   { animation: et-payments-float 5s ease-in-out infinite 0.5s; }
