/*------------reset-----------------*/
* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	scroll-behavior: smooth;
}

body {
	font-family: "Open Sans", sans-serif;
	overflow-x: hidden;
	overflow-y: scroll;
	background-color: #fff;
}

body {
	color: #171717;
	font-size: 17px;
	line-height: 1.6;
}

img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
}

.container {
	width: 1170px;
	margin: 0 auto;
	padding: 0 15px;
}

/*-----------banner-----------------*/
.banner {
	text-align: center;
}

.banner-inner {
	color: #777;
	padding: 5px 0px;
}

/*-----------btn-----------------*/
.btn-box {
	width: 100%;
	margin-top: 25px;
	margin-bottom: 25px;
}

.btn {
	display: inline-block;
	width: 100%;
	color: #fff;
	background-color: #f31200;
	border-radius: 10px;
	padding: 12px 35px;
	font-size: 24px;
	font-weight: 600;
	text-decoration: none;
	text-transform: capitalize;
	cursor: pointer;
	outline: 0;
	text-align: center;

	box-shadow: 0 6px 0 #c40202;
	/* 下方投影，模拟立体 */
	transition: all 0.1s ease-in-out;
}

.btn:hover,
.btn:active {
	background-color: #c40202;
}

.btn:active,
.btn:hover {
	transform: translateY(4px);
	/* 按下去下移 */
	box-shadow: 0 2px 0 #bf3624;
	/* 投影缩小，感觉被按下 */
}

.btn svg {
	display: inline-block;
	vertical-align: middle;
	width: 35px;
	height: auto;
}

.btn span {
	font-size: 24px;
	font-weight: 700;
	font-family: "Open Sans", sans-serif;
	vertical-align: -2px;
}

/*-----------header-----------------*/
header {
	padding: 30px 0 10px 0;
	margin-bottom: 14px;
}

header .header-inner {
	display: flex;
	flex-direction: row;
	justify-content: start;
	width: 83.3%;
	margin: 0 auto;
}

header .header-inner .logo {
	max-width: 60%;
	width: 250px;
	height: auto;
}

header .header-inner .flag {
	width: 30px;
	height: auto;
	margin-top: 5px;
}

/* ------------------- Header ------------------- */
header {
	padding: 20px 0;
	position: relative;
	z-index: 1000;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

header .container {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	max-width: 1320px;
}

header nav {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 40px;

}

header nav a {
	text-decoration: none;
	color: #002f28;
	width: max-content;
	font-size: 0.875rem;
	line-height: 1.25rem;
	font-weight: 500;
}
header nav a:hover,header nav a:active{
	text-decoration: underline;
}
header #menu-btn {
	display: none;
}

header .logo {
	max-width: 60%;
	width: 250px;
	height: auto;
	cursor: pointer;
}

/* ------------------- Footer ------------------- */
footer {
	padding: 35px 15px;
	color: #abb0ba;
	background-color: #2e3138;
	word-wrap: break-word;
}

footer .footer-disclosure p {
	margin-top: 1rem;
	margin-bottom: 1rem;
	font-size: 0.8rem;
	line-height: 1.2rem;
}

footer a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
	transition: color 0.3s ease;
	font-size: 0.95rem;
}

footer a:hover,
footer a:visited {
	text-decoration: underline;
}

footer .footer-items .footer-item img {
	max-height: 75px;
	width: 250px;
	filter: brightness(0) invert(1);
	margin-bottom: 10px;
}

footer .Copyright,
footer .links a {
	color: #fff;
	font-weight: 600;
	text-align: center;
}

footer .links {
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: center;
	margin-top: 15px;
}

footer .footer-disclosure {
	text-align: center;
	max-width: 900px;
	margin: 0 auto;
}

/*-----------deals-----------------*/
.deals {
	text-align: center;
	padding: 8px 14px;
	background-color: #fcf8e3;
	border: 1px solid #fbeed5;
	border-radius: 4px;
	color: #000;
}

.deals {
	width: 83.3%;
	margin: 0px auto 12px;
}

/*-----------grid2----------------*/
.grid2 {
	width: 83.3%;
	margin: 0 auto;
	display: flex;
	flex-direction: row;
	gap: 4px;
}

.grid2 .grid:first-child {
	background-color: #2083e8;
	margin-bottom: 5px;
	width: fit-content;
	height: 25px;
	text-align: center;
	width: 180px;
	border-radius: 4px;
}

