/*
 Theme Name:   Mijn Vloerenhuis
 Theme URI:    https://mijnvloerenhuis.nl
 Description:  Custom theme build for Mijn Vloerenhuis
 Author:       Kepez
 Author URI:   https://kepez.nl
 Version:      1.0.0
*/
@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,opsz,wght@0,18..144,300..900;1,18..144,300..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --text-color: #000;
  --font-size: 16px;
  --font-size-smaller: 14px;
  --font-size-larger: 18px;
  --primary-color: #552B06;
  --primary-color-lighten: #7E4818;
  --secondary-color: #EAEAE2;
  --secondary-color-darken: #6B705C;
  --border-radius: 10px;
  --container-width: 1200px;
  --container-width-smaller: 800px;
  --container-padding: 20px;
  --header-height: 125px;
  --header-topbar-height: 35px;
  --header-bg-color: #fff;
  --global-padding: 20px;
}

*, *::before, *::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  background: #FFFCF9;
}

body {
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

body {
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  font-weight: 400;
  font-size: var(--font-size);
  line-height: 26px;
}

textarea {
  font-family: "Inter", sans-serif;
}

h1, h2, h3, h4, h5 {
  font-family: "Merriweather", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: "wdth" 100;
}

h1 {
  font-weight: 400;
  font-size: 32px;
  line-height: 36px;
}

h2 {
  font-weight: 400;
  font-size: 24px;
}

h3 {
  font-weight: 400;
  font-size: 18px;
}

h4 {
  font-weight: 400;
  font-size: var(--font-size);
}

select {
  -webkit-appearance: none;
}

#topbar {
  position: fixed;
  width: 100%;
  padding: 0 var(--global-padding);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 40px;
  overflow: hidden;
  font-size: 0.95em;
  line-height: 1em;
  color: #525252;
  gap: 10px;
}
#topbar a {
  text-decoration: none;
  color: inherit;
}
#topbar .topbar__left {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
#topbar .reviews {
  min-width: 86px;
}
#topbar .reviews span {
  margin: 0 5px;
  display: none;
}
#topbar .reviews i {
  color: #FFD700;
}
@media (min-width: 1024px) {
  #topbar .reviews span {
    display: inline;
  }
}

header {
  position: fixed;
  transition: all ease-in 50ms;
  z-index: 999;
  top: calc(var(--global-padding) + 20px);
  left: var(--global-padding);
  right: var(--global-padding);
  border: 1px solid #F0F0F0;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
}
header.scrolled {
  top: 0;
  left: 0;
  right: 0;
  border-radius: 0;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}
header.scrolled #logo img {
  transform: translateY(0);
}
header #header {
  display: flex;
  align-items: center;
  margin: 0 auto;
  padding: 0 var(--container-padding);
  position: relative;
  height: 60px;
}
header #header #logo img {
  height: 50px;
}
header #header #logo a {
  text-decoration: none;
}
header #header #actions {
  margin-left: auto;
  font-size: 1.1em;
  display: flex;
  align-items: center;
}
header #header #actions__search, header #header #actions__account, header #header #actions__cart {
  position: relative;
  padding: 12px;
  cursor: pointer;
}
header #header #actions__search a, header #header #actions__account a, header #header #actions__cart a {
  color: var(--text-color);
  text-decoration: none;
}
header #header #actions__search a span, header #header #actions__account a span, header #header #actions__cart a span {
  position: absolute;
  width: 20px;
  height: 20px;
  font-size: 0.7em;
  background-color: var(--header-secondary-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0px;
  right: 0px;
  z-index: -1;
}
header #header #actions__plan {
  background: var(--primary-color-lighten);
  color: #fff;
  margin-left: 20px;
  border-radius: 10px;
  display: none;
}
header #header #actions__plan a {
  display: inline-block;
  padding: 10px 20px;
  color: inherit;
  text-decoration: none;
}
header #header #actions__plan a i {
  margin-right: 10px;
}
@media (min-width: 1024px) {
  header #header #actions__plan {
    display: flex;
  }
}
header #header #search-form {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 20px;
  height: 100%;
  background: var(--header-bg-color);
  display: none;
  align-items: center;
  font-size: 1.4em;
  z-index: 1;
}
header #header #search-form__container {
  width: 100%;
  border: 1px solid var(--header-secondary-color);
  display: flex;
  border-radius: var(--border-radius);
}
header #header #search-form__container input {
  width: 100%;
  background: none;
  border: none;
  padding: 0 20px;
  font-size: var(--font-size);
}
header #header #search-form__container input:focus {
  outline-color: var(--primary-color);
}
header #header #search-form__container button {
  width: 40px;
  height: 40px;
  font-size: 0.8em;
  border: none;
  background: none;
  position: relative;
  top: 1px;
}
header #header #search-form__close {
  margin-left: auto;
  width: 89px;
  text-align: right;
  padding-right: 14px;
}
header #header #search-form.open {
  display: flex;
}
@media (min-width: 1024px) {
  header #header {
    height: 90px;
  }
  header #header #logo img {
    height: 60px;
  }
}
header #search-results {
  position: absolute;
  width: 100%;
  background-color: var(--header-bg-color);
  transition: all ease-in-out 200ms;
  height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: -1px;
  padding-top: 1px;
}
header #search-results #search-results__container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding) 20px;
}
header #search-results.open {
  height: auto;
  opacity: 1;
  display: block;
  overflow: unset;
}
header #search-results__results {
  display: none;
}
header #search-results__results #search-results__showall {
  margin-top: 15px;
  color: var(--text-color);
  text-decoration: underline;
  cursor: pointer;
}
header #search-results__results #search-results__list .search-result__item {
  width: 100%;
  border-bottom: 1px solid var(--header-secondary-color);
  padding: 15px 0;
}
header #search-results__results #search-results__list .search-result__item a {
  color: var(--text-color);
  text-decoration: none;
  width: 100%;
  display: flex;
}
header #search-results__results #search-results__list .search-result__item .thumbnail {
  width: 70px;
  border: 1px solid var(--header-secondary-color);
}
header #search-results__results #search-results__list .search-result__item .thumbnail img {
  width: 100%;
}
header #search-results__results #search-results__list .search-result__item .description {
  width: 100%;
  padding-left: 20px;
  font-weight: 500;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
header #search-results__results #search-results__list .search-result__item .description span {
  font-weight: 400;
  opacity: 0.6;
  margin-top: 5px;
}
header #search-results__results #search-results__list .search-result__item:last-child {
  border: none;
}
header #search-results__loader {
  position: relative;
  margin: 0 auto;
  width: 80px;
  height: 15px;
}
header #search-results__loader div {
  position: absolute;
  top: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--primary-color);
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
header #search-results__loader div:nth-child(1) {
  left: 8px;
  animation: loader-animation-1 0.6s infinite;
}
header #search-results__loader div:nth-child(2) {
  left: 8px;
  animation: loader-animation-2 0.6s infinite;
}
header #search-results__loader div:nth-child(3) {
  left: 32px;
  animation: loader-animation-2 0.6s infinite;
}
header #search-results__loader div:nth-child(4) {
  left: 56px;
  animation: loader-animation-3 0.6s infinite;
}
@keyframes loader-animation-1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loader-animation-3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes loader-animation-2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(24px, 0);
  }
}

.need-help {
  padding-top: 20px;
}
.need-help .row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 1024px) {
  .need-help .row {
    align-items: center;
    flex-direction: row;
  }
}
.need-help .row .col {
  flex: 1;
}
.need-help .row .col .help-contact-info {
  font-weight: 100;
  line-height: 1.4em;
  font-size: 1.2em;
}
.need-help .row .col .help-contact-info a {
  text-decoration: underline;
  color: inherit;
}
.need-help .row .col .help-contact-info a.whatsapp {
  background: #25D366;
  border: 2px solid #199347;
  color: #fff;
  margin-top: 10px;
  padding: 8px 16px;
  border-radius: var(--border-radius);
  display: inline-flex;
  text-decoration: none;
  font-size: 1rem;
}
.need-help .row .col .help-contact-info a.whatsapp img {
  width: 20px;
  margin-right: 10px;
}

