:root { font-family: 'Inter', sans-serif; }
@supports (font-variation-settings: normal) {
 	:root { font-family: 'Inter var', sans-serif; }
}


:root {
  --text-color: #FDFAD9;
  --hover-color: #01164B;

  color: var(--text-color);

}

body {
  font-family: "Lemon", serif;
  font-weight: 400;
  font-style: normal;
	margin: 0;
}

a {
	text-decoration: none;
}

header#main_header {
	background-color: #F63A2E;
	position: fixed; 
	top: 0; 
	left: 0; 
	width: 100%;  
	z-index: 12; 
	text-align: center; 
	padding-top: 10px;
	padding-bottom: 10px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 12px 28px 0px, rgba(0, 0, 0, 0.1) 0px 2px 4px 0px, rgba(255, 255, 255, 0.05) 0px 0px 0px 1px inset;

}

header#main_header.transparent {
	background: none;
}

header#main_header a {
  color: var(--text-color);
  border-color: var(--text-color);
  transition: 0.3s;
  font-size: 1rem;
}

header#main_header a.button {
	border: 3px solid var(--text-color);
}

header#main_header a:hover {
	transform: scale(1.1);
	color: var(--hover-color);
	border-color: var(--hover-color);
}

footer a {
  color: var(--text-color);
  border-color: var(--text-color);
  transition: 0.3s;
  font-size: 1rem;
}


footer a:hover {
	transform: scale(1.1);
	color: var(rgba(7, 88, 115, 1));
	border-color: var(--hover-color);
}


/* STOCKISTS */
ul.stockists {
  padding-inline-start: 0;
  margin-bottom: 30px;

}

ul.stockists li {
	font-size: 1.4rem;
	list-style-type: none;
	margin-bottom: 15px;
}


ul.stockists li a {
	color: var(--text-color);
}


ul.stockists li a:hover {
	color: var(--hover-color);
	border-color: var(--hover-color);
}

ul.stockists li h2 {
	font-size: 1.4rem;
	margin-bottom: 0;
	margin-top: 0;
}

ul.stockists li span {
	font-size: 1rem;
}
/* /.STOCKISTS */


/* SOCIAL MEDIA */
.social-container {
	font-size: 22px;
	height: 32px;
	border-radius: 15px;
	aspect-ratio: 1;
	padding: 0.5rem;
	color: white;
	text-align: center;
	display: flex;
	justify-content: center;
	flex-direction: column;
}

.social-container:not(:first-child) {
	margin-left: 1rem;
}

.instagram { 
  background: #f09433; 
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
	background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
}

.tiktok {
	background-color: black;
}

.facebook {
	background-color: #1877F2;
}

.twitter {
	background-color: black;
}

.email {
	background-color: #0cb0ff;
}

#footer {
	flex-direction: column;
}

.container {
	max-width: 70%;
	margin-left: auto;
	margin-right: auto;
}

.page {
	display: flex; 
	flex-flow: column; 
	min-height: 100dvh;
}

.page > .page-contents {
	flex: 1 1 auto; 
	position: relative; 
	background-color: #F63A2E;
}






/* --- GALLERY STYLES --- */
.gallery-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
    margin-top: 80px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item img:hover {
    transform: scale(1.05);
}








/* SMALL */
@media only screen and (min-width: 576px) {
	#footer {
		flex-direction: row;
	}

}

/* MEDIUM */
@media only screen and (min-width: 768px) {
}

/* LARGE */
@media only screen and (min-width: 992px) {
}