.grid2 .grid:first-child p {
	font-size: 16px;
	line-height: 25px;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
}

.grid2 .grid:last-child {
	background-color: #CC0C39;
	margin-bottom: 5px;
	width: fit-content;
	height: 25px;
	text-align: center;
	width: 200px;
	border-radius: 4px;
}

.grid2 .grid:last-child p {
	font-size: 16px;
	line-height: 25px;
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	font-weight: bold;
}

/*-----------h1----------------*/
h1 {
	width: 83.3%;
	margin: 30px auto 15px;

}

h1 {
	font-size: 2.7rem;
	line-height: 1.25;
	font-family: Poppins, sans-serif;
	font-weight: 600;
	/* color: #333; */
	letter-spacing: .5px;
	text-align: center;
}

h1 span {
	font-style: italic;
	font-weight: 400;
	font-size: 1.8rem;
}

/*-----------details---------------*/

.details {
	width: 83.3%;
	margin: 0 auto;
}

.details .meta {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	gap: 12px;
	margin-bottom: 10px;
	justify-content: center;
}

.details .meta .stars img {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	display: none;
}

.details .meta .stars {
	position: relative;
	display: inline-block;
	width: fit-content;
	display: none;
}

.avatar {
	width: 2.5rem;
	height: 2.5rem;
	border-radius: 50%;
	display: block;
}

.online-dot {
	position: absolute;
	bottom: -1px;
	right: -4px;
	width: 14px;
	height: 14px;
	background-color: #4caf50;
	border-radius: 50%;
	border: 2px solid #fff;
}

.details .meta .meta-author {
	font-weight: bold;
}

.details .meta .meta-date,
.details .meta .meta-category,
.details .meta .meta-author,
.details .meta .meta-ad {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #4b5563;
}

.details .meta .meta-date,
.details .meta .meta-ad {
	font-weight: 300;
}

.details .meta a {
	text-decoration: none;
	color: #4b5563;
}

.details .meta a:hover,
.details .meta a:active {
	text-decoration: underline;
}

.details .socials {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	gap: 5px;
	margin-top: 20px;
	margin-bottom: 20px;
}

.details .socials a {
	padding: 7px 10px;
	width: 25%;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-transition: 0.3s;
	transition: 0.3s;
	height: 32px;
	gap: 5px;
	text-decoration: none;
}

.details .socials a span {
	color: #fff;
	font-weight: 500;
	letter-spacing: 0.5px;
	font-size: 11px;
	line-height: 32px;
	text-align: center;
}

.details .socials a:hover {
	-webkit-transform: translateY(-5px);
	transform: translateY(-5px);
}

.details .socials svg {
	width: 14px;
	-webkit-filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(294deg) brightness(104%) contrast(104%);
	filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(294deg) brightness(104%) contrast(104%);
}

.details .socials a span {
	transition: all 0.2s ease-in;
	color: #fff;
	display: inline-block;
	font-weight: 500;
	letter-spacing: 0.5px;
	min-width: 60px;
	opacity: 1;
	padding: 0 6px;
	position: relative;
	vertical-align: top;
}

.meta-ad a {
	cursor: pointer;
	text-decoration: underline;
}

.disclosure-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

.disclosure-box {
	background: #fff;
	width: 90%;
	max-width: 950px;
	max-height: 70%;
	padding: 20px;
	border-radius: 12px;
	position: relative;
	overflow-y: auto;
}

.close-btn {
	position: absolute;
	top: 10px;
	right: 14px;
	font-size: 24px;
	background: none;
	border: none;
	cursor: pointer;
}

.disclosure-box .disclosure-content p {
	margin-top: 30px;
}

/*-----------hero-----------------*/
.hero {
	width: 83.3%;
	margin: 0 auto 10px;
}

.hero img {
	border-radius: 4px;
}

/* ------------ As seen on ------------ */

.as-seen {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
	width: 83.3%;
	margin: 0 auto;
}

.as-seen img {
	width: 80%;
}

.as-seen p {
	font-size: 14px;
	text-transform: uppercase;
}

/* ------------ quote ------------ */
.quote {
	width: 83.3%;
	margin: 20px auto;
}

.quote p {
	margin-bottom: 1rem;
	font-size: 1.125rem;
	/*font-weight: 500;*/
	line-height: 1.625;
	color: rgba(55, 65, 81, 1);
	letter-spacing: 0.2px;
}

