/*
Theme Name: Flatsome Child
Description: This is a child theme for Flatsome Theme
Author: UX Themes
Template: flatsome
Version: 3.0
*/
p{
	padding-bottom: 8px; 
	margin-bottom: 0;
}
/*************** ADD CUSTOM CSS HERE.   ***************/
:root {
	/* ===== PRIMARY GRADIENT COLORS ===== */
	--color-primary-1: #6E5BFF;
	--color-primary-2: #8A7BFF;
	--color-primary-3: #5FD0FF;
	--color-primary-4: #9B5CFF;
	--color-primary-5: #FF7AD9;

	/* ===== SECONDARY ===== */
	--color-secondary-1: #7B6CFF;
	--color-secondary-2: #6EDCFF;
	--color-secondary-3: #C77DFF;

	/* ===== CTA ===== */
	--color-cta-1: #7B61FF;
	--color-cta-2: #B16CFF;
	--color-cta-3: #FF7AD9;

	/* ===== GLASS ===== */
	--glass-bg: rgba(255, 255, 255, 0.1);
	--glass-border: rgba(255, 255, 255, 0.2);

	/* ===== GLOW ===== */
	--glow-primary: rgba(123, 97, 255, 0.5);
	--glow-pink: rgba(255, 122, 217, 0.3);
}
.bg-gradient{
	background: radial-gradient(circle at 65% 70%, rgba(255, 122, 217, 0.25), transparent 40%),
		radial-gradient(circle at 35% 75%, rgba(95, 208, 255, 0.25), transparent 45%),
		linear-gradient(180deg, #0f1226 0%, #1a1f3a 40%, #2a2f5a 100%);
}
.bg-gradient--sc {
  background: 
    radial-gradient(circle at 65% 70%, rgba(255, 122, 217, 0.12), transparent 45%),
    radial-gradient(circle at 35% 75%, rgba(95, 208, 255, 0.12), transparent 50%),
    linear-gradient(180deg, #f5f7ff 0%, #eef3ff 40%, #f7f0ff 100%);
}
/* ===== WRAPPER ===== */
.wpcf7 form {
	max-width: 100%;
	padding: 24px;
	border-radius: 20px;
	background: rgba(255, 255, 255, 0.12);
	backdrop-filter: blur(20px);
	-webkit-backdrop-filter: blur(20px);
	border: 1px solid rgba(255, 255, 255, 0.2);
	box-shadow: 
		0 10px 40px rgba(0, 0, 0, 0.2),
		inset 0 0 20px rgba(255, 255, 255, 0.05);
}

/* bỏ p mặc định */
.wpcf7 form p {
	margin: 0;
	padding-bottom: 0;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

/* ===== INPUT ===== */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"] {
	height: 44px;
	border-radius: 999px;
	border: none;
	outline: none;
	padding: 0 16px;
	margin-bottom: 0;
	background: rgba(255, 255, 255, 0.25);
	color: #fff;
	font-size: 14px;
	backdrop-filter: blur(10px);
	width: 100%;
}

/* placeholder */
.wpcf7 input::placeholder {
	color: rgba(255, 255, 255, 0.8);
}

/* focus */
.wpcf7 input:focus {
	background: rgba(255, 255, 255, 0.35);
}

/* button đăng ký */
/* button */
.wpcf7 input[type="submit"] {
	height: 46px;
	margin-top: 12px;
	width: 100%;
	border-radius: 999px;
	border: none;

	color: #fff;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;

	background: linear-gradient(90deg, #7B61FF, #B16CFF, #FF7AD9, #7B61FF);
	background-size: 300% 100%;

	animation: gradientMove 4s linear infinite;
}

/* animation chạy màu */
@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}
	100% {
		background-position: 300% 50%;
	}
}

/* hover: chạy từ trái sang phải */
.wpcf7 input[type="submit"]:hover {
	background-position: right;
}

/* click */
.wpcf7 input[type="submit"]:active {
	transform: scale(0.98);
}
/* End button đăng ký */
.wpcf7 form .wpcf7-response-output{
	margin: 5px 0;
}
/* ===== SPINNER ===== */
.wpcf7-spinner {
	display: none; /* ẩn spinner mặc định cho sạch UI */
}

/* ===== RESPONSE ===== */
.wpcf7-response-output {
	margin-top: 0px;
	font-size: 13px;
	color: #fff;
}
.image-media {
	position: relative;
	display: inline-block;
}

/* ===== ẢNH CHÍNH ===== */
.image-media__main {
	width: 100%;
	max-width: 600px;
	display: block;
}

/* ===== GIFT FLOATING ===== */
.image-media__floating {
	position: absolute;
	bottom: -20px;    
	right: 20px;    
	width: 140px;
	filter: drop-shadow(0 15px 30px rgba(0,0,0,0.3));
	animation: floatingY 4s ease-in-out infinite;
}

/* ===== ANIMATION LÊN XUỐNG ===== */
@keyframes floatingY {
	0%, 100% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-15px);
	}
}
@media only screen and (max-width: 48em) {
	/*************** ADD MOBILE ONLY CSS HERE  ***************/


}