* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	line-height: 1.6;
	color: #333;
	background-color: #f5f5f5;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

/* Header */
.header {
	background-color: #b91c1c;
	color: white;
	padding: 15px 0;
	position: sticky;
	top: 0;
	z-index: 100;
}

.header .container {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.search-btn,
.menu-btn {
	background: none;
	border: none;
	color: white;
	cursor: pointer;
	padding: 8px;
}

.search-btn svg {
	width: 20px;
	height: 20px;
}

.menu-btn {
	display: flex;
	flex-direction: column;
	gap: 3px;
}

.menu-btn span {
	width: 20px;
	height: 2px;
	background-color: white;
	border-radius: 1px;
}

.logo {
	font-size: 24px;
	font-weight: 600;
	letter-spacing: -0.5px;
}

/* Main Content */
.main {
	background-color: white;
	min-height: calc(100vh - 120px);
}

/* Timer Section */
.timer-section {
	background-color: #f8f9fa;
	padding: 15px 0;
	text-align: center;
	border-bottom: 1px solid #e9ecef;
}

.timer-text {
	font-size: 14px;
	color: #666;
	font-weight: 500;
}

#countdown {
	color: #b91c1c;
	font-weight: 600;
}

/* Hero Section */
.hero {
	padding: 40px 0;
	text-align: left;
}

.hero-title {
	font-size: 32px;
	font-weight: 700;
	line-height: 1.3;
	color: #1a1a1a;
	margin-bottom: 20px;
}

.hero-subtitle {
	font-size: 18px;
	color: #666;
	margin-bottom: 10px;
	font-weight: 500;
}

.date {
	font-size: 14px;
	color: #999;
}

/* Video Section */
.video-section {
	padding: 30px 0;
}

.video-container {
	max-width: 600px;
	margin: 0 auto;
}

.video-placeholder {
	background-color: #1a1a1a;
	color: white;
	padding: 80px 20px;
	text-align: center;
	border-radius: 8px;
	font-size: 16px;
}

.vturb {
	color: #b91c1c;
	font-weight: 600;
}

/* Pricing Section */
.pricing-section {
	padding: 50px 0;
	background-color: #f8f9fa;
}

 .esconder {
    display: none;
  }

.pricing-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
	gap: 30px;
	max-width: 1000px;
	margin: 0 auto;
}

.pricing-card {
	background: white;
	border-radius: 12px;
	padding: 30px;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	text-align: center;
	position: relative;
	border: 2px solid transparent;
}

.pricing-card.best-value {
	border-color: #b91c1c;
	transform: scale(1.05);
}

.best-value-badge {
	position: absolute;
	top: -12px;
	left: 50%;
	transform: translateX(-50%);
	background-color: #b91c1c;
	color: white;
	padding: 8px 20px;
	border-radius: 20px;
	font-size: 14px;
	font-weight: 600;
}

.pricing-header h3 {
	font-size: 24px;
	font-weight: 700;
	margin-bottom: 10px;
	color: #1a1a1a;
}

.pricing-header p {
	color: #666;
	margin-bottom: 5px;
}

.pricing-price {
	margin: 25px 0;
}

.old-price {
	text-decoration: line-through;
	color: #999;
	font-size: 18px;
	margin-right: 10px;
}

.new-price {
	font-size: 36px;
	font-weight: 700;
	color: #b91c1c;
}

.shipping {
	font-size: 14px;
	color: #666;
	margin-top: 5px;
}

.shipping.free {
	color: #22c55e;
	font-weight: 600;
}

.pricing-features {
	list-style: none;
	margin: 25px 0;
}

.pricing-features li {
	padding: 8px 0;
	color: #666;
	font-weight: 500;
}

.pricing-features li:before {
	content: "✓ ";
	color: #22c55e;
	font-weight: bold;
	margin-right: 8px;
}

.surprise,
.big-surprise {
	color: #b91c1c !important;
	font-weight: 600 !important;
}

