/*
	Theme Name: shades
	Author: shades
*/

/*------------------------------------*\
    MAIN
\*------------------------------------*/

/* global box-sizing */
*,
*:after,
*:before {
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}

/* html element 62.5% font-size for REM use */
html {
	font-size: 62.5%;
}

body {
	font-family: "Nunito Sans", sans-serif;
	color: #191513;
	font-size: 15px;
}

.flex {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
}

.wrap {
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.column {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
}

.center {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.j-end {
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
}

.end {
	-webkit-box-align: end;
	-ms-flex-align: end;
	align-items: flex-end;
}

.baseline {
	-webkit-box-align: baseline;
	-ms-flex-align: baseline;
	align-items: baseline;
}

.j-center {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.between {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.flex-row{
	margin: 0 -10px;
}

.text-center {
	text-align: center;
}

body p {
	font-size: 16px;
	line-height: 25px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
	font-family: "Romelio";
}

/* clear */
.clear:before,
.clear:after {
	content: ' ';
	display: table;
}

.clear:after {
	clear: both;
}

.clear {
	*zoom: 1;
}

img {
	max-width: 100%;
	vertical-align: bottom;
}

a {
	color: #191513;
	text-decoration: none;
}

a:hover {
	color: #191513;
}

a:focus {
	outline: 0;
}

a:hover,
a:active {
	outline: 0;
}

input:focus {
	outline: 0;
}

/*------------------------------------*\
    STRUCTURE
\*------------------------------------*/

/* wrapper */
.wrapper {
	max-width: 1200px;
	width: 100%;
	padding: 0 10px;
	margin: 0 auto;
	position: relative;
}

/* header */
.headerTop {
	display: none;
	background: #191513;
	padding: 8px 0;
}

.headerTop ul {
	display: flex;
	list-style: none;
	padding: 0;
	margin: 0;
}

.headerTop ul li {
	margin-left: 20px;
}

.headerTop ul li:first-child {
	margin-left: 0;
}

.headerTop ul li a {
	display: inline-block;
	font-size: 14px;
	line-height: 24px;
	text-transform: uppercase;
	font-weight: 600;
	color: #fff;
	text-decoration: none;
	background-image: linear-gradient(currentColor, currentColor);
	background-repeat: no-repeat;
	background-position: 0 100%;
	background-size: 0% 2px;
	transition: background-size .25s ease;
}

.headerTop ul li a:hover,
.headerTop ul li a:focus-visible {
	background-size: 100% 2px;
}

/* logo */
.headerMiddle {
	display: none;
	padding: 25px 0;
	border-bottom: 1px solid #eaeaea;
}

.logo-img {
	width: 110px;
}

/* nav */
.headerNav {
	position: relative;
	padding: 14px 0;
}

.nav {
	display: none;
}

.nav>ul {
	display: inline-block;
}

.nav ul {
	list-style-type: none;
	padding: 0;
	margin: 0;
}

.nav ul li {
	position: static;
}

.nav>ul>li {
	display: inline-block;
}

.nav>ul>li.current-menu-item >a {
	background: #191513;
	color: #fff;
}

.nav ul>li>a {
	color: #191513;
	text-transform: uppercase;
	font-size: 17px;
	font-weight: 500;
	display: block;
	padding: 10px 17px;
	transition: .3s linear;
}

.nav>ul>li>a:hover {
	background: #191513;
	color: #fff;
}

.nav>ul>li>ul {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 999;
	text-align: left;
	white-space: nowrap;
	right: 0;
	border: 1px solid #eaeaea;
	background-color: #fff;
	-webkit-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .2);
	-moz-box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .2);
	box-shadow: 0 10px 10px 0 rgba(0, 0, 0, .2);
	width: 100%;
	padding: 10px;
	max-width: 1180px;
	margin: 0 auto;
}

.nav>ul>li>ul>li:first-child{
	width: 25%;
}

.nav > ul > li:hover>ul {
	display: flex;
}

.nav ul ul ul {
	display: block;
	position: relative;
	top: unset;
	left: unset;
	width: unset;
}

.nav ul ul ul li {
	padding-left: 15px;
}

.nav ul ul li a {
	font-size: 14px;
	padding: 9px 10px;
	display: inline-block;
	color: #191513;
}

.nav ul ul li > a{
  --padX: 18px;          
  --u-thickness: 2px;
  --u-offset: .15em;
  --u-dur: .28s;

  position: relative;
  display: inline-block;
  padding: 10px var(--padX);
  text-decoration: none;
}

.nav ul ul li > a::after{
  content: "";
  position: absolute;
  left: var(--padX);
  right: var(--padX); 
  bottom: calc(var(--u-offset));
  height: var(--u-thickness);
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center; 
  transition: transform var(--u-dur) ease;
  will-change: transform;
}

.nav ul ul li > a:hover::after,
.nav ul ul li > a:focus-visible::after{
  transform: scaleX(1);
}

.nav ul ul li.current-menu-item > a::after{
  transform: scaleX(1);
}
/* search */
.top-search-form {
	display: none;
	position: absolute;
	top: 100%;
	right: 0;
	left: 0;
	z-index: 999;
	margin: 0 10px;
}

.woocommerce-product-search {
	border: none;
	background: #f0f1f3;
}

.woocommerce-product-search svg {
	width: 16px;
}

.woocommerce-product-search .search-field {
	border: none;
	background: none;
	padding: 7px 12px;
	width: 100%;
}

.woocommerce-product-search .search-field::placeholder {
	font-size: 15px;
	font-weight: 500;
	font-style: italic;
	color: #b2b2b2;
}

.woocommerce-product-search button {
	border: none;
	background: #191513;
	padding: 9px 14px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.search-toogle {
	display: flex;
	margin-right: 15px;
	cursor: pointer;
}

.search-toogle svg {
	width: 23px;
}

/* cart */
.cart-contents {
	border-radius: 5px;
	font-size: 16px;
	font-weight: 600;
	color: #191513 !important;
	padding: 4px 10px;
	margin-left: 20px;
}

.cart-contents svg {
	width: 30px;
}

.totalText,
.woocommerce-Price-amount.amount {
	display: none;
	color: #000!important;
}

.woocommerce-variation-price{
	margin-bottom: 10px;
}

.totalText {
	margin-right: 5px;
	text-transform: uppercase;
}

.cart-contents-count {
	display: flex;
	align-items: center;
}

.cart-contents .cartImg {
	position: relative;
	padding-left: 10px;
}

.cart-contents .quantity {
	position: absolute;
	top: -12px;
	right: 7px;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #191513;
	color: #fff;
	font-size: 13px;
	line-height: 11px;
}

/* mmenu */
#mmenu_button {
	display: flex;
}

#mmenu_button svg {
	width: 32px;
}

.mm-menu_offcanvas {
	z-index: 9;
}

/* banner */

.banner {
	position: relative;
}

.banner__media {
	position: relative;
}

.banner__inner {
	position: relative;
	z-index: 1;
}

.banner__content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	max-width: 1220px;
	margin: 0 auto;
	padding: 24px;
	color: #fff;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.banner__media img {
	min-height: 360px;
	object-fit: cover;
	width: 100%;
}

