﻿/* Main Code */
html{
	min-height:100%;
	height:100%;
	margin-bottom:1px;
	overflow:scroll;
	font-size: 100%;
}
body {
    font-family: Arial, sans-serif;
	background-color: #000000;
	height: 100%;
}
.floatclear {
	clear:both;
}
#page{
	width:100%;
  	margin:0;
	padding:0;
	text-align:left;
	position:relative;
    transition:.5s;
}
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color:black;
	padding: 15px 20px;
}
.logo {
	width: 275px;
	height: auto;
	margin:1em;
}
.logo img, .log a img {
	width:100%;
}
@media (max-width: 900px) {
	.logo img, .log a img {
		width:70%;
	}
}
@media (max-width: 500px) {
	.logo img, .log a img {
		width:70%;
	}
}
.btn {
	display: inline-block;
	padding: 14px 22px;
	margin:0;
	background-color: #c60000;
	color: #ffffff;
	font-size: 15px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.25s ease;
}
.btn img, .btn a img {
	width:100%;
}
.hero {
	width:100%;
	padding:1em 0;
	margin:0;
}
/* HERO IMAGE */
.hero .hero-image {
	width:49%;
	display:inline-block;
	float:left;
	margin:0 1%;
	padding:0;
}
.hero .hero-image img {
	width:70%;
	display:block;
	margin:0 auto;
}
.hero .hero-content {
	width:35%;
	color: #ffffff;
	display:inline-block;
	float:left;
	margin:0;
	padding:0;
}
.hero .hero-content h2 {
	font-size:28px;
	margin-bottom: 25px;
	line-height: 1.6;
}
.hero .hero-content p {
	font-size: 20px;
	line-height: 1.5;
}
.hero .shopbtn {
	text-align:center;
	display: block;
	padding: 14px 28px;
	margin:0 auto;
	background-color: #c60000;
	color: #ffffff;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.25s ease;
}
#page #pagecontent {
	width: 100%;
	height: 100%;
	padding: 0;
	margin: 0;
	float: left;
	position: relative;
	background-color: #ffffff;
}
.current-focus {
	background-color: #faf8f9;
	padding: 80px 20px;
}

.current-focus .container {
	max-width: 700px;
	margin: 0 auto;
	text-align: center;
}

.current-focus h2 {
	font-size: 28px;
	margin-bottom: 25px;
	color: #1a1a1a;
}

.current-focus p {
	font-size: 20px;
	line-height: 1.7;
	color: #5a5a5a;
	margin-bottom: 15px;
}
.hero-container {
	width:50%;
	display:inline-block;
	float:left;
	margin:0;
	padding:2em 0 0 0;
	background-color:#ffffff;
}
.hero-container h2 {
	text-align:center;
	font-size: 22px;
	line-height: 2;
	color:#000000;
}
.how-it-works {
	width:50%;
	display:inline-block;
	float:left;
	margin:0;
	padding:0;
	background-color: #ffffff;
}
.how-it-works .container {
	max-width: 1000px;
	margin: 0 auto;
	text-align: center;
}

.how-it-works h2 {
	font-size: 28px;
	margin-bottom: 50px;
	color: #1a1a1a;
}
.steps {
	display: flex;
	gap: 40px;
	justify-content: center;
	flex-wrap: wrap;
}

.step {
	width:33%;
	max-width: 250px;
	text-align: center;
}
@media (max-width: 900px) {
	.step {
		width:100%;
  }
}
@media (max-width: 500px) {
	.step {
		width:100%;
  }
}
.step img {
	display: block;
	margin: 0 auto 15px auto;
	width:150px;
}
.step h3 {
	font-size: 18px;
	margin-bottom: 10px;
	color: #1a1a1a;
}

.step p {
	font-size: 15px;
	line-height: 1.6;
	color: #5a5a5a;
}
.featured-products {
	padding: 80px 20px;
	background-color: #ffffff;
}

.featured-products .container {
	max-width: 1100px;
	margin: 0 auto;
	text-align: center;
}

.featured-products h2 {
	font-size: 28px;
	margin-bottom: 50px;
	color: #1a1a1a;
}

.product-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 40px;
}
.product-card {
	text-align: center;
	transition: transform 0.25s ease;
}

.product-card img {
	width: 100%;
	height: auto;
	border-radius: 6px;
}

.product-card h3 {
	font-size: 16px;
	margin-top: 15px;
	margin-bottom: 5px;
	color: #1a1a1a;
}

