/*
Theme Name: xCommerce
Theme URI: http://jatrexweb.com
Description: Jatrexweb's Wordpress theme for mie.ng, eCommerce website
Version: 1.0.0
Author: Rex Quadry
Author URI: http://jatrexweb.com
Tags: eCommerce, HTML5, CSS3, CSS Grid

License: MIT
License URI: http://opensource.org/licenses/mit-license.php
*/
:root {
  --gutter: 15px;
  --light: #fff;
  --dark: #222;
  --grey: #555;
  --lightgrey: #efefef;
  --primary-colour: rgba(241, 19, 237, 0.75);
  --secondary-colour: rgba(246, 199, 49, 1);
  --green: rgba(25, 85, 25, 1);
  --container-margin: 0;
}

@media only screen and (min-width: 480px) {
  :root {
    --container-margin: 1em;
  }
}

@media only screen and (min-width: 768px) {
  :root {
    --container-margin: 10vw;
  }
}

/*------------------------------------*\
MAIN
\*------------------------------------*/
/* global box-sizing */
html {
  margin-bottom: 0;
  scroll-behavior: smooth;
}

body {
  --bgcolor: var(--lightgrey);
  --panelcolor: var(--light);
  --text-color: var(--dark);
  --fadedark: rgba(0, 0, 0, 0.7);
  --extrafadedark: rgba(0, 0, 0, 0.5);
  --fadelight: rgba(255, 255, 255, 0.7);
  --extrafadelight: rgba(255, 255, 255, 0.3);
  background-color: var(--bgcolor);
  color: var(--text-color);
  text-align: left;
  font-family: Verdana, Geneva, sans-serif;
  font-size: 12px;
  font-weight: normal;
  /* Account */
}

body[data-theme="dark"] {
  --bgcolor: var(--grey);
  --panelcolor: var(--dark);
  --text-color: var(--lightgrey);
  --fadedark: rgba(255, 255, 255, 0.7);
  --fadelight: rgba(0, 0, 0, 0.7);
}

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

body iframe {
  max-width: 90vw !important;
}

body .panel,
body .card,
body .widget {
  background-color: var(--panelcolor);
  border-radius: 0.25em;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  padding: 1em;
  margin: 1em;
}

body .panel .panel {
  -webkit-box-shadow: none;
          box-shadow: none;
  /* padding: 0; */
}

body .shop .panel {
  text-align: center;
}

body .widget {
  margin-bottom: 2em;
}

body .widget .widget-title {
  color: var(--secondary-colour);
  text-transform: uppercase;
  font-size: 1.25em;
  font-weight: 400;
}

body .widget .categories-list li {
  padding: 0.25em;
}

body .widget .categories-list li.active-parent > a, body .widget .categories-list li.active > a {
  font-weight: 600;
}

body .widget .categories-list li.active > a {
  cursor: text;
  color: var(--primary-colour);
}

body .widget .categories-list li .categories-list-sublist {
  padding-left: 1em;
}

body .widget.widget_price_filter .ui-slider .ui-slider-handle {
  background-color: var(--primary-colour);
}

body .widget.widget_price_filter .ui-slider .ui-slider-range {
  background-color: var(--secondary-colour);
}

body .shop-list {
  display: -ms-grid;
  display: grid;
}

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

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

body .xsocials .x-icon-facebook, body .xsocials .x-icon-google, body .xsocials .x-icon-instagram, body .xsocials .x-icon-twitter {
  margin: 1em;
  --ggs: 1.5;
}

body .xsocials .x-icon-facebook a, body .xsocials .x-icon-google a, body .xsocials .x-icon-instagram a, body .xsocials .x-icon-twitter a {
  display: block;
  font-size: 0;
  position: absolute;
  width: 150%;
  height: 150%;
  top: -5px;
  left: -5px;
}

body .xsocials .x-icon-facebook {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: block;
  -webkit-transform: scale(var(--ggs, 1));
          transform: scale(var(--ggs, 1));
  width: 20px;
  height: 20px;
}

body .xsocials .x-icon-facebook::after, body .xsocials .x-icon-facebook::before {
  content: "";
  display: block;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body .xsocials .x-icon-facebook::before {
  width: 8px;
  height: 20px;
  border-left: 4px solid;
  border-top: 4px solid;
  border-top-left-radius: 5px;
  left: 6px;
}

body .xsocials .x-icon-facebook::after {
  width: 10px;
  height: 4px;
  background: currentColor;
  top: 7px;
  left: 4px;
  -webkit-transform: skew(-5deg);
          transform: skew(-5deg);
}

body .xsocials .x-icon-google, body .xsocials .x-icon-google::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
}

body .xsocials .x-icon-google {
  position: relative;
  -webkit-transform: scale(var(--ggs, 1));
          transform: scale(var(--ggs, 1));
  width: 20px;
  height: 20px;
  border: 4px solid;
  border-right-color: transparent;
  border-radius: 22px;
}

body .xsocials .x-icon-google::before {
  content: "";
  position: absolute;
  border-top: 4px solid;
  border-right: 4px solid;
  border-bottom: 4px solid;
  border-radius: 0 0 10px 0;
  width: 10px;
  height: 12px;
  right: -4px;
  bottom: -4px;
}