.banner__eyebrow{
	font-size: 14px;
	margin: 0;
}
.banner__title {
	font-size: 40px;
	font-weight: 900;
	line-height: normal;
	margin: 0;
}

.banner__text p {
	font-size: 16px;
	line-height: 21px;
	font-weight: 300;
	max-width: 400px;
}

.banner__actions {
	display: flex;
	gap: 16px;
}

.woocommerce div.product form.cart .button,
.woocommerce ul.products li.product .button,
.btn{
	display: inline-block;
	background: #191513;
	color: #fff!important;
	font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.15em;
	padding: 20px 24px;
	text-transform: uppercase;
	transition: .3s ease;
	margin-bottom: 10px;
}

.woocommerce div.product form.cart .button:hover,
.woocommerce ul.products li.product .button:hover,
.btn--primary:hover{
	background: #191513;
	border: 1px solid #191513;
	color: #fff!important;
}

.btn--primary{ 
	border: 1px solid #fff;
	background: rgba(255, 255, 255, 1);;
	color: #191513!important;
}

.btn--secondary{
	border: 1px solid #fff;
	background: rgba(255, 255, 255, 0);
	color: #fff!important;
}

.btn--secondary:hover{
	background: #191513;
	border: 1px solid #191513;
	color: #fff!important;
}