.product-card p {
	font-size: 14px;
	color: #5a5a5a;
}
.product-card:hover {
	transform: translateY(-5px);
}
@media (max-width: 900px) {
	.product-grid {
		grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
	.product-grid {
		grid-template-columns: 1fr;
  }
}
.about {
	padding: 80px 20px;
}

.about .container {
	max-width: 700px;
	margin: 0 auto;
}

.about h1 {
	font-size: 32px;
	margin-bottom: 30px;
	color: #1a1a1a;
}

.about p {
	font-size: 16px;
	line-height: 1.8;
	color: #5a5a5a;
	margin-bottom: 18px;
}
.contact {
	padding:5px 20px;
	background-color: #f4f1f3;
	text-align: center;
}
.contact .container {
	max-width: 600px;
	margin: 0 auto;
}
.contact h2 {
	font-size: 28px;
	margin-bottom: 20px;
	color: #1a1a1a;
	padding:5px 0 0 0;
}
.contact p {
	font-size: 16px;
	color: #5a5a5a;
	margin-bottom: 15px;
}
.contact-links p {
	margin-bottom: 10px;
}
.contact a {
	color: #1a1a1a;
	text-decoration: none;
	border-bottom: 1px solid transparent;
	transition: all 0.2s ease;
}
.contact a:hover {
	border-bottom: 1px solid #1a1a1a;
}

.contact-social {
	margin-top: 25px;
}
.contact-social a {
	color: #1a1a1a;
	display: inline-block;
	transition: transform 0.2s ease, color 0.2s ease;
}
.contact-social a:hover {
	transform: translateY(-2px);
	color: #555555;
}
/* Store */
div#page div#pagecontent div.storeblock {
	width:100%;
	padding:0;
	margin:0 0 1em 0;
	float:left;
	display:block;
	overflow:hidden;
	color:#000000 !important;
	background-color: #fcfcfc !important;
}
div#page div#pagecontent div.storeblock h2, div#page div#pagecontent div.storeblock h3 {
	text-align:center;
}
div#page div#pagecontent div.storeblock.nostoreborders {
	border:0 !important;
}
div#page div#pagecontent div.storeblock .freeshipping {
	text-align:center;
	display: block;
	padding: 14px 28px;
	margin:0 auto;
	background-color: #c60000;
	color: #ffffff;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.25s ease;
}
div#page div#pagecontent div.cartdiv {
	width:13%;
	height:70px;
	position:relative;
	right:0;
	margin:0;
	float:right;
	display:inline-block;
	padding:0;
	z-index:100;
	text-align:center;
}
@media (max-width: 900px) {
		div#page div#pagecontent div.cartdiv {
			width:25%;
  }
}
@media (max-width: 500px) {
		div#page div#pagecontent div.cartdiv {
			width:40%;
  }
}
div#page div#pagecontent div.storeblock div.storefrontblock {
	width:95%;
	padding:0;
	margin:0 auto;
}
div#page div#pagecontent div.storeblock div.storefrontblock p.storetitle {	
	text-align:center;
	margin:0 1em;
	padding:0;
	color:#1a1a1a;
}
div#page div#pagecontent div.storeblock div.storefrontblock p.storeblockinfo {
	width:55%;
	text-align:left;
	margin:0 auto;
	padding:0;
	font-size:1em;
	color:#1a1a1a;
}
@media (max-width: 900px) {
	div#page div#pagecontent div.storeblock div.storefrontblock p.storeblockinfo {
		width:95%;
  }
}
@media (max-width: 500px) {
	div#page div#pagecontent div.storeblock div.storefrontblock p.storeblockinfo {
		width:95%;
  }
}
div#page div#pagecontent div.storeblock div.storefrontblock p.storeblockinfo em {
	text-align:center;
	display:block;
	font-size:1.4em;
	margin-top:2em;
	color:#1a1a1a;
}
div#page div#pagecontent div.storeblock div.storefrontblock p.storeblockinfo img, div#page div#pagecontent div.storeblock div.storefrontblock img.storeheaderlogo {	
	width:100%;
	display:block;
	padding:1em 0;
	margin:1em 0;
}
div#page div#pagecontent div.storeblock div.storefrontblock h2 {
	text-align:center;
	margin:0;
	padding:1em 0;
	font-size:1.3em;
	display:block;
	color:#1a1a1a;
}
div#page div#pagecontent div.storeblock div.storefrontblock h3 {
	width:28em;
	text-align:left;
	margin:0 auto;
	padding:1em 0;
	font-size:1em;
	display:block;
	color:#1a1a1a;
}
div#page div#pagecontent div.storeblock div.storefrontblock h4 a, div#page div#pagecontent div.storeblock div.storefrontblock h4 a:visited, div#page div#pagecontent div.storeblock div.storefrontblock h4 a:hover, div#page div#pagecontent div.storeblock div.storefrontblock h4 a:active, div#page div#pagecontent div.storeblock div.storefrontblock h4 a:focus {
	text-align:center;
	margin:0;
	padding:1em 0;
	font-size:1em;
	display:block;
	color: #1a1a1a;
	transition: transform 0.2s ease, color 0.2s ease;
}
/* Terms */
div#page div#pagecontent div.termsblock {	
	text-align:left;
	padding:0;
	float:none;
	display:block;
	padding: 1em 0;
	margin:1em auto 0 auto;
	width:70%;
}
div#page div#pagecontent div.termsblock ul.termslist {
	margin:0;
	padding:0;
	list-style-type:none;
	width:90%;
}
div#page div#pagecontent div.termsblock ul.termslist li {
	margin:0;
	padding:.5em 0;
}
div#page div#pagecontent div.termsblock ul.termslist li a, div#page div#pagecontent div.termsblock ul.termslist li a:visited, div#page div#pagecontent div.termsblock ul.termslist li a:hover, div#page div#pagecontent div.termsblock ul.termslist li a:active, div#page div#pagecontent div.termsblock ul.termslist li a:focus {
	margin: 0;
	padding: 0;
	font-weight:500 !important;
}
div#page div#pagecontent div.termsblock div.termssection {
	margin:0;
	padding:0;
}
div#page div#pagecontent div.termsblock div.termssection p {	
	text-align:left;
	margin:1em auto;
	padding:0;
	float:none;
	display:block;
	width:95%;
}
/* Footer */
div#page a img.gottotop {
	position:fixed;
	bottom:5%;
	right:5%;
}
.footer {
	padding: 40px 20px;
	text-align: center;
	background-color: black;
}