.buy-btn {
	background-color: #b91c1c;
	color: white;
	border: none;
	padding: 15px 40px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	margin: 20px 0;
	transition: background-color 0.3s ease;
}

.buy-btn:hover {
	background-color: #991b1b;
}

.buybtn {
	background-color: #b91c1c;
	color: white;
	border: none;
	padding: 15px 40px;
	border-radius: 8px;
	font-size: 16px;
	font-weight: 600;
	cursor: pointer;
	width: 100%;
	margin: 20px 0;
	transition: background-color 0.3s ease;
}

.buybtn:hover {
	background-color: #991b1b;
}

.total,
.guarantee {
	font-size: 14px;
	color: #666;
	margin-top: 15px;
}

.guarantee {
	color: #22c55e;
	font-weight: 600;
}

/* Comments Section */
.comments-section {
	padding: 50px 0;
}

.comments-title {
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 30px;
	color: #1a1a1a;
}

.comments-list {
	space-y: 25px;
}

.comment {
	display: flex;
	gap: 15px;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 1px solid #e9ecef;
}

.comment-avatar img {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	object-fit: cover;
}

.comment-content {
	flex: 1;
}

.comment-author {
	font-size: 16px;
	font-weight: 600;
	color: #1a1a1a;
	margin-bottom: 8px;
}

.comment-text {
	color: #333;
	line-height: 1.5;
	margin-bottom: 10px;
}

.comment-actions {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 14px;
	color: #666;
}

.action {
	cursor: pointer;
	font-weight: 500;
}

.action:hover {
	color: #b91c1c;
}

.separator {
	color: #ccc;
}

.likes {
	font-weight: 600;
	color: #b91c1c;
}

.time {
	color: #999;
}

.comments-closed {
	text-align: center;
	padding: 30px;
	background-color: #f8f9fa;
	border-radius: 8px;
	margin-top: 30px;
}

.comments-closed p {
	color: #666;
	font-weight: 500;
}

/* Footer */
.footer {
	background-color: #1a1a1a;
	color: white;
	padding: 30px 0;
	text-align: center;
}

.footer p {
	font-size: 14px;
	color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
	.hero-title {
		font-size: 24px;
	}

	.hero-subtitle {
		font-size: 16px;
	}

	.pricing-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}

	.pricing-card.best-value {
		transform: none;
	}

	.container {
		padding: 0 15px;
	}

	.comment {
		flex-direction: column;
		gap: 10px;
	}

	.comment-avatar {
		align-self: flex-start;
	}
}

@media (max-width: 480px) {
	.hero {
		padding: 20px 0;
	}

	.hero-title {
		font-size: 20px;
	}

	.pricing-card {
		padding: 20px;
	}

	.new-price {
		font-size: 28px;
	}
}

.flexBox {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

@keyframes atomicat-animation-zoomInOut {
	0%, 100% {
		transform: scale(1);
	}

	50% {
		transform: scale(1.2);
	}
}

@keyframes atomicat-animation-zoomIn {
	from {
		-webkit-transform: scale(10);
		transform: scale(10);
		opacity: 0
	}
}

@keyframes atomicat-animation-tada {
	0%, 100% {
		transform: scale3d(1, 1, 1);
	}

	10%, 20% {
		transform: scale3d(.9, .9, .9) rotate3d(0, 0, 1, -3deg);
	}

	30%, 50%, 70%, 90% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
	}

	40%, 60%, 80% {
		transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
	}
}
.a-b-a {
	display: flex;
	flex-direction: row-reverse;
	gap: 5px;
	justify-content: center;
	align-items: center;
}

.a-b-b {
	display: flex;
	flex-direction: row;
	gap: 5px;
	align-items: center;
	justify-content: center;
}

.a-e-cont > .atomicat-button, .atomicat-marquee-content > .atomicat-button {
	background: var(--a-g-theme-color, rgba(100, 149, 237, 1));
	padding: 12px;
	text-align: center;
	font-size: 16px;
	font-weight: 600;
	transition: background-color 0.3s ease-in-out, color 0.3s ease-in-out;
	word-break: break-word;
	color: #fff;
	border-radius: var(--a-g-round, 1rem);
	align-self: center;
}