.quote p:nth-child(5) {
	margin-bottom: 2rem;
}

hr {
	margin-bottom: 1rem;
	border: 0;
	border-top: 1px solid rgb(0 0 0 / 0.1);
}

/* ------------ offer ------------ */
.offer {
	width: 83.3%;
	margin: 20px auto;
}

.offer .offer-title {
	font-size: 1.5rem;
	line-height: 1.25;
	margin: 1.875rem 0rem 1rem;
	font-weight: 700;
}

.offer .offer-title .offer-number {
	padding: 0.25rem 0.5rem;
	border-radius: 4px;
	color: #fff;
	background-color: #000;
	font-size: 20px;
	line-height: 1.5;
}

.offer .offer-title .offer-name {
	color: #ff5903;
	text-decoration: underline;
	outline: 0;
}

.offer-description .highlight {
	color: #ff5903;
	text-decoration: underline;
	outline: 0;
	font-weight: 700;
}

.offer-description a:hover {
	text-decoration: none;
	cursor: pointer;
	font-weight: 700;
	outline: 0;
}

.offer .offer-title a:hover {
	text-decoration: none;
}

.offer-description ul {
	margin-left: 20px;
}

.rating-box {
	display: flex;
	align-items: center;
}

.offer .offer-title a:hover,
.offer .offer-title a:visited {
	text-decoration: none;
}

.star {
	width: 16px;
	height: auto;
	fill: #ffc600;

}

.full-star {
	fill: #ffc600;
}

.half-star-wrap {
	position: relative;
	width: 16px;
	height: 16px;
}

.half-star-left {
	position: absolute;
	left: 0;
	top: 0;
	width: 16px;
	clip-path: inset(0 50% 0 0);
	fill: #ffc600;
}

.half-star-right {
	position: absolute;
	left: 0;
	top: 0;
	width: 16px;
	clip-path: inset(0 0 0 50%);
	fill: #ccc;

}

.review-count {
	font-size: 0.875rem;
	line-height: 1.25rem;
	color: #fff;
	text-decoration: underline;
	display: none;
}

.review-count:hover {
	text-decoration: none;
}

.lazy-video,
.lazy-img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	display: block;
	background-color: #000;
}

.offer-relative {
	position: relative;
	overflow: hidden;
	border-radius: 12px;
}

.offer-relative .discount {
	position: absolute;
	bottom: 0;
	right: 0;
	color: #fff;
	background-color: rgb(0 0 0 / 0.3);
	padding: 0.5rem;
}

.offer-relative .discount {
	display: flex;
	flex-direction: column;
	gap: 5px;
	align-items: start;
	justify-content: center;
}

.offer-relative .discount .discount-deal {
	font-size: 16px;
	line-height: 1.5;
	display: flex;
	flex-direction: row;
	gap: 6px;
	align-items: center;
	justify-content: center;
}

.offer-relative .discount .discount-deal span {
	background-color: #CC0C39;
	color: #FFFFFF;
	border-radius: 2px;
	padding: 3px 6px;
	font-size: 16px;
	font-weight: 600;
	display: none;
}

.offer-relative .discount .discount-deal.scoring {
	font-weight: 700;
}

.discount .discount-rating {
	display: flex;
	flex-direction: row;
	gap: 6px;
	align-items: center;
	justify-content: center;
}

.offer .offer-description p {
	margin: 1rem 0;
	font-size: 1.125rem;
	line-height: 1.625;
}

.offer .offer-description p b {
	font-weight: 700;
}

/*-----------arrivals-----------------*/
.Arrivals span {
	background-image: linear-gradient(-100deg, rgba(255, 224, 0, 0.3), rgba(255, 224, 0, 0.7) 95%, rgba(255, 224, 0, 0.1));
	font-size: 2.25rem;
	line-height: 1.5;
	font-weight: 700;
}

/*-------------policy----------------*/

.html.container-all {
	padding: 0.625rem 1.875rem;
}

.html.container-all h3 {
	text-align: center;
	font-size: 1.875rem;
	margin-bottom: 1.25rem;
}

.html.container-all p {
	font-size: 1.2rem;
	line-height: 1.8rem;
	margin-bottom: 1.25rem;
	font-weight: 300;
}

.html.container-all .highlight {
	font-weight: 600;
}

/*-----------mediaqueries-----------------*/
@media only screen and (max-width: 1301px) {}

