/*
---------------------------------------
BASIC STUFF AND TYPOGRAPHY
------------------------------------ */
@import url("https://fonts.googleapis.com/css2?family=Mukta:wght@200;300;400;500;600;700;800&display=swap");
html {
  overflow-y: scroll;
}

article, aside, figure, footer, header, hgroup, nav, section {
  display: block;
}

.touch body {
  -webkit-text-size-adjust: none;
}

:focus {
  -moz-outline-style: none;
  outline: none;
}

body {
  margin: 0;
  font-size: 20px;
  line-height: 32px;
  font-family: "Mukta", Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 20px;
  }
}

a {
  color: inherit;
  text-decoration: none;
  outline: none;
}

a img {
  border: 0;
}

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

div.clear {
  clear: both;
}

h1 {
  font: bold normal 45px/50px "Mukta", Helvetica, Arial, sans-serif;
  margin: 20px 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1600px) {
  h1 {
    font-size: 35px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 25px;
    line-height: 26px;
  }
}

h2 {
  font: bold normal 30px/40px "Mukta", Helvetica, Arial, sans-serif;
  margin: 20px 0 10px 0;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #DC1F26;
}
@media screen and (max-width: 1600px) {
  h2 {
    font-size: 26px;
    line-height: 35px;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 20px;
    line-height: 23px;
  }
}

h3 {
  font: normal normal 20px/33px "Mukta", Helvetica, Arial, sans-serif;
  margin: 10px 0 5px 0;
}

/* ------------------------------------
HEADER
------------------------------------ */
header.main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: black;
  height: 100px;
  padding: 0 40px;
}
@media screen and (max-width: 1600px) {
  header.main {
    height: 80px;
  }
}
@media screen and (max-width: 1200px) {
  header.main {
    height: auto;
    padding: 20px 20px 10px 20px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  header.main {
    height: 60px;
    padding: 0 20px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 0;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
  }
}
header.main .logo {
  display: block;
  line-height: 0;
}
header.main .logo img {
  height: 50px;
}
@media screen and (max-width: 1600px) {
  header.main .logo img {
    width: 200px;
  }
}
@media screen and (max-width: 767px) {
  header.main .logo img {
    width: 180px;
  }
}
header.main .header_search {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0 14px 0 30px;
  max-width: 600px;
}
header.main .header_search input[type=search] {
  border-radius: 8px !important;
}
@media screen and (max-width: 767px) {
  header.main nav {
    display: none;
  }
}
header.main nav ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
header.main nav ul.menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  text-align: center;
}
header.main nav ul.menu li a {
  font: normal normal 15px/normal "Mukta", Helvetica, Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  padding: 8px 18px;
  overflow: hidden;
  text-align: center;
  color: white;
}
@media screen and (max-width: 1600px) {
  header.main nav ul.menu li a {
    padding: 8px;
    font-size: 14px;
    letter-spacing: 0.05em;
  }
}
@media screen and (max-width: 1200px) {
  header.main nav ul.menu li a {
    padding: 7px;
    font-size: 12px;
    letter-spacing: 0;
  }
}
header.main nav ul.menu li:hover > a, header.main nav ul.menu li > a:hover {
  color: #ccc;
}
header.main nav ul.menu li.current_page_item > a, header.main nav ul.menu li.current_page_parent > a {
  font-weight: bold;
}
header.main nav ul.menu li.menu_account a {
  font-size: 0;
}
header.main nav ul.menu li.menu_account a:after {
  content: "\f007";
  font-family: "Font Awesome 6 Pro";
  margin: 0 0 3px 0;
  display: block;
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  header.main nav ul.menu li.menu_account a:after {
    font-size: 13px;
  }
}
header.main nav ul.menu ul.sub-menu {
  display: none;
}
header.main a.mobile_toggle {
  color: white;
  padding: 20px;
  margin: 0 -20px 0 0;
  display: none;
}
@media screen and (max-width: 767px) {
  header.main a.mobile_toggle {
    display: block;
  }
}

.mm-wrapper--opened a.mobile_toggle:before {
  content: "\f00d" !important;
}