footer {
  margin: var(--global-padding);
}
footer #footer {
  color: #fff;
  padding: 20px;
  background-color: var(--primary-color);
  border-radius: 10px;
}
footer #footer .contact-us {
  margin-bottom: 40px;
}
footer #footer .contact-us span {
  font-size: 24px;
}
footer #footer .contact-us .contact-us-options {
  margin-top: 30px;
}
footer #footer .contact-us .contact-us-options a {
  display: block;
  color: #fff;
  background-color: var(--primary-color-lighten);
  border-radius: var(--border-radius);
  padding: 12px 35px 15px 20px;
  text-decoration: none;
  align-self: center;
  margin-bottom: 10px;
}
footer #footer .contact-us .contact-us-options a i {
  margin-right: 10px;
  font-size: 1.4em;
  position: relative;
  top: 3px;
}
footer #footer .contact-us .contact-us-options a:first-child {
  margin-left: 0;
}
@media (min-width: 1024px) {
  footer #footer .contact-us {
    display: flex;
    align-items: center;
  }
  footer #footer .contact-us .contact-us-options {
    margin-top: auto;
    margin-left: auto;
  }
  footer #footer .contact-us .contact-us-options a {
    display: inline-block;
    margin-left: 10px;
    margin-bottom: 0;
  }
}
footer #footer .contact-information {
  display: flex;
  flex-wrap: wrap;
}
footer #footer .contact-information .contact-information-block {
  flex: 1;
  margin-bottom: 30px;
}
footer #footer .contact-information .contact-information-block h4 {
  font-weight: 500;
  margin: 0;
  padding: 0;
}
footer #footer .contact-information .contact-information-block p {
  margin: 0;
  padding: 0;
}
footer #footer .contact-information .contact-information-block p a {
  text-decoration: underline;
  color: #fff;
}
footer #footer .contact-information .contact-information-block ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
footer #footer .contact-information .contact-information-block ul li a {
  color: #fff;
  text-decoration: none;
}
footer #footer .contact-information .contact-information-block ul li a:hover, footer #footer .contact-information .contact-information-block ul li a:active {
  text-decoration: underline;
}
footer #footer .contact-information .contact-information-block:first-child {
  flex: 0 0 100%;
}
footer #footer .contact-information .contact-information-block:not(:first-child) {
  flex: 0 0 100%;
}
@media (min-width: 480px) {
  footer #footer .contact-information .contact-information-block:not(:first-child) {
    flex: 0 0 50%;
  }
}
@media (min-width: 1024px) {
  footer #footer .contact-information .contact-information-block:first-child {
    flex: 0 0 30%;
  }
  footer #footer .contact-information .contact-information-block:not(:first-child) {
    flex: 0 0 17.5%;
  }
}
footer #footer .footer-payment-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
footer #footer .footer-payment-container .footer-payment-methods {
  background: #fff;
  padding: 10px 13px;
  border-radius: var(--border-radius);
  display: flex;
  gap: 5px;
  align-items: center;
}
footer #footer .footer-payment-container .footer-payment-methods img {
  height: 35px;
}
footer #copyright {
  margin-top: 20px;
  border-radius: 10px;
  background-color: #4B2504;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
footer #copyright a {
  text-decoration: underline;
  color: #fff;
}
@media (min-width: 768px) {
  footer #copyright {
    flex-direction: row;
    align-items: center;
  }
}

.container {
  max-width: var(--container-width);
  padding-left: var(--container-padding);
  padding-right: var(--container-padding);
  margin: 0 auto;
}

main {
  padding-top: 120px;
}
main > h1,
main h1.entry-title {
  margin-top: 0;
}
main img {
  max-width: 100%;
  height: auto;
}
main.home {
  padding-top: 90px;
}
@media (min-width: 1024px) {
  main {
    padding-top: 160px;
  }
  main.home {
    padding-top: 120px;
  }
}

#menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--header-secondary-color);
  padding: 0px 8px 0 6px;
  border-radius: var(--border-radius);
  margin-right: 10px;
  outline: none;
  border: none;
  height: 24px;
  cursor: pointer;
  font-size: 10px;
  color: var(--text-color);
}
#menu i {
  font-size: 20px;
}
#menu i.open {
  display: inline-block;
}
#menu i.close {
  display: none;
}
#menu.open i.open {
  display: none;
}
#menu.open i.close {
  display: inline-block;
}

.nav-desktop {
  display: none;
  margin-left: 30px;
}
.nav-desktop .menu-desktop-root,
.nav-desktop .menu-desktop-root .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-desktop .menu-desktop-root {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav-desktop .menu-desktop-root > li {
  position: relative;
}
.nav-desktop .menu-desktop-root > li.menu-item-has-children {
  position: relative;
  padding-right: 15px;
}
.nav-desktop .menu-desktop-root > li.menu-item-has-children:before {
  position: absolute;
  content: "";
  right: 0;
  top: 22px;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 5px solid #7D7D7D;
  border-right: 5px solid transparent;
  border-left: 5px solid transparent;
  border-bottom: 0 solid #7D7D7D;
  overflow: hidden;
  transition: 200ms ease;
}
.nav-desktop .menu-desktop-root > li.menu-item-has-children:hover:before {
  transform: rotateX(180deg);
  border-width: 5px 5px 0 5px;
}
.nav-desktop .menu-desktop-root > li.menu-item-has-children:hover ul {
  display: flex;
}
.nav-desktop .menu-desktop-root > li.current-menu-item > a,
.nav-desktop .menu-desktop-root > li.current_page_item > a {
  color: #000;
}
.nav-desktop .menu-desktop-root > li > a {
  text-decoration: none;
  padding: 0.75rem 0;
  display: inline-flex;
  color: #7D7D7D;
}
.nav-desktop .menu-desktop-root > li > .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: max-content;
  color: #fff;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: 0.2s ease;
  display: flex;
  background: #2F2F2F;
  border: 2px solid #EAEAEA;
  padding: 20px;
  border-radius: 10px;
  width: max-content;
  box-shadow: 5px 5px 8px -5px rgba(0, 0, 0, 0.3);
  gap: 10px;
  flex-direction: column;
}
.nav-desktop .menu-desktop-root > li.menu-item-has-children:hover > .sub-menu,
.nav-desktop .menu-desktop-root > li.menu-item-has-children:focus-within > .sub-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.nav-desktop .menu-desktop-root .sub-menu a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
  padding: 0 0.25rem;
  display: block;
}
.nav-desktop .menu-desktop-root .sub-menu .sub-menu {
  flex-direction: column;
}
.nav-desktop .menu-desktop-root .sub-menu .sub-menu a {
  text-decoration: none;
  padding-top: 0;
  padding-bottom: 0;
}

.menu-mobile-root,
.menu-mobile-root .sub-menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-drawer[hidden] {
  display: none;
}

.mobile-nav-drawer {
  position: fixed;
  inset: 0;
  background: var(--primary-color);
  color: #fff;
  z-index: 9999;
  display: grid;
  grid-template-rows: auto 1fr;
  height: 100dvh;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  background: var(--primary-color-lighten);
}

.mobile-nav-back,
.mobile-nav-close {
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 18px;
}

.mobile-nav-title {
  flex: 1;
  text-align: center;
  font-weight: 600;
}

/* --- sliding panels --- */
.mobile-nav-panels {
  position: relative;
  overflow: hidden;
}

.mobile-nav-panels {
  /* --- list look --- */
}
.mobile-nav-panels ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  inset: 0;
  background: var(--primary-color);
  transform: translateX(0);
  transition: transform 0.25s ease;
}
.mobile-nav-panels .mobile-menu li,
.mobile-nav-panels .sub-menu li {
  border-bottom: 1px solid var(--primary-color-lighten);
}
.mobile-nav-panels .mobile-menu a,
.mobile-nav-panels .sub-menu a {
  display: block;
  padding: 14px;
  color: #fff;
  text-decoration: none;
}
.mobile-nav-panels .mobile-menu .sub-open,
.mobile-nav-panels .sub-menu .sub-open {
  float: right;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
}
.mobile-nav-panels .mobile-menu .chev,
.mobile-nav-panels .sub-menu .chev {
  float: right;
  font-size: 18px;
  opacity: 0.9;
}

.mobile-nav-footer {
  padding: 20px;
}

.mobile-nav-footer a {
  display: block;
  padding: 14px 20px;
  color: #fff;
  text-decoration: none;
  background: #050505;
  border-radius: 10px;
}