@media only screen and (max-width:1199px) {
	.container {
		width: 970px;
	}
}

@media only screen and (max-width:1024px) {
	.details .socials a:nth-child(5) span {
		display: none;
	}
}

@media only screen and (max-width:991px) {
	.container {
		width: 750px;
	}

	header {
		padding: 23px 0;
	}

	header .btn {
		display: none;
	}

	header nav {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		position: absolute;
		width: 100%;
		background-color: white;
		top: 100%;
		left: 0;
		height: 0;
		overflow: hidden;
		-webkit-transition: 0.3s;
		transition: 0.3s;
		gap: 0;
	}

	header nav a {
		display: -webkit-box;
		display: -ms-flexbox;
		display: flex;
		-webkit-box-align: center;
		-ms-flex-align: center;
		align-items: center;
		width: 100%;
		min-height: 44px;
		padding-left: 18px;
		border: 1px solid #d6d6d6 !important;
	}

	header nav.open {
		height: 132px;
	}

	header #menu-btn {
		display: block;
		width: 60px;
		padding: 4px 12px;
		border: 1px solid rgba(0, 0, 0, 0.4);
		border-radius: 4px;
	}
}

@media only screen and (max-width: 915px) {
	header {
		padding: 15px 0;
	}
}

@media screen and (max-width: 790px) {}

@media screen and (min-width: 768px) {
	nav {
		-webkit-box-shadow: none !important;
		box-shadow: none !important;
	}
}

@media only screen and (max-width: 768px) {

	.details .meta .meta-date,
	.details .meta .meta-category,
	.details .meta .meta-author,
	.details .meta .meta-ad {
		font-size: 0.75rem;
		line-height: 1.1rem;
	}

	.details .meta {
		justify-content: center;
	}

	.details .display {
		display: none;
	}

	.details .meta .stars {
		display: none;
	}

	header .header-inner {
		width: 100%;
	}

	.deals,
	.grid2,
	h1,
	.details,
	.hero,
	.as-seen,
	.quote,
	.offer {
		width: 100%;
	}

	h1 {
		font-size: 1.6rem;
		line-height: 2.1rem;
	}

	h1 span {
		font-size: 1.2rem;
	}

}

@media only screen and (max-width: 767px) {
	header #menu-btn{
		width: 50px;
	}
	.container {
		width: 100%;
		padding: 0 15px;
	}

	.details .socials a:nth-child(4) span {
		display: none;
	}

	.as-seen {
		-webkit-box-orient: vertical;
		-webkit-box-direction: normal;
		-ms-flex-direction: column;
		flex-direction: column;
		gap: 15px;
	}

	.as-seen img {
		width: 100%;
	}

	.as-seen p {
		display: none;
	}

	.offer-relative .discount .discount-deal {
		font-size: 14px;
	}

	.offer-relative .discount .discount-deal span {
		font-size: 14px;
	}

	.btn {
		font-size: 20px;
		padding: 12px 19px;
	}

	.btn svg {
		width: 28px;
		height: auto;
	}

	.Arrivals span {
		font-size: 1.875rem;
	}

	footer .Copyright {
		text-align: start;
	}

	footer .links {
		flex-direction: column;
		align-items: start;
		gap: 5px;
	}

	footer .footer-disclosure {
		text-align: start;
	}

	/*
	.offer .offer-title {
		font-size: 1.25rem;
		line-height: 1.5;
	}

	.offer .offer-title .offer-number {
		font-size: 15px;
		line-height: 1.5;
	}
*/
}

@media only screen and (max-width: 767px) {
	header {
		padding: 20px 0 10px 0;
	}
}

@media only screen and (max-width: 600px) {
	.details .socials a:nth-child(3) span {
		display: none;
	}
}

@media only screen and (max-width: 550px) {
	.details .socials a:nth-child(2) span {
		display: none;
	}
}

@media only screen and (max-width: 500px) {
	body {
		font-size: 16px;
	}
}

@media only screen and (max-width: 450px) {
	.details .socials a:nth-child(1) span {
		display: none;
	}

	.details .socials a:nth-child(5) {
		display: none;
	}
}

@media only screen and (max-width: 350px) {

	.details .meta .meta-date,
	.details .meta .meta-category,
	.details .meta .meta-author {
		font-size: 0.7rem;
	}
}

@media only screen and (max-width: 320px) {}