@font-face {
  font-family: 'M PLUS Rounded 1c';
  src: url('/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'M PLUS Rounded 1c';
  src: url('/fonts/M_PLUS_Rounded_1c/MPLUSRounded1c-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Roboto';
  src: url('/fonts/Roboto/static/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Roboto';
  src: url('/fonts/Roboto/static/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

body {
	font-family: 'Roboto', sans-serif;
	margin: 0;
	padding: 0;
	background-color: #f9f9f9;
	color: #333;
}
header {
	background-color: #4CAF50;
	color: white;
	text-align: center;
	padding: 20px;
}
header h1 {
	margin: 0;
	font-size: 2.5em;
	font-family: 'Roboto', sans-serif;
	font-weight: 800;
}
header a {
	color: #fff;
	text-decoration: none;
}
.container {
	width: 90%;
	max-width: 1000px;
	margin: auto;
	padding: 20px;
}
h2, h3 {
	color: #710871;
	text-transform: uppercase;
	font-family: 'M PLUS Rounded 1c', sans-serif;
	font-weight: 800;
	letter-spacing: -1pt;
}
h3 {
	font-size: 1.3em;
}
p, li {
	font-family: 'Roboto', sans-serif;
	line-height: 1.5em;
}
.product-category div {
	width: 94%;
	margin-bottom: 20px;
	background-color: white;
	padding: 3%;
	border-radius: 5px;
	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.product-category img {
	width: 100%;
	max-width: 1000px;
	border-radius: 5px;
	display: block;
	margin: 0 auto;
	height: auto;
}
.custom-image {
	width: 100%;
	height: auto;
	margin: 0 auto;
	clear: both;
	border: 1px solid #ccc;
	background: #eee url('leapday-bg.png') repeat center bottom;
	padding: 20px 0 0 0;
}
.cta-button {
	display: block;
	background-color: #4CAF50;
	color: white;
	text-align: center;
	padding: 10px 0;
	margin-top: 10px;
	text-decoration: none;
	border-radius: 5px;
	width: 100%;
	max-width: 500px;
	margin-left: auto;
	margin-right: auto;
	word-wrap: break-word;
	-webkit-transition: all .3s ease-out;
	-moz-transition: all .3s ease-out;
	-o-transition: all .3s ease-out;
	transition: all .3s ease-out;
}
.cta-button:hover {
	background-color: #710871;
}
.affiliate-disclaimer {
	text-align: center;
	font-size: 0.9em;
	margin-top: 10px;
}
footer {
	background-color: #4CAF50;
	color: white;
	text-align: center;
	padding: 10px 0;
	margin-top: 20px;
}
footer a {
	color: white;
	text-decoration: none;
	margin: 0 10px;
}
footer a:hover {
	text-decoration: underline;
}
.countdown {
	text-align: center;
	margin: 40px 0;
}
.countdown h2 {
	font-size: 2em;
	color: #710871;
}
.countdown-number {
	font-size: 3em;
	font-weight: bold;
	color: #710871;
	border: 15px solid #4CAF50;
	border-radius: 50%;
	width: 150px;
	height: 150px;
	line-height: 130px;
	text-align: center;
	margin: 20px auto;
	position: relative;
}
.countdown-number span {
	font-size: 0.5em;
	position: absolute;
	top: 40px;
	width: 100%;
	left: 0;
	text-align: center;
}
.logo {
	display: block;
	margin: 0 auto 20px auto;
	text-align: center;
}

/* Cookie Consent Styles */
#consentBox {
	background: #fff;
	padding: 2% 5%;
	box-shadow: 0 0 16px rgba(0, 0, 0, 0.2);
	text-align: center;
	position: fixed;
	bottom: 0px;
	width: 90%;
	height: auto;
	z-index: 1000;
}
#consentBox.hide {
	opacity: 0;
	pointer-events: none;
	transform: scale(0.8);
	transition: all 0.3s ease;
}
::selection {
	color: #fff;
	background: #229a0f;
}
#consentContent {
	background: #fff;
}
#consentContent p {
	color: #000;
	margin: 10px 0 20px 0;
	font-size: 14px;
}
#consentContent .buttons {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 20px;
}
.consentButton, .rejectButton {
	padding: 12px 30px;
	border: none;
	outline: none;
	color: #fff;
	font-size: 16px;
	border-radius: 5px;
	cursor: pointer;
	transition: all 0.3s ease;
}
.consentButton {
	background: #2a910b;
	margin-right: 10px;
}
.rejectButton {
	color: #111211;
	background: #fff;
	border: 2px solid #099c2c;
	text-decoration: none;
}