header.main ul#menu-main-menu > li {
  position: relative;
}
header.main ul#menu-main-menu > li > ul.sub-menu {
  position: absolute;
  border: 1px solid #eee;
  left: 0;
  top: 98%;
  display: none;
  background: white;
  margin: 0;
  padding: 0;
  width: 250px;
  z-index: 2;
  -webkit-box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.05);
}
header.main ul#menu-main-menu > li > ul.sub-menu li {
  display: block;
}
header.main ul#menu-main-menu > li > ul.sub-menu li a {
  display: block;
  line-height: normal;
  padding: 8px 18px;
  color: black;
  text-align: left;
  text-transform: none;
  letter-spacing: 0;
}
header.main ul#menu-main-menu > li > ul.sub-menu li a:after {
  display: none !important;
}
header.main ul#menu-main-menu > li > ul.sub-menu li:first-child a {
  padding-top: 14px;
}
header.main ul#menu-main-menu > li > ul.sub-menu li:last-child a {
  padding-bottom: 14px;
}
header.main ul#menu-main-menu > li > ul.sub-menu ul.sub-menu {
  display: none !important;
}
header.main ul#menu-main-menu > li.menu-item-has-children a:after {
  font-family: "Font Awesome 6 Pro";
  display: inline;
  content: "\f107";
  font-size: 80%;
  margin: 0 0 0 5px;
}
header.main ul#menu-main-menu > li.menu-item-has-children:hover ul.sub-menu {
  display: block;
}
@media screen and (max-width: 767px) {
  header.main ul#menu-main-menu > li.menu-item-has-children:hover ul.sub-menu {
    display: none !important;
  }
}

/* ------------------------------------
GENERAL LAYOUT
------------------------------------ */
.wrapper {
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px;
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding: 20px;
  }
}

.maxwidth {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 40px;
  padding-right: 40px;
}
@media screen and (max-width: 767px) {
  .maxwidth {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.modules section {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .modules section {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.modules section.module_two_columns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .modules section.module_two_columns {
    display: block;
    padding-top: 0;
    padding-bottom: 0;
  }
}
.modules section.module_two_columns .col {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .modules section.module_two_columns .col {
    width: auto;
    text-align: center;
    padding-top: 0;
    padding-bottom: 0;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}
.modules section.module_cta {
  margin-top: 40px;
  margin-bottom: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modules section.module_cta {
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
  }
}
.modules section.module_cta .module_cta_inner {
  max-width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .modules section.module_cta .module_cta_inner {
    max-width: none;
  }
}
.modules section.module_text_and_image {
  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;
}
@media screen and (max-width: 767px) {
  .modules section.module_text_and_image {
    display: block;
    padding: 0;
  }
}
.modules section.module_text_and_image .module_text_and_image_image {
  width: 46%;
  position: relative;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .modules section.module_text_and_image .module_text_and_image_image {
    width: auto;
    margin-left: 0;
    min-height: 150px;
    text-align: center;
    padding-top: 20px;
    padding-bottom: 20px;
  }
}
.modules section.module_text_and_image .module_text_and_image_text {
  width: 46%;
}
@media screen and (max-width: 767px) {
  .modules section.module_text_and_image .module_text_and_image_text {
    width: auto;
    text-align: center;
    padding: 20px;
  }
}
.modules section.module_text_and_image.right {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.modules section.module_tiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 300px;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .modules section.module_tiles {
    display: block;
    height: auto;
    padding: 0;
  }
}
.modules section.module_tiles a.image_tile {
  display: block;
  background: #555 none no-repeat center center;
  background-size: cover;
  color: white;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
  border-radius: 8px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .modules section.module_tiles a.image_tile {
    width: 100%;
    margin: 8px 0;
    height: 150px;
  }
}
.modules section.module_tiles a.image_tile .tile_text {
  padding: 20px 10px;
  position: relative;
  z-index: 2;
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 18px;
}
.modules section.module_tiles a.image_tile .tile_text p {
  text-transform: none;
  font-weight: normal;
  letter-spacing: 0;
  margin: 10px 0 0 0;
}
.modules section.module_tiles a.image_tile:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(28%, rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.75) 100%);
}

.homebanner .homebanner_slide {
  height: 40vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #222 none no-repeat center center;
  background-size: cover;
  color: white;
  position: relative;
}
@media screen and (max-width: 767px) {
  .homebanner .homebanner_slide {
    height: auto;
  }
}
.homebanner .homebanner_slide .homebanner_text {
  text-align: center;
  padding: 50px 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .homebanner .homebanner_slide .homebanner_text {
    padding: 80px 20px 20px 20px;
  }
}
.homebanner .homebanner_slide:after {
  display: block;
  position: absolute;
  content: " ";
  z-index: 1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(28%, rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 28%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.75) 100%);
}
@media screen and (max-width: 767px) {
  .homebanner .homebanner_slide:after {
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(0%, rgba(0, 0, 0, 0)), color-stop(80%, rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0.75)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 80%, rgba(0, 0, 0, 0.75) 100%);
  }
}
.homebanner ul.slick-dots {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .homebanner ul.slick-dots {
    margin: 10px 0;
  }
}
.homebanner ul.slick-dots li {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline;
}
.homebanner ul.slick-dots li button {
  font-size: 0;
  background: #ddd;
  padding: 0;
  width: 8px;
  height: 8px;
  margin: 0 5px;
  border-radius: 999px;
  cursor: pointer;
}
.homebanner ul.slick-dots li.slick-active button {
  background: #555;
}
@media screen and (max-width: 767px) {
  .homebanner .slick-track {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
  }
  .homebanner .slick-slide {
    height: inherit !important;
  }
}