body .xsocials .x-icon-instagram {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: block;
  -webkit-transform: scale(var(--ggs, 1));
          transform: scale(var(--ggs, 1));
  border: 2px solid transparent;
  -webkit-box-shadow: 0 0 0 2px;
          box-shadow: 0 0 0 2px;
  border-radius: 4px;
  width: 20px;
  height: 20px;
}

body .xsocials .x-icon-instagram::after, body .xsocials .x-icon-instagram::before {
  content: "";
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
}

body .xsocials .x-icon-instagram::after {
  border: 2px solid;
  left: 3px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  top: 3px;
}

body .xsocials .x-icon-instagram::before {
  border-radius: 3px;
  width: 2px;
  height: 2px;
  background: currentColor;
  right: 1px;
  top: 1px;
}

body .xsocials .x-icon-twitter {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: relative;
  display: block;
  -webkit-transform: scale(var(--ggs, 1));
          transform: scale(var(--ggs, 1));
  width: 20px;
  height: 20px;
}

body .xsocials .x-icon-twitter::after, body .xsocials .x-icon-twitter::before {
  content: "";
  display: block;
  position: absolute;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  left: 4px;
}

body .xsocials .x-icon-twitter::before {
  width: 9px;
  height: 14px;
  border-left: 4px solid;
  border-bottom: 4px solid;
  border-bottom-left-radius: 6px;
  background: linear-gradient(to left, currentColor 12px, transparent 0) no-repeat center 2px/10px 4px;
  top: 4px;
}

body .xsocials .x-icon-twitter::after {
  width: 4px;
  height: 4px;
  background: currentColor;
  border-radius: 20px;
  top: 2px;
  -webkit-box-shadow: 7px 4px 0, 7px 12px 0;
          box-shadow: 7px 4px 0, 7px 12px 0;
}