@media (min-width: 1024px) {
  #menu {
    display: none;
  }
  .nav-desktop {
    display: block;
  }
  .nav-mobile {
    display: none;
  }
}
.wpcf7 p {
  margin: 0;
}
.wpcf7 form {
  max-width: 500px;
  font-family: inherit;
}
.wpcf7 form input[type=text],
.wpcf7 form input[type=email],
.wpcf7 form input[type=tel],
.wpcf7 form input[type=url],
.wpcf7 form input[type=number],
.wpcf7 form textarea,
.wpcf7 form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fff;
  font-size: 16px;
  margin-bottom: 15px;
  transition: all 0.2s ease;
}
.wpcf7 form input[type=text]:focus,
.wpcf7 form input[type=email]:focus,
.wpcf7 form input[type=tel]:focus,
.wpcf7 form input[type=url]:focus,
.wpcf7 form input[type=number]:focus,
.wpcf7 form textarea:focus,
.wpcf7 form select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 2px rgba(var(--primary-color), 0.15);
}
.wpcf7 form textarea {
  min-height: 140px;
  resize: vertical;
}
.wpcf7 form input[type=submit] {
  background: var(--primary-color-lighten);
  color: #fff;
  padding: 12px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.wpcf7 form input[type=submit]:hover {
  background: var(--primary-color);
}
.wpcf7 form .wpcf7-response-output {
  margin-top: 15px;
  padding: 10px 15px;
  border-radius: 6px;
  font-size: 14px;
}
.wpcf7 form .wpcf7-response-output.wpcf7-mail-sent-ok {
  background: #e7f8ec;
  border: 1px solid #41a059;
  color: #2f7a44;
}
.wpcf7 form .wpcf7-response-output.wpcf7-validation-errors {
  background: #fdecea;
  border: 1px solid #e1715b;
  color: #b55142;
}
.wpcf7 form .wpcf7-not-valid-tip {
  font-size: 13px;
  color: #b20000;
  margin-top: -10px;
  margin-bottom: 10px;
}
.wpcf7 label {
  font-weight: 500;
  display: block;
}

#hero {
  margin: var(--global-padding);
  background-size: cover;
  background-position: center;
  position: relative;
  background-color: #f2f2f2;
  border-radius: var(--border-radius);
}
#hero::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
  border-radius: var(--border-radius);
}
#hero #hero-container {
  max-width: var(--container-width);
  padding: 200px 20px 20px 20px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
#hero #hero-container__information {
  width: 100%;
  color: #fff;
  padding-bottom: 30px;
}
#hero #hero-container__information h1 {
  margin: 0;
  padding: 0;
  padding-top: 30px;
  line-height: 1.4em;
}
#hero #hero-container__products {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  gap: 10px;
}
#hero #hero-container__products .hero-container__product-item {
  flex: 1;
}
#hero #hero-container__products .hero-container__product-item a {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 10px;
  border-radius: var(--border-radius);
  backdrop-filter: blur(5px);
  background: #fff;
  color: var(--text-color);
  text-decoration: none;
  box-shadow: 5px 5px 10px 0px rgba(0, 0, 0, 0.2);
  gap: 10px;
}
#hero #hero-container__products .hero-container__product-item img {
  width: 50px;
}
#hero #hero-container__products .hero-container__product-item .name {
  text-align: center;
  margin-bottom: 2px;
}
@media (min-width: 768px) {
  #hero #hero-container {
    display: flex;
    align-items: end;
  }
  #hero #hero-container__information {
    padding-right: 30px;
    width: 400px;
  }
  #hero #hero-container__products {
    margin-bottom: -60px;
    flex-direction: row;
  }
  #hero #hero-container__products .hero-container__product-item {
    max-width: 180px;
  }
  #hero #hero-container__products .hero-container__product-item img {
    width: 100%;
  }
  #hero #hero-container__products .hero-container__product-item a {
    flex-direction: column;
  }
}

ul.frontpage-why-icons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #fff;
  color: #575757;
  padding: 20px;
  margin: var(--global-padding);
  border: 1px solid #f2f2f2;
  border-radius: var(--border-radius);
  justify-content: space-around;
}
ul.frontpage-why-icons li {
  list-style: none;
}
@media (min-width: 768px) {
  ul.frontpage-why-icons {
    flex-direction: row;
    padding: 40px 20px;
  }
}

.frontpage-why .frontpage-why-container {
  gap: 50px;
}
.frontpage-why .frontpage-why-container > * {
  flex: 1;
}
.frontpage-why .frontpage-why-container .frontpage-why-information {
  padding: 50px 0;
}
.frontpage-why .frontpage-why-container .frontpage-why-information h2 {
  padding-top: 0;
  margin-top: 0;
}
.frontpage-why .frontpage-why-container .frontpage-why-information ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.frontpage-why .frontpage-why-container .frontpage-why-information ul li {
  margin-bottom: 5px;
}
.frontpage-why .frontpage-why-container .frontpage-why-information ul li i {
  color: var(--secondary-color-darken);
  margin-right: 10px;
}
.frontpage-why .frontpage-why-container .frontpage-why-information a {
  color: var(--secondary-color-darken);
  padding: 15px 35px;
  border-radius: var(--border-radius);
  text-decoration: none;
  margin-top: 20px;
  display: inline-block;
  border: 1px solid var(--secondary-color-darken);
}
.frontpage-why .frontpage-why-container .frontpage-why-media {
  max-width: 350px;
  position: relative;
}
.frontpage-why .frontpage-why-container .frontpage-why-media img,
.frontpage-why .frontpage-why-container .frontpage-why-media video,
.frontpage-why .frontpage-why-container .frontpage-why-media iframe {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius);
}
@media (min-width: 600px) {
  .frontpage-why .frontpage-why-container {
    display: flex;
    align-items: center;
  }
}
.frontpage-why .frontpage-experience {
  margin-bottom: 100px;
  margin-top: 50px;
  padding: 100px 20px 20px 20px;
  border-radius: var(--border-radius);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.frontpage-why .frontpage-experience__block {
  margin-bottom: -40px;
  max-width: 600px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  padding: 30px;
  border-radius: var(--border-radius);
}
.frontpage-why .frontpage-experience__block h1, .frontpage-why .frontpage-experience__block h2, .frontpage-why .frontpage-experience__block h3 {
  margin-top: 0;
}
.frontpage-why .frontpage-experience__block .buttons {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.frontpage-why .frontpage-experience__block .buttons a {
  padding: 10px 20px;
  background: var(--primary-color);
  color: #fff;
  border-radius: var(--border-radius);
  text-decoration: none;
}
.frontpage-why .frontpage-experience__block .buttons a.secondary {
  padding-left: 0;
  padding-right: 0;
  background: none;
  text-decoration: underline;
  color: #000;
}
@media (min-width: 768px) {
  .frontpage-why .frontpage-experience__block .buttons {
    flex-direction: row;
    gap: 20px;
  }
}

.frontpage-newproducts {
  margin: var(--global-padding);
  border: 1px solid #f2f2f2;
  border-radius: var(--border-radius);
  background: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}
.frontpage-newproducts h2 {
  margin: 0;
  padding: 0;
}

.post h1.entry-title,
.post h2.entry-title {
  margin: 0;
  padding: 0;
}
.post .categories-and-tags {
  display: flex;
  margin-top: 20px;
}
.post .categories-and-tags ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
}
.post .categories-and-tags a {
  background: var(--secondary-color);
  padding: 5px 14px;
  display: inline-block;
  border-radius: 100vw;
  color: var(--text-color);
  text-decoration: none;
  margin-right: 5px;
  font-size: var(--font-size-smaller);
}
.post #post-hero {
  background-size: cover;
  background-position: center;
  position: relative;
  border-radius: var(--border-radius);
  overflow: hidden;
}
.post #post-hero::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.post #post-hero .title {
  padding: 150px 30px 30px;
  position: relative;
  z-index: 1;
  color: #fff;
}
.post .entry-content {
  margin: 0 auto;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.post .entry-content > * {
  flex: 1;
}
.post .entry-content .content-area {
  flex: 1 0 0;
}
.post .entry-content .content-area .posted-on {
  position: relative;
}
.post .entry-content .content-area .posted-on a {
  text-decoration: none;
  color: #3a3a3a;
  font-size: var(--font-size-smaller);
}
.post .entry-content .content-area .posted-on::before {
  content: "";
  width: 100%;
  height: 8px;
  bottom: 0px;
  background: var(--secondary-color);
  position: absolute;
  z-index: -1;
}
.post .entry-content .widget-area {
  flex: 1;
}
.post .entry-content .widget-area .widget-container {
  background: var(--secondary-color);
  border-radius: var(--border-radius);
  padding: 20px;
  margin-bottom: 20px;
}
.post .entry-content .widget-area .widget-container section {
  margin-bottom: 20px;
}
.post .entry-content .widget-area .widget-container section:last-child {
  margin-bottom: 0;
}
.post .entry-content .widget-area .widget-container section h1, .post .entry-content .widget-area .widget-container section h2, .post .entry-content .widget-area .widget-container section h3 {
  font-size: var(--font-size);
  position: relative;
  margin: 0;
  padding: 0;
  width: max-content;
  isolation: isolate;
  font-weight: 500;
}
.post .entry-content .widget-area .widget-container section h1::before, .post .entry-content .widget-area .widget-container section h2::before, .post .entry-content .widget-area .widget-container section h3::before {
  content: "";
  width: 100%;
  height: 6px;
  bottom: 2px;
  background: var(--primary-color);
  position: absolute;
  z-index: -1;
}
.post .entry-content .widget-area .widget-container section ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.post .entry-content .widget-area .widget-container section ul li a {
  text-decoration: none;
  color: var(--text-color);
}
.post .entry-content .widget-area .widget-container section ul {
  margin-top: -10px;
}
.post .entry-content .widget-area .widget-container section h2 + * {
  margin-top: 20px;
}
.post .entry-content .widget-area .widget-container section select {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--primary-color);
  background: #fff;
  font-size: var(--font-size);
}
.post .entry-content .widget-area .widget-container section a.tag-cloud-link {
  border: 1px solid var(--primary-color);
  background: #fff;
  display: inline-block;
  font-size: var(--font-size-smaller) !important;
  text-decoration: none;
  color: var(--text-color);
  padding: 5px 10px;
  border-radius: var(--border-radius);
}
@media (min-width: 768px) {
  .post .entry-content {
    flex-direction: row;
  }
  .post .entry-content .widget-area {
    flex: 0 1 300px;
  }
}