/* ------------------------------------
PRODUCT LISTING
------------------------------------ */
.page_header {
  background: #222 url(../images/header_temp.jpg) no-repeat center center;
  background-size: cover;
  text-align: center;
  padding: 50px 0;
  min-height: 200px;
  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;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 1600px) {
  .page_header {
    min-height: 150px;
  }
}
@media screen and (max-width: 767px) {
  .page_header {
    padding: 30px 0;
    min-height: 0;
  }
}
.page_header h1 {
  color: white;
  max-width: 90%;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .page_header h1 {
    margin: 0;
  }
}
.page_header:after {
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: block;
  content: " ";
  background: black;
  opacity: 0.5;
}

.product_listing_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .product_listing_wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.product_listing_wrapper #shop_sidebar {
  width: 300px;
  -ms-flex-preferred-size: 20%;
      flex-basis: 20%;
}
@media screen and (max-width: 767px) {
  .product_listing_wrapper #shop_sidebar {
    width: auto;
    -ms-flex-preferred-size: auto;
        flex-basis: auto;
    padding: 0 30px;
  }
}
.product_listing_wrapper #shop_sidebar h3 {
  font-weight: bold;
}
.product_listing_wrapper #shop_sidebar .facetwp-checkbox, .product_listing_wrapper #shop_sidebar .facetwp-slider-label {
  font-size: 80%;
}
.product_listing_wrapper #shop_sidebar form#searchform {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 0 40px 0;
  gap: 5px;
}
.product_listing_wrapper #shop_sidebar form#searchform input[type=text] {
  border-radius: 8px;
}
.product_listing_wrapper #shop_sidebar form#searchform input[type=submit] {
  padding: 10px;
}
.product_listing_wrapper main#main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  -ms-flex-preferred-size: 80%;
      flex-basis: 80%;
}

li.product {
  text-align: center;
}

h2.woocommerce-loop-product__title {
  color: black;
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.2em;
}
h2.woocommerce-loop-product__title span {
  display: block;
}
h2.woocommerce-loop-product__title span:nth-child(2) {
  font-weight: normal;
  font-size: 80%;
}

.woocommerce ul.products li.product a img {
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
}

.woocommerce ul.products li.product a img.product_hover_image {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}

.woocommerce ul.products li.product a:hover img.product_hover_image {
  opacity: 1;
}

.woocommerce:where(body:not(.woocommerce-uses-block-theme)) ul.products li.product .price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product p.price, .woocommerce:where(body:not(.woocommerce-uses-block-theme)) div.product span.price {
  color: black;
}

.woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt:hover, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt:hover, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) #respond input#submit.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) a.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) button.button.alt, .woocommerce:where(body:not(.woocommerce-block-theme-has-button-styles)) input.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce #respond input#submit.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce a.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce button.button.alt, :where(body:not(.woocommerce-block-theme-has-button-styles)) .woocommerce input.button.alt, .woocommerce span.onsale {
  background-color: #DC1F26;
}

.woocommerce ul.products li.product .button, form.woocommerce-ordering, p.woocommerce-result-count {
  display: none !important;
}

.wc-block-components-notice-banner {
  margin-top: 0 !important;
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
  padding: 0;
}

.related.products {
  clear: both;
}