.atomicat-button svg {
	height: 14px;
}

.a-co {
	border-radius: 12px;
	padding: 8px;
}

.a-co .a-fb-img img {
	width: 100%;
	height: 100%;
}

.a-co .a-fb-img {
	max-width: 300px;
}

.a-co-f {
	border-top: 1px solid #e9ebee;
	padding-bottom: 8px;
	padding-top: 8px;
}

.a-co-f .a-co-fc {
	display: flex;
	align-items: center;
	gap: 5px;
}

.a-co-f .a-co-fc .a-co-fb {
	width: 14px;
	height: 14px;
}

.a-co-f .a-co-fc .a-co-ft {
	color: #385898;
	font-weight: 600;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 11px;
}

.a-co-h {
	border-bottom: 1px solid #e9ebee;
	padding-bottom: 20px;
}

.a-co-h .a-co-hc {
	display: flex;
	align-items: center;
	gap: 5px;
}

.a-co-h .a-co-hc .a-co-ht {
	font-weight: 600;
	font-family: Helvetica, Arial, sans-serif;
	font-size: 14px;
}


@media screen and (max-width: 480px) {
	.a-fb .a-fb-misc {
		flex-direction: column;
	}

	.a-co .a-fb .a-fb-text {
		width: 90%;
	}
}

.a-fb {
	width: 100%;
}

.a-fb .a-fb-parent {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}

.a-fb .a-fb-thumb {
	width: 48px;
	height: 48px;
	object-fit: cover;
	border-width: 2px;
	overflow: hidden;
}

.a-fb .a-fb-thumb-child {
	width: 36px;
	height: 36px;
}

.a-fb .a-fb-thumb-img {
	width: 100%;
	height: 100%;
}

.a-fb .a-fb-info {
	width: 100%;
}

.a-fb .a-fb-text {
	width: 100%;
	font-family: "Helvetica", "Arial", sans-serif;
}

.a-fb .a-fb-user {
	color: #385898;
	font-weight: 600;
	font-size: 14px;
	line-height: 1.358;
	text-transform: capitalize;
	word-break: break-word;
}

.a-fb .a-fb-comm {
	color: #1c1e21;
	line-height: 19.12px;
	margin-top: 4px;
	margin-bottom: 6px;
	font-size: 14px;
	font-weight: 400;
	word-break: break-word;
}

.a-fb .a-fb-misc {
	display: flex;
	justify-content: space-between;
}

.a-fb .a-fb-misc-left {
	display: flex;
	line-height: 16px;
	gap: 4px;
}

.a-fb .a-fb-misc-txt, .a-fb .a-fb-time {
	font-weight: 400;
	font-size: 12px;
	font-family: "Helvetica", "Arial", sans-serif;
	cursor: pointer;
	color: #4267b2;
}

.a-fb .a-fb-time {
	color: #90949c;
}

.a-fb .a-fb-misc-txt p {
	color: #4267b2;
}

.a-fb .a-fb-dot {
	font-weight: 400;
	font-size: 12px;
}

.a-fb .a-fb-misc-txt:hover {
	text-decoration-line: underline;
}

.a-fb .a-fb-likes {
	display: flex;
	align-items: center;
	gap: 4px;
	color: #1c1e21;
}

.a-fb .a-fb-likes .a-fb-like-img {
	width: 14px;
	height: 14px;
	display: block;
	margin-top: -2px;
}

.a-fb .a-fb-likes .a-fb-heart-img {
	width: 20px;
	margin-left: 4px;
	margin-right: 2px;
}

.a-fb .a-fb-likes span {
	font-size: 12px;
	font-weight: 400;
}

.a-fb .a-fb-children {
	margin-left: 48px;
	border-left: 1px dotted #d3d6db;
	padding-left: 8px;
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.a-fb .a-fb-child {
	display: flex;
	align-items: flex-start;
	gap: 8px;
}