.blog-container {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.blog-container article {
  border: 1px solid var(--secondary-color);
  overflow: hidden;
  padding: 20px;
}
.blog-container article .blog-container-item {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.blog-container article .blog-container-item img {
  margin-bottom: 20px;
}
.blog-container article .blog-container-item a {
  text-decoration: none;
  color: var(--text-color);
}
.blog-container article .blog-container-item h2 {
  margin-bottom: 5px;
}
.blog-container article .blog-container-item h2 a {
  font-size: 18px;
  font-weight: 500;
}
.blog-container article .blog-container-item .posted-on a {
  position: relative;
  text-decoration: none;
  color: #3a3a3a;
  font-size: var(--font-size-smaller);
}
.blog-container article .blog-container-item .posted-on a::before {
  content: "";
  width: 100%;
  height: 8px;
  bottom: 0px;
  background: var(--secondary-color);
  position: absolute;
  z-index: -1;
}
.blog-container article .blog-container-item a.readmore {
  margin-top: auto;
  padding-top: 20px;
  opacity: 0;
  text-decoration: underline;
}
.blog-container article .blog-container-item:hover a.readmore {
  opacity: 1;
}
.blog-container article:first-child {
  border-color: var(--primary-color);
  grid-column: 1/3;
  grid-row: 1/3;
  padding: 0 0 20px 0;
}
.blog-container article:first-child h2,
.blog-container article:first-child span,
.blog-container article:first-child p,
.blog-container article:first-child a.readmore {
  padding: 0 20px;
}
@media (min-width: 768px) {
  .blog-container {
    grid-template-columns: repeat(4, 1fr);
  }
}

img.zoomImg {
  background: #fff;
}

.woocommerce-pagination {
  margin-top: 40px;
}
.woocommerce-pagination ul {
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.woocommerce-pagination ul li {
  list-style: none;
}
.woocommerce-pagination ul li a,
.woocommerce-pagination ul li span {
  border: 1px solid #c9c9c9;
  border-radius: 5px;
  padding: 5px 10px;
  text-decoration: none;
}
.woocommerce-pagination ul li a {
  color: var(--text-color);
}
.woocommerce-pagination ul li a:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color-darken);
}
.woocommerce-pagination ul li span {
  color: #c9c9c9;
}

.woocommerce-breadcrumb {
  position: relative;
  font-size: var(--font-size-smaller);
  margin-bottom: 10px;
}
.woocommerce-breadcrumb a {
  text-decoration: none;
  color: var(--text-color);
}

.woocommerce-notices-wrapper .woocommerce-message {
  margin: 10px 0;
  text-align: center;
  padding: 20px;
  border: 1px solid;
}
.woocommerce-notices-wrapper .woocommerce-message a {
  color: var(--text-color);
}
.woocommerce-notices-wrapper .woocommerce-message[role=alert] {
  background: #f7f2ed;
  border-color: #eee4da;
}

.cart-empty {
  margin: 10px 0;
  text-align: center;
  padding: 20px;
  border: 1px solid;
  background: #f7f2ed;
  border-color: #eee4da;
}

.return-to-shop a {
  color: var(--text-color);
}

.shop-category-header {
  width: 100%;
  position: relative;
  background-color: var(--secondary-color);
  border-radius: 10px;
}
.shop-category-header__image {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.shop-category-header__image:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 80%;
  bottom: 0;
  left: 0;
  background: linear-gradient(0, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%);
  z-index: 1;
}
.shop-category-header__description {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  inset: 0;
  background-size: cover;
  background-position: center;
  padding: 20px;
}
.shop-category-header__container {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}
.shop-category-header__container h1 {
  margin: 0;
  padding: 0;
  font-size: 24px;
}
.shop-category-header__container .term-description {
  margin-top: 10px;
}
.shop-category-header__container .term-description p {
  margin: 0;
  padding: 0;
}
.shop-category-header .shop-category-header__description.has-image-1 {
  padding-top: 140px;
}
.shop-category-header .shop-category-header__description.has-image-1 .shop-category-header__container {
  padding: 30px 20px;
  margin: unset;
  color: #fff;
  text-align: left;
}

.shop-category__container {
  display: flex;
  margin-top: 20px;
  gap: 20px;
  flex-direction: column;
}
.shop-category__container .shop-category__content {
  flex: 1;
}
.shop-category__container .shop-category__content .products-filtering {
  display: flex;
  padding: 5px 0;
  justify-content: center;
}
.shop-category__container .shop-category__content .products-filtering p {
  margin: 0;
  padding: 0;
  align-self: center;
}
.shop-category__container .shop-category__content .products-filtering form {
  margin-left: auto;
}
.shop-category__container .shop-category__content .products-filtering form select {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--secondary-color);
  background: #fff;
  font-size: var(--font-size);
}
.shop-category__container .shop-category__sidebar {
  flex: 1;
  position: relative;
  z-index: 1;
  padding-top: 10px;
}
.shop-category__container .shop-category__sidebar .shop-category__sidebar-container {
  display: none;
  padding: 20px;
  border: 1px solid var(--secondary-color);
  border-top: 0;
}
.shop-category__container .shop-category__sidebar #shop-category__sidebar-input {
  display: none;
}
.shop-category__container .shop-category__sidebar #shop-category__sidebar-input + label {
  height: 45px;
  line-height: 45px;
  padding: 0 20px;
  width: 100%;
  display: block;
  position: relative;
  border: 1px solid var(--secondary-color);
}
.shop-category__container .shop-category__sidebar #shop-category__sidebar-input + label:after {
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #333;
  border-bottom: none;
  right: 21px;
  top: 18px;
  position: absolute;
}
.shop-category__container .shop-category__sidebar #shop-category__sidebar-input:checked + label:after {
  border-top: none;
  border-bottom: 8px solid #333;
}
.shop-category__container .shop-category__sidebar #shop-category__sidebar-input:checked ~ .shop-category__sidebar-container {
  display: block;
}
.shop-category__container .shop-category__sidebar section {
  margin-bottom: 20px;
}
.shop-category__container .shop-category__sidebar section:last-child {
  margin-bottom: 0;
}
.shop-category__container .shop-category__sidebar section h1,
.shop-category__container .shop-category__sidebar section h2,
.shop-category__container .shop-category__sidebar section h3 {
  font-size: var(--font-size);
  position: relative;
  margin: 0;
  padding: 0;
  width: max-content;
  isolation: isolate;
  font-weight: 500;
}
.shop-category__container .shop-category__sidebar section h1::before,
.shop-category__container .shop-category__sidebar section h2::before,
.shop-category__container .shop-category__sidebar section h3::before {
  content: "";
  width: 100%;
  height: 6px;
  bottom: 2px;
  background: var(--secondary-color);
  position: absolute;
  z-index: -1;
}
.shop-category__container .shop-category__sidebar section ul {
  margin: 0;
  padding: 0;
}
.shop-category__container .shop-category__sidebar section ul li {
  list-style: none;
}
.shop-category__container .shop-category__sidebar section ul li a {
  color: var(--text-color);
  text-decoration: none;
}
@media (min-width: 1024px) {
  .shop-category__container .shop-category__sidebar .shop-category__sidebar-container {
    display: block;
    border: 0;
    padding: 0;
  }
  .shop-category__container .shop-category__sidebar #shop-category__sidebar-input + label {
    display: none;
  }
}
@media (min-width: 1024px) {
  .shop-category__container {
    flex-direction: row;
  }
  .shop-category__container .shop-category__content {
    flex: 1;
  }
  .shop-category__container .shop-category__sidebar {
    flex: 0 1 300px;
  }
}