/* welcome */
.welcome{
	margin: 40px 0;
}
/* footer */
.footer {
	background-color: #f0f1f3;
    padding: 20px 0 45px 0;
}

.footer .wrapper>div {
	width: 100%;
	padding: 0 10px;
	margin-bottom: 25px;
}

.footer ul {
	margin: 0;
	padding: 0;
	list-style-type: none;
}

.footer ul li ul {
	display: none;
}

.footer p,
.footer li,
.footer a {
	font-size: 14px;
	line-height: 24px;
	color: #191513;
}

.footer a:hover {
	text-decoration: underline;
}

.footer p.h3 {
	font-family: "Open Sans", sans-serif;
	font-size: 23px;
	line-height: 28px;
	margin: 15px 0 20px 0;
    text-transform: uppercase;
    font-weight: 600;
	color: #191513;
	text-transform: uppercase;
}

.footerSocials{
	display: flex;
}

.socialItem{
    display: flex;
    align-items: center;
    justify-content: center;
    background: #191513;
    width: 40px;
    height: 40px;
    margin-right: 20px;
}

.socialItem:hover{
	box-shadow: 0 4px 20px rgba(0,0,0,.12), 0 0 10px rgba(0,0,0,.08);
}

.footerInfo{
	background: #191513;
	padding: 35px 0 40px 0;
}

.footerInfo ul{
	list-style: none;
	margin: 0 0 20px 0;
	padding: 0;
	display: flex;
}
.footerInfo ul li{
	padding-right: 7px;
}
.copyright,
.footerInfo ul li a{
	color: #fff;
}
/*------------------------------------*\
    PAGES
\*------------------------------------*/
.footer,
.up-sells.upsells.products, .related.products {
    clear: both;
}
.woocommerce .quantity .qty{
	height: 43px;
}

.price{
  --price-main:#191513;
  --price-old:color-mix(in srgb,var(--price-main)45%,white);
}