body.woocommerce-account .content .woocommerce {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media only screen and (min-width: 768px) {
  body.woocommerce-account .content .woocommerce {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

body.woocommerce-account .content .woocommerce nav.woocommerce-MyAccount-navigation {
  min-width: 20%;
  width: unset;
}

body.woocommerce-account .content .woocommerce nav.woocommerce-MyAccount-navigation ul {
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media only screen and (min-width: 768px) {
  body.woocommerce-account .content .woocommerce nav.woocommerce-MyAccount-navigation ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

body.woocommerce-account .content .woocommerce nav.woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: 0.5rem 1rem;
}

@media only screen and (min-width: 768px) {
  body.woocommerce-account .content .woocommerce nav.woocommerce-MyAccount-navigation ul li a {
    padding: 1rem 2rem;
  }
}

body.woocommerce-account .content .woocommerce nav.woocommerce-MyAccount-navigation ul li.is-active, body.woocommerce-account .content .woocommerce nav.woocommerce-MyAccount-navigation ul li:hover {
  background-color: var(--dark);
}

body.woocommerce-account .content .woocommerce nav.woocommerce-MyAccount-navigation ul li.is-active a, body.woocommerce-account .content .woocommerce nav.woocommerce-MyAccount-navigation ul li:hover a {
  color: var(--lightgrey);
}

body.woocommerce-account .content .woocommerce .woocommerce-MyAccount-content {
  width: unset;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

body.woocommerce-account .content .woocommerce .woocommerce-MyAccount-content .xcommerce-addresses {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 2rem;
  width: 100%;
}

body.woocommerce-account .content .woocommerce .woocommerce-MyAccount-content .xcommerce-addresses .woocommerce-Address {
  width: unset;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

body.woocommerce-account .content .woocommerce .woocommerce-MyAccount-content .xcommerce-addresses .woocommerce-Address .woocommerce-Address-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

body.woocommerce-account .content .woocommerce .woocommerce-MyAccount-content .xcommerce-addresses .woocommerce-Address .woocommerce-Address-title h3 {
  margin-bottom: 0;
}

body.woocommerce-account .content .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields
.woocommerce-address-fields__field-wrapper,
body.woocommerce-account .content .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

body.woocommerce-account .content .woocommerce .woocommerce-MyAccount-content .woocommerce-address-fields
.woocommerce-address-fields__field-wrapper .form-row,
body.woocommerce-account .content .woocommerce .woocommerce-MyAccount-content .woocommerce-EditAccountForm .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

/* Window Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 10px var(--dark);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 8px;
  -webkit-box-shadow: inset 0 0 28px var(--bgcolor);
}

*,
*:after,
*:before {
  -webkit-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 */
/* clear */
.clear:before,
.clear:after {
  content: " ";
  display: table;
}

.clear:after {
  clear: both;
}

.clear {
  *zoom: 1;
}

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

a {
  color: var(--text-color);
  text-decoration: none;
}

a:hover {
  color: var(--primary-colour);
  -webkit-text-decoration: solid;
          text-decoration: solid;
  /* -webkit-text-stroke-width: 1px;
    -webkit-text-stroke-color: var(--primary-colour); */
}

a:focus {
  outline: 0;
}

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

p a,
p a:link {
  text-decoration: underline;
}

.btn,
.button,
.woocommerce a.button,
button[type="submit"].button,
input[type="submit"] {
  padding: 1em;
  /* background-color: var(--text-color);
  color: var(--bgcolor); */
  background-color: var(--secondary-colour);
  color: var(--text-color);
}

input,
textarea {
  padding: 1em;
}

input[type="number"],
select {
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border-radius: 0.25em;
  padding: 0.5em;
}

input[type="number"]:not(.browser-default) {
  padding: 0 0.5em;
}

input::-webkit-input-placeholder {
  color: var(--grey);
  font-size: 0.75rem;
}

input:-ms-input-placeholder {
  color: var(--grey);
  font-size: 0.75rem;
}

input::-ms-input-placeholder {
  color: var(--grey);
  font-size: 0.75rem;
}

input::placeholder {
  color: var(--grey);
  font-size: 0.75rem;
}

/* Chrome, Firefox, Opera, Safari 10.1+ */
::-webkit-input-placeholder {
  color: var(--grey);
  opacity: 1;
}
:-ms-input-placeholder {
  color: var(--grey);
  opacity: 1;
}
::-ms-input-placeholder {
  color: var(--grey);
  opacity: 1;
}
::placeholder {
  color: var(--grey);
  opacity: 1;
}

/* Internet Explorer 10-11 */
:-ms-input-placeholder {
  color: var(--grey);
}

/* Microsoft Edge */
::-ms-input-placeholder {
  color: var(--grey);
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  background-color: var(--primary-colour);
}

.woocommerce .products ul::before,
.woocommerce .products ul::after {
  display: none;
}

.woocommerce-ordering .caret {
  display: none;
}

p.demo_store,
.woocommerce-store-notice {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  position: fixed;
  bottom: 0;
  top: unset;
  background-color: var(--fadedark);
  color: var(--bgcolor);
}

p.demo_store a,
.woocommerce-store-notice a {
  color: var(--bgcolor);
}

/* TYPOGRAPHY */
strong,
strong span {
  font-weight: 700;
}

h1,
h2,
h3 {
  font-weight: bold;
  margin: 0 0 0.5em;
}

h4,
h5,
h6 {
  font-weight: normal;
  margin: 0 0 1em;
}

h1 {
  font-size: 1.15em;
}

h2 {
  font-size: 1em;
}

h3,
.shop-modify .woocommerce-ordering input[type="text"]:not(.browser-default) {
  font-size: 0.85em;
  line-height: 2rem;
}

h4 {
  font-size: 0.75em;
}

h5 {
  font-size: 0.65em;
}

h6 {
  font-size: 1em;
}

@media only screen and (min-width: 768px) {
  h1 {
    font-size: 2em;
  }
  h2 {
    font-size: 1.75em;
  }
  h3,
  .shop-modify
.woocommerce-ordering
input[type="text"]:not(.browser-default) {
    font-size: 1.5em;
    line-height: 2rem;
  }
  h4 {
    font-size: 1.1em;
  }
  h5 {
    font-size: 1.05em;
  }
  h6 {
    font-size: 1em;
  }
}

th {
  font-weight: normal;
}

label {
  color: var(--text-color);
  cursor: pointer;
}

.section-title {
  margin: 0 0 0.5em 0;
}

.page-header,
.section-tilte {
  text-align: center;
  text-transform: uppercase;
}

.disabled a {
  cursor: text;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--grey);
  color: var(--light);
}

.title,
.woocommerce-loop-product__title {
  font-size: 1.15em;
  font-weight: normal;
  margin: 1em 0 0.5em;
}

/*------------------------------------*/
/* STRUCTURE */
.show-sm,
.show-md,
.show-lg {
  display: none;
}

ul {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

img {
  max-width: 100%;
}

.slick-prev:before,
.slick-next:before {
  font-size: 2rem;
  color: var(--text-color);
}

.slick-prev {
  left: 1rem;
  z-index: 1;
}

.slick-next {
  right: 1rem;
}

.slick-dots {
  bottom: 0;
}

.slick-dots li button {
  border-radius: 50%;
  background-color: var(--bgcolor);
  border: var(--text-color) 1px solid;
}

.slick-dots li button:before {
  font-size: 1rem;
}

.slick-dots li.slick-active button:before {
  color: var(--text-color);
}

header.content,
section.content,
footer.content {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto;
      grid-template-rows: auto;
  -ms-grid-columns: var(--container-margin) auto var(--container-margin);
      grid-template-columns: var(--container-margin) auto var(--container-margin);
      grid-template-areas: ". content .";
  grid-gap: var(--gutter);
  padding: 2em 0;
}

header.content .container-area,
section.content .container-area,
footer.content .container-area {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: content;
}

.content .woocommerce {
  min-height: 80vh;
}

.content .tab-content ul, .content.page ul {
  list-style: disc;
}

header.header {
  position: fixed;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  width: 100%;
  display: -ms-grid;
  display: grid;
  grid-gap: var(--gutter);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-grid-columns: var(--container-margin) 1fr auto 1fr var(--container-margin);
      grid-template-columns: var(--container-margin) 1fr auto 1fr var(--container-margin);
      grid-template-areas: ". menu brand tool-box .";
  background-color: var(--panelcolor);
  border-bottom: var(--secondary-colour) 2px solid;
  z-index: 2;
}

@media only screen and (min-width: 768px) {
  header.header {
    -ms-grid-columns: var(--container-margin) 1fr auto 1fr var(--container-margin);
        grid-template-columns: var(--container-margin) 1fr auto 1fr var(--container-margin);
        grid-template-areas: ". menu brand tool-box .";
  }
}

header.header .custom-logo-link {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: brand;
  font-size: 3em;
}

header.header .main-menu {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: menu;
}

header.header .tool-box {
  -ms-grid-row: 1;
  -ms-grid-column: 4;
  grid-area: tool-box;
}

header.header nav.main-menu {
  --ggs: 1.25;
}

@media only screen and (min-width: 1201px) {
  header.header nav .toggle-nav {
    display: none;
  }
}

@media only screen and (max-width: 1200px) {
  header.header nav label.toggle-nav + ul {
    display: none;
  }
}

header.header nav label.toggle-nav.opened > i {
  z-index: 3;
}

header.header nav label.toggle-nav.opened + ul {
  position: fixed;
  top: 0;
  left: 0;
  min-width: 50%;
  max-width: 66%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 2;
  border-right: var(--secondary-colour) 3px solid;
}

header.header nav label.toggle-nav.opened + ul li a {
  font-size: 2em;
  display: block;
}

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

@media only screen and (min-width: 768px) {
  header.header nav ul li:not(:last-child) {
    margin-right: var(--gutter);
  }
}

header.header nav.tool-box {
  --ggs: 1;
}

header.header nav.tool-box ul {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header.header nav.tool-box ul li.cart {
  position: relative;
}

header.header nav.tool-box ul li.cart .cart-count {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 50%;
  background-color: var(--secondary-colour);
  color: var(--text-color);
  font-size: 0.75em;
  font-weight: 600;
  bottom: -1em;
  right: -1em;
}

header.header nav.tool-box ul li:not(:last-child) {
  margin-right: 1.5em;
}

header.header nav.tool-box ul .search {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

header.header nav.tool-box ul .search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

header.header nav.tool-box ul .search form input[type="text"],
header.header nav.tool-box ul .search form input[type="search"] {
  border: none;
  background-color: transparent;
  color: var(--text-color);
  padding: 0 1em;
  border-bottom: var(--lightgrey) 1px solid;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

header.header nav.tool-box ul .search form input[type="text"]::-webkit-input-placeholder,
header.header nav.tool-box ul .search form input[type="search"]::-webkit-input-placeholder {
  color: var(--secondary-colour);
  opacity: 1;
}

header.header nav.tool-box ul .search form input[type="text"]:-ms-input-placeholder,
header.header nav.tool-box ul .search form input[type="search"]:-ms-input-placeholder {
  color: var(--secondary-colour);
  opacity: 1;
}

header.header nav.tool-box ul .search form input[type="text"]::-ms-input-placeholder,
header.header nav.tool-box ul .search form input[type="search"]::-ms-input-placeholder {
  color: var(--secondary-colour);
  opacity: 1;
}

header.header nav.tool-box ul .search form input[type="text"]::placeholder,
header.header nav.tool-box ul .search form input[type="search"]::placeholder {
  color: var(--secondary-colour);
  opacity: 1;
}

header.header nav.tool-box ul .search form input[type="text"] :-ms-input-placeholder,
header.header nav.tool-box ul .search form input[type="search"] :-ms-input-placeholder {
  color: var(--secondary-colour);
}

header.header nav.tool-box ul .search form input[type="text"] ::-ms-input-placeholder,
header.header nav.tool-box ul .search form input[type="search"] ::-ms-input-placeholder {
  color: var(--secondary-colour);
}

@media only screen and (max-width: 767px) {
  header.header nav.tool-box ul .search form input[type="text"],
  header.header nav.tool-box ul .search form input[type="search"] {
    width: 0;
    padding: 0;
  }
}

header.header nav.tool-box ul .search form input[type="text"]:focus,
header.header nav.tool-box ul .search form input[type="search"]:focus {
  width: 100%;
  outline: none;
  background-color: var(--panelcolor);
  color: var(--text-color);
  font-size: 1.5em;
  border-bottom: 1px solid var(--primary-colour);
  padding: 0.25em 1em;
}

@media only screen and (max-width: 767px) {
  header.header nav.tool-box ul .search form input[type="text"]:focus,
  header.header nav.tool-box ul .search form input[type="search"]:focus {
    position: absolute;
    top: 100%;
    left: 5%;
    width: 90%;
    border: 1px solid var(--primary-colour);
    border-top: none;
  }
}

header.header nav.tool-box ul .search form input[type="text"]:focus + label,
header.header nav.tool-box ul .search form input[type="search"]:focus + label {
  display: none;
}

header.header nav.tool-box ul .search form label.search-button i {
  margin: 0;
}

header.header nav.tool-box ul .search form .search-button {
  border: none;
  background: transparent;
}

#breadcrumbs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0.85rem;
}

#breadcrumbs li {
  margin-left: 1em;
}

#breadcrumbs li:not(:last-child)::after {
  content: ">>";
  margin-left: 1em;
  color: var(--grey);
}

section .price,
section .woocommerce-Price-amount {
  color: var(--primary-colour);
  /* font-size: 1.15rem; */
  font-weight: 600;
}

section .price > del,
section .price del:hover,
section .woocommerce-Price-amount > del,
section .woocommerce-Price-amount del:hover {
  color: var(--grey);
  font-size: 0.75em;
}

section .price > ins,
section .woocommerce-Price-amount > ins {
  text-decoration: none;
}

section ins,
section ins:hover {
  text-decoration: none;
}

section ins .woocommerce-Price-amount,
section ins:hover .woocommerce-Price-amount {
  color: var(--primary-colour);
  /* font-size: 1.15rem; */
  font-weight: 600;
}

section del .woocommerce-Price-amount,
section del:hover .woocommerce-Price-amount {
  color: var(--grey);
  font-size: 0.75em;
}

section .content-area,
section .shop-list {
  /* padding: 3em; */
}

section .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 1em 0;
}

section .pagination li {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

section .pagination li.active {
  margin: 0 2em;
}

section .pagination li.active a {
  cursor: text;
  text-decoration: none;
  color: var(--grey);
}

section .pagination li a {
  display: block;
}

section.banner .banner-slider li {
  z-index: 2;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 67vh;
}

section.banner .banner-slider li.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.banner .banner-slider li.center .caption {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.banner .banner-slider li.top-left, section.banner .banner-slider li.top-right {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

section.banner .banner-slider li.bottom-left, section.banner .banner-slider li.bottom-right {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

section.banner .banner-slider li.top-left, section.banner .banner-slider li.bottom-left {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

section.banner .banner-slider li.top-left .caption, section.banner .banner-slider li.bottom-left .caption {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

section.banner .banner-slider li.top-right, section.banner .banner-slider li.bottom-right {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

section.banner .banner-slider li.top-right .caption, section.banner .banner-slider li.bottom-right .caption {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

section.banner .banner-slider li img {
  min-width: 100%;
  z-index: -1;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  height: 67vh;
}

section.banner .banner-slider li .caption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* background-color: var(--extrafadelight); */
  max-width: 60vw;
  margin: 1rem;
  padding: 1rem;
}

section .featured-product-list li.sale::after,
section .shop-list li.sale::after {
  content: "On Sale";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: -2em;
  background-color: var(--secondary-colour);
  padding: 0.25em 2em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  color: var(--text-color);
}

section .featured-product-list li.outofstock::after,
section .shop-list li.outofstock::after {
  content: "Out of stock";
  display: inline-block;
  position: absolute;
  top: 1em;
  left: -2em;
  background-color: red;
  padding: 0.25em 2em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  color: white;
}

section .featured-product-list {
  display: -ms-grid;
  display: grid;
  grid-gap: 2em;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

@media only screen and (min-width: 1400px) {
  section .featured-product-list {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

section .featured-product-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
  overflow: hidden;
}

section .featured-product-list li a:first-child {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

section span.onsale {
  display: none;
}

section.shop-categories .shop-categories-list-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  margin-right: var(--gutter);
}

section.shop-categories .shop-categories-list-item h3,
section.shop-categories .shop-categories-list-item h4 {
  position: absolute;
  background-color: var(--fadelight);
  color: var(--text-color);
  padding: 0.25em 1em;
}

section.shop-categories .shop-categories-list-item h3 {
  font-size: 1.5em;
  z-index: 2;
}

section.shop-categories .shop-categories-list-item h4 {
  bottom: 1em;
  text-align: center;
}

section.shop-categories .shop-categories-list-item a {
  position: absolute;
  width: 100%;
  height: 100%;
}

section.shop-categories .shop-categories-list .slick-prev,
section.shop-categories .shop-categories-list .slick-prev,
section.shop-categories .shop-categories-list .slick-next,
section.shop-categories .shop-categories-list .slick-next {
  display: none !important;
}

section .shop-list {
  grid-gap: 3em 2em;
  -ms-grid-columns: (1fr)[2];
      grid-template-columns: repeat(2, 1fr);
}

@media only screen and (min-width: 1025px) {
  section .shop-list {
    -ms-grid-columns: (1fr)[4];
        grid-template-columns: repeat(4, 1fr);
  }
}

section .shop-list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

section.shop-page > .container-area .category-menu-list {
  display: block;
  max-width: calc(100vw - 2em);
  overflow-x: auto;
  scroll-behavior: smooth;
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
  white-space: nowrap;
}

section.shop-page > .container-area .category-menu-list::-webkit-scrollbar {
  display: none;
}

section.shop-page > .container-area .category-menu-list li {
  margin-right: 1em;
  display: inline-block;
  width: 35vw;
  max-width: 180px;
  scroll-snap-align: start;
}

section.shop-page > .container-area .category-menu-list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.shop-page > .container-area .woocommerce-ordering,
section.shop-page > .container-area .woocommerce-page .woocommerce-ordering {
  float: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

section.shop-page > .container-area .toggle-sidebar {
  display: none;
}

@media only screen and (max-width: 480px) {
  section.shop-page > .container-area .toggle-sidebar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    --ggs: 2;
  }
  section.shop-page > .container-area .toggle-sidebar i {
    color: var(--secondary-colour);
  }
  section.shop-page > .container-area .toggle-sidebar span {
    margin-left: 1em;
    color: var(--grey);
  }
  section.shop-page > .container-area .sidebar {
    display: block;
    position: fixed;
    left: -66vw;
    top: 0;
    width: 66vw;
    height: 100vh;
    overflow: auto;
    background-color: white;
    z-index: 2;
    -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  }
  section.shop-page > .container-area .sidebar.opened {
    left: 0;
  }
}

@media only screen and (min-width: 481px) {
  section.shop-page > .container-area {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: minmax(auto, 15vw) 1fr;
        grid-template-columns: minmax(auto, 15vw) 1fr;
    grid-gap: 1em 2em;
  }
  section.shop-page > .container-area .category-menu {
    grid-column: 1/-1;
    -ms-grid-row: 1;
    grid-row: 1;
    text-align: center;
  }
  section.shop-page > .container-area .category-menu-list-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
        align-content: center;
    border-radius: 50%;
    margin-right: var(--gutter);
  }
}

section.product-main-section {
  display: -ms-grid;
  display: grid;
  grid-gap: 1em;
      grid-template-areas: "category-tree" "title" "price" "gallery" "details" "product-meta" "cart-form" "related-products";
  background-color: var(--panelcolor);
}

section.product-main-section #product-tabs ul,
section.product-main-section .product-details ul {
  list-style: circle;
  margin-left: 1em;
}

section.product-main-section #product-tabs ul li,
section.product-main-section .product-details ul li {
  padding-left: 1em;
}

section.product-main-section .product-title,
section.product-main-section .product-details,
section.product-main-section .price-box,
section.product-main-section .cart-form {
  padding: 0 var(--gutter);
}

section.product-main-section .product-gallery {
  width: 100vw;
  -ms-grid-row: 4;
  -ms-grid-column: 1;
  grid-area: gallery;
}

section.product-main-section .product-category-tree {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: category-tree;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

section.product-main-section .product-category-tree li:not(:last-child)::before {
  content: "<<";
  margin: 0 1em;
  color: var(--grey);
}

section.product-main-section .product-title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: title;
  margin-bottom: 0;
}

section.product-main-section .product-details {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: details;
}

section.product-main-section .product-details .more-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1em;
  margin: 2em 0;
  color: var(--grey);
}

section.product-main-section .product-details .more-description i {
  color: var(--secondary-colour);
  font-size: 3em;
}

section.product-main-section .price-box {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: price;
}

section.product-main-section .product-meta {
  -ms-grid-row: 6;
  -ms-grid-column: 1;
  grid-area: product-meta;
}

section.product-main-section .cart-form {
  -ms-grid-row: 7;
  -ms-grid-column: 1;
  grid-area: cart-form;
}

@media only screen and (min-width: 481px) {
  section.product-main-section {
    grid-gap: 2em;
    -ms-grid-columns: 45vw 1fr var(--container-margin);
        grid-template-columns: 45vw 1fr var(--container-margin);
        grid-template-areas: "gallery category-tree ." "gallery title ." "gallery price ." "gallery details ." "gallery product-meta ." "gallery cart-form ." "gallery related-products .";
  }
  section.product-main-section .product-title {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    grid-area: title;
    margin: 1em 0;
  }
  section.product-main-section .product-gallery {
    -ms-grid-row: 1;
    -ms-grid-row-span: 7;
    -ms-grid-column: 1;
    grid-area: gallery;
    width: auto;
  }
  section.product-main-section .product-details {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
    grid-area: details;
  }
  section.product-main-section .related-products {
    direction: rtl;
  }
  section.product-main-section .related-products,
  section.product-main-section .up-sells.upsells {
    -ms-grid-row: 7;
    -ms-grid-column: 2;
    grid-area: related-products;
  }
  section.product-main-section .related-products ul.shop-list,
  section.product-main-section .up-sells.upsells ul.shop-list {
    padding: 1em;
  }
  section.product-main-section .price-box {
    -ms-grid-row: 3;
    -ms-grid-column: 2;
    grid-area: price;
  }
  section.product-main-section .price-box .amount {
    font-size: 1.25em;
  }
  section.product-main-section .price-box .share {
    display: none;
  }
  section.product-main-section .product-meta {
    -ms-grid-row: 5;
    -ms-grid-column: 2;
    grid-area: product-meta;
  }
  section.product-main-section .cart-form {
    -ms-grid-row: 6;
    -ms-grid-column: 2;
    grid-area: cart-form;
  }
}

@media only screen and (min-width: 1921px) {
  section.product-main-section {
    -ms-grid-columns: var(--container-margin) 768px 1fr var(--container-margin);
        grid-template-columns: var(--container-margin) 768px 1fr var(--container-margin);
        grid-template-areas: ". gallery title ." ". gallery details ." ". gallery price ." ". gallery cart-form .";
  }
}

section.product-main-section .related-products,
section.product-main-section .up-sells.upsells ul.shop-list {
  display: -ms-grid;
  display: grid;
  grid-gap: 1em;
  -ms-grid-columns: (8em)[auto-fit];
      grid-template-columns: repeat(auto-fit, 8em);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

section.product-main-section .related-products li.active,
section.product-main-section .up-sells.upsells ul.shop-list li.active {
  border: var(--text-color) 1px solid;
  padding: 0.5em;
  opacity: 0.5;
}

section.product-main-section .related-products li .onsale,
section.product-main-section .related-products li h2,
section.product-main-section .related-products li .woocommerce-loop-product__title,
section.product-main-section .related-products li .price,
section.product-main-section .up-sells.upsells ul.shop-list li .onsale,
section.product-main-section .up-sells.upsells ul.shop-list li h2,
section.product-main-section .up-sells.upsells ul.shop-list li .woocommerce-loop-product__title,
section.product-main-section .up-sells.upsells ul.shop-list li .price {
  display: none;
}

section.product-main-section .cart-form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section.product-main-section .cart-form .product-variations li.product-variation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 1em;
}

section.product-main-section .cart-form .product-variations li.product-variation > label {
  margin-bottom: 0.5em;
}

section.product-main-section .cart-form .product-variations li.product-variation > label:not(:last-child) {
  margin-right: 1em;
}

section.product-main-section .cart-form .product-variations li.product-variation > label input[type="radio"] {
  display: none;
}

section.product-main-section .cart-form .product-variations li.product-variation > label input[type="radio"] + span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-item-align: center;
      align-self: center;
  text-align: center;
  background-color: var(--lightgrey);
  color: var(--grey);
  padding: 0.5em 1em;
  border-radius: 1em;
}

section.product-main-section .cart-form .product-variations li.product-variation > label input[type="radio"]:checked + span {
  background-color: var(--text-color);
  color: var(--bgcolor);
}

section.product-main-section .cart-form .woocommerce-variation-add-to-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

section.product-main-section .cart-form .qty-update {
  margin-bottom: 1em;
}

section.product-main-section .cart-form .qty-update input[type="number"]:not(.browser-default) {
  width: auto;
  border: none;
  text-align: center;
}

section.product-main-section .cart-form .qty-update .qty-update-down,
section.product-main-section .cart-form .qty-update .qty-update-up {
  cursor: pointer;
  padding: 0.25em 1em;
  border: var(--lightgrey) 1px solid;
  font-weight: bold;
}

section.product-main-section .cart-form .add-to-cart {
  padding: 1em;
  margin: 1em 0;
}

section.product-main-section.scrolled-past-title .product-title {
  position: fixed;
  top: 44px;
  width: 50vw;
  z-index: 2;
  background-color: var(--fadelight);
  color: var(--fadedark);
  padding: 0.5em;
}

section.product-main-section.scrolled-past-price .price-box {
  position: fixed;
  top: 44px;
  left: 45vw;
  width: 20vw;
  z-index: 2;
  background-color: var(--fadelight);
  color: var(--fadedark);
  padding: 1.5em;
}

section.product-main-section.scrolled-past-add-to-cart .cart-form {
  position: fixed;
  top: 44px;
  /* right: var(--container-margin); */
  width: 35vw;
  z-index: 2;
  background-color: var(--fadelight);
  color: var(--fadedark);
  padding: 1.5em;
  right: 0;
}

@media only screen and (min-width: 768px) {
  section.product-main-section .cart-form.scrolled-past {
    position: fixed;
    right: 0;
    background-color: var(--panelcolor);
    z-index: 2;
    max-width: 20vw;
    padding: 1rem;
    margin-right: 0;
  }
  section.product-main-section .cart-form.scrolled-past ul.product-variations img.variation-image {
    display: none;
  }
}

section.blog-archive .blog-list {
  display: -ms-grid;
  display: grid;
  grid-gap: 1em;
}

section.blog-archive .blog-list li {
  display: -ms-grid;
  display: grid;
  grid-gap: 1em;
  -ms-grid-rows: auto 1fr;
      grid-template-rows: auto 1fr;
      grid-template-areas: "thumbnail title" "thumbnail intro";
}

section.blog-archive .blog-list li .post-title {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: title;
  font-size: 1.5em;
  font-weight: bold;
}

section.blog-archive .blog-list li .post-image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  grid-area: thumbnail;
}

section.blog-archive .blog-list li .post-intro {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: intro;
}

@media only screen and (min-width: 481px) {
  section.blog-archive .blog-list {
    -ms-grid-columns: (1fr)[2];
        grid-template-columns: repeat(2, 1fr);
  }
  section.blog-archive .blog-list li {
    position: relative;
  }
  section.blog-archive .blog-list li:first-child {
    /* grid-column: 1 / span 2; */
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1 / span 2;
    -ms-grid-rows: 1fr auto;
        grid-template-rows: 1fr auto;
    grid-gap: 1.5em;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    grid-gap: 0;
  }
  section.blog-archive .blog-list li:first-child .post-title {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
    background-color: var(--extrafadedark);
    color: var(--panelcolor);
    padding: 1em;
    font-size: 1.5rem;
    z-index: 1;
  }
  section.blog-archive .blog-list li:first-child .post-image {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    grid-row: 1/3;
  }
  section.blog-archive .blog-list li:first-child .post-intro {
    -ms-grid-column: 1;
    -ms-grid-column-span: 2;
    grid-column: 1/3;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    display: none;
  }
}

section .container-area .pagination {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

section .related-products .shop-list li {
  text-align: center;
}

.page-template p {
  /* font-size: 1.25rem;
    line-height: 2rem; */
  margin-bottom: 1em;
}

.page-template .page-focus {
  font-size: 1.5rem;
  line-height: 2.5em;
  color: var(--grey);
  text-align: center;
  margin: 0 var(--container-margin);
}

.page-template .page-focus p {
  margin-bottom: 1em;
}

.cross-sells .shop-list {
  grid-gap: 1em;
  -ms-grid-columns: (1fr)[4];
      grid-template-columns: repeat(4, 1fr);
}

/* Cart */
.widget_shopping_cart .widget_shopping_cart_content .mini_cart_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.mini-cart ul.cart-items li {
  display: -ms-grid;
  display: grid;
  grid-gap: 0.25rem 0.5rem;
  -ms-grid-columns: auto ifr 30%;
      grid-template-columns: auto ifr 30%;
  -ms-grid-rows: auto auto;
      grid-template-rows: auto auto;
      grid-template-areas: "remove title thumbnail" "remove quantity thumbnail";
  margin: 1rem 0;
  -webkit-transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.mini-cart ul.cart-items li:hover {
  padding: 0.5rem;
  background-color: var(--panelcolor);
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.mini-cart ul.cart-items li .remove_from_cart_button {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: remove;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  font-weight: 600;
  color: red;
}

.mini-cart ul.cart-items li .mini-cart-item-image {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 3;
  grid-area: thumbnail;
}

.mini-cart .woocommerce-mini-cart__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 1em;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

/* .woocommerce ul.cart_list li a, .woocommerce ul.product_list_widget li a{} */
/* Checkout */
.woocommerce form.checkout.woocommerce-checkout {
  display: -ms-grid;
  display: grid;
      grid-template-areas: "details" "details" "title" "order";
  grid-gap: 2em;
}

@media only screen and (min-width: 768px) {
  .woocommerce form.checkout.woocommerce-checkout {
    -ms-grid-columns: 1fr 1fr;
        grid-template-columns: 1fr 1fr;
        grid-template-areas: "details title" "details order" "details order";
  }
}

.woocommerce form.checkout.woocommerce-checkout .woocommerce-NoticeGroup-checkout {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: title;
}

.woocommerce form.checkout.woocommerce-checkout .checkout-customer-details {
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  -ms-grid-column: 1;
  grid-area: details;
  /* display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    grid-gap: 4em; */
}

.woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-billing, .woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-shipping {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-billing .form-row, .woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-shipping .form-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}

.woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-billing .form-row label, .woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-shipping .form-row label {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

.woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-billing .form-row .woocommerce-input-wrapper,
.woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-billing .form-row .select2, .woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-shipping .form-row .woocommerce-input-wrapper,
.woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-shipping .form-row .select2 {
  -webkit-box-flex: 2;
      -ms-flex: 2;
          flex: 2;
}

.woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-billing label,
.woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-billing .woocommerce-input-wrapper, .woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-shipping label,
.woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-shipping .woocommerce-input-wrapper {
  display: block;
}

@media only screen and (max-width: 767px) {
  .woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-billing .form-row-first, .woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-billing .form-row-last, .woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-shipping .form-row-first, .woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-shipping .form-row-last {
    width: 100%;
  }
  .woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-billing .form-row-first,
  .woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-billing .form-row-last, .woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-shipping .form-row-first,
  .woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-shipping .form-row-last {
    float: none;
  }
}

.woocommerce form.checkout.woocommerce-checkout .checkout-customer-details-billing {
  margin-bottom: calc(2 * var(--gutter));
}

.checkout-addresses,
.customer-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media only screen and (max-width: 767px) {
  .checkout-addresses,
  .customer-login {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.checkout-addresses-item,
.customer-login-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

@media only screen and (min-width: 768px) {
  .checkout-addresses-item:not(:last-child),
  .customer-login-item:not(:last-child) {
    margin-right: var(--gutter);
  }
}

@media only screen and (max-width: 767px) {
  .checkout-addresses-item:not(:last-child),
  .customer-login-item:not(:last-child) {
    margin-bottom: var(--gutter);
  }
}

.place-order {
  display: block;
}

.pre-footer ul li {
  margin: 0 1em;
}

.pre-footer .slick-track {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer {
  background-color: var(--dark);
  color: var(--light);
  padding: 2em 1em;
}

footer a:link,
footer a {
  color: var(--light);
  text-decoration: none;
}

footer .footer-widget {
  margin-bottom: calc(2 * var(--gutter));
}

footer.content p {
  margin-bottom: 0.5em;
}

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

footer.content i {
  margin-right: 1em;
}

footer .footer-items {
  display: -ms-grid;
  display: grid;
  grid-gap: 1em;
  -ms-grid-columns: (minmax(320px, 1fr))[auto-fit];
      grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

footer .footer-items li.footer-item {
  height: auto;
}

footer .footer-items li.footer-item h3 {
  --triangle-base: 0.5em solid var(--lightgrey);
  --triangle-sides: 0.25em solid transparent;
  font-size: 1.25em;
  font-weight: 400;
  color: var(--lightgrey);
}

@media only screen and (max-width: 480px) {
  footer .footer-items li.footer-item h3 {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 0;
  }
  footer .footer-items li.footer-item h3::after {
    content: "";
    width: 0;
    height: 0;
    border-top: var(--triangle-base);
    border-left: var(--triangle-sides);
    border-right: var(--triangle-sides);
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

footer .footer-items li.footer-item > ul,
footer .footer-items li.footer-item > form,
footer .footer-items li.footer-item > div {
  display: none;
}

@media only screen and (min-width: 481px) {
  footer .footer-items li.footer-item > ul,
  footer .footer-items li.footer-item > form,
  footer .footer-items li.footer-item > div {
    display: block;
  }
}

@media only screen and (max-width: 480px) {
  footer .footer-items li.footer-item.opened h3::after {
    /* border-top: none; */
    /* border-bottom: var(--triangle-base); */
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
  }
}

footer .footer-items li.footer-item.opened > ul,
footer .footer-items li.footer-item.opened > form,
footer .footer-items li.footer-item.opened > div {
  display: block;
}

footer ul.contact-details li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 1em;
  /* a,
      i {
        margin-right: 1em;
      } */
}

.post-footer {
  text-align: center;
  color: var(--grey);
}
/*# sourceMappingURL=style.css.map */