.products:not(.upsells, .related) {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  margin-top: 20px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 768px) {
  .products:not(.upsells, .related).columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .products:not(.upsells, .related).columns-4 {
    grid-template-columns: repeat(4, 1fr);
  }
  .products:not(.upsells, .related).columns-5 {
    grid-template-columns: repeat(5, 1fr);
  }
  .products:not(.upsells, .related).columns-6 {
    grid-template-columns: repeat(6, 1fr);
  }
}
.products:not(.upsells, .related) li {
  overflow: hidden;
  padding-bottom: 10px;
  transition: all 100ms ease-in;
}
.products:not(.upsells, .related) li a {
  width: 100%;
  text-decoration: none;
  color: var(--text-color);
  display: block;
  position: relative;
}
.products:not(.upsells, .related) li a .onsale {
  display: none;
}
.products:not(.upsells, .related) li a img {
  width: 100%;
  height: auto;
  padding: 15px;
  position: relative;
  background: #f2f2f2;
}
.products:not(.upsells, .related) li a h2 {
  margin: 0;
  padding: 0;
  font-size: var(--font-size);
  font-weight: 500;
  margin-top: 10px;
  margin-bottom: 5px;
}
.products:not(.upsells, .related) li a .star-rating {
  --start-font-size: 18px;
  --star-color-active: #e1a141;
  --star-color: #404040;
  right: 20px;
  top: 20px;
  z-index: 2;
  overflow: hidden;
  position: absolute;
  height: 12px;
  line-height: 12px;
  width: 67px;
  font: var(--fa-font-regular);
  content: "\f005";
  color: var(--star-color);
  font-size: 12px;
  margin-bottom: 10px;
}
.products:not(.upsells, .related) li a .star-rating:before {
  content: "\f005\f005\f005\f005\f005";
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.products:not(.upsells, .related) li a .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.products:not(.upsells, .related) li a .star-rating span:before {
  content: "\f005\f005\f005\f005\f005";
  font: var(--fa-font-solid);
  top: 0;
  color: var(--star-color-active);
  position: absolute;
  left: 0;
}
.products:not(.upsells, .related) li a h2,
.products:not(.upsells, .related) li a span.price,
.products:not(.upsells, .related) li a img {
  transition: all 100ms ease-in;
}
.products:not(.upsells, .related) li a span.price {
  display: flex;
}
.products:not(.upsells, .related) li a span.price del {
  font-size: 0.9rem;
  margin-right: 5px;
}
.products:not(.upsells, .related) li a span.price ins {
  text-decoration: none;
}
.products:not(.upsells, .related) li a.add_to_cart_button {
  display: none;
}
.products:not(.upsells, .related) li:hover img {
  transform: scale(1.03);
}

.product {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 20px;
}
.product .onsale {
  display: none;
}
.product .images {
  position: relative;
}
.product .images .woocommerce-product-gallery__trigger {
  position: absolute;
  top: 20px;
  right: 20px;
  display: block;
  z-index: 99;
  width: 30px;
  height: 30px;
  background: #333;
  border-radius: 50%;
  box-shadow: 0 0 10px -3px rgba(0, 0, 0, 0.4);
  color: transparent;
}
.product .images .woocommerce-product-gallery__trigger img {
  opacity: 0;
}
.product .images .woocommerce-product-gallery__trigger:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "\f002";
  color: #fff;
  font-size: 20px;
  position: absolute;
  left: 7px;
  top: 8px;
}
.product .images .flex-viewport figure,
.product .images .flex-viewport img {
  width: 100%;
}
.product .images .flex-viewport figure {
  margin: 0;
}
.product .images .flex-viewport .zoomImg {
  background: #fff;
}
.product .images ol {
  margin: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 20px;
  padding: 0 2px;
  grid-template-columns: repeat(6, 1fr);
}
.product .images ol li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #fff;
  box-shadow: 0 0 0 2px var(--secondary-color);
  padding: 5px;
}
.product .images ol li img.flex-active {
  box-shadow: 0 0 0 2px var(--primary-color);
}
.product .summary h1.product_title {
  margin-top: 15px;
}
.product .summary .woocommerce_estimated_delivery {
  color: green;
  font-size: var(--font-size-smaller);
}
.product .summary .woocommerce-product-rating {
  --start-font-size: 18px;
  --star-color-active: #e1a141;
  --star-color: #404040;
  display: flex;
}
.product .summary .woocommerce-product-rating .star-rating {
  overflow: hidden;
  position: relative;
  height: 20px;
  line-height: 20px;
  width: 100px;
  font: var(--fa-font-regular);
  content: "\f005";
  color: var(--star-color);
  font-size: var(--start-font-size);
  margin-bottom: 10px;
}
.product .summary .woocommerce-product-rating .star-rating:before {
  content: "\f005\f005\f005\f005\f005";
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.product .summary .woocommerce-product-rating .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.product .summary .woocommerce-product-rating .star-rating span:before {
  content: "\f005\f005\f005\f005\f005";
  font: var(--fa-font-solid);
  top: 0;
  color: var(--star-color-active);
  position: absolute;
  left: 0;
}
.product .summary .woocommerce-product-rating a {
  text-decoration: none;
  color: var(--star-color);
  opacity: 0.5;
  font-size: var(--font-size-smaller);
  margin-left: 10px;
}
.product .summary .product_package {
  padding: 20px;
  border: 3px solid var(--secondary-color);
  border-radius: var(--border-radius);
}
.product .summary .product_package .product_package_title {
  margin-bottom: 10px;
}
.product .summary .product_package a {
  text-decoration: none;
}
.product .summary .product_package a .product_package_item {
  display: flex;
  gap: 20px;
  border-bottom: 1px dashed var(--secondary-color);
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.product .summary .product_package a .product_package_item .product_package_item_image {
  width: 120px;
}
.product .summary .product_package a .product_package_item .product_package_item_image img {
  width: 100%;
}
.product .summary .product_package a .product_package_item .product_package_item_info {
  color: var(--text-color);
  text-decoration: none;
  display: flex;
  justify-content: center;
  flex-direction: column;
}
.product .summary .product_package a .product_package_item .product_package_item_info .product_package_item_info_name {
  font-size: var(--font-size-larger);
  font-weight: bold;
}
.product .summary .product_package a:last-child .product_package_item {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.product .summary .flooring_wizard {
  display: none;
  border: 2px solid #333;
  padding: var(--container-padding);
  border-radius: var(--border-radius);
  margin-bottom: 10px;
  margin-top: 20px;
}
.product .summary .flooring_wizard .flooring_wizard_row {
  border-bottom: 1px dashed #e4e4e4;
  padding: 5px 0;
  display: flex;
  align-items: center;
}
.product .summary .flooring_wizard .flooring_wizard_row.hide_initial {
  display: none;
}
.product .summary .flooring_wizard .flooring_wizard_row .flooring_wizard_row_input {
  margin-left: auto;
  text-align: right;
}
.product .summary .flooring_wizard .flooring_wizard_row .flooring_wizard_row_input input {
  text-align: right;
  width: 50px;
  font-size: var(--font-size);
}
.product .summary .flooring_wizard .flooring_wizard_row .flooring_wizard_row_input input:disabled {
  background: none;
  border: none;
  color: var(--text-color);
}
.product .summary .flooring_wizard .flooring_wizard_row .flooring_wizard_row_input input[type=checkbox] {
  -webkit-appearance: none;
  appearance: none;
  border: 1px solid var(--primary-color);
  width: 20px;
  height: 20px;
  display: grid;
  place-content: center;
}
.product .summary .flooring_wizard .flooring_wizard_row .flooring_wizard_row_input input[type=checkbox]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--primary-color);
  pointer-events: none;
}
.product .summary .flooring_wizard .flooring_wizard_row .flooring_wizard_row_input input[type=checkbox]:checked::before {
  transform: scale(1);
}
.product .summary .flooring_wizard .flooring_wizard_row .flooring_wizard_row_input.add_border {
  border: 1px solid var(--primary-color);
  padding: 3px;
}
.product .summary .flooring_wizard .flooring_wizard_row .flooring_wizard_row_input.add_border input {
  margin-right: 5px;
  text-align: left;
  border: none;
}
.product .summary .flooring_wizard .flooring_wizard_row:last-child {
  border-bottom: 0;
}
.product .summary .product_meta {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
  font-size: var(--font-size-smaller);
  color: #333;
}
.product .summary .product_meta a {
  color: #333;
}
.product .summary form {
  --button-height: 50px;
}
.product .summary form table {
  background: #f2f2f2;
  border-radius: var(--border-radius);
  margin-bottom: 10px;
  width: 100%;
  padding: 30px 20px;
  position: relative;
  margin-top: 20px;
}
.product .summary form table tr {
  margin-bottom: 10px;
  display: block;
}
.product .summary form table tr th,
.product .summary form table tr td {
  width: 100%;
  display: block;
}
.product .summary form table tr th {
  text-align: left;
  font-weight: bold;
  font-size: var(--font-size-smaller);
}
.product .summary form table tr select {
  width: 100%;
  font-size: var(--font-size);
  padding: 8px;
  border: 1px solid var(--primary-color);
  background: #fff;
}
.product .summary form table tr .reset_variations {
  position: absolute;
  color: #8e8e8e;
  font-size: var(--font-size-smaller);
  text-decoration: none;
  top: 0;
  right: 0;
  background: #f1f1f1;
  padding: 4px 10px;
  border-bottom-left-radius: var(--border-radius);
  border-top-right-radius: var(--border-radius);
}
.product .summary form table tr:last-child {
  margin-bottom: 0;
}
.product .summary form .single_variation_wrap {
  position: relative;
  width: 100%;
}
.product .summary form .single_variation_wrap .quantity {
  display: none !important;
}
.product .summary form .single_variation_wrap .woocommerce-variation-description p {
  margin: 0;
  padding: 0;
}
.product .summary form .single_variation_wrap .woocommerce-variation-availability .stock {
  border-radius: var(--border-radius);
  border: 1px solid;
  padding: 10px 20px;
}
.product .summary form .single_variation_wrap .woocommerce-variation-availability .stock.out-of-stock {
  border-color: #ffc62d;
  background: #fffcf6;
}
.product .summary form .single_variation_wrap .woocommerce-variation-price {
  position: absolute;
  pointer-events: none;
  left: 0;
  bottom: 0;
  color: #fff;
  padding: 0 20px;
  background: #000;
  height: var(--button-height);
  max-width: 120px;
  line-height: var(--button-height);
  border-top-left-radius: var(--border-radius);
  border-bottom-left-radius: var(--border-radius);
}
.product .summary form .single_variation_wrap button[type=submit] {
  background: #333;
  width: 100%;
  padding: 0 20px;
  height: var(--button-height);
  color: #fff;
  font-size: var(--font-size);
  border: none;
  border-radius: var(--border-radius);
  padding-left: 120px;
  text-align: right;
}
.product .summary form .single_variation_wrap button[type=submit]:hover {
  background: #000;
}
.product .summary form .single_variation_wrap button[type=submit].disabled:not(.wc-variation-is-unavailable) {
  padding-left: 20px;
  text-align: center;
}
.product .summary form .single_variation_wrap button[type=submit].disabled {
  opacity: 0.5;
  cursor: unset;
}
.product .summary form .single_variation_wrap button[type=submit].disabled:hover {
  background: #333;
}
.product .summary form.cart {
  display: flex;
  width: 100%;
}
.product .summary form.cart > div:not(.quantity) {
  width: 100%;
}
.product .summary form.cart.variations_form {
  flex-direction: column;
}
.product .summary form.cart input {
  margin-right: 10px;
  width: 50px;
  height: var(--button-height);
  border: 2px solid #333;
  border-radius: var(--border-radius);
  text-align: center;
  font-size: var(--font-size);
  padding: 0;
}
.product .summary form.cart button {
  background: #333;
  width: 100%;
  height: var(--button-height);
  padding: 0px 20px;
  color: #fff;
  font-size: var(--font-size);
  border: none;
  border-radius: var(--border-radius);
  text-align: center;
}
.product .summary form.cart button:hover {
  background: #000;
}
.product .woocommerce-tabs {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 40px 30px;
  margin-top: 40px;
  background: var(--secondary-color);
  border-radius: var(--border-radius);
}
.product .woocommerce-tabs ul {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 30px;
}
.product .woocommerce-tabs ul li {
  border-bottom: 1px solid #000;
}
.product .woocommerce-tabs ul li a {
  text-decoration: none;
  padding: 8px 0;
  display: block;
  color: #000;
  position: relative;
  padding-left: 30px;
}
.product .woocommerce-tabs ul li a:before {
  display: inline-block;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  font: var(--fa-font-solid);
  content: "+";
  color: #000;
  position: absolute;
  left: 0px;
  top: 11px;
}
.product .woocommerce-tabs ul li.active a::before {
  content: "\f068";
}
.product .woocommerce-tabs ul li:last-child {
  border-bottom: 0;
}
.product .woocommerce-tabs .panel table {
  width: 100%;
}
.product .woocommerce-tabs .panel .shop_attributes {
  border-spacing: 0;
}
.product .woocommerce-tabs .panel .shop_attributes tr td,
.product .woocommerce-tabs .panel .shop_attributes tr th {
  padding: 8px 10px;
  text-align: left;
}
.product .woocommerce-tabs .panel .shop_attributes tr td p,
.product .woocommerce-tabs .panel .shop_attributes tr th p {
  margin: 0;
  padding: 0;
}
.product .woocommerce-tabs .panel .shop_attributes tr th {
  font-weight: normal;
}
.product .woocommerce-tabs .panel .shop_attributes tr:last-child td,
.product .woocommerce-tabs .panel .shop_attributes tr:last-child th {
  border-bottom: 0;
}
.product .woocommerce-tabs .panel .shop_attributes tr:nth-child(even) {
  background-color: #f4f4f0;
}
.product .woocommerce-tabs .panel #reviews .woocommerce-noreviews {
  text-align: center;
  padding: 20px;
  border: 1px solid;
  background: #fff;
  border-color: #b5b588;
  margin-bottom: 0;
}
.product .woocommerce-tabs .panel #reviews .commentlist {
  list-style: none;
  margin: 0;
  padding: 20px;
  background: #fff;
}
.product .woocommerce-tabs .panel #reviews .commentlist li {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e5d3;
}
.product .woocommerce-tabs .panel #reviews .commentlist li .comment_container {
  display: flex;
}
.product .woocommerce-tabs .panel #reviews .commentlist li .comment_container img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
.product .woocommerce-tabs .panel #reviews .commentlist li .comment_container .comment-text {
  width: 100%;
  margin-left: 20px;
}
.product .woocommerce-tabs .panel #reviews .commentlist li .comment_container .comment-text .star-rating {
  --start-font-size: 18px;
  --star-color-active: #e1a141;
  --star-color: #404040;
  overflow: hidden;
  position: relative;
  height: 12px;
  line-height: 12px;
  width: 67px;
  font: var(--fa-font-regular);
  content: "\f005";
  color: var(--star-color);
  font-size: 12px;
  margin-bottom: 10px;
}
.product .woocommerce-tabs .panel #reviews .commentlist li .comment_container .comment-text .star-rating:before {
  content: "\f005\f005\f005\f005\f005";
  opacity: 0.25;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
}
.product .woocommerce-tabs .panel #reviews .commentlist li .comment_container .comment-text .star-rating span {
  overflow: hidden;
  float: left;
  top: 0;
  left: 0;
  position: absolute;
  padding-top: 1.5em;
}
.product .woocommerce-tabs .panel #reviews .commentlist li .comment_container .comment-text .star-rating span:before {
  content: "\f005\f005\f005\f005\f005";
  font: var(--fa-font-solid);
  top: 0;
  color: var(--star-color-active);
  position: absolute;
  left: 0;
}
.product .woocommerce-tabs .panel #reviews .commentlist li .comment_container .comment-text p {
  margin: 0;
  padding: 0;
}
.product .woocommerce-tabs .panel #reviews .commentlist li .comment_container .comment-text .woocommerce-review__dash,
.product .woocommerce-tabs .panel #reviews .commentlist li .comment_container .comment-text .woocommerce-review__published-date {
  opacity: 0.5;
  font-size: var(--font-size-smaller);
}
.product .woocommerce-tabs .panel #reviews .commentlist li .comment_container .comment-text .description {
  margin-top: 10px;
}
.product .woocommerce-tabs .panel #reviews .commentlist li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border: none;
}
.product .woocommerce-tabs .panel #reviews .comment-reply-title {
  width: 100%;
  display: block;
  padding: 12px 24px;
  color: #fff;
  border: none;
  text-align: center;
  background: #000;
  cursor: pointer;
}
.product .woocommerce-tabs .panel #reviews form.comment-form {
  margin: 0 auto;
  margin-top: 40px;
  max-width: 500px;
}
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-notes {
  font-size: var(--font-size-smaller);
}
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email {
  display: flex;
}
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating label,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment label,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author label,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email label {
  width: 200px;
}
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating label span,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment label span,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author label span,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email label span {
  font-size: var(--font-size-smaller);
  opacity: 0.7;
}
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating p.stars,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment p.stars,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author p.stars,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email p.stars {
  margin: 0;
  padding: 0;
  --start-font-size: 18px;
  --star-color-active: #e1a141;
  --star-color: #404040;
}
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating p.stars a,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment p.stars a,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author p.stars a,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email p.stars a {
  position: relative;
  height: 20px;
  width: 20px;
  text-indent: -999em;
  display: inline-block;
  text-decoration: none;
  margin-right: 2px;
  font-weight: 400;
}
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating p.stars a:before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment p.stars a:before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author p.stars a:before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email p.stars a:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  font: var(--fa-font-regular);
  content: "\f005";
  color: var(--star-color);
  text-indent: 0;
  opacity: 1;
  font-size: var(--start-font-size);
}
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating p.stars a:hover:before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment p.stars a:hover:before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author p.stars a:hover:before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email p.stars a:hover:before {
  color: var(--star-color-active);
}
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating p.stars.selected a.active:before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment p.stars.selected a.active:before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author p.stars.selected a.active:before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email p.stars.selected a.active:before {
  font: var(--fa-font-solid);
  font-size: var(--start-font-size);
  color: var(--star-color-active);
}
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating p.stars.selected a.active ~ a:before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment p.stars.selected a.active ~ a:before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author p.stars.selected a.active ~ a:before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email p.stars.selected a.active ~ a:before {
  font: var(--fa-font-regular);
  font-size: var(--start-font-size);
  color: var(--star-color);
}
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating p.stars.selected a:not(.active):before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment p.stars.selected a:not(.active):before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author p.stars.selected a:not(.active):before,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email p.stars.selected a:not(.active):before {
  font: var(--fa-font-solid);
  font-size: var(--start-font-size);
  color: var(--star-color-active);
}
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating p,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating input,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating textarea,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment p,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment input,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment textarea,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author p,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author input,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author textarea,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email p,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email input,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email textarea {
  width: 100%;
}
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating input,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-rating textarea,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment input,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-comment textarea,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author input,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-author textarea,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email input,
.product .woocommerce-tabs .panel #reviews form.comment-form .comment-form-email textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #404040;
  background: #fff;
  font-size: var(--font-size);
}
.product .woocommerce-tabs .panel #reviews form.comment-form .form-submit {
  margin: 0;
  padding: 0;
}
.product .woocommerce-tabs .panel #reviews form.comment-form .form-submit input {
  width: 100%;
  display: block;
  padding: 12px 24px;
  color: #fff;
  border: none;
  text-align: center;
  background: var(--primary-color);
  cursor: pointer;
  font-size: var(--font-size);
  border-radius: var(--border-radius);
}
@media (min-width: 1024px) {
  .product .woocommerce-tabs {
    width: var(--container-width);
  }
}
.product .upsells,
.product .related {
  width: 100%;
}
.product .upsells h2,
.product .related h2 {
  margin-top: 10px;
  margin-bottom: 0px;
}
.product .upsells ul,
.product .related ul {
  margin-top: 0;
}
@media (min-width: 768px) {
  .product .images {
    flex-basis: 55%;
  }
  .product .summary {
    flex-basis: calc(45% - 30px);
  }
}