@supports not (color:color-mix(in srgb,#000 50%,#fff 50%)){
  .price{--price-old:#8b827d;}
}

.price del{
  color:var(--price-old);
  margin-right:.5em;
  text-decoration-color:var(--price-old);
  text-decoration-thickness:1px;
}

.price ins{
  color:var(--price-main);
  text-decoration:none;
  font-weight:700;
}

.price del .amount,
.price ins .amount,
.price .woocommerce-Price-currencySymbol{
  color:inherit;
}

.price .screen-reader-text{
  position:absolute!important;
  left:-9999px;
}
.woocommerce span.onsale{
	background: #191513;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price{
	color: #191513;
}

.wpcf7 .wpcf7-text,
.wpcf7 .wpcf7-textarea {
	width: 100%;
	max-width: 380px;
	border-radius: 4px;
	border: 1px solid #191513;
	padding: 10px;
}

.wc-block-components-button.wp-element-button.wc-block-cart__submit-button{
	background:rgb(240, 240, 240);
	border:1px solid #000;
	padding: 15px;
}
.wc-block-components-button.wp-element-button.wc-block-cart__submit-button:hover{
	background:#E5E5E5;
}
.price.from-price.flex{
  display:flex;
  gap:.35em;           
  align-items:baseline; 
  color: #000 !important;
}
/* Woo variations: label on top, rounded selects */
.single-product form.variations_form table.variations {
  width: 100%;
  border-collapse: separate;
}

.single-product form.variations_form table.variations tr {
  display: block;           /* stack rows vertically */
  margin: 0 0 14px 0;
}

.single-product form.variations_form table.variations th,
.single-product form.variations_form table.variations td {
  display: block;           /* label above select */
  padding: 0;
  border: 0;
}

.single-product form.variations_form table.variations .label label {
  display: block;
  margin: 0 0 6px 0;
  font-weight: 600;
  line-height: 1.2;
}

/* Select styling */
.single-product form.variations_form table.variations .value select {
  width: 100%;
  border: 1px solid #d9d9d9;
  border-radius: 5px; 
  padding: 10px 42px 10px 12px;
  font-size: 15px;
  line-height: 1.3;
  background-color: #fff;

  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 20 20' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 8 10 12 14 8'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px 14px;

  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color .15s ease, box-shadow .15s ease;
}

.single-product form.variations_form table.variations .value select:focus {
  outline: none;
  border-color: #888;
  box-shadow: 0 0 0 3px rgba(0,0,0,.06);
}

.single-product a.reset_variations {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  line-height: 1;
  padding: 8px 10px;
  border-radius: 999px;
  background: #f2f2f2;
  color: #333;
  text-decoration: none;
}
.single-product a.reset_variations:hover {
  background: #e8e8e8;
}

/*------------------------------------*\
    IMAGES
\*------------------------------------*/



/*------------------------------------*\
	TYPOGRAPHY
\*------------------------------------*/

@font-face{
  font-family: "Romelio";
  src: local("Romelio"),
       url("./fonts/Romelio.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/*------------------------------------*\
    RESPONSIVE
\*------------------------------------*/

@media only screen and (min-width:480px) {

	.totalText,
	.woocommerce-Price-amount.amount {
		display: block;
	}
}

@media only screen and (min-width:768px) {
	.banner__content{
		padding: 48px;
	}
	.banner__eyebrow{
		font-size: 16px;
	}
	.banner__title {
		font-size: 56px;
	}

	.banner__text p {
		line-height: 24px;
	}
	.footer .wrapper>div {
		width: 25%;
	}
}

@media only screen and (min-width:960px) {

	.headerMiddle,
	.headerTop {
		display: block;
	}

	.search-toogle,
	#mmenu_button {
		display: none;
	}

	.nav {
		display: block;
	}

	.top-search-form {
		display: block;
		position: relative;
		top: unset;
		right: unset;
		left: unset;
	}

	.headerNav .logo {
		display: none;
	}

	.headerNav .top-search-form {
		display: none;
	}

}

@media only screen and (min-width:1024px) {}

@media only screen and (min-width:1140px) {}

@media only screen and (min-width:1280px) {}

@media only screen and (-webkit-min-device-pixel-ratio:1.5),
only screen and (min-resolution:144dpi) {}

/*------------------------------------*\
    MISC
\*------------------------------------*/

::selection {
	background: #04A4CC;
	color: #FFF;
	text-shadow: none;
}

::-webkit-selection {
	background: #04A4CC;
	color: #FFF;
	text-shadow: none;
}

::-moz-selection {
	background: #04A4CC;
	color: #FFF;
	text-shadow: none;
}

/*------------------------------------*\
    WORDPRESS CORE
\*------------------------------------*/

.alignnone {
	margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
	display: block;
	margin: 5px auto 5px auto;
}

.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.alignright {
	float: right;
	margin: 5px 0 20px 20px;
}

a img.alignnone {
	margin: 5px 20px 20px 0;
}

a img.alignleft {
	float: left;
	margin: 5px 20px 20px 0;
}

a img.aligncenter {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption {
	background: #FFF;
	border: 1px solid #F0F0F0;
	max-width: 96%;
	padding: 5px 3px 10px;
	text-align: center;
}

.wp-caption.alignnone {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
	margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
	margin: 5px 0 20px 20px;
}

.wp-caption img {
	border: 0 none;
	height: auto;
	margin: 0;
	max-width: 98.5%;
	padding: 0;
	width: auto;
}

.wp-caption .wp-caption-text,
.gallery-caption {
	font-size: 11px;
	line-height: 17px;
	margin: 0;
	padding: 0 4px 5px;
}

.sticky {}

.bypostauthor {}

/*------------------------------------*\
    PRINT
\*------------------------------------*/

@media print {
	* {
		background: transparent !important;
		color: #000 !important;
		box-shadow: none !important;
		text-shadow: none !important;
	}

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

	a[href]:after {
		content: " ("attr(href) ")";
	}

	abbr[title]:after {
		content: " ("attr(title) ")";
	}

	.ir a:after,
	a[href^="javascript:"]:after,
	a[href^="#"]:after {
		content: "";
	}

	pre,
	blockquote {
		border: 1px solid #999;
		page-break-inside: avoid;
	}

	thead {
		display: table-header-group;
	}

	tr,
	img {
		page-break-inside: avoid;
	}

	img {
		max-width: 100% !important;
	}

	@page {
		margin: 0.5cm;
	}

	p,
	h2,
	h3 {
		orphans: 3;
		widows: 3;
	}

	h2,
	h3 {
		page-break-after: avoid;
	}
}