@import "/scripts/shop.css"; /* Import general CSS */

/* Fashion template */
@font-face {
	font-family: 'Existence Light';
	src: local('Existence Light'),
		url('/scripts/font/Existence Light.woff2') format('woff2'),
		url('/scripts/font/Existence Light.woff') format('woff');
}

/* Variables */
html {
	--color1: #fff;		/* Website background */
	--color2: #fff;		/* Menu background */
	--color3: #333;		/* Text color */
	--color4: #ca278c;	/* Hover color */
}

/* Containers */
body			{ margin: 0; padding: 0; font-family: Existence Light,Helvetica,Arial,sans-serif; background: var(--color1); }
#cont1			{ display: flex; justify-content: space-between; align-items: stretch; min-height: 120px;  }
#header1		{ padding: 10px; }
#header2		{ padding: 10px; text-align: right; }
#cont2			{ display: flex; width: 1180px; margin: 0 auto; min-height: 60vh; }
aside			{ width: 200px; padding: 10px; background: #fff; }
main 			{ flex-grow: 2; padding: 10px; background: #fff; }


/* Objects */
main a			{ color: var(--color4); }
svg,
svg path		{ fill: var(--color3); transition: 0.3s fill; }
svg:hover,
svg:hover path		{ fill: var(--color4); }

#logo img		{ vertical-align: middle; }
#search,
#cart,
nav,
#lang			{ display: inline-block; vertical-align: top; font-weight: bold; }

#search,
#cart,
#mnav			{ margin: 12px 8px 0 0; }

#cart a			{ text-decoration: none; }
#cart span {
	margin-left: 4px; vertical-align: top; padding: 5px 3px 2px 3px;
	color: #fff; background: var(--color4);
	font-size: 0.8em; font-weight: bold; border-radius: 3px;
}

#lang a	{
	line-height: 50px; padding: 0 14px; outline: none; text-decoration: none;
	color: var(--color3); transition: 0.3s color;
}

/* Navigation */
nav {
	display: block; margin: 30px; padding: 10px 0;
	text-align: center; max-height: auto; transition: max-height 1s;
	border-width: 1px 0 1px 0; border-style: solid; border-color: var(--color3);
	background: var(--color2);
}
nav ul, nav li		{ list-style: none; margin: 0; padding: 0; }
nav > ul		{ max-width: 1200px; margin: 0; display: inline-block; }
nav li			{ display: inline-block; }
nav a {
	display: block; line-height: 40px; padding: 0 14px; text-decoration: none;
	font-weight: bold; outline: none; color: var(--color3); transition: 0.3s color;
}
nav > ul > li > a	{ line-height: 50px; }

/* Sub navigation */
nav > ul ul {
	position: absolute; margin-left: -4px; min-width: 150px; z-index: 100;
	max-height: 0; opacity: 0; overflow-y: auto; background: var(--color2);
	border: 1px solid #eee;
	transition: max-height 0.3s linear 0s, opacity 0.2s linear 0s; overflow: hidden;
}

nav > ul ul > li	{ display: block; }
nav > ul li:hover > ul	{ opacity: 1; max-height: 100%; }

nav a:hover,
#lang a:hover		{ color: var(--color4); }
nav a:hover svg,
nav a:hover svg path,
#lang a:hover svg,
#lang a:hover svg path	{ fill: var(--color4); }

/* Mobile navigation */
#mnav			{ display: none; } /* Hide mobile menu hamburger on wide screens */
#mnav a			{ outline: none; }

/* Category navigation */
#cat ul, #cat ul li	{ list-style: none; margin: 0; padding: 0; }
#cat a {
	display: inline-block; margin-bottom: 32px; padding: 4px 0;
	font-size: 1.4em; text-decoration: none;
	font-weight: bold; outline: none; color: #333; transition: 0.3s color;
	border-width: 0 0 1px 0; border-style: solid; border-color: #666;
}
#cat a:hover		{ color: var(--color4); border-color: var(--color4); }

/* Category sub navigation */
#cat ul ul		{ margin-left: 10px; }


/* Account navigation */
#accountnav		{ text-align: right; }
#accountnav a		{ padding-right: 10px; text-decoration: none; }


/* Forms */
.webshop_stylebutton, input[type=submit], input[type=button] {
	display: inline-block;  margin: 0 0 10px 0; padding: 10px 8px;
	white-space: nowrap; text-decoration: none; -webkit-appearance: none; border: 0;
	text-align: center; font-family: inherit; font-size: inherit; cursor: pointer;
	color: #fff; background: #9c1c6b; border-radius: 0;
	transition: 0.3s background;
}

.webshop_stylebutton:hover, input[type=submit]:hover, input[type=button]:hover {
	background: #ca278c;
}

input[type=submit]:disabled, input[type=button]:disabled {
	background: #ccc; cursor: default;
}

/* Footer */
footer a		{ color: #333; }
footer a:hover		{ color: var(--color4); }
#footer1		{ color: #333; background: #ededed; padding: 20px; }
#footer2		{ max-width: 1180px; margin: 0 auto; }

/* Footer navigation */
footer #cat,
#footnav		{ margin-bottom: 40px; }
footer #cat ul,
#footnav ul		{ list-style: none; margin: 0; padding: 0; }
footer #cat li,
#footnav li		{ display: inline-block; width: 190px; vertical-align: top; }
footer #cat ul ul,
#footnav ul ul		{ margin: 0 0 10px 3px; font-size: 0.9em; }
footer #cat a,
#footnav a		{ line-height: 30px; text-decoration: none; }
#footnav svg		{ display: none; }

/* Footer address */
footer address		{ width: 390px; display: inline-block; font-style: normal; }
address p		{ margin-top: 0; }
address a		{ text-decoration: none; }
address svg		{ width: 14px; height: 14px; margin-right: 6px; fill: var(--color3); }
address svg path	{ fill: var(--color3); }
#footercontent		{ display: inline-block; vertical-align: top; }

/* Footer terms */
#terms			{ clear: both; padding: 10px; font-size: 0.9em; color: #666; text-align: right; }
#terms span		{ margin-right: 16px; }
#terms a		{ color: #666; margin-right: 16px; }

/* Responsive */
@media all and (max-width: 600px) {
	#cont2			{ width: auto; flex-flow: column-reverse; }
	main,
	aside			{ width: 100%; margin: 0; padding: 0; }
	nav {
		position: absolute; left: 0; max-height: 0; width: 100%;
		margin: 0; padding: 0; border: none;
		overflow: hidden;  z-index: 100;
	}
	nav ul, nav ul li	{ display: block; }
	nav > ul ul		{ position: static; opacity: 1; border: none; }
	nav > ul ul a		{ padding-left: 36px; } /* Indent submenu links */
	nav > ul li:hover > ul	{ max-height: 0; }
	#mnav			{ display: inline-block; }
	footer address		{ float: none; width: auto; }
}


@media only screen and (max-width: 1200px) {
	#cont2			{ width: auto; padding: 6px; }
}