.product_meta {
  font-size: 80%;
  margin: 40px 0;
}
@media screen and (max-width: 767px) {
  .product_meta {
    margin: 20px 0;
  }
}

/* ------------------------------------
HOMEPAGE
------------------------------------ */
.home_tiles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 2%;
}
@media screen and (max-width: 767px) {
  .home_tiles {
    display: block;
  }
}
.home_tiles a.home_tile {
  -ms-flex-preferred-size: 49%;
      flex-basis: 49%;
  height: 430px;
  background-size: cover;
  background-color: #ddd;
  position: relative;
}
@media screen and (max-width: 767px) {
  .home_tiles a.home_tile {
    height: 200px;
    display: block;
    margin-bottom: 20px;
  }
}
.home_tiles a.home_tile.full {
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
.home_tiles a.home_tile .home_tile_text {
  text-align: left;
  padding: 20px;
  color: white;
  position: relative;
  z-index: 2;
  position: absolute;
  bottom: 0;
  left: 0;
}
.home_tiles a.home_tile .home_tile_text h2 {
  margin: 0;
  color: white;
}
.home_tiles a.home_tile .home_tile_text p {
  margin: 20px 0 0 0;
}
.home_tiles a.home_tile.centered {
  text-align: center;
}
.home_tiles a.home_tile.centered .home_tile_text {
  text-align: center;
  width: 100%;
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .home_tiles a.home_tile.centered {
    height: 300px;
  }
  .home_tiles a.home_tile.centered:after {
    opacity: 0.7 !important;
  }
}
.home_tiles a.home_tile:after {
  content: " ";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), color-stop(28%, rgba(0, 0, 0, 0)), color-stop(80%, rgb(0, 0, 0)), to(rgb(0, 0, 0)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 28%, rgb(0, 0, 0) 80%, rgb(0, 0, 0) 100%);
  opacity: 0.3;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.home_tiles a.home_tile:hover:after {
  opacity: 0.6;
}

.page-template-page_template_home .woocommerce ul.products li.product, .page-template-page_template_home .woocommerce-page ul.products li.product {
  margin-bottom: 0;
}

/* ------------------------------------
PRODUCT DETAIL
------------------------------------ */
.woocommerce div.product form.cart:not(.variations_form) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce div.product:after {
  display: block;
  clear: both;
  content: " ";
}
.woocommerce div.product div.images img {
  width: 99%;
  border: 1px solid #ccc;
}
.woocommerce div.product .shipping_class_label {
  font-size: 80%;
  font-weight: bold;
  padding: 20px 0;
}
.woocommerce div.product .shipping_class_label.pickup {
  color: #DC1F26;
}
.woocommerce div.product form.cart.variations_form table.variations {
  text-align: left;
  width: auto;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 767px) {
  .woocommerce div.product form.cart.variations_form table.variations {
    margin: 0 0 30px 0;
  }
}
.woocommerce div.product form.cart.variations_form table.variations th.label {
  padding-right: 10px;
  vertical-align: middle;
}
.woocommerce div.product form.cart.variations_form table.variations select {
  min-width: 0;
  width: auto;
}
.woocommerce div.product form.cart.variations_form .woocommerce-variation-add-to-cart.variations_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.woocommerce div.product section.related.products {
  display: none;
}
.woocommerce div.product .sku_wrapper, .woocommerce div.product .posted_in {
  display: block;
}
.woocommerce div.product table.shop_attributes td {
  font-style: normal;
}

h1.product_title {
  text-transform: none;
  letter-spacing: 0;
}
h1.product_title span {
  display: block;
}
h1.product_title span:nth-child(2) {
  font-size: 70%;
  font-weight: normal;
}

/* ------------------------------------
CART
------------------------------------ */
.wc-block-cart__submit-container a {
  background: black;
  color: white;
  font-weight: bold;
}

.wc-block-cart .wc-block-cart__submit-container--sticky {
  background: black !important;
  color: white;
  font-weight: bold;
}

.wc-block-components-shipping-rates-control__package-title {
  font-weight: bold;
}

.wc-block-components-panel__button {
  cursor: pointer;
  border-top: 1px solid #ddd;
}

.wc-block-components-shipping-rates-control__package__description--free, span#radio-control-0-flat_rate\:8__secondary-label .wc-block-checkout__shipping-option--free {
  display: none !important;
}

span#radio-control-1-flat_rate\:8__secondary-label {
  display: none !important;
}