.footer-links {
	margin-bottom: 15px;
}

.footer-links a {
	margin: 0 10px;
	color: #ffffff;
	text-decoration: none;
	font-size: 14px;
}

.footer-note {
	font-size: 13px;
	color: #e6e0e3;
	max-width: 600px;
	margin: 0 auto;
}
.footer-logo {
	width: 175px;
	margin-bottom: 20px;
	opacity: 0.8;
}
/* MOBILE */
@media (max-width: 768px) {
.hero {
	width:100%;
	padding:1em 0;
	margin:0;
}
/* HERO IMAGE */
.hero .hero-image {
	width:90%;
	display:block;
	float:none;
	margin:0 auto 1em auto;
	padding:0;
}
.hero .hero-image img {
	width:70%;
	display:block;
	margin:0 auto;
}
.hero .hero-content {
	width:90%;
	color: #ffffff;
	display:block;
	float:none;
	margin:0 auto;
	padding:0;
}
.hero .hero-content h2 {
	font-size:28px;
	margin-bottom: 25px;
	line-height: 1.6;
}
.hero .hero-content p {
	font-size: 20px;
	line-height: 1.5;
}
.hero .shopbtn {
	text-align:center;
	width: 70%;
	display: block;
	padding: 14px 28px;
	margin:0 auto;
	background-color: #c60000;
	color: #ffffff;
	font-size: 20px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.25s ease;
}
.hero-container {
	width:90%;
	display:block;
	float:none;
	margin:0 auto;
	text-align:center;
}
.how-it-works {
	width:90%;
	display:block;
	float:none;
	margin:0 auto;
	padding:0;
	background-color: #ffffff;
}
}
/* MOBILE */
@media (min-width:768px) and (max-width:1279px) and (orientation:portrait) {
.hero {
	width:100%;
	padding:1em 0;
	margin:0;
}
/* HERO IMAGE */
.hero .hero-image {
	width:90%;
	display:block;
	float:none;
	margin:0 auto 1em auto;
	padding:0;
}
.hero .hero-image img {
	width:70%;
	display:block;
	margin:0 auto;
}
.hero .hero-content {
	width:90%;
	color: #ffffff;
	display:block;
	float:none;
	margin:0 auto;
	padding:0;
}
.hero .hero-content h2 {
	font-size:28px;
	margin-bottom: 25px;
	line-height: 1.6;
}
.hero .hero-content p {
	font-size: 20px;
	line-height: 1.5;
}
.hero .shopbtn {
	text-align:center;
	width: 70%;
	display: block;
	padding: 14px 28px;
	margin:0 auto;
	background-color: #c60000;
	color: #ffffff;
	font-size: 22px;
	font-weight: 600;
	letter-spacing: 0.05em;
	text-decoration: none;
	border-radius: 4px;
	transition: all 0.25s ease;
}
.hero-container {
	width:90%;
	display:block;
	float:none;
	margin:0 auto;
	text-align:center;
}
.how-it-works {
	width:90%;
	display:block;
	float:none;
	margin:0 auto;
	padding:0;
	background-color: #ffffff;
}
}