.woocommerce-cart-form {
  border: 1px solid var(--secondary-color);
}
.woocommerce-cart-form table {
  width: 100%;
}
.woocommerce-cart-form table thead {
  display: none;
}
.woocommerce-cart-form table tbody tr {
  position: relative;
  display: flex;
  gap: 10px;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
  border-bottom: 1px solid var(--secondary-color);
}
.woocommerce-cart-form table tbody tr td.product-thumbnail {
  width: 100px;
}
.woocommerce-cart-form table tbody tr td.product-remove {
  width: 20px;
}
.woocommerce-cart-form table tbody tr td.product-remove a {
  background: var(--primary-color);
  width: 20px;
  height: 20px;
  line-height: 20px;
  display: block;
  text-align: center;
  border-radius: 50%;
  color: #fff;
  text-decoration: none;
}
.woocommerce-cart-form table tbody tr td.product-name {
  width: 100%;
  text-align: center;
}
.woocommerce-cart-form table tbody tr td.product-name a {
  color: var(--text-color);
}
.woocommerce-cart-form table tbody tr td.product-name .variation {
  margin: 0;
  padding: 0;
  margin-top: 10px;
  font-size: var(--font-size-smaller);
}
.woocommerce-cart-form table tbody tr td.product-name .variation li {
  display: flex;
  justify-content: center;
}
.woocommerce-cart-form table tbody tr td.product-name .variation li span {
  font-weight: 500;
  margin-right: 5px;
}
.woocommerce-cart-form table tbody tr td.product-name .variation li p {
  margin: 0;
  padding: 0;
}
.woocommerce-cart-form table tbody tr td.product-quantity {
  width: 50px;
  flex-shrink: 0;
}
.woocommerce-cart-form table tbody tr td.product-quantity input {
  width: 100%;
  padding: 5px;
}
.woocommerce-cart-form table tbody tr td.product-price {
  display: none;
}
.woocommerce-cart-form table tbody tr td.product-subtotal {
  width: 100px;
  flex-shrink: 0;
  text-align: center;
}
.woocommerce-cart-form table tbody tr td.actions {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
  --button-height: 40px;
}
.woocommerce-cart-form table tbody tr td.actions .coupon {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.woocommerce-cart-form table tbody tr td.actions .coupon input {
  height: var(--button-height);
  border: 2px solid var(--primary-color);
  border-radius: var(--border-radius);
  text-align: center;
  font-size: var(--font-size);
  padding: 0;
  width: 100%;
}
.woocommerce-cart-form table tbody tr td.actions .coupon button {
  background: var(--primary-color);
  height: var(--primary-color);
  padding: 0px 20px;
  color: #fff;
  height: var(--button-height);
  font-size: var(--font-size);
  border: none;
  border-radius: var(--border-radius);
  text-align: center;
}
.woocommerce-cart-form table tbody tr td.actions button {
  margin-left: auto;
  background: var(--primary-color);
  padding: 0px 20px;
  color: #fff;
  height: var(--button-height);
  font-size: var(--font-size);
  border: none;
  border-radius: var(--border-radius);
  text-align: center;
  width: 100%;
}
.woocommerce-cart-form table tbody tr td.actions button:disabled {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .woocommerce-cart-form table tbody tr td.actions {
    flex-direction: row;
  }
  .woocommerce-cart-form table tbody tr td.actions .coupon input {
    width: auto;
  }
  .woocommerce-cart-form table tbody tr td.actions button {
    width: auto;
  }
}
@media (min-width: 768px) {
  .woocommerce-cart-form table tbody tr {
    flex-direction: row;
  }
  .woocommerce-cart-form table tbody tr td.product-name {
    text-align: left;
  }
  .woocommerce-cart-form table tbody tr td.product-name ul.variation li {
    justify-content: start;
  }
  .woocommerce-cart-form table tbody tr td.product-subtotal {
    text-align: right;
  }
}

.cart-collaterals {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 30px;
}
.cart-collaterals .cross-sells {
  order: 2;
  width: 100%;
}
.cart-collaterals .cross-sells h2 {
  margin-top: 0;
}
.cart-collaterals .cart_totals {
  order: 1;
  width: 100%;
  background: #f8f8f8;
  border: 1px solid #eaeaea;
  height: fit-content;
  padding: 20px;
  box-shadow: 0px 10px 12px -7px rgba(0, 0, 0, 0.2);
}
.cart-collaterals .cart_totals h2 {
  margin: 0;
  padding: 0;
  border-bottom: 2px solid var(--primary-color);
  font-size: var(--font-size);
  text-transform: uppercase;
  width: max-content;
  margin-bottom: 20px;
}
.cart-collaterals .cart_totals table {
  width: 100%;
}
.cart-collaterals .cart_totals table tr td,
.cart-collaterals .cart_totals table tr th {
  border-bottom: 1px solid #eaeaea;
  padding: 5px 0;
  text-align: left;
  font-weight: normal;
}
.cart-collaterals .cart_totals table tr td {
  text-align: right;
}
.cart-collaterals .cart_totals table tr:last-child td,
.cart-collaterals .cart_totals table tr:last-child th {
  border-bottom: 0;
}
.cart-collaterals .cart_totals a.checkout-button {
  width: 100%;
  display: block;
  background: #000;
  padding: 10px 20px;
  color: #fff;
  font-size: var(--font-size);
  border: none;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 20px;
}
@media (min-width: 1024px) {
  .cart-collaterals {
    flex-direction: row;
  }
  .cart-collaterals .cross-sells {
    order: 1;
    flex: 1;
  }
  .cart-collaterals .cart_totals {
    margin-left: auto;
    flex: 0 0 400px;
    order: 2;
  }
}

.woocommerce-form-login-toggle,
.woocommerce-form-login,
.woocommerce-form-coupon-toggle,
.woocommerce-form-coupon {
  border: 1px solid var(--secondary-color);
  padding: 15px;
  text-align: center;
}
.woocommerce-form-login-toggle a,
.woocommerce-form-login a,
.woocommerce-form-coupon-toggle a,
.woocommerce-form-coupon a {
  color: var(--text-color);
}
.woocommerce-form-login-toggle label,
.woocommerce-form-login label,
.woocommerce-form-coupon-toggle label,
.woocommerce-form-coupon label {
  display: block;
  font-size: var(--font-size-smaller);
}
.woocommerce-form-login-toggle input,
.woocommerce-form-login-toggle select,
.woocommerce-form-login-toggle textarea,
.woocommerce-form-login input,
.woocommerce-form-login select,
.woocommerce-form-login textarea,
.woocommerce-form-coupon-toggle input,
.woocommerce-form-coupon-toggle select,
.woocommerce-form-coupon-toggle textarea,
.woocommerce-form-coupon input,
.woocommerce-form-coupon select,
.woocommerce-form-coupon textarea {
  padding: 8px;
  border: 1px solid #404040;
  background: #fff;
  font-size: var(--font-size);
  resize: vertical;
}
.woocommerce-form-login-toggle button,
.woocommerce-form-login button,
.woocommerce-form-coupon-toggle button,
.woocommerce-form-coupon button {
  display: inline-block;
  background: #000;
  padding: 12px 20px;
  color: #fff;
  font-size: var(--font-size);
  border: none;
  border-radius: var(--border-radius);
  text-align: center;
}

.woocommerce-form-login,
.woocommerce-form-coupon {
  border-top: 0;
}

body:not(.logged-in) .woocommerce-form-coupon-toggle {
  margin-top: 10px;
}

form.checkout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
}
form.checkout .woocommerce-NoticeGroup {
  width: 100%;
  margin: 10px 0;
  padding: 20px;
  border: 1px solid;
  background: #f7f2ed;
  border-color: #eee4da;
}
form.checkout h3#order_review_heading {
  display: none;
}
form.checkout #customer_details {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  gap: 20px;
  width: 100%;
}
form.checkout #customer_details .col-1,
form.checkout #customer_details .col-2 {
  flex: 1;
}
form.checkout #customer_details h1,
form.checkout #customer_details h2,
form.checkout #customer_details h3 {
  font-size: var(--font-size);
  position: relative;
  margin: 0;
  padding: 0;
  width: max-content;
  isolation: isolate;
  font-weight: 500;
  margin-bottom: 10px;
}
form.checkout #customer_details h1::before,
form.checkout #customer_details h2::before,
form.checkout #customer_details h3::before {
  content: "";
  width: 100%;
  height: 6px;
  bottom: 2px;
  background: var(--secondary-color);
  position: absolute;
  z-index: -1;
}
form.checkout #customer_details .form-row {
  margin: 0;
  padding: 0;
}
form.checkout #customer_details .form-row label {
  display: block;
  font-size: var(--font-size-smaller);
}
form.checkout #customer_details .form-row input,
form.checkout #customer_details .form-row select,
form.checkout #customer_details .form-row textarea {
  width: 100%;
  padding: 8px;
  border: 1px solid #404040;
  background: #fff;
  font-size: var(--font-size);
  resize: vertical;
}
form.checkout #customer_details .woocommerce-billing-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
form.checkout #customer_details .woocommerce-billing-fields__field-wrapper > * {
  width: 100%;
}
form.checkout #customer_details .woocommerce-billing-fields__field-wrapper #billing_first_name_field {
  width: 48%;
}
form.checkout #customer_details .woocommerce-billing-fields__field-wrapper #billing_last_name_field {
  width: 48%;
}
form.checkout #customer_details .select2-selection {
  border-radius: 0;
  border-color: #404040;
  height: 36px;
}
form.checkout #customer_details .select2-selection .select2-selection__rendered {
  height: 36px;
  line-height: 36px;
}
form.checkout #customer_details .select2-selection .select2-selection__arrow {
  top: 5px;
}
@media (min-width: 768px) {
  form.checkout #customer_details {
    flex-direction: row;
  }
}
form.checkout #order_review {
  background: #f8f8f8;
  border: 1px solid #eaeaea;
  height: fit-content;
  padding: 20px;
  box-shadow: 0px 10px 12px -7px rgba(0, 0, 0, 0.2);
}
form.checkout #order_review table {
  width: 100%;
  border-spacing: 0;
}
form.checkout #order_review table thead tr th,
form.checkout #order_review table thead tr td,
form.checkout #order_review table tfoot tr th,
form.checkout #order_review table tfoot tr td {
  border-bottom: 2px solid var(--primary-color);
  padding: 5px 0;
  text-align: left;
  font-weight: normal;
  vertical-align: text-top;
}
form.checkout #order_review table thead tr th:last-child,
form.checkout #order_review table thead tr td:last-child,
form.checkout #order_review table tfoot tr th:last-child,
form.checkout #order_review table tfoot tr td:last-child {
  text-align: right;
}
form.checkout #order_review table tbody tr td {
  border-bottom: 1px solid #eaeaea;
  padding: 5px 0;
  text-align: left;
  font-weight: normal;
  vertical-align: text-top;
}
form.checkout #order_review table tbody tr td .variation {
  margin: 0;
  padding: 0;
  margin-top: 10px;
  font-size: var(--font-size-smaller);
}
form.checkout #order_review table tbody tr td .variation li {
  display: flex;
}
form.checkout #order_review table tbody tr td .variation li span {
  font-weight: 500;
  margin-right: 5px;
}
form.checkout #order_review table tbody tr td .variation li p {
  margin: 0;
  padding: 0;
}
form.checkout #order_review table tbody tr td:last-child {
  text-align: right;
}
form.checkout #order_review table tbody tr:last-child td {
  border-bottom: 0;
}
form.checkout #order_review #payment {
  margin-top: 20px;
}
form.checkout #order_review #payment .woocommerce-privacy-policy-text {
  font-size: var(--font-size-smaller);
  margin-top: 20px;
}
form.checkout #order_review #payment .woocommerce-privacy-policy-text a {
  color: var(--text-color);
}
form.checkout #order_review #payment .woocommerce-terms-and-conditions-checkbox-text a {
  color: var(--text-color);
}
form.checkout #order_review #payment button[type=submit] {
  width: 100%;
  display: block;
  background: #000;
  padding: 14px 20px;
  color: #fff;
  font-size: var(--font-size);
  border: none;
  border-radius: var(--border-radius);
  text-align: center;
  margin-top: 20px;
}
form.checkout #order_review #payment button[type=submit]:disabled {
  opacity: 0.5;
}
@media (min-width: 1024px) {
  form.checkout #customer_details {
    flex: 1;
  }
  form.checkout #order_review {
    flex: 0 0 400px;
  }
}