/* ------------------------------------
FOOTER
------------------------------------ */
footer {
  background: black;
  color: white;
  text-align: center;
  padding: 40px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
footer .logo img {
  width: 400px;
}
footer p.small {
  font-size: 11px;
}
footer ul.menu {
  list-style: none;
  margin: 0;
  padding: 0;
  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;
}
@media screen and (max-width: 767px) {
  footer ul.menu {
    display: block;
  }
}
footer ul.menu li {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  text-align: center;
}
footer ul.menu li a {
  font: normal normal 15px/normal "Mukta", Helvetica, Arial, sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: block;
  padding: 8px 18px;
  overflow: hidden;
  text-align: center;
  color: white;
}
footer ul.menu li.menu-cart-icon {
  display: none;
}
footer ul.menu ul.sub-menu {
  display: none;
}

.astm-search-menu a svg {
  margin: 8px 0 0 0;
}

/* ------------------------------------
FORMS
------------------------------------ */
input[type=text], input[type=email], input[type=number], input[type=password], input[type=tel], textarea {
  font: 16px "Mukta", Helvetica, Arial, sans-serif;
  padding: 12px;
  border: 1px solid black;
  width: 100%;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

select {
  color: black;
  font: 16px "Mukta", Helvetica, Arial, sans-serif;
  padding: 12px;
  border-radius: 8px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

input[type=submit], button, a.button, a.components-button, span.button {
  font-family: "Mukta", Helvetica, Arial, sans-serif;
  font-size: 16px;
  padding: 10px 40px;
  font-weight: bold;
  -webkit-appearance: none;
  display: inline-block;
  border-radius: 8px;
  border: 0;
  outline: 0;
  background: #DC1F26;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
input[type=submit].white, button.white, a.button.white, a.components-button.white, span.button.white {
  background: white;
  color: black;
}
input[type=submit]:hover, button:hover, a.button:hover, a.components-button:hover, span.button:hover {
  opacity: 0.8;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.gform_ajax_spinner {
  vertical-align: middle;
  margin: 0 8px;
}

.gform_wrapper {
  max-width: 800px;
  margin: 0 auto;
}
.gform_wrapper ul, .gform_wrapper li {
  list-style: none;
  margin: 0;
  padding: 0;
}
.gform_wrapper ul.gform_fields {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.gform_wrapper ul.gform_fields li.gfield {
  width: 100%;
}
.gform_wrapper ul.gform_fields li.gfield > label {
  display: none;
}
.gform_wrapper ul.gform_fields li.gfield .ginput_container {
  padding: 10px;
}
.gform_wrapper ul.gform_fields li.gfield.half {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .gform_wrapper ul.gform_fields li.gfield.half {
    width: 100%;
  }
}
.gform_wrapper .gform_footer {
  text-align: center;
}
.gform_wrapper .validation_error {
  display: none;
}
.gform_wrapper .validation_message {
  color: red;
  font-size: 13px;
  text-align: center;
}

/* ------------------------------------
EVERYTHING ELSE, MISCELLANEOUS STUFF
------------------------------------ */
.alignright {
  clear: right;
  float: right;
  margin: 0px 0px 20px 20px;
}

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

.wp-caption-text {
  font-style: italic;
  font-size: 11px;
  line-height: 16px;
  margin-top: 3px;
}

.mm-page {
  min-height: 0 !important;
}
@media screen and (max-width: 767px) {
  .mm-page {
    min-height: 100vh !important;
  }
}

@media screen and (max-width: 767px) {
  .is-menu.is-dropdown form {
    top: 0 !important;
  }
}
.oldie [data-aos] {
  opacity: 1 !important;
  -webkit-transform: none !important;
          transform: none !important;
}

.wp-caption {
  width: auto !important;
}

button.mfp-close, button.mfp-close:hover {
  background: transparent !important;
}

a {
  -webkit-tap-highlight-color: #9ce2ff;
}

::-moz-selection {
  background: #9ce2ff !important;
}

::selection {
  background: #9ce2ff !important;
}

::-webkit-input-placeholder {
  color: #999;
}

:-moz-placeholder {
  color: #999;
}

::-moz-placeholder {
  color: #999;
}

:-ms-input-placeholder {
  color: #999;
}

.fancybox-caption.fancybox-caption--separate {
  display: none !important;
}

/* ------------------------------------
MEDIA QUERIES
------------------------------------ */