/* Tip Button Float */
.slt-float {
	position: fixed;
	bottom: 20px;
	right: 20px;
	z-index: 999999;
}

.slt-btn {
	background: #FFD700;
	color: #111;
	border: none;
	padding: 12px 18px;
	border-radius: 10px;
	cursor: pointer;
	font-weight: bold;
	font-size: 16px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
	transition: all 0.3s ease;
}

.slt-btn:hover {
	background: #FFC700;
	transform: scale(1.05);
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.slt-btn:active {
	transform: scale(0.98);
}

/* Tip Panel */
#slt-panel {
	display: none;
	position: fixed;
	bottom: 75px;
	right: 20px;
	background: #1a1a1a;
	color: #fff;
	padding: 20px;
	border-radius: 12px;
	z-index: 999999;
	min-width: 300px;
	max-width: 400px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
	border: 1px solid #333;
}

#slt-panel h3 {
	margin: 0 0 15px 0;
	color: #FFD700;
	font-size: 18px;
}

/* Tip Preset Buttons */
.slt-amounts {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px;
	margin-bottom: 12px;
}

.slt-tip-preset {
	background: #333;
	color: #FFD700;
	border: 2px solid #444;
	padding: 10px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: bold;
	transition: all 0.2s ease;
}

.slt-tip-preset:hover {
	background: #444;
	border-color: #FFD700;
}

.slt-tip-preset.active {
	background: #FFD700;
	color: #111;
	border-color: #FFD700;
}

/* Custom Amount Input */
.slt-custom {
	margin-bottom: 12px;
}

#slt-custom-amount {
	width: 100%;
	padding: 10px;
	border: 1px solid #444;
	border-radius: 6px;
	background: #222;
	color: #fff;
	font-size: 14px;
	box-sizing: border-box;
}

#slt-custom-amount:focus {
	outline: none;
	border-color: #FFD700;
	box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Payment Element */
#slt-payment-element {
	margin-bottom: 12px;
	min-height: 50px;
}

/* Submit Button */
.slt-submit-btn {
	width: 100%;
	background: #FFD700;
	color: #111;
	border: none;
	padding: 12px;
	border-radius: 6px;
	cursor: pointer;
	font-weight: bold;
	font-size: 16px;
	transition: all 0.2s ease;
	margin-bottom: 12px;
}

.slt-submit-btn:hover:not(:disabled) {
	background: #FFC700;
	box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
}

.slt-submit-btn:disabled {
	background: #777;
	cursor: not-allowed;
	opacity: 0.6;
}

/* Status Message */
#slt-status {
	min-height: 20px;
	margin-bottom: 12px;
	font-size: 14px;
	color: #FFD700;
	text-align: center;
}

/* Message Textarea */
#slt-message {
	width: 100%;
	padding: 10px;
	border: 1px solid #444;
	border-radius: 6px;
	background: #222;
	color: #fff;
	font-size: 13px;
	font-family: inherit;
	box-sizing: border-box;
	resize: vertical;
}

#slt-message:focus {
	outline: none;
	border-color: #FFD700;
	box-shadow: 0 0 8px rgba(255, 215, 0, 0.3);
}

/* Stripe Elements Styling */
.StripeElement {
	background: #222 !important;
	color: #fff !important;
	padding: 10px !important;
	border-radius: 6px !important;
}

.StripeElement:focus {
	border-color: #FFD700 !important;
	box-shadow: 0 0 8px rgba(255, 215, 0, 0.3) !important;
}

/* Mobile Responsive */
@media (max-width: 600px) {
	#slt-panel {
		right: 10px;
		left: 10px;
		bottom: 70px;
		max-width: none;
		min-width: auto;
	}

	.slt-amounts {
		grid-template-columns: 1fr 1fr;
	}
}