.wc-block-components-product-name {
  color: var(--text-color);
  text-decoration: none;
}

.wc-block-cart__submit-container a,
.wc-block-components-checkout-place-order-button {
  background-color: var(--primary-color);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 12px 20px;
  border-radius: var(--border-radius);
  text-align: center;
  font-size: var(--font-size);
  border: none;
}

.get-quote a {
  background-color: var(--primary-color-lighten);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 12px 20px;
  text-align: center;
  font-size: var(--font-size);
  border: none;
  width: 100%;
  margin-top: 5px;
}

.wpc-custom-selected-terms {
  display: none;
}
.wpc-custom-selected-terms ul {
  margin: 0;
  padding: 0;
}

ul.why-order-list {
  margin: 0;
  padding: 0;
  margin-top: 20px;
}
ul.why-order-list li {
  list-style: none;
}
ul.why-order-list li i {
  margin-right: 5px;
}

.woocommerce-myaccount {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  .woocommerce-myaccount {
    flex-direction: row;
  }
}
.woocommerce-myaccount .woocommerce-MyAccount-navigation {
  flex-basis: 200px;
}
.woocommerce-myaccount .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
}
.woocommerce-myaccount .woocommerce-MyAccount-navigation ul li {
  list-style: none;
  border-bottom: 1px solid #f2f2f2;
}
.woocommerce-myaccount .woocommerce-MyAccount-navigation ul li:last-child {
  border-bottom: 0;
}
.woocommerce-myaccount .woocommerce-MyAccount-navigation ul li a {
  text-decoration: none;
  color: var(--text-color);
  padding: 8px 0;
  display: block;
}
.woocommerce-myaccount .woocommerce-MyAccount-content {
  flex: 1;
  padding-top: 8px;
}
.woocommerce-myaccount .woocommerce-MyAccount-content p:first-of-type {
  margin-top: 0;
}
.woocommerce-myaccount .woocommerce-MyAccount-content a {
  color: var(--text-color);
  text-decoration: underline;
}
.woocommerce-myaccount .woocommerce-MyAccount-content table {
  width: 100%;
  text-align: left;
}
.woocommerce-myaccount .woocommerce-MyAccount-content header {
  position: relative;
}

/*# sourceMappingURL=style.css.map */
