@charset "UTF-8";
/*!
Theme Name: Devocean Theme
Author: DevOcean
Author URI: https://devocean.gr/
Description: This is a starter theme for DevOcean Projects
Version: 1.0
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: devocean
*/
/* Google Fonts - Playfair Display, Comfortaa, Signika */
/* These are loaded via wp_enqueue_style in enqueues.php */
/* Fallback @import for SCSS compilation context */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Comfortaa:wght@300;400;500;600;700&family=Signika:wght@400;600;700;900&subset=greek,greek-ext,latin,latin-ext&display=swap");
/**
* Color Palette
* @type {Map}
* @property {Map} light - The light theme color palette
* @property {Map} dark - The dark theme color palette
* @note To add a new theme, add a new map with the theme name as the key
* and the color palette as the value.
*/
/**
* Generate color variables for each theme mode
*/
/**
    * Get the font size from the font size map
    * @param {string} $element - Element name
    * @param {string} $device - Device name
    * @return {string} - Font size
    */
:root {
  --neutral-color: #3a3a3a;
  --primary-color: #ffffff;
  --accent-color: #635d29;
  --accent-secondary-color: #cddbc7;
  --bg-dark-color: #3a3a3a;
  --text-color: #808285;
  --border-color: #e1e1e1;
  --accent-light-color: #eef2eb;
  --neutral-light-color: #f6f5f2;
}

:root {
  --neutral-color: #3a3a3a;
  --primary-color: #ffffff;
  --accent-color: #635d29;
  --accent-secondary-color: #cddbc7;
  --bg-dark-color: #3a3a3a;
  --text-color: #808285;
  --border-color: #e1e1e1;
  --accent-light-color: #eef2eb;
  --neutral-light-color: #f6f5f2;
}

body * {
  font-family: "Comfortaa", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

h1,
h2,
h3,
h4,
h6 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
}

h5 {
  font-family: "Comfortaa", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

section {
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  section {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  section {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  section {
    padding-inline: 25px;
  }
}
section {
  padding-block: 104px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  section {
    padding-block: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  section {
    padding-block: 40px;
  }
}
@media only screen and (max-width: 767px) {
  section {
    padding-block: 30px;
  }
}
section {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
}

.page-hero {
  padding-top: var(--hh, 80px);
}

.block-title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4vw, 40px);
  font-weight: 600;
  line-height: 1.2;
  color: var(--neutral-color);
  margin-bottom: clamp(20px, 2.0833333333vw, 40px);
}

.btn,
button,
input[type=submit],
.button {
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 0;
  transition: all 0.2s ease-in-out;
}

.btn--primary {
  background-color: var(--accent-secondary-color);
  color: var(--primary-color);
  padding: 0 33px;
  line-height: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 0;
}
.btn--primary:hover {
  background-color: var(--neutral-color);
  color: var(--primary-color);
}

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

article,
aside,
footer,
header,
nav,
section,
main,
figure,
figcaption,
details,
summary,
blockquote,
dl,
dd,
dt,
menu,
menuitem,
picture,
canvas {
  display: block;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
figure,
dl,
dd,
ul,
ol,
li,
table,
fieldset,
legend,
textarea,
input,
button {
  margin: 0;
  padding: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: normal;
}

p:empty {
  display: none;
}

ul,
ol {
  list-style: none;
}

img,
video,
canvas,
svg {
  max-width: 100%;
  height: auto;
  display: block;
}

img {
  border-style: none;
}

input,
textarea,
select,
button {
  font-family: inherit;
  line-height: inherit;
  color: inherit;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
}

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

input[type=date],
input[type=time],
input[type=datetime-local],
input[type=month] {
  -webkit-appearance: listbox;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
  text-align: left;
}

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

button,
input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  border: none;
  padding: 0;
  margin: 0;
  overflow: visible;
  cursor: pointer;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

:focus:not(:focus-visible) {
  outline: none;
}

blockquote,
q {
  quotes: none;
}

blockquote::before,
blockquote::after,
q::before,
q::after {
  content: "";
  content: none;
}

fieldset {
  border: none;
  margin: 0;
  padding: 0;
}

address {
  font-style: normal;
}

hr {
  border: none;
  border-top: 1px solid #ccc;
  margin: 0;
  padding: 0;
}

svg,
img,
video,
canvas,
audio,
iframe,
embed,
object {
  vertical-align: middle;
}

pre,
code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

[hidden] {
  display: none;
}

[disabled] {
  pointer-events: none;
}

button[disabled],
input[disabled] {
  cursor: default;
}

audio,
canvas,
progress,
video {
  display: inline-block;
}

progress {
  vertical-align: baseline;
}

sub,
sup {
  position: relative;
  vertical-align: baseline;
  font-size: 75%;
  line-height: 0;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

small {
  font-size: 80%;
}

strong {
  font-weight: bold;
}

meter {
  vertical-align: baseline;
}

mark {
  background-color: transparent;
  color: inherit;
}

summary {
  display: list-item;
  cursor: pointer;
}

details {
  display: block;
}

template {
  display: none;
}

textarea {
  resize: vertical;
}

legend {
  display: table;
  max-width: 100%;
  white-space: normal;
}

abbr[title] {
  border-bottom: none;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b,
strong {
  font-weight: bold;
}

i,
cite,
em,
var,
address,
dfn {
  font-style: normal;
}

u,
ins {
  text-decoration: none;
}

s,
del {
  text-decoration: none;
}

mark {
  background-color: transparent;
  color: inherit;
}

figure {
  margin: 0;
}

main {
  display: block;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

ruby {
  display: inline-block;
}

rb,
rt,
rtc,
rp {
  display: none;
}

[hidden] {
  display: none !important;
}

picture {
  display: block;
}

[contenteditable]:focus {
  outline: auto;
}

:host {
  display: block;
}

slot {
  display: contents;
}

body * {
  font-family: "Comfortaa", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.woocommerce-notices-wrapper:empty,
.woocommerce-error:empty,
.woocommerce-message:empty,
.woocommerce-info:empty {
  display: none;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: clamp(14px, 0.9375vw, 18px) clamp(18px, 1.25vw, 24px);
  font-family: "Comfortaa", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: clamp(13px, 0.78125vw, 15px);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 0;
  position: relative;
}
.woocommerce-message::before,
.woocommerce-error::before,
.woocommerce-info::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}
.woocommerce-message a,
.woocommerce-error a,
.woocommerce-info a {
  font-weight: 600;
  text-decoration: underline;
  transition: opacity 0.25s ease;
}
.woocommerce-message a:hover,
.woocommerce-error a:hover,
.woocommerce-info a:hover {
  opacity: 0.7;
}

.woocommerce-message {
  background-color: #e8f5e9;
  color: #2e7d32;
  border-left: 3px solid #43a047;
}
.woocommerce-message::before {
  background-color: #43a047;
}
.woocommerce-message a {
  color: #2e7d32;
}

.woocommerce-error {
  background-color: #fce4ec;
  color: #c62828;
  border-left: 3px solid #e53935;
  flex-direction: column;
  align-items: flex-start;
}
.woocommerce-error::before {
  background-color: #e53935;
}
.woocommerce-error a {
  color: #c62828;
}
.woocommerce-error ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.woocommerce-error ul li {
  margin-bottom: 4px;
}
.woocommerce-error ul li:last-child {
  margin-bottom: 0;
}

.woocommerce-info {
  background-color: #f5f5f5;
  color: var(--neutral-color);
  border-left: 3px solid var(--neutral-color);
}
.woocommerce-info::before {
  background-color: var(--neutral-color);
}
.woocommerce-info a {
  color: var(--neutral-color);
}

header.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  background-color: rgba(255, 255, 255, 0.5);
  transition: background-color 0.35s ease, box-shadow 0.35s ease, transform 0.35s ease;
  will-change: background-color, box-shadow, transform;
}
header.header.scrolled {
  background-color: rgb(255, 255, 255);
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
}
header.header .header-container {
  max-width: 1920px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  header.header .header-container {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  header.header .header-container {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  header.header .header-container {
    padding-inline: 25px;
  }
}
@media only screen and (max-width: 1279px) {
  header.header .header-container {
    height: 60px;
  }
}
header.header .header--left {
  flex: 0 0 auto;
}
header.header .header--left .custom-logo-link {
  display: flex;
  align-items: center;
}
header.header .header--left .custom-logo-link img {
  height: clamp(45px, 3.125vw, 60px);
  width: auto;
}
header.header .header--center {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
header.header .header--center .burger-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: transparent;
  border: none;
  padding: 0;
  z-index: 1100;
}
header.header .header--center .burger-line {
  width: 22px;
  height: 2px;
  background-color: var(--neutral-color);
  transition: all 0.3s ease-out;
  transform-origin: center;
}
header.header .header--center .burger-menu.active .burger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
header.header .header--center .burger-menu.active .burger-line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
header.header .header--center .burger-menu.active .burger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
header.header .header--center .navigation {
  display: flex;
  height: 100%;
  align-items: center;
}
header.header .header--center .navigation .main-nav {
  display: flex;
  height: 100%;
  align-items: center;
}
header.header .header--center .navigation .main-nav ul.main-nav__list {
  display: flex;
  gap: clamp(18px, 1.875vw, 36px);
  align-items: center;
  position: relative;
  height: 100%;
  justify-content: center;
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item {
  height: 100%;
  display: flex;
  align-items: center;
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item.menu-item-has-children > a {
  position: relative;
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item.menu-item-has-children > a::after {
  content: "";
  border: solid var(--neutral-color);
  border-width: 0 1.5px 1.5px 0;
  display: inline-block;
  padding: 2.5px;
  margin-left: 6px;
  transform: rotate(45deg);
  transition: border-color 0.25s ease;
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item.menu-item-has-children > a:hover::after {
  border-color: var(--accent-color);
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > a {
  height: 100%;
  display: flex;
  align-items: center;
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-color);
  position: relative;
  transition: color 0.25s ease;
  letter-spacing: 0.02em;
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > a[aria-current=page] {
  color: var(--accent-color);
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > a:hover {
  color: var(--accent-color);
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--primary-color);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  width: 100%;
  height: 560px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu:not(:has(:nth-child(11))) {
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  left: unset;
  transform: unset;
}
@media only screen and (max-width: 1279px) {
  header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu:not(:has(:nth-child(11))) {
    width: 100%;
  }
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item {
  border-right: 1px solid var(--border-color);
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item > a {
  display: block;
  padding: 6px 20px;
  font-family: "Comfortaa", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--neutral-color);
  transition: background-color 0.25s ease, color 0.25s ease;
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item > a[aria-current=page] {
  color: var(--accent-color);
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item > a:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: var(--accent-color);
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item > .sub-menu {
  background-color: var(--primary-color);
  transition: opacity 0.25s ease, visibility 0.25s ease;
  position: static;
  padding-left: 10px;
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item > .sub-menu > li.menu-item > a {
  display: block;
  padding: 6px 20px;
  font-size: 13px;
  color: var(--text-color);
  transition: background-color 0.25s ease, color 0.25s ease;
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item > .sub-menu > li.menu-item > a[aria-current=page] {
  color: var(--accent-color);
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item > .sub-menu > li.menu-item > a:hover {
  background-color: rgba(0, 0, 0, 0.03);
  color: var(--accent-color);
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}
header.header .header--center .navigation .main-nav ul.main-nav__list > li.menu-item:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
}
header.header .header--right {
  flex: 0 0 auto;
  display: flex;
  gap: clamp(14px, 1.1458333333vw, 22px);
  align-items: center;
}
header.header .header--right .header--right-language .lang-placeholder {
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--neutral-color);
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: color 0.25s ease;
}
header.header .header--right .header--right-language .lang-placeholder:hover {
  color: var(--accent-color);
}
header.header .header--right .account,
header.header .header--right .wishlist {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
header.header .header--right .account svg,
header.header .header--right .wishlist svg {
  width: clamp(18px, 1.3541666667vw, 26px);
  height: auto;
}
header.header .header--right .account svg path,
header.header .header--right .wishlist svg path {
  fill: var(--neutral-color);
  transition: fill 0.25s ease;
}
header.header .header--right .account:hover svg path,
header.header .header--right .wishlist:hover svg path {
  fill: var(--accent-color);
}
header.header .header--right .cart {
  display: flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  position: relative;
}
header.header .header--right .cart .items-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 9px;
  font-weight: 700;
}
header.header .header--right .cart .cart-icon svg {
  width: clamp(18px, 1.3541666667vw, 26px);
  height: auto;
}
header.header .header--right .cart .cart-icon svg path {
  fill: var(--neutral-color);
  transition: fill 0.25s ease;
}
header.header .header--right .cart:hover .cart-icon svg path {
  fill: var(--accent-color);
}
header.header .header--right .search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--neutral-color);
  transition: color 0.25s ease;
}
header.header .header--right .search-toggle svg {
  width: clamp(18px, 1.3541666667vw, 26px);
  height: auto;
}
header.header .header--right .search-toggle:hover {
  color: var(--accent-color);
}
@media only screen and (max-width: 1279px) {
  header.header .header-container .header--center {
    flex: 0 0 auto;
    order: -1;
  }
  header.header .header-container .header--center .burger-menu {
    display: flex;
  }
  header.header .header-container .header--center .navigation {
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--primary-color);
    transform: translateX(-100%);
    opacity: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    will-change: transform, opacity;
    padding: 30px;
    overflow: auto;
    z-index: 1000;
  }
  header.header .header-container .header--center .navigation.active {
    transform: translateX(0);
    opacity: 1;
  }
  header.header .header-container .header--center .navigation .main-nav {
    flex-direction: column;
    height: auto;
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    height: auto;
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item.menu-item-has-children > a {
    width: 100%;
    justify-content: space-between;
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item.menu-item-has-children > a::after {
    border-color: var(--neutral-color);
    transition: border-color 0.25s ease, transform 0.25s ease;
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > a {
    height: auto;
    font-size: 16px;
    color: var(--neutral-color);
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item.active > a::after {
    border-color: var(--accent-color);
    transform: rotate(225deg);
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item.active > .sub-menu {
    max-height: 5000px;
    padding: 10px 0;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu {
    position: relative;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease-out, opacity 0.3s ease-out;
    pointer-events: none;
    padding: 0;
    top: unset;
    left: unset;
    height: auto;
    transform: unset;
    flex-wrap: nowrap;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item {
    border-right: none;
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item > a {
    color: var(--text-color);
    padding-left: 10px;
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item.menu-item-has-children > a {
    display: flex;
    align-items: center;
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item.menu-item-has-children > a::after {
    content: "";
    border: solid var(--neutral-color);
    border-width: 0 1.5px 1.5px 0;
    display: inline-block;
    padding: 2.5px;
    margin-left: 6px;
    transform: rotate(45deg);
    transition: border-color 0.25s ease, transform 0.25s ease;
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item.menu-item-has-children.active > a::after {
    border-color: var(--accent-color);
    transform: rotate(225deg);
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item.menu-item-has-children.active > .sub-menu {
    max-height: 5000px;
    opacity: 1;
    visibility: visible;
    pointer-events: all;
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item.menu-item-has-children > .sub-menu {
    position: relative;
    max-height: 0;
    overflow: hidden;
    pointer-events: none;
    transition: max-height 0.3s ease-out, opacity 0.3s ease-out;
    padding: 0;
    top: unset;
    left: unset;
    height: auto;
    transform: unset;
    flex-wrap: nowrap;
    width: 100%;
    background-color: transparent;
    box-shadow: none;
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item.menu-item-has-children > .sub-menu > li.menu-item {
    padding-left: 10px;
  }
  header.header .header-container .header--center .navigation .main-nav ul.main-nav__list > li.menu-item > .sub-menu > li.menu-item.menu-item-has-children > .sub-menu > li.menu-item > a {
    color: var(--text-color);
    opacity: 0.85;
  }
}
header.header.menu-open {
  background-color: rgb(255, 255, 255);
}

body.menu-open {
  overflow: hidden;
}

.search-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(255, 255, 255, 0.97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.search-overlay.active {
  opacity: 1;
  visibility: visible;
}
.search-overlay.active .search-overlay__content {
  transform: translateY(0);
  opacity: 1;
}
.search-overlay .search-overlay__close {
  position: absolute;
  top: clamp(20px, 1.5625vw, 30px);
  right: clamp(20px, 2.0833333333vw, 40px);
  cursor: pointer;
  color: var(--neutral-color);
  transition: color 0.25s ease;
}
.search-overlay .search-overlay__close svg {
  width: 28px;
  height: 28px;
}
.search-overlay .search-overlay__close:hover {
  color: var(--accent-color);
}
.search-overlay .search-overlay__content {
  width: 100%;
  max-width: 700px;
  padding: 0 30px;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease;
}
.search-overlay .search-overlay__form {
  position: relative;
}
.search-overlay .search-overlay__input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--neutral-color);
  background: transparent;
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 4vw, 48px);
  font-weight: 600;
  color: var(--neutral-color);
  padding: 16px 0;
  outline: none;
  transition: border-color 0.25s ease;
}
.search-overlay .search-overlay__input::-moz-placeholder {
  color: var(--text-color);
  opacity: 0.5;
}
.search-overlay .search-overlay__input::placeholder {
  color: var(--text-color);
  opacity: 0.5;
}
.search-overlay .search-overlay__input:focus {
  border-color: var(--accent-color);
}

footer {
  display: flex;
  justify-content: center;
  background-color: var(--accent-color);
  width: 100%;
  border-radius: 0;
}
footer .container-main {
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  footer .container-main {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  footer .container-main {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  footer .container-main {
    padding-inline: 25px;
  }
}
footer .container-main {
  max-width: 1920px;
  padding-top: 80px;
  width: 100%;
}
footer .container-main .footer-row:nth-child(1) {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  margin-bottom: clamp(30px, 4.0104166667vw, 77px);
}
@media only screen and (max-width: 1279px) {
  footer .container-main .footer-row:nth-child(1) {
    align-items: center;
    flex-direction: column-reverse;
  }
}
footer .container-main .footer-row:nth-child(1) .col--left {
  display: flex;
  gap: clamp(50px, 5.7291666667vw, 110px);
}
footer .container-main .footer-row:nth-child(1) .col--left .custom-logo-link {
  display: flex;
  margin-bottom: clamp(20px, 1.5625vw, 30px);
}
footer .container-main .footer-row:nth-child(1) .col--left .custom-logo-link img {
  height: clamp(50px, 5.2083333333vw, 100px);
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 650px) {
  footer .container-main .footer-row:nth-child(1) .col--left {
    justify-content: center;
    flex-direction: column;
    align-items: center;
  }
  footer .container-main .footer-row:nth-child(1) .col--left .col {
    text-align: center;
  }
}
footer .container-main .footer-row:nth-child(1) .col--left .col h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 14px;
}
footer .container-main .footer-row:nth-child(1) .col--left .col p {
  line-height: 1.65;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  color: var(--primary-color);
}
footer .container-main .footer-row:nth-child(1) .col--left .col ul li {
  margin-bottom: 12px;
}
footer .container-main .footer-row:nth-child(1) .col--left .col ul li a {
  font-size: clamp(14px, 0.8333333333vw, 16px);
  color: var(--primary-color);
  transition: color 0.25s ease;
}
footer .container-main .footer-row:nth-child(1) .col--left .col ul li a:hover {
  color: var(--accent-secondary);
}
footer .container-main .footer-row:nth-child(1) .col--right {
  width: 28.9583333333vw;
  min-width: 320px;
}
@media only screen and (max-width: 1279px) {
  footer .container-main .footer-row:nth-child(1) .col--right {
    min-width: 300px;
  }
}
footer .container-main .footer-row:nth-child(1) .col--right .col h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.4583333333vw, 28px);
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: clamp(16px, 1.25vw, 24px);
}
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 .wpcf7-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media only screen and (max-width: 1279px) {
  footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 .wpcf7-form {
    align-items: center;
  }
}
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 .form-field {
  margin-bottom: 16px;
}
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 .field-full {
  width: 100%;
}
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 input[type=email],
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 input[type=text],
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  border-bottom: 1px solid var(--primary-color);
  color: var(--primary-color);
  font-family: "Comfortaa", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  padding: 12px 0;
  outline: none;
  transition: border-color 0.25s ease;
  border-radius: 0;
}
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 input[type=email]::-moz-placeholder, footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 input[type=text]::-moz-placeholder, footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 textarea::-moz-placeholder {
  color: var(--primary-color);
  opacity: 0.6;
  font-style: italic;
}
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 input[type=email]::placeholder,
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 input[type=text]::placeholder,
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 textarea::placeholder {
  color: var(--primary-color);
  opacity: 0.6;
  font-style: italic;
}
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 input[type=email]:focus,
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 input[type=text]:focus,
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 textarea:focus {
  border-color: var(--accent-color);
}
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 textarea {
  resize: vertical;
  min-height: 100px;
  line-height: 1.5;
  height: 100px;
}
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 .wpcf7-submit {
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--neutral-color);
  background-color: var(--primary-color);
  border: 1px solid var(--neutral-color);
  border-radius: 0;
  padding: 0 40px;
  height: 42px;
  line-height: 42px;
  cursor: pointer;
  transition: all 0.25s ease;
  margin-top: 8px;
  width: -moz-fit-content;
  width: fit-content;
}
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 .wpcf7-submit:hover {
  background-color: var(--neutral-color);
  color: var(--primary-color);
}
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 .wpcf7-spinner {
  display: none;
}
footer .container-main .footer-row:nth-child(1) .col--right .col .wpcf7 .wpcf7-response-output {
  font-size: 13px;
  margin-top: 10px;
  color: var(--neutral-color);
}
footer .container-main .footer-row:nth-child(1) .col--right .col form:not(.wpcf7-form) h3 {
  color: var(--neutral-color);
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.0833333333vw, 40px);
  line-height: 1.15;
  font-weight: 600;
  margin-bottom: 8px;
}
footer .container-main .footer-row:nth-child(1) .col--right .col form:not(.wpcf7-form) > p {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  font-weight: 700;
  color: var(--neutral-color);
  margin-bottom: clamp(15px, 1.40625vw, 27px);
}
footer .container-main .footer-row:nth-child(1) .col--right .col form:not(.wpcf7-form) .newsletter-wrapper {
  border-radius: 0;
  height: 52px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  padding: 0 5px 0 clamp(20px, 1.5625vw, 30px);
  justify-content: space-between;
  gap: 10px;
}
@media only screen and (max-width: 767px) {
  footer .container-main .footer-row:nth-child(1) .col--right .col form:not(.wpcf7-form) .newsletter-wrapper {
    height: 42px;
  }
}
footer .container-main .footer-row:nth-child(1) .col--right .col form:not(.wpcf7-form) .newsletter-wrapper label input {
  color: var(--neutral-color);
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 500;
}
footer .container-main .footer-row:nth-child(1) .col--right .col form:not(.wpcf7-form) .newsletter-wrapper label input::-moz-placeholder {
  color: var(--text-color);
}
footer .container-main .footer-row:nth-child(1) .col--right .col form:not(.wpcf7-form) .newsletter-wrapper label input::placeholder {
  color: var(--text-color);
}
footer .container-main .footer-row:nth-child(1) .col--right .col form:not(.wpcf7-form) .newsletter-wrapper label:has(.wpcf7-submit) {
  position: relative;
  z-index: 1;
  height: 42px;
  width: 120px;
  border-radius: 0;
  flex-shrink: 0;
  background-color: var(--neutral-color);
}
@media only screen and (max-width: 767px) {
  footer .container-main .footer-row:nth-child(1) .col--right .col form:not(.wpcf7-form) .newsletter-wrapper label:has(.wpcf7-submit) {
    height: 34px;
  }
}
footer .container-main .footer-row:nth-child(1) .col--right .col form:not(.wpcf7-form) .newsletter-wrapper label:has(.wpcf7-submit) .wpcf7-submit {
  z-index: 1;
  position: relative;
  height: 100%;
  width: 100%;
  color: var(--primary-color);
  padding: 0 20px;
  text-align: center;
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
footer .container-main .footer-row:nth-child(1) .col--right .col form:not(.wpcf7-form) .newsletter-wrapper label:has([data-name=your-email]) input {
  width: 100%;
}
footer .container-main .footer-row:nth-child(2) {
  display: flex;
  gap: 50px;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 1279px) {
  footer .container-main .footer-row:nth-child(2) {
    flex-direction: column;
    gap: clamp(20px, 1.5625vw, 30px);
  }
}
footer .container-main .footer-row:nth-child(2) {
  margin-bottom: clamp(30px, 2.5vw, 48px);
}
footer .container-main .footer-row:nth-child(2) .col.footer-socials ul.social-media {
  display: flex;
  gap: 0.8333333333vw;
  flex-wrap: wrap;
}
@media only screen and (max-width: 767px) {
  footer .container-main .footer-row:nth-child(2) .col.footer-socials ul.social-media {
    justify-content: center;
  }
}
footer .container-main .footer-row:nth-child(2) .col.footer-socials ul.social-media .social-media--item a {
  height: 40px;
  padding: 0 16px;
  display: flex;
  border-radius: 0;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  transition: color 0.25s ease, background-color 0.25s ease;
}
footer .container-main .footer-row:nth-child(2) .col.footer-socials ul.social-media .social-media--item a svg path {
  stroke-width: 1.5;
  transition: stroke 0.25s ease;
}
@media only screen and (max-width: 767px) {
  footer .container-main .footer-row:nth-child(2) .col.footer-socials ul.social-media .social-media--item a {
    padding: 0 12px;
    height: 30px;
  }
}
footer .container-main .footer-row:nth-child(2) .col.footer-socials ul.social-media .social-media--item:nth-child(odd) a {
  color: var(--primary-color);
  background-color: var(--neutral-color);
}
footer .container-main .footer-row:nth-child(2) .col.footer-socials ul.social-media .social-media--item:nth-child(odd) a:hover {
  color: var(--neutral-color);
  background-color: var(--primary-color);
}
footer .container-main .footer-row:nth-child(2) .col.footer-socials ul.social-media .social-media--item:nth-child(odd) a:hover svg path {
  stroke: var(--neutral-color);
}
footer .container-main .footer-row:nth-child(2) .col.footer-socials ul.social-media .social-media--item:nth-child(even) a {
  color: var(--neutral-color);
  background-color: var(--primary-color);
}
footer .container-main .footer-row:nth-child(2) .col.footer-socials ul.social-media .social-media--item:nth-child(even) a svg path {
  stroke: var(--neutral-color);
}
footer .container-main .footer-row:nth-child(2) .col.footer-socials ul.social-media .social-media--item:nth-child(even) a:hover {
  color: var(--primary-color);
  background-color: var(--neutral-color);
}
footer .container-main .footer-row:nth-child(2) .col.footer-socials ul.social-media .social-media--item:nth-child(even) a:hover svg path {
  stroke: var(--primary-color);
}
footer .container-main .footer-row:nth-child(3) {
  height: 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.12);
  display: flex;
  align-items: center;
  gap: 50px;
  justify-content: space-between;
}
@media only screen and (max-width: 1279px) {
  footer .container-main .footer-row:nth-child(3) {
    flex-direction: column-reverse;
    gap: clamp(15px, 1.0416666667vw, 20px);
    padding: clamp(15px, 1.0416666667vw, 20px) 0;
    height: auto;
  }
}
footer .container-main .footer-row:nth-child(3) .col.footer-copyright p {
  font-size: clamp(14px, 0.9375vw, 18px);
  line-height: 1.4;
  color: var(--primary-color);
}
footer .container-main .footer-row:nth-child(3) .col:nth-child(2) .footer-logos {
  display: flex;
  gap: clamp(5px, 0.4166666667vw, 8px);
}
footer .container-main .footer-row:nth-child(3) .col:nth-child(2) .footer-logos img {
  height: 45px;
  width: 68px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
@media only screen and (max-width: 767px) {
  footer .container-main .footer-row:nth-child(3) .col:nth-child(2) .footer-logos img {
    height: 30px;
    width: 45px;
  }
}

body.error404 .error {
  position: relative;
  width: 100%;
  min-height: calc(100vh - var(--hh, 100px));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
body.error404 .error__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
body.error404 .error__background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 2;
}
body.error404 .error__background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(50%) brightness(0.6);
  animation: subtleZoom 20s ease-in-out infinite alternate;
}
@keyframes subtleZoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.05);
  }
}
body.error404 .error .container {
  position: relative;
  z-index: 3;
  width: 100%;
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body.error404 .error .container {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  body.error404 .error .container {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  body.error404 .error .container {
    padding-inline: 25px;
  }
}
body.error404 .error__content {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
  text-align: center;
}
body.error404 .error__content-text {
  max-width: 800px;
  padding: clamp(40px, 3.125vw, 60px);
  background: rgba(255, 255, 255, 0.95);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: fadeInUp 0.8s ease-out;
}
@media only screen and (max-width: 767px) {
  body.error404 .error__content-text {
    padding: clamp(30px, 2.0833333333vw, 40px);
    border-radius: 20px;
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
body.error404 .error__content-text::before {
  content: "404";
  display: block;
  font-size: clamp(80px, 6.25vw, 120px);
  font-weight: 900;
  line-height: 1;
  color: var(--accent-color);
  margin-bottom: clamp(20px, 1.5625vw, 30px);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
}
body.error404 .error__content-text h1 {
  font-size: clamp(24px, 1.6666666667vw, 32px);
  font-weight: 700;
  color: var(--neutral-color);
  line-height: 1.4;
  margin: 0 0 clamp(15px, 1.0416666667vw, 20px);
}
body.error404 .error__content-text p {
  font-size: clamp(16px, 0.9375vw, 18px);
  color: var(--neutral-color);
  opacity: 0.8;
  line-height: 1.6;
  margin: 0 0 clamp(30px, 2.0833333333vw, 40px);
}
body.error404 .error__content-text .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 55px;
  padding: 0 clamp(30px, 2.0833333333vw, 40px);
  background-color: var(--accent-color);
  color: var(--neutral-color);
  font-size: clamp(16px, 0.9375vw, 18px);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  border: 2px solid var(--accent-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
body.error404 .error__content-text .button::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background-color: var(--neutral-color);
  transform: translate(-50%, -50%);
  transition: width 0.4s ease, height 0.4s ease;
  z-index: -1;
}
body.error404 .error__content-text .button:hover {
  color: var(--accent-color);
  border-color: var(--neutral-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}
body.error404 .error__content-text .button:hover::before {
  width: 300px;
  height: 300px;
}
body.error404 .error__content-text .button:active {
  transform: translateY(0);
}
body.error404 .error__content-text {
  position: relative;
}
body.error404 .error__content-text::after {
  content: "";
  position: absolute;
  top: -30px;
  right: -30px;
  width: 80px;
  height: 80px;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  opacity: 0.2;
  animation: rotate 10s linear infinite;
}
@media only screen and (max-width: 767px) {
  body.error404 .error__content-text::after {
    width: 50px;
    height: 50px;
    top: -20px;
    right: -20px;
  }
}
body.error404 .error__content-text::before {
  content: "";
  position: absolute;
  bottom: -25px;
  left: -25px;
  width: 60px;
  height: 60px;
  border: 3px solid var(--accent-color);
  border-radius: 50%;
  opacity: 0.2;
  animation: rotate 15s linear infinite reverse;
}
@media only screen and (max-width: 767px) {
  body.error404 .error__content-text::before {
    width: 40px;
    height: 40px;
    bottom: -15px;
    left: -15px;
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.post-type-archive-product .woocommerce-main-wrapper,
.tax-product_cat .woocommerce-main-wrapper {
  padding-top: calc(var(--hh, 80px) + clamp(20px, 1.5625vw, 30px));
  padding-bottom: clamp(40px, 3.125vw, 60px);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-header,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-header {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  margin-bottom: 0px;
  padding-top: 0;
  padding-bottom: 0px;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-header .woocommerce-archive-category-thumbnail,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-header .woocommerce-archive-category-thumbnail {
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-header .woocommerce-archive-category-thumbnail img,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-header .woocommerce-archive-category-thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(90%) brightness(0.5);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-header .woocommerce-breadcrumb,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-header .woocommerce-breadcrumb {
  padding-block: 26px;
  display: flex;
  gap: 5px;
  font-size: clamp(13px, 0.78125vw, 15px);
  color: var(--neutral-color);
  font-weight: 600;
  flex-wrap: wrap;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-header .woocommerce-breadcrumb a,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-header .woocommerce-breadcrumb a {
  font-size: clam(16px, 0.9375vw, 18px);
  color: var(--neutral-color);
  transition: color 0.3s ease;
  font-weight: 400;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-header .woocommerce-breadcrumb a:hover,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-header .woocommerce-breadcrumb a:hover {
  color: var(--accent-color);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-header .woocommerce-breadcrumb .separator,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-header .woocommerce-breadcrumb .separator {
  font-size: clam(16px, 0.9375vw, 18px);
  color: var(--neutral-color);
  font-weight: 400;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-header .woocommerce-breadcrumb span,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-header .woocommerce-breadcrumb span {
  font-weight: 400;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 75px;
  flex-direction: row-reverse;
  padding-top: 0;
}
@media only screen and (max-width: 1279px) {
  .post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container,
  .tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container {
    grid-template-columns: 1.4fr 2fr;
  }
}
@media screen and ((max-width: 600px)) {
  .post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container,
  .tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container {
    grid-template-columns: 1fr;
  }
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container .woocommerce-products-header h1,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container .woocommerce-products-header h1 {
  margin-bottom: 10px;
  color: var(--neutral-color);
  font-weight: 600;
  font-size: clamp(16px, 1.25vw, 24px);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container .woocommerce-products-header p,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container .woocommerce-products-header p {
  font-size: clamp(12px, 0.8333333333vw, 16px);
  margin-bottom: clamp(20px, 2.0833333333vw, 40px);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 1.5625vw, 30px);
}
@media only screen and (max-width: 1279px) {
  .post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products,
  .tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products,
  .tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products {
    grid-template-columns: repeat(1, 1fr);
  }
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product {
  display: flex;
  flex-direction: column;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product a.woocommerce-loop-product__link .price del,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product a.woocommerce-loop-product__link .price del {
  font-weight: 500;
  opacity: 0.6;
  text-decoration: line-through;
  font-size: clamp(12px, 0.8333333333vw, 16px);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product {
  background-color: var(--primary-color);
  border-radius: 0;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link {
  border-radius: 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .cfvsw_variations_form,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .cfvsw_variations_form {
  z-index: 1;
  position: absolute;
  top: 49.154589372%;
  right: 10px;
}
@media only screen and (max-width: 1279px) {
  .post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .cfvsw_variations_form,
  .tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .cfvsw_variations_form {
    top: 29.4927536232%;
    right: 50%;
    transform: translateX(50%);
  }
}
@media screen and (max-width: 600px) {
  .post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .cfvsw_variations_form,
  .tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .cfvsw_variations_form {
    top: 58.9855072464%;
  }
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .onsale,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .onsale {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 0;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .outofstock,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .outofstock {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #c0bdb8;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 0;
  z-index: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .featured,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .featured {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--bg-dark-color);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 0;
  z-index: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .image,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .image {
  order: 1;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  padding: 0;
  border-radius: 0;
  background-color: var(--primary-color);
  margin-bottom: clamp(18px, 1.25vw, 24px);
  overflow: hidden;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .image img,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .woocommerce-loop-product__title,
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .price,
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .devocean-delivery-estimate,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .woocommerce-loop-product__title,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .price,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .devocean-delivery-estimate {
  padding: 0 20px;
  color: var(--neutral-color);
  font-weight: 400;
  font-size: clamp(14px, 0.8333333333vw, 16px);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .woocommerce-loop-product__title,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .woocommerce-loop-product__title {
  order: 2;
  flex: 0 0 80%;
  height: -moz-fit-content;
  height: fit-content;
  align-self: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(15px, 0.9375vw, 18px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}
@media only screen and (max-width: 1279px) {
  .post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .woocommerce-loop-product__title,
  .tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .woocommerce-loop-product__title {
    flex: 0 0 calc(100% - 80px);
  }
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .price,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .price {
  order: 4;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 400;
  color: var(--accent-color);
  font-family: "Signika", sans-serif;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  margin-top: clamp(8px, 0.625vw, 12px);
  margin-bottom: clamp(14px, 0.9375vw, 18px);
  flex: 0 0 100%;
  letter-spacing: 0.02em;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .price del,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .price del {
  font-weight: 400;
  opacity: 0.45;
  text-decoration: line-through;
  font-size: clamp(11px, 0.7291666667vw, 14px);
  color: var(--neutral-color);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .devocean-delivery-estimate,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link .devocean-delivery-estimate {
  order: 5;
  padding-top: clamp(10px, 0.7291666667vw, 14px);
  margin-bottom: clamp(18px, 1.4583333333vw, 28px);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-left: 20px;
  gap: clamp(7px, 0.5208333333vw, 10px);
  font-size: clamp(12px, 0.7291666667vw, 14px);
  opacity: 0.75;
  transition: opacity 0.25s ease;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link:hover .image img,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link:hover .image img {
  transform: scale(1.06);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link:hover .woocommerce-loop-product__title,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link:hover .woocommerce-loop-product__title {
  color: var(--accent-color);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link:hover .devocean-delivery-estimate,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .woocommerce-loop-product__link:hover .devocean-delivery-estimate {
  opacity: 1;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product:hover,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .add_to_cart_button,
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .added_to_cart,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .add_to_cart_button,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .added_to_cart {
  order: 3;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: auto;
  border-radius: 0;
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0 20px;
  font-family: "Signika", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  margin-top: auto;
}
@media only screen and (max-width: 1279px) {
  .post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .add_to_cart_button,
  .post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .added_to_cart,
  .tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .add_to_cart_button,
  .tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .added_to_cart {
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 20px;
  }
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .add_to_cart_button svg,
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .added_to_cart svg,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .add_to_cart_button svg,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .added_to_cart svg {
  width: clamp(18px, 1.3541666667vw, 26px);
  height: clamp(18px, 1.3541666667vw, 26px);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .add_to_cart_button svg path,
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .added_to_cart svg path,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .add_to_cart_button svg path,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .added_to_cart svg path {
  fill: var(--accent-color);
  transition: fill 0.25s ease;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .add_to_cart_button:hover,
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .added_to_cart:hover,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .add_to_cart_button:hover,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .added_to_cart:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .add_to_cart_button:hover svg path,
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .added_to_cart:hover svg path,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .add_to_cart_button:hover svg path,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .added_to_cart:hover svg path {
  fill: var(--primary-color);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product:has(.added_to_cart) .add_to_cart_button,
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product:has(.added_to_cart) .button.product_type_simple,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product:has(.added_to_cart) .add_to_cart_button,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product:has(.added_to_cart) .button.product_type_simple {
  display: none;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .button.product_type_simple,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .button.product_type_simple {
  order: 3;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  border-radius: 0;
  background-color: transparent;
  color: var(--neutral-color);
  border: 1px solid var(--border-color);
  padding: 0 20px;
  font-family: "Signika", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: auto;
  margin-top: auto;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
@media only screen and (max-width: 1279px) {
  .post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .button.product_type_simple,
  .tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .button.product_type_simple {
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 20px;
  }
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .button.product_type_simple:hover,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .button.product_type_simple:hover {
  background-color: var(--neutral-color);
  color: var(--primary-color);
  border-color: var(--neutral-color);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .add_to_cart_button,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-products-container ul.products li.product .add_to_cart_button {
  margin-top: auto;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination {
  grid-column: 1/-1;
  margin-top: clamp(32px, 2.5vw, 48px);
  display: flex;
  justify-content: center;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers {
  display: flex;
  align-items: center;
  gap: 6px;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers li .page-numbers,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers li .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--neutral-color);
  text-decoration: none;
  border: 1px solid var(--border-color);
  background-color: var(--primary-color);
  transition: all 0.2s ease;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers li .page-numbers:hover,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers li .page-numbers:hover {
  background-color: var(--neutral-color);
  color: var(--primary-color);
  border-color: var(--neutral-color);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers li .page-numbers.current,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers li .page-numbers.current {
  background-color: var(--neutral-color);
  color: var(--primary-color);
  border-color: var(--neutral-color);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers li .page-numbers.next, .post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers li .page-numbers.prev,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers li .page-numbers.next,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers li .page-numbers.prev {
  font-size: 16px;
  letter-spacing: 0;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers li .page-numbers.dots,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers li .page-numbers.dots {
  border: none;
  background: none;
  padding: 0 4px;
  min-width: auto;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers li .page-numbers.dots:hover,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-pagination .page-numbers li .page-numbers.dots:hover {
  background: none;
  color: var(--neutral-color);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container {
  grid-column: 1;
  grid-row: 1;
}
@media screen and ((max-width: 600px)) {
  .post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container,
  .tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: -moz-fit-content;
    width: fit-content;
    padding: 10px 15px;
    background-color: white;
    border-radius: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget {
  padding: 0;
}
@media only screen and (max-width: 767px) {
  .post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay,
  .tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay {
    height: calc(100vh - 105px);
    top: 105px;
  }
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content h2,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content h2 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wc-block-product-filter-checkbox-list .wc-block-product-filter-checkbox-list__items .wc-block-product-filter-checkbox-list__item .wc-block-product-filter-checkbox-list__label .wc-block-product-filter-checkbox-list__input-wrapper,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wc-block-product-filter-checkbox-list .wc-block-product-filter-checkbox-list__items .wc-block-product-filter-checkbox-list__item .wc-block-product-filter-checkbox-list__label .wc-block-product-filter-checkbox-list__input-wrapper {
  display: flex;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wc-block-product-filter-checkbox-list .wc-block-product-filter-checkbox-list__items .wc-block-product-filter-checkbox-list__item .wc-block-product-filter-checkbox-list__label .wc-block-product-filter-checkbox-list__input-wrapper::before,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wc-block-product-filter-checkbox-list .wc-block-product-filter-checkbox-list__items .wc-block-product-filter-checkbox-list__item .wc-block-product-filter-checkbox-list__label .wc-block-product-filter-checkbox-list__input-wrapper::before {
  display: none;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wc-block-product-filter-checkbox-list .wc-block-product-filter-checkbox-list__items .wc-block-product-filter-checkbox-list__item .wc-block-product-filter-checkbox-list__label .wc-block-product-filter-checkbox-list__input-wrapper input,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wc-block-product-filter-checkbox-list .wc-block-product-filter-checkbox-list__items .wc-block-product-filter-checkbox-list__item .wc-block-product-filter-checkbox-list__label .wc-block-product-filter-checkbox-list__input-wrapper input {
  border-radius: 100%;
  background-color: white;
  border: 1px solid rgba(211, 211, 211, 0.9411764706);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wc-block-product-filter-checkbox-list .wc-block-product-filter-checkbox-list__items .wc-block-product-filter-checkbox-list__item .wc-block-product-filter-checkbox-list__label .wc-block-product-filter-checkbox-list__input-wrapper svg,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wc-block-product-filter-checkbox-list .wc-block-product-filter-checkbox-list__items .wc-block-product-filter-checkbox-list__item .wc-block-product-filter-checkbox-list__label .wc-block-product-filter-checkbox-list__input-wrapper svg {
  width: 60%;
  height: 60%;
  border-radius: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--accent-color);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wc-block-product-filter-checkbox-list .wc-block-product-filter-checkbox-list__items .wc-block-product-filter-checkbox-list__item .wc-block-product-filter-checkbox-list__label .wc-block-product-filter-checkbox-list__input-wrapper svg path,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wc-block-product-filter-checkbox-list .wc-block-product-filter-checkbox-list__items .wc-block-product-filter-checkbox-list__item .wc-block-product-filter-checkbox-list__label .wc-block-product-filter-checkbox-list__input-wrapper svg path {
  display: none;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider {
  --slider-green: #8bc34a;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__content,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__content {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-top: 30px;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__range,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__range {
  order: 2;
  height: 2px;
  background-color: var(--accent-color);
  position: relative;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__range .range-bar,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__range .range-bar {
  display: none;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__left.text,
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__right.text,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__left.text,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__right.text {
  position: absolute;
  top: 0;
  display: flex;
  align-items: center;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__left.text input,
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__right.text input,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__left.text input,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__right.text input {
  border: none;
  background: none;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral-color, #333);
  width: auto;
  text-align: left;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__left.text input:focus,
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__right.text input:focus,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__left.text input:focus,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__right.text input:focus {
  outline: none;
  box-shadow: none;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__left.text,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__left.text {
  left: 0;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__left.text::before,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__left.text::before {
  content: "Από ";
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral-color, #333);
  margin-right: 4px;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__left.text input,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__left.text input {
  text-align: left;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__right.text,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__right.text {
  right: 0;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__right.text::before,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__right.text::before {
  content: "Μέχρι ";
  font-size: 16px;
  font-weight: 500;
  color: var(--neutral-color, #333);
  margin-right: 4px;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__right.text input,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider .wc-block-product-filter-price-slider__right.text input {
  text-align: right;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider input[type=range],
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider input[type=range] {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: transparent;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
  pointer-events: none;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider input[type=range]::-webkit-slider-thumb,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider input[type=range]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
  border: none !important;
  cursor: pointer;
  pointer-events: all;
  margin-top: -10px;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider input[type=range]::-webkit-slider-runnable-track,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider input[type=range]::-webkit-slider-runnable-track {
  height: 2px !important;
  background: transparent;
  border: none;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider input[type=range]::-moz-range-thumb,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider input[type=range]::-moz-range-thumb {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: var(--accent-color);
  cursor: pointer;
  pointer-events: all;
  border: 0;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider input[type=range]::-moz-range-track,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-price-slider input[type=range]::-moz-range-track {
  height: 2px !important;
  background: transparent;
  border: none;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content h3,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content h3 {
  font-size: clamp(18px, 1.25vw, 24px);
  font-weight: 600;
  color: var(--neutral-color);
  margin-bottom: 45px !important;
  position: relative;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content h3::after,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content h3::after {
  content: "";
  position: absolute;
  bottom: -22.5px;
  width: 100%;
  height: 1px;
  left: 0;
  background-color: #dfdfdf;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips {
  margin-bottom: 30px;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item {
  display: flex;
  align-items: center;
  background-color: #f5f5f5;
  border-radius: 20px;
  padding: 4px 8px;
  transition: all 0.2s ease;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item:hover,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item:hover {
  background-color: #e8e8e8;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__label,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__label {
  font-size: 14px;
  color: var(--neutral-color);
  margin-right: 8px;
  line-height: 1;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  padding: 0;
  border: none;
  background-color: transparent;
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove:hover,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove svg,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove svg {
  width: 16px;
  height: 16px;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove svg path,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove svg path {
  fill: var(--neutral-color);
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove .screen-reader-text,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-removable-chips .wc-block-product-filter-removable-chips__items .wc-block-product-filter-removable-chips__item .wc-block-product-filter-removable-chips__remove .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-clear-button .wp-block-buttons .wp-block-button,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-clear-button .wp-block-buttons .wp-block-button {
  width: 100%;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-clear-button .wp-block-buttons .wp-block-button button,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-clear-button .wp-block-buttons .wp-block-button button {
  width: 100%;
  background-color: transparent;
  border: 1px solid var(--accent-color);
  color: var(--accent-color);
  font-size: 16px;
  font-weight: 500;
  padding: 12px 24px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-clear-button .wp-block-buttons .wp-block-button button:hover,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-content .wp-block-woocommerce-product-filter-active .wp-block-woocommerce-product-filter-clear-button .wp-block-buttons .wp-block-button button:hover {
  background-color: var(--accent-color);
  color: white;
}
.post-type-archive-product .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-footer,
.tax-product_cat .woocommerce-main-wrapper .woocommerce-archive-main-container .woocommerce-archive-sidebar-container #sidebar ul section.widget .wp-block-woocommerce-product-filters .wc-block-product-filters__overlay .wc-block-product-filters__overlay-wrapper .wc-block-product-filters__overlay-dialog .wc-block-product-filters__overlay-footer {
  background-color: white;
}

body.single-product .woocommerce-main-wrapper {
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body.single-product .woocommerce-main-wrapper {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  body.single-product .woocommerce-main-wrapper {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  body.single-product .woocommerce-main-wrapper {
    padding-inline: 25px;
  }
}
body.single-product .woocommerce-main-wrapper {
  max-width: 1920px;
  margin: 0 auto;
  padding-bottom: clamp(40px, 3.125vw, 60px);
  padding-top: calc(var(--hh, 80px) + clamp(20px, 1.5625vw, 30px));
}
body.single-product .woocommerce-main-wrapper .woocommerce-breadcrumb {
  padding-block: 26px;
  display: flex;
  gap: 5px;
  font-size: clamp(13px, 0.78125vw, 15px);
  color: var(--neutral-color);
  font-weight: 600;
  flex-wrap: wrap;
}
body.single-product .woocommerce-main-wrapper .woocommerce-breadcrumb a {
  font-size: clam(16px, 0.9375vw, 18px);
  color: var(--neutral-color);
  transition: color 0.3s ease;
  font-weight: 400;
}
body.single-product .woocommerce-main-wrapper .woocommerce-breadcrumb a:hover {
  color: var(--accent-color);
}
body.single-product .woocommerce-main-wrapper .woocommerce-breadcrumb .separator {
  font-size: clam(16px, 0.9375vw, 18px);
  color: var(--neutral-color);
  font-weight: 400;
}
body.single-product .woocommerce-main-wrapper .woocommerce-breadcrumb span {
  font-weight: 400;
}
body.single-product .woocommerce-main-wrapper > .product {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) 1fr;
  gap: clamp(50px, 5.46875vw, 105px);
}
@media only screen and (max-width: 1279px) {
  body.single-product .woocommerce-main-wrapper > .product {
    grid-template-columns: minmax(0, 1fr);
  }
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper {
  position: relative;
}
@media only screen and (max-width: 1279px) {
  body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper {
    max-width: 750px;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 767px) {
  body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper {
    max-width: 100%;
  }
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .onsale {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .outofstock {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #c0bdb8;
  color: var(--primary-color);
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .featured {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--bg-dark-color);
  color: var(--primary-color);
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 0;
  letter-spacing: 1px;
  text-transform: uppercase;
  z-index: 1;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery {
  aspect-ratio: 1;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  height: 100%;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__wrapper > div {
  height: 100%;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__wrapper > div > a {
  height: 100%;
  display: flex;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__wrapper > div > a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(100px, 8.3333333333vw, 160px);
  gap: 20px;
  aspect-ratio: unset;
  width: 100%;
}
@media only screen and (max-width: 767px) {
  body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery {
    display: flex;
    flex-direction: column;
  }
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__wrapper {
  aspect-ratio: 1;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery:has(.slick-active) {
  display: grid;
  grid-template-columns: clamp(100px, 8.3333333333vw, 160px) minmax(0, 1fr);
  gap: 20px;
  aspect-ratio: unset;
}
@media only screen and (max-width: 767px) {
  body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery:has(.slick-active) {
    display: flex;
    flex-direction: column;
  }
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery:has(.slick-active) .gallery-thumbnails {
  grid-column: 1;
  grid-row: 1;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery:has(.slick-active) .gallery-thumbnails .slick-slide {
  margin-bottom: 10px;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.3s ease;
  max-height: 800px;
}
border-r body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery:has(.slick-active) .gallery-thumbnails .slick-slide:hover, body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery:has(.slick-active) .gallery-thumbnails .slick-slide.slick-current {
  opacity: 1;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery:has(.slick-active) .gallery-thumbnails .slick-slide img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 0;
  border: 2px solid #f2f2f2;
  -o-object-fit: cover;
     object-fit: cover;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery:has(.slick-active) .gallery-thumbnails .slick-slide.slick-current img {
  border-color: var(--neutral-color);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery:has(.slick-active) .woocommerce-product-gallery__wrapper {
  grid-column: 2;
  aspect-ratio: unset;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery:has(.slick-active) .woocommerce-product-gallery__wrapper .slick-slide img {
  width: 100%;
  height: auto;
  border-radius: 0;
  aspect-ratio: 1;
  -o-object-fit: cover;
     object-fit: cover;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__wrapper.variant-mode {
  display: block;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__wrapper.variant-mode ~ .gallery-thumbnails {
  display: none;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__wrapper.variant-mode .woocommerce-product-gallery__image {
  display: none;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__wrapper.variant-mode .woocommerce-product-gallery__image:first-child {
  display: block;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .woocommerce-product-gallery .woocommerce-product-gallery__wrapper.variant-mode .woocommerce-product-gallery__image:first-child img {
  width: 100%;
  height: auto;
  border-radius: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .slick-slider .slick-arrow {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .slick-slider .slick-arrow.slick-prev {
  left: 20px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .slick-slider .slick-arrow.slick-next {
  right: 20px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .slick-slider .slick-arrow.slick-disabled {
  opacity: 0.3;
  cursor: not-allowed;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .slick-slider .slick-arrow::before {
  content: "";
  display: block;
  width: clamp(12px, 1.5625vw, 30px);
  height: clamp(12px, 1.5625vw, 30px);
  border-style: solid;
  border-color: #000;
  border-width: 3px 3px 0 0;
  position: absolute;
  top: 50%;
  left: 50%;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .slick-slider .slick-arrow.slick-next::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .slick-slider .slick-arrow.slick-prev::before {
  transform: translate(-50%, -50%) rotate(-135deg);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-product-wrapper .slick-slider .slick-arrow:hover::before {
  border-color: #555;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .product-brand-logo {
  height: 40px;
  width: auto;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .product-brand-logo img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary h1.product_title {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 1.875vw, 36px);
  line-height: 1.25;
  color: var(--neutral-color);
  font-weight: 600;
  margin-bottom: 10px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .product_meta .sku_wrapper .sku {
  font-size: clamp(14px, 0.9375vw, 18px);
  color: var(--neutral-color);
  line-height: 1.45;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .price-container {
  margin-top: 8px;
  display: flex;
  gap: 15px;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .price-container::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d0d0d0;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .price-container .price {
  display: flex;
  align-items: center;
  gap: 8px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .price-container .price .woocommerce-Price-amount {
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 600;
  color: var(--neutral-color);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .price-container .price del .woocommerce-Price-amount {
  color: var(--neutral-color);
  opacity: 0.6;
  font-weight: 400;
  text-decoration: line-through;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .price-container .price ins {
  text-decoration: none;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .price-container .price ins .woocommerce-Price-amount {
  color: var(--accent-color);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .price-container .price .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .price-container .size-guide h3 {
  font-size: clamp(12px, 0.8333333333vw, 16px);
  text-decoration: underline;
  line-height: 1.45;
  color: var(--neutral-color);
  font-weight: 500;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .price-container .size-guide:hover {
  cursor: pointer;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .price-container .size-guide:hover .size-guide-content {
  position: absolute;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.3s ease;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .price-container .size-guide .size-guide-content {
  position: absolute;
  opacity: 0;
  z-index: 5;
  visibility: hidden;
  transition: opacity 0.3s ease;
  background-color: var(--primary-color);
  padding: 15px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  font-size: clamp(12px, 0.7291666667vw, 14px);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .woocommerce-product-details__short-description p {
  font-size: clamp(14px, 0.78125vw, 15px);
  color: var(--text-color);
  line-height: 1.7;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .woocommerce-product-details__short-description {
  margin-bottom: 25px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .simple-product-attributes {
  margin-bottom: 25px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .simple-product-attributes .attribute-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .simple-product-attributes .attribute-group:last-child {
  margin-bottom: 0;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .simple-product-attributes .attribute-group .attribute-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--neutral-color);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .simple-product-attributes .attribute-group .attribute-swatches {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .simple-product-attributes .attribute-group .attribute-swatches .attribute-swatch {
  padding: 8px 16px;
  font-size: 13px;
  border: 1px solid var(--border-color);
  border-radius: 0;
  background-color: var(--neutral-light-color);
  color: var(--neutral-color);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper {
  padding: 24px 32px;
  background-color: var(--neutral-light-color);
  border-radius: 0;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper:not(:has(.variations)):not(:has(.cart)) {
  padding: 16px 0;
  background-color: transparent;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations {
  margin-bottom: 0;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations tr {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations tr:last-child {
  margin-bottom: 0;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations th.label {
  padding: 0;
  font-weight: 600;
  font-size: 14px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations th.label label {
  margin: 0;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations th.label .cfvsw-selected-label {
  font-weight: 400;
  color: #666;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations th.label .cfvsw-selected-label::before {
  content: ": ";
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations td.value {
  padding: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations td.value .reset_variations {
  margin-left: auto;
  font-size: 13px;
  text-decoration: none;
  color: #666;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations td.value .reset_variations:hover {
  color: #000;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .cfvsw-swatches-container {
  gap: 10px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .cfvsw-swatches-option {
  min-width: 32px !important;
  min-height: 32px !important;
  transition: transform 0.2s, box-shadow 0.2s;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .cfvsw-swatches-option:hover {
  transform: scale(1.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .cfvsw-swatches-option.cfvsw-selected-swatch {
  border-width: 2px !important;
  transform: scale(1.05);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .cfvsw-label-option {
  padding: 8px 16px !important;
  font-size: 13px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .single_variation_wrap {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #ddd;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .woocommerce-variation-price {
  margin-bottom: 12px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .woocommerce-variation-price .price {
  font-size: 24px;
  font-weight: 700;
  color: #000;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .woocommerce-variation-price .price del {
  font-weight: 500;
  opacity: 0.6;
  text-decoration: line-through;
  font-size: clamp(12px, 0.8333333333vw, 16px);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .woocommerce-variation-availability {
  margin-bottom: 20px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .woocommerce-variation-availability .stock {
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .woocommerce-variation-availability .stock.in-stock {
  color: #2e7d32;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .woocommerce-variation-availability .stock.out-of-stock {
  color: #c62828;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper:not(:has(.woocommerce-variation-availability)) .stock {
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin: 0;
  padding: 0;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper:not(:has(.woocommerce-variation-availability)) .stock.in-stock {
  color: #2e7d32;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper:not(:has(.woocommerce-variation-availability)) .stock.out-of-stock {
  color: #c62828;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations_button,
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper > form.cart:not(.variations_form) {
  display: flex;
  align-items: center;
  gap: 16px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations_button .quantity,
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper > form.cart:not(.variations_form) .quantity {
  margin: 0;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations_button .quantity input.qty,
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper > form.cart:not(.variations_form) .quantity input.qty {
  width: 80px;
  height: 48px;
  text-align: center;
  border: 1px solid var(--border-color);
  border-radius: 0;
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  background-color: var(--primary-color);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations_button .quantity input.qty:focus,
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper > form.cart:not(.variations_form) .quantity input.qty:focus {
  border-color: var(--neutral-color);
  outline: none;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations_button .single_add_to_cart_button,
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper > form.cart:not(.variations_form) .single_add_to_cart_button {
  flex-grow: 1;
  height: 48px;
  padding: 0 32px;
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.25s ease;
  color: var(--primary-color);
  background-color: var(--neutral-color);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper .variations_button .single_add_to_cart_button:hover,
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .variations-wrapper > form.cart:not(.variations_form) .single_add_to_cart_button:hover {
  background-color: var(--accent-color);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .payment-methods {
  margin-top: 20px;
  margin-bottom: 40px;
  position: relative;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .payment-methods::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #d0d0d0;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .payment-methods h3 {
  font-size: clamp(14px, 0.8333333333vw, 16px);
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  font-weight: 700;
  line-height: 1.45;
  justify-content: space-between;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .payment-methods h3 svg {
  transition: transform 0.3s ease;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .payment-methods h3:hover {
  cursor: pointer;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .payment-methods .payment-methods-content {
  max-height: 0;
  overflow: hidden;
  padding-top: 0;
  transition: max-height 0.3s ease, padding-top 0.3s ease;
  font-size: clamp(14px, 0.8333333333vw, 16px);
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .payment-methods .payment-methods-content.active {
  max-height: 5000px;
  padding-top: 15px;
}
body.single-product .woocommerce-main-wrapper > .product .woocommerce-summary-wrapper .entry-summary .payment-methods:has(.payment-methods-content.active) h3 svg {
  transform: rotate(180deg);
}
body.single-product .woocommerce-main-wrapper .woocommerce-tabs {
  margin-top: 60px;
}
body.single-product .woocommerce-main-wrapper .woocommerce-tabs .wc-tabs {
  display: flex;
  gap: 40px;
  border-bottom: 1px solid #d0d0d0;
  margin-bottom: 30px;
  justify-content: center;
}
body.single-product .woocommerce-main-wrapper .woocommerce-tabs .wc-tabs > li {
  list-style: none;
}
body.single-product .woocommerce-main-wrapper .woocommerce-tabs .wc-tabs > li a {
  display: block;
  padding-bottom: 15px;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 500;
  color: var(--neutral-color);
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}
body.single-product .woocommerce-main-wrapper .woocommerce-tabs .wc-tabs > li a:hover {
  color: var(--accent-color);
}
body.single-product .woocommerce-main-wrapper .woocommerce-tabs .wc-tabs > li.active a {
  border-bottom-color: var(--accent-color);
  color: var(--accent-color);
}
body.single-product .woocommerce-main-wrapper .woocommerce-tabs .woocommerce-Tabs-panel h2 {
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 600;
  color: var(--neutral-color);
  margin-bottom: 20px;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body.single-product .woocommerce-main-wrapper .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes {
  width: 100%;
  border-collapse: collapse;
}
body.single-product .woocommerce-main-wrapper .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes tr:nth-child(even) {
  background-color: #f5f5f5;
}
body.single-product .woocommerce-main-wrapper .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes tr th,
body.single-product .woocommerce-main-wrapper .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes tr td {
  padding: 15px;
  text-align: left;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  color: var(--neutral-color);
}
body.single-product .woocommerce-main-wrapper .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes tr th {
  font-weight: 600;
  width: 30%;
}
body.single-product .woocommerce-main-wrapper .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes tr td {
  font-weight: 400;
}
body.single-product .woocommerce-main-wrapper .woocommerce-tabs .woocommerce-Tabs-panel .woocommerce-product-attributes tr td p {
  margin: 0;
}
body.single-product .woocommerce-main-wrapper .related.products {
  margin-top: 80px;
  padding: 0;
}
body.single-product .woocommerce-main-wrapper .related.products h2 {
  font-size: clamp(28px, 2.0833333333vw, 40px);
  color: var(--neutral-color);
  font-weight: 500;
  margin-bottom: 40px;
}
body.single-product .woocommerce-main-wrapper .related.products ul.products {
  /* the slides */
}
body.single-product .woocommerce-main-wrapper .related.products ul.products .slick-slide {
  margin: 0 clamp(8px, 0.6510416667vw, 12.5px);
}
body.single-product .woocommerce-main-wrapper .related.products ul.products {
  /* the parent */
}
body.single-product .woocommerce-main-wrapper .related.products ul.products .slick-list {
  margin: 0 calc(-1 * clamp(8px, 0.6510416667vw, 12.5px));
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product a.woocommerce-loop-product__link .price del {
  font-weight: 500;
  opacity: 0.6;
  text-decoration: line-through;
  font-size: clamp(12px, 0.8333333333vw, 16px);
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product {
  background-color: var(--primary-color);
  border-radius: 0;
  border: 1px solid var(--border-color);
  transition: box-shadow 0.4s ease, transform 0.4s ease;
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link {
  border-radius: 0;
  position: relative;
  display: flex;
  flex-wrap: wrap;
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .cfvsw_variations_form {
  z-index: 1;
  position: absolute;
  top: 49.154589372%;
  right: 10px;
}
@media only screen and (max-width: 1279px) {
  body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .cfvsw_variations_form {
    top: 29.4927536232%;
    right: 50%;
    transform: translateX(50%);
  }
}
@media screen and (max-width: 600px) {
  body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .cfvsw_variations_form {
    top: 58.9855072464%;
  }
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .onsale {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 700;
  padding: 5px 12px;
  border-radius: 0;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .outofstock {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #c0bdb8;
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 0;
  z-index: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .featured {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: var(--bg-dark-color);
  color: var(--primary-color);
  font-size: 11px;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 0;
  z-index: 1;
  letter-spacing: 1px;
  text-transform: uppercase;
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .image {
  order: 1;
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  padding: 0;
  border-radius: 0;
  background-color: var(--primary-color);
  margin-bottom: clamp(18px, 1.25vw, 24px);
  overflow: hidden;
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0;
  transition: transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .woocommerce-loop-product__title,
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .price,
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .devocean-delivery-estimate {
  padding: 0 20px;
  color: var(--neutral-color);
  font-weight: 400;
  font-size: clamp(14px, 0.8333333333vw, 16px);
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .woocommerce-loop-product__title {
  order: 2;
  flex: 0 0 80%;
  height: -moz-fit-content;
  height: fit-content;
  align-self: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(15px, 0.9375vw, 18px);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.01em;
  transition: color 0.25s ease;
}
@media only screen and (max-width: 1279px) {
  body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .woocommerce-loop-product__title {
    flex: 0 0 calc(100% - 80px);
  }
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .price {
  order: 4;
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-weight: 400;
  color: var(--accent-color);
  font-family: "Signika", sans-serif;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  margin-top: clamp(8px, 0.625vw, 12px);
  margin-bottom: clamp(14px, 0.9375vw, 18px);
  flex: 0 0 100%;
  letter-spacing: 0.02em;
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .price del {
  font-weight: 400;
  opacity: 0.45;
  text-decoration: line-through;
  font-size: clamp(11px, 0.7291666667vw, 14px);
  color: var(--neutral-color);
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link .devocean-delivery-estimate {
  order: 5;
  padding-top: clamp(10px, 0.7291666667vw, 14px);
  margin-bottom: clamp(18px, 1.4583333333vw, 28px);
  border-top: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  padding-left: 0;
  margin-left: 20px;
  gap: clamp(7px, 0.5208333333vw, 10px);
  font-size: clamp(12px, 0.7291666667vw, 14px);
  opacity: 0.75;
  transition: opacity 0.25s ease;
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link:hover .image img {
  transform: scale(1.06);
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link:hover .woocommerce-loop-product__title {
  color: var(--accent-color);
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .woocommerce-loop-product__link:hover .devocean-delivery-estimate {
  opacity: 1;
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07);
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .add_to_cart_button,
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .added_to_cart {
  order: 3;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: auto;
  border-radius: 0;
  background-color: transparent;
  color: var(--accent-color);
  border: 1px solid var(--accent-color);
  padding: 0 20px;
  font-family: "Signika", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  margin-top: auto;
}
@media only screen and (max-width: 1279px) {
  body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .add_to_cart_button,
  body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .added_to_cart {
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 20px;
  }
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .add_to_cart_button svg,
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .added_to_cart svg {
  width: clamp(18px, 1.3541666667vw, 26px);
  height: clamp(18px, 1.3541666667vw, 26px);
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .add_to_cart_button svg path,
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .added_to_cart svg path {
  fill: var(--accent-color);
  transition: fill 0.25s ease;
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .add_to_cart_button:hover,
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .added_to_cart:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
  border-color: var(--accent-color);
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .add_to_cart_button:hover svg path,
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .added_to_cart:hover svg path {
  fill: var(--primary-color);
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product:has(.added_to_cart) .add_to_cart_button,
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product:has(.added_to_cart) .button.product_type_simple {
  display: none;
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .button.product_type_simple {
  order: 3;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 100%;
  border-radius: 0;
  background-color: transparent;
  color: var(--neutral-color);
  border: 1px solid var(--border-color);
  padding: 0 20px;
  font-family: "Signika", sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: auto;
  margin-top: auto;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
@media only screen and (max-width: 1279px) {
  body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .button.product_type_simple {
    flex: 0 0 auto;
    margin-left: auto;
    margin-right: 20px;
  }
}
body.single-product .woocommerce-main-wrapper .related.products ul.products li.product .button.product_type_simple:hover {
  background-color: var(--neutral-color);
  color: var(--primary-color);
  border-color: var(--neutral-color);
}

.blog-archive-container {
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  .blog-archive-container {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .blog-archive-container {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .blog-archive-container {
    padding-inline: 25px;
  }
}
.blog-archive-container {
  padding-block: clamp(40px, 3.125vw, 60px);
  padding-top: 0;
}
.blog-archive-container .blog-archive-hero-wrapper {
  position: relative;
  width: 100%;
  height: 287px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: clamp(40px, 3.125vw, 60px);
}
.blog-archive-container .blog-archive-hero-wrapper .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}
.blog-archive-container .blog-archive-hero-wrapper .background img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(90%) brightness(0.5);
}
.blog-archive-container .blog-archive-hero-wrapper .blog-archive__title h1 {
  color: var(--primary-color);
  font-size: clamp(32px, 2.5vw, 48px);
  font-weight: 600;
  text-align: center;
}
.blog-archive-container .blog-archive__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 1.5625vw, 30px);
  margin-bottom: clamp(40px, 3.125vw, 60px);
}
@media only screen and (max-width: 1279px) {
  .blog-archive-container .blog-archive__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .blog-archive-container .blog-archive__grid {
    grid-template-columns: 1fr;
  }
}
.blog-archive-container .blog-archive__grid .blog-archive__item {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-archive-container .blog-archive__grid .blog-archive__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.blog-archive-container .blog-archive__grid .blog-archive__item:hover .blog-archive__thumbnail img {
  transform: scale(1.05);
}
.blog-archive-container .blog-archive__grid .blog-archive__item > a {
  display: block;
}
.blog-archive-container .blog-archive__grid .blog-archive__item .blog-archive__thumbnail {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.blog-archive-container .blog-archive__grid .blog-archive__item .blog-archive__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-archive-container .blog-archive__grid .blog-archive__item .blog-archive__content {
  padding: clamp(15px, 1.0416666667vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.blog-archive-container .blog-archive__grid .blog-archive__item .blog-archive__content .blog-archive__title h2 {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  font-weight: 600;
  color: var(--neutral-color);
  margin: 0;
  line-height: 1.4;
}
.blog-archive-container .blog-archive__grid .blog-archive__item .blog-archive__content .blog-archive__title h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-archive-container .blog-archive__grid .blog-archive__item .blog-archive__content .blog-archive__title h2 a:hover {
  color: var(--accent-color);
}
.blog-archive-container .blog-archive__grid .blog-archive__item .blog-archive__content .blog-archive__meta {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: clamp(12px, 0.7291666667vw, 14px);
  color: #666;
}
.blog-archive-container .blog-archive__grid .blog-archive__item .blog-archive__content .blog-archive__meta .blog-archive__date {
  color: #999;
}
.blog-archive-container .blog-archive__grid .blog-archive__item .blog-archive__content .blog-archive__meta .blog-archive__category a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.blog-archive-container .blog-archive__grid .blog-archive__item .blog-archive__content .blog-archive__meta .blog-archive__category a:hover {
  color: var(--neutral-color);
}
.blog-archive-container .pagination-wrapper {
  display: flex;
  justify-content: center;
  margin-top: clamp(30px, 2.0833333333vw, 40px);
}
.blog-archive-container .pagination-wrapper .pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 10px;
  align-items: center;
}
.blog-archive-container .pagination-wrapper .pagination li .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 8px 12px;
  border: none;
  background-color: transparent;
  color: #999;
  text-decoration: none;
  font-weight: 500;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  transition: all 0.3s ease;
  position: relative;
}
.blog-archive-container .pagination-wrapper .pagination li .page-numbers:hover {
  color: var(--neutral-color);
}
.blog-archive-container .pagination-wrapper .pagination li .page-numbers.current {
  color: #4caf50;
}
.blog-archive-container .pagination-wrapper .pagination li .page-numbers.current::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 3px;
  background-color: #4caf50;
  border-radius: 3px 3px 0 0;
}
.blog-archive-container .pagination-wrapper .pagination li .page-numbers.prev::before, .blog-archive-container .pagination-wrapper .pagination li .page-numbers.next::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
}
.blog-archive-container .pagination-wrapper .pagination li .page-numbers span.prev, .blog-archive-container .pagination-wrapper .pagination li .page-numbers span.next {
  display: none;
}
.blog-archive-container .pagination-wrapper .pagination li .page-numbers.prev::before {
  transform: rotate(-135deg);
  margin-right: 4px;
}
.blog-archive-container .pagination-wrapper .pagination li .page-numbers.next::before {
  transform: rotate(45deg);
  margin-left: 4px;
}

.single-post-content {
  padding-block: clamp(40px, 3.125vw, 60px);
  padding-top: 0;
}
.single-post-content .thumbnail {
  width: 100%;
  height: clamp(300px, 26.0416666667vw, 500px);
  margin-bottom: clamp(30px, 2.0833333333vw, 40px);
  overflow: hidden;
  border-radius: 8px;
}
.single-post-content .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.single-post-content .header {
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  .single-post-content .header {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .single-post-content .header {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .single-post-content .header {
    padding-inline: 25px;
  }
}
.single-post-content .header {
  margin: 0 auto;
  margin-bottom: clamp(30px, 2.6041666667vw, 50px);
  max-width: 1200px;
}
.single-post-content .header .post-title h1 {
  color: var(--neutral-color);
  font-size: clamp(28px, 2.0833333333vw, 40px);
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.3;
}
.single-post-content .header .post-meta {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: clamp(12px, 0.7291666667vw, 14px);
  color: #666;
  margin-bottom: 20px;
}
.single-post-content .header .post-meta .post-date {
  color: #999;
}
.single-post-content .header .post-meta .post-category a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.single-post-content .header .post-meta .post-category a:hover {
  color: var(--neutral-color);
}
.single-post-content .post-content {
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  .single-post-content .post-content {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .single-post-content .post-content {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .single-post-content .post-content {
    padding-inline: 25px;
  }
}
.single-post-content .post-content {
  max-width: 1200px;
  margin: 0 auto;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  line-height: 1.8;
  color: var(--neutral-color);
}
.single-post-content .post-content p {
  margin-bottom: 20px;
}
.single-post-content .post-content p strong {
  font-weight: 600;
}
.single-post-content .post-content img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 20px 0;
}
.single-post-content .post-content a {
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.single-post-content .post-content a:hover {
  color: var(--neutral-color);
}
.single-post-content .share {
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  .single-post-content .share {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .single-post-content .share {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .single-post-content .share {
    padding-inline: 25px;
  }
}
.single-post-content .share {
  max-width: 1200px;
  margin: 0 auto;
}
.single-post-content .share .post-share .spotlight-title {
  margin-bottom: 15px;
}
.single-post-content .share .post-share .spotlight-title h2 {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  font-weight: 600;
  color: var(--neutral-color);
}
.single-post-content .share .post-share .spotlight-title h2.violet {
  color: var(--accent-color);
}
.single-post-content .share .post-share .share-buttons {
  display: flex;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.single-post-content .share .post-share .share-buttons .share-button a,
.single-post-content .share .post-share .share-buttons .share-button p {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: all 0.3s ease;
  margin: 0;
}
.single-post-content .share .post-share .share-buttons .share-button a svg,
.single-post-content .share .post-share .share-buttons .share-button p svg {
  width: 20px;
  height: 20px;
}
.single-post-content .share .post-share .share-buttons .share-button a svg path,
.single-post-content .share .post-share .share-buttons .share-button p svg path {
  fill: var(--neutral-color);
  transition: fill 0.3s ease;
}
.single-post-content .share .post-share .share-buttons .share-button a:hover,
.single-post-content .share .post-share .share-buttons .share-button p:hover {
  background-color: var(--accent-color);
}
.single-post-content .share .post-share .share-buttons .share-button a:hover svg path,
.single-post-content .share .post-share .share-buttons .share-button p:hover svg path {
  fill: white;
}
.single-post-content .share .post-share .share-buttons .share-button .copy-link {
  cursor: pointer;
}

.projects-navigation {
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  .projects-navigation {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .projects-navigation {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .projects-navigation {
    padding-inline: 25px;
  }
}
.projects-navigation {
  padding-block: clamp(40px, 3.125vw, 60px);
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}
.projects-navigation .projects-navigation__content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
@media only screen and (max-width: 767px) {
  .projects-navigation .projects-navigation__content {
    flex-direction: column;
  }
}
.projects-navigation .projects-navigation__content .projects-navigation__prev,
.projects-navigation .projects-navigation__content .projects-navigation__next {
  flex: 1;
}
.projects-navigation .projects-navigation__content .projects-navigation__prev a,
.projects-navigation .projects-navigation__content .projects-navigation__next a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.projects-navigation .projects-navigation__content .projects-navigation__prev a svg,
.projects-navigation .projects-navigation__content .projects-navigation__next a svg {
  width: 28px;
  height: 22px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.projects-navigation .projects-navigation__content .projects-navigation__prev a svg path,
.projects-navigation .projects-navigation__content .projects-navigation__next a svg path {
  fill: var(--neutral-color);
  transition: fill 0.3s ease;
}
.projects-navigation .projects-navigation__content .projects-navigation__prev a .text span,
.projects-navigation .projects-navigation__content .projects-navigation__next a .text span {
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 500;
  color: var(--neutral-color);
  transition: color 0.3s ease;
}
.projects-navigation .projects-navigation__content .projects-navigation__prev a:hover svg path,
.projects-navigation .projects-navigation__content .projects-navigation__next a:hover svg path {
  fill: var(--accent-color);
}
.projects-navigation .projects-navigation__content .projects-navigation__prev a:hover .text span,
.projects-navigation .projects-navigation__content .projects-navigation__next a:hover .text span {
  color: var(--accent-color);
}
.projects-navigation .projects-navigation__content .projects-navigation__prev a:hover svg {
  transform: translateX(-5px);
}
.projects-navigation .projects-navigation__content .projects-navigation__next a {
  justify-content: flex-end;
}
.projects-navigation .projects-navigation__content .projects-navigation__next a:hover svg {
  transform: translateX(5px);
}

.posts-related {
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  .posts-related {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  .posts-related {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  .posts-related {
    padding-inline: 25px;
  }
}
.posts-related {
  padding-block: clamp(40px, 3.125vw, 60px);
  background-color: #f9f9f9;
}
.posts-related .related-title {
  font-size: clamp(24px, 1.6666666667vw, 32px);
  font-weight: 600;
  color: var(--neutral-color);
  margin-bottom: clamp(30px, 2.0833333333vw, 40px);
  text-align: center;
}
.posts-related .related-posts-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(20px, 1.5625vw, 30px);
}
@media only screen and (max-width: 1279px) {
  .posts-related .related-posts-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 767px) {
  .posts-related .related-posts-list {
    grid-template-columns: 1fr;
  }
}
.posts-related .related-posts-list .blog-archive__item {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.posts-related .related-posts-list .blog-archive__item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
.posts-related .related-posts-list .blog-archive__item:hover .blog-archive__thumbnail img {
  transform: scale(1.05);
}
.posts-related .related-posts-list .blog-archive__item > a {
  display: block;
}
.posts-related .related-posts-list .blog-archive__item .blog-archive__thumbnail {
  position: relative;
  width: 100%;
  height: 250px;
  overflow: hidden;
}
.posts-related .related-posts-list .blog-archive__item .blog-archive__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.posts-related .related-posts-list .blog-archive__item .blog-archive__content {
  padding: clamp(15px, 1.0416666667vw, 20px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.posts-related .related-posts-list .blog-archive__item .blog-archive__content .blog-archive__title h2 {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  font-weight: 600;
  color: var(--neutral-color);
  margin: 0;
  line-height: 1.4;
}
.posts-related .related-posts-list .blog-archive__item .blog-archive__content .blog-archive__title h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.posts-related .related-posts-list .blog-archive__item .blog-archive__content .blog-archive__title h2 a:hover {
  color: var(--accent-color);
}
.posts-related .related-posts-list .blog-archive__item .blog-archive__content .blog-archive__meta {
  display: flex;
  gap: 15px;
  align-items: center;
  font-size: clamp(12px, 0.7291666667vw, 14px);
  color: #666;
}
.posts-related .related-posts-list .blog-archive__item .blog-archive__content .blog-archive__meta .blog-archive__date {
  color: #999;
}
.posts-related .related-posts-list .blog-archive__item .blog-archive__content .blog-archive__meta .blog-archive__category a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.posts-related .related-posts-list .blog-archive__item .blog-archive__content .blog-archive__meta .blog-archive__category a:hover {
  color: var(--neutral-color);
}

body.woocommerce-cart .page-hero {
  padding-top: var(--hh, 80px);
  padding-bottom: 0;
  position: relative;
  width: 100%;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  text-align: center;
}
body.woocommerce-cart .page-hero__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
body.woocommerce-cart .page-hero__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(90%) brightness(0.5);
}
body.woocommerce-cart .page-hero__content {
  position: relative;
  z-index: 2;
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body.woocommerce-cart .page-hero__content {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  body.woocommerce-cart .page-hero__content {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  body.woocommerce-cart .page-hero__content {
    padding-inline: 25px;
  }
}
body.woocommerce-cart .page-hero__title h1 {
  font-size: clamp(32px, 2.5vw, 48px);
  color: var(--neutral-color);
  font-weight: 600;
}
.no-thumbnail body.woocommerce-cart .page-hero__title h1 {
  color: var(--neutral-color);
}
body.woocommerce-cart .woocommerce {
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body.woocommerce-cart .woocommerce {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  body.woocommerce-cart .woocommerce {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  body.woocommerce-cart .woocommerce {
    padding-inline: 25px;
  }
}
body.woocommerce-cart .woocommerce {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto clamp(300px, 23.4375vw, 450px);
  gap: 20px;
}
@media only screen and (max-width: 1279px) {
  body.woocommerce-cart .woocommerce {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
  margin-bottom: 30px;
  grid-column: span 2;
}
@media only screen and (max-width: 1279px) {
  body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper {
    grid-column: span 1;
  }
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper:empty {
  display: none;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info {
  padding: clamp(15px, 1.0416666667vw, 20px) clamp(20px, 1.5625vw, 30px);
  border-radius: 8px;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message::before,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error::before,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message a,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error a,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info a {
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message a:hover,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error a:hover,
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info a:hover {
  opacity: 0.7;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message {
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message::before {
  background-color: #28a745;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-message a {
  color: #155724;
  text-decoration: underline;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error::before {
  background-color: #dc3545;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error a {
  color: #721c24;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error ul li {
  margin-bottom: 5px;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-error ul li:last-child {
  margin-bottom: 0;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border-left: 4px solid #17a2b8;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info::before {
  background-color: #17a2b8;
}
body.woocommerce-cart .woocommerce .woocommerce-notices-wrapper .woocommerce-info a {
  color: #0c5460;
}
body.woocommerce-cart .woocommerce .wc-empty-cart-message {
  grid-column: 1/-1;
  text-align: center;
  padding: clamp(40px, 4.1666666667vw, 80px) 0;
}
body.woocommerce-cart .woocommerce .wc-empty-cart-message .cart-empty.woocommerce-info {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(20px, 1.4583333333vw, 28px);
  font-weight: 600;
  font-style: italic;
  color: var(--neutral-color);
  background: none;
  border: none;
  padding: 0;
  justify-content: center;
  margin-bottom: clamp(20px, 1.6666666667vw, 32px);
}
body.woocommerce-cart .woocommerce .wc-empty-cart-message .cart-empty.woocommerce-info::before {
  display: none;
}
body.woocommerce-cart .woocommerce .return-to-shop {
  grid-column: 1/-1;
  text-align: center;
  padding-bottom: clamp(40px, 4.1666666667vw, 80px);
}
body.woocommerce-cart .woocommerce .return-to-shop .wc-backward {
  display: inline-flex;
  align-items: center;
  height: 48px;
  padding: 0 36px;
  background-color: var(--neutral-color);
  color: var(--primary-color);
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-decoration: none;
  border: none;
  border-radius: 0;
  transition: background-color 0.25s ease;
}
body.woocommerce-cart .woocommerce .return-to-shop .wc-backward:hover {
  background-color: var(--accent-color);
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form {
  margin-bottom: clamp(40px, 3.125vw, 60px);
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background-color: #f2f2f2;
  border-radius: 20px;
  overflow: hidden;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table thead {
  background-color: var(--neutral-color);
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table thead tr th {
  padding: clamp(15px, 1.0416666667vw, 20px);
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 600;
  color: var(--primary-color);
  text-align: left;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table thead tr th.product-remove, body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table thead tr th.product-thumbnail {
  width: 60px;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table thead tr th.product-quantity {
  width: 150px;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table thead tr th.product-price, body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table thead tr th.product-subtotal {
  width: 120px;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table thead tr th .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item {
  border-bottom: 1px solid #dfdfdf;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item:last-of-type {
  border-bottom: none;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td {
  padding: clamp(20px, 1.5625vw, 30px) clamp(15px, 1.0416666667vw, 20px);
  vertical-align: middle;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-remove {
  z-index: 1;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-remove .remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: transparent;
  color: var(--neutral-color);
  font-size: 24px;
  text-decoration: none;
  transition: all 0.3s ease;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-remove .remove:hover {
  background-color: var(--accent-color);
  color: var(--primary-color);
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-thumbnail a {
  display: block;
  width: 80px;
  height: 80px;
  border-radius: 12px;
  overflow: hidden;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-thumbnail a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-name a {
  font-size: clamp(16px, 0.9375vw, 18px);
  font-weight: 500;
  color: var(--neutral-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-name a:hover {
  color: var(--accent-color);
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-price .woocommerce-Price-amount, body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-subtotal .woocommerce-Price-amount {
  font-size: clamp(16px, 0.9375vw, 18px);
  font-weight: 600;
  color: var(--neutral-color);
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-quantity .quantity input.qty {
  width: 80px;
  height: 45px;
  text-align: center;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  background-color: var(--primary-color);
  font-weight: 500;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-quantity .quantity input.qty:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr:has(.actions) td {
  padding: clamp(20px, 1.5625vw, 30px);
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr:has(.actions) td .coupon {
  display: flex;
  gap: 10px;
  flex: 1;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr:has(.actions) td .coupon .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr:has(.actions) td .coupon #coupon_code {
  flex: 1;
  height: 45px;
  padding: 0 20px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  background-color: var(--primary-color);
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr:has(.actions) td .coupon #coupon_code:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr:has(.actions) td .coupon button {
  height: 45px;
  padding: 0 clamp(20px, 1.6666666667vw, 32px);
  border-radius: 50px;
  border: none;
  background-color: var(--neutral-color);
  color: var(--primary-color);
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr:has(.actions) td .coupon button:hover {
  background-color: var(--accent-color);
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr:has(.actions) td button[name=update_cart] {
  height: 45px;
  padding: 0 clamp(20px, 1.6666666667vw, 32px);
  border-radius: 50px;
  border: 1px solid var(--neutral-color);
  background-color: transparent;
  color: var(--neutral-color);
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr:has(.actions) td button[name=update_cart]:hover:not(:disabled) {
  background-color: var(--neutral-color);
  color: var(--primary-color);
}
body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr:has(.actions) td button[name=update_cart]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
@media only screen and (max-width: 1279px) {
  body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table thead {
    display: none;
  }
  body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 15px;
    padding: 20px;
  }
  body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td {
    padding: 0;
    border: none;
  }
  body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-remove {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
  }
  body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-thumbnail {
    grid-column: 1;
    grid-row: 1/4;
  }
  body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-name {
    grid-column: 2;
    grid-row: 1;
  }
  body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-price {
    grid-column: 2;
    grid-row: 2;
  }
  body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-price::before {
    content: "Price: ";
    font-weight: 400;
    opacity: 0.7;
  }
  body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-quantity {
    grid-column: 1/3;
    grid-row: 3;
  }
  body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-subtotal {
    grid-column: 1/3;
    grid-row: 4;
  }
  body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.cart_item td.product-subtotal::before {
    content: "Subtotal: ";
    font-weight: 400;
    opacity: 0.7;
  }
  body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.actions td {
    flex-direction: column;
    align-items: stretch;
  }
  body.woocommerce-cart .woocommerce .woocommerce-cart-form .shop_table tbody tr.actions td .coupon {
    flex-direction: column;
  }
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: clamp(30px, 2.0833333333vw, 40px);
  margin-left: auto;
  max-width: 500px;
  position: sticky;
  top: clamp(100px, 7.8125vw, 150px);
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals h2 {
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 600;
  color: var(--neutral-color);
  margin-bottom: clamp(20px, 1.5625vw, 30px);
}
@media only screen and (max-width: 1279px) {
  body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals {
    position: static;
    margin-right: auto;
    max-width: unset;
  }
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table {
  width: 100%;
  margin-bottom: clamp(20px, 1.5625vw, 30px);
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr {
  border-bottom: 1px solid #dfdfdf;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr:last-child {
  border-bottom: none;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr th,
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr td {
  padding: clamp(12px, 0.78125vw, 15px) 0;
  font-size: clamp(14px, 0.8333333333vw, 16px);
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr th {
  text-align: left;
  font-weight: 500;
  color: var(--neutral-color);
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr td {
  text-align: right;
  font-weight: 600;
  color: var(--neutral-color);
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.order-total th,
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.order-total td {
  font-size: clamp(18px, 1.0416666667vw, 20px);
  padding-top: clamp(15px, 1.0416666667vw, 20px);
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals th {
  vertical-align: top;
  padding-top: clamp(18px, 1.1458333333vw, 22px);
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals td {
  text-align: left;
  font-weight: 400;
  padding: clamp(10px, 0.625vw, 12px) 0;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals #shipping_method {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals #shipping_method li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background-color: var(--primary-color);
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals #shipping_method li:has(input:checked) {
  border-color: var(--accent-color);
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals #shipping_method li input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 2px solid #c0c0c0;
  border-radius: 50%;
  background-color: var(--primary-color);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals #shipping_method li input[type=radio]:checked {
  border-color: var(--accent-color);
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals #shipping_method li input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-color);
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals #shipping_method li input[type=radio]:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals #shipping_method li label {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  text-align: left;
  font-size: clamp(13px, 0.78125vw, 15px);
  font-weight: 500;
  color: var(--neutral-color);
  line-height: 1.35;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals #shipping_method li label .woocommerce-Price-amount {
  font-weight: 600;
  white-space: nowrap;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals .woocommerce-shipping-destination {
  margin: 12px 0 0;
  font-size: clamp(12px, 0.6770833333vw, 13px);
  color: var(--neutral-color);
  opacity: 0.7;
  line-height: 1.4;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .shop_table tr.woocommerce-shipping-totals .woocommerce-shipping-destination strong {
  font-weight: 600;
  opacity: 1;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button {
  display: block;
  width: 100%;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 600;
  text-decoration: none;
  border: 1px solid var(--accent-color);
  transition: all 0.3s ease;
}
body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals .wc-proceed-to-checkout .checkout-button:hover {
  background-color: var(--primary-color);
  color: var(--neutral-color);
  border-color: var(--neutral-color);
}
body.woocommerce-cart .woocommerce .product-quantity .quantity {
  display: flex;
  align-items: center;
  gap: 6px;
}
body.woocommerce-cart .woocommerce .product-quantity .quantity .qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 45px;
  border-radius: 50px;
  border: 1px solid #ddd;
  background-color: var(--primary-color);
  color: var(--neutral-color);
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
body.woocommerce-cart .woocommerce .product-quantity .quantity .qty-btn:hover {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--primary-color);
}
body.woocommerce-cart .woocommerce .product-quantity .quantity .qty-btn:active {
  transform: scale(0.93);
}
body.woocommerce-cart .woocommerce .product-quantity .quantity input.qty {
  width: 60px;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator {
  margin-top: 12px;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: clamp(13px, 0.7291666667vw, 14px);
  font-weight: 600;
  color: var(--neutral-color);
  text-decoration: none;
  opacity: 0.7;
  transition: opacity 0.2s ease;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-button::before {
  content: "✎";
  font-size: 14px;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-button:hover {
  opacity: 1;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 !important;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin: 0;
  padding: 0;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row label {
  font-size: clamp(12px, 0.6770833333vw, 13px);
  font-weight: 600;
  color: var(--neutral-color);
  opacity: 0.75;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row label .optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  opacity: 0.6;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row select.country_select,
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row select.state_select {
  width: 100%;
  height: 45px;
  padding: 0 16px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: clamp(14px, 0.78125vw, 15px);
  background-color: var(--primary-color);
  color: var(--neutral-color);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row select.country_select:focus,
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row select.state_select:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
  border-color: transparent;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row .select2-container {
  width: 100% !important;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row .select2-container .select2-selection--single {
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 50px;
  background-color: var(--primary-color);
  display: flex;
  align-items: center;
  padding: 0 36px 0 16px;
  transition: border-color 0.2s ease;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row .select2-container .select2-selection--single:focus, body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row .select2-container .select2-selection--single:focus-within {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row .select2-container .select2-selection--single .select2-selection__rendered {
  font-size: clamp(14px, 0.78125vw, 15px);
  color: var(--neutral-color);
  line-height: 1;
  padding: 0;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row .select2-container .select2-selection--single .select2-selection__arrow {
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row .select2-container .select2-selection--single .select2-selection__arrow b {
  border-color: #999 transparent transparent transparent;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row .select2-container.select2-container--open .select2-selection--single {
  border-color: var(--accent-color);
  border-radius: 50px;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row input.input-text {
  width: 100%;
  height: 45px;
  padding: 0 20px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: clamp(14px, 0.78125vw, 15px);
  background-color: var(--primary-color);
  color: var(--neutral-color);
  transition: border-color 0.2s ease;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row input.input-text::-moz-placeholder {
  opacity: 0.4;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row input.input-text::placeholder {
  opacity: 0.4;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form .form-row input.input-text:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
  border-color: transparent;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form p:last-child {
  margin: 4px 0 0;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form p:last-child button[name=calc_shipping] {
  height: 45px;
  padding: 0 clamp(20px, 1.6666666667vw, 32px);
  border-radius: 50px;
  border: none;
  background-color: var(--neutral-color);
  color: var(--primary-color);
  font-size: clamp(14px, 0.78125vw, 15px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
body.woocommerce-cart .woocommerce .woocommerce-shipping-calculator .shipping-calculator-form p:last-child button[name=calc_shipping]:hover {
  background-color: var(--accent-color);
}

body.woocommerce-checkout .page-hero {
  padding-top: var(--hh, 80px);
  padding-bottom: 0;
  position: relative;
  width: 100%;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  text-align: center;
}
body.woocommerce-checkout .page-hero__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
body.woocommerce-checkout .page-hero__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(90%) brightness(0.5);
}
body.woocommerce-checkout .page-hero__content {
  position: relative;
  z-index: 2;
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body.woocommerce-checkout .page-hero__content {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  body.woocommerce-checkout .page-hero__content {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  body.woocommerce-checkout .page-hero__content {
    padding-inline: 25px;
  }
}
body.woocommerce-checkout .page-hero__title h1 {
  font-size: clamp(32px, 2.5vw, 48px);
  color: var(--neutral-color);
  font-weight: 600;
}
.no-thumbnail body.woocommerce-checkout .page-hero__title h1 {
  color: var(--neutral-color);
}
body.woocommerce-checkout .woocommerce {
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body.woocommerce-checkout .woocommerce {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  body.woocommerce-checkout .woocommerce {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  body.woocommerce-checkout .woocommerce {
    padding-inline: 25px;
  }
}
body.woocommerce-checkout .woocommerce {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  -moz-column-gap: clamp(30px, 3.90625vw, 75px);
       column-gap: clamp(30px, 3.90625vw, 75px);
  margin-bottom: 50px;
}
@media only screen and (max-width: 1279px) {
  body.woocommerce-checkout .woocommerce {
    grid-template-columns: 1fr;
    margin-bottom: 50px;
  }
}
body.woocommerce-checkout .woocommerce .woocommerce-notices-wrapper {
  grid-column: 1/-1;
  margin-bottom: 20px;
}
body.woocommerce-checkout .woocommerce .woocommerce-notices-wrapper:empty {
  display: none;
}
body.woocommerce-checkout .woocommerce .woocommerce-form-coupon-toggle {
  margin-bottom: 30px;
  height: -moz-fit-content;
  height: fit-content;
}
body.woocommerce-checkout .woocommerce .woocommerce-form-coupon-toggle .woocommerce-info {
  background-color: #f2f2f2;
  padding: clamp(15px, 1.0416666667vw, 20px);
  border-radius: 8px;
  font-size: clamp(14px, 0.8333333333vw, 16px);
}
body.woocommerce-checkout .woocommerce .woocommerce-form-coupon-toggle .woocommerce-info a.showcoupon {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
body.woocommerce-checkout .woocommerce .woocommerce-form-coupon-toggle .woocommerce-info a.showcoupon:hover {
  color: var(--neutral-color);
}
body.woocommerce-checkout .woocommerce .checkout_coupon {
  background-color: #f2f2f2;
  padding: clamp(20px, 1.5625vw, 30px);
  border-radius: 20px;
  margin-bottom: 30px;
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}
body.woocommerce-checkout .woocommerce .checkout_coupon .form-row {
  margin: 0;
  flex: 1;
  min-width: 250px;
}
body.woocommerce-checkout .woocommerce .checkout_coupon .form-row label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body.woocommerce-checkout .woocommerce .checkout_coupon .form-row .input-text {
  width: 100%;
  height: 45px;
  padding: 0 20px;
  border: 1px solid #ddd;
  border-radius: 50px;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  background-color: var(--primary-color);
}
body.woocommerce-checkout .woocommerce .checkout_coupon .form-row .input-text:focus {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
body.woocommerce-checkout .woocommerce .checkout_coupon .form-row .button {
  height: 45px;
  padding: 0 clamp(20px, 1.6666666667vw, 32px);
  border-radius: 50px;
  border: none;
  background-color: var(--neutral-color);
  color: var(--primary-color);
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}
body.woocommerce-checkout .woocommerce .checkout_coupon .form-row .button:hover {
  background-color: var(--accent-color);
}
body.woocommerce-checkout .woocommerce .checkout_coupon .clear {
  display: none;
}
body.woocommerce-checkout .woocommerce form.checkout {
  grid-column: 1;
  display: contents;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set {
  grid-column: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 {
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: clamp(30px, 2.0833333333vw, 40px);
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 h3,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 h3 {
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 600;
  color: var(--neutral-color);
  margin-bottom: clamp(20px, 1.5625vw, 30px);
  padding-bottom: 20px;
  border-bottom: 1px solid #d0d0d0;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row-wide,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row-wide,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row-wide,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row-wide,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row-wide,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row-wide {
  grid-column: 1/-1;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row {
  margin: 0;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid label {
  color: #c0392b;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper select {
  border-color: #c0392b;
  background-color: #fff8f8;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .select2-container .select2-selection--single,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .select2-container .select2-selection--single,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .select2-container .select2-selection--single,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .select2-container .select2-selection--single,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .select2-container .select2-selection--single,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .select2-container .select2-selection--single {
  border-color: #c0392b;
  background-color: #fff8f8;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .checkout-inline-error-message,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .checkout-inline-error-message,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row .checkout-inline-error-message,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row .checkout-inline-error-message,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .checkout-inline-error-message,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row .checkout-inline-error-message {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 6px 0 0;
  padding: 0;
  font-size: clamp(12px, 0.6770833333vw, 13px);
  font-weight: 500;
  color: #c0392b;
  line-height: 1.4;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .checkout-inline-error-message::before,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .checkout-inline-error-message::before,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row .checkout-inline-error-message::before,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row .checkout-inline-error-message::before,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .checkout-inline-error-message::before,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row .checkout-inline-error-message::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #c0392b;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row label {
  display: block;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 500;
  color: var(--neutral-color);
  margin-bottom: 8px;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row label .required,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row label .required,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row label .required,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row label .required,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row label .required,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row label .required {
  color: var(--accent-color);
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row label.screen-reader-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row label.screen-reader-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row label.screen-reader-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row label.screen-reader-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row label.screen-reader-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row label.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper {
  display: block;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea {
  width: 100%;
  padding: 5px 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  background-color: var(--primary-color);
  color: var(--neutral-color);
  height: 45px;
  box-sizing: border-box;
  padding: 0 16px;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper select:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper select:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper select:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper select:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper select:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper select:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea:focus {
  outline: 1px solid var(--accent-color);
  border-color: var(--accent-color);
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper textarea {
  height: 100px !important;
  padding: 15px 20px !important;
  resize: vertical;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection {
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: var(--primary-color);
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection .select2-selection__rendered,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection .select2-selection__rendered,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection .select2-selection__rendered,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection .select2-selection__rendered,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection .select2-selection__rendered,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection .select2-selection__rendered {
  line-height: 45px;
  padding-left: 20px;
  color: var(--neutral-color);
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection .select2-selection__arrow,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection .select2-selection__arrow,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection .select2-selection__arrow,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection .select2-selection__arrow,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection .select2-selection__arrow,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection .select2-selection__arrow {
  height: 43px;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid select {
  border-color: var(--accent-color);
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid label,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid label {
  color: #c0392b;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper select,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper select {
  border-color: #c0392b;
  background-color: #fff8f8;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .select2-container .select2-selection--single,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .select2-container .select2-selection--single,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .select2-container .select2-selection--single,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .select2-container .select2-selection--single,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .select2-container .select2-selection--single,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .select2-container .select2-selection--single {
  border-color: #c0392b;
  background-color: #fff8f8;
}
@media only screen and (max-width: 767px) {
  body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-billing-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-shipping-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 .woocommerce-additional-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-billing-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields__field-wrapper,
  body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-additional-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-1 wc-order-attribution-inputs,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 wc-order-attribution-inputs {
  display: none;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 {
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: clamp(30px, 2.0833333333vw, 40px);
}
@media only screen and (max-width: 1279px) {
  body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 {
    margin-bottom: 40px;
  }
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields h3#ship-to-different-address {
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 600;
  color: var(--neutral-color);
  margin-bottom: 0;
  padding-bottom: 20px;
  border-bottom: 1px solid #d0d0d0;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields h3#ship-to-different-address .woocommerce-form__label-for-checkbox {
  display: flex;
  align-items: center;
  gap: 14px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields h3#ship-to-different-address .woocommerce-form__label-for-checkbox input#ship-to-different-address-checkbox {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: relative;
  flex-shrink: 0;
  width: 44px;
  height: 24px;
  border-radius: 50px;
  background-color: #d0d0d0;
  border: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields h3#ship-to-different-address .woocommerce-form__label-for-checkbox input#ship-to-different-address-checkbox::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  transition: transform 0.25s ease;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields h3#ship-to-different-address .woocommerce-form__label-for-checkbox input#ship-to-different-address-checkbox:checked {
  background-color: var(--neutral-color);
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields h3#ship-to-different-address .woocommerce-form__label-for-checkbox input#ship-to-different-address-checkbox:checked::after {
  transform: translateX(20px);
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields h3#ship-to-different-address .woocommerce-form__label-for-checkbox input#ship-to-different-address-checkbox:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields h3#ship-to-different-address .woocommerce-form__label-for-checkbox span {
  font-size: clamp(20px, 1.25vw, 24px);
  font-weight: 600;
  color: var(--neutral-color);
  line-height: 1.2;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address {
  margin-top: clamp(20px, 1.5625vw, 30px);
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row-wide {
  grid-column: 1/-1;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row {
  margin: 0;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row label {
  display: block;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 500;
  color: var(--neutral-color);
  margin-bottom: 8px;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row label .required {
  color: var(--accent-color);
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row label .optional {
  font-weight: 400;
  opacity: 0.6;
  font-size: 0.9em;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row label.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper {
  display: block;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper select {
  width: 100%;
  height: 45px;
  padding: 5px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  background-color: var(--primary-color);
  color: var(--neutral-color);
  transition: border-color 0.2s ease;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .input-text:focus,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper select:focus {
  outline: 1px solid var(--accent-color);
  border-color: var(--accent-color);
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container {
  width: 100% !important;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection--single {
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: var(--primary-color);
  transition: border-color 0.2s ease;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection--single .select2-selection__rendered {
  line-height: 45px;
  padding-left: 16px;
  color: var(--neutral-color);
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container .select2-selection--single .select2-selection__arrow {
  height: 43px;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row .woocommerce-input-wrapper .select2-container.select2-container--open .select2-selection--single {
  border-color: var(--accent-color);
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid select {
  border-color: var(--accent-color);
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid label {
  color: #c0392b;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .input-text,
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper select {
  border-color: #c0392b;
  background-color: #fff8f8;
}
body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper .form-row.woocommerce-invalid .woocommerce-input-wrapper .select2-container .select2-selection--single {
  border-color: #c0392b;
  background-color: #fff8f8;
}
@media only screen and (max-width: 767px) {
  body.woocommerce-checkout .woocommerce form.checkout .col2-set .col-2 .woocommerce-shipping-fields .shipping_address .woocommerce-shipping-fields__field-wrapper {
    grid-template-columns: 1fr;
  }
}
body.woocommerce-checkout .woocommerce form.checkout #order_review_heading {
  display: none;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review {
  grid-column: 2;
  grid-row: 1/5;
  position: sticky;
  top: clamp(100px, 7.8125vw, 150px);
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: clamp(30px, 2.0833333333vw, 40px);
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 1279px) {
  body.woocommerce-checkout .woocommerce form.checkout #order_review {
    position: static;
    grid-column: 1;
    grid-row: auto;
  }
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: clamp(20px, 1.5625vw, 30px);
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table thead th {
  padding: clamp(12px, 0.78125vw, 15px) 0;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-weight: 600;
  color: var(--neutral-color);
  text-align: left;
  border-bottom: 1px solid #d0d0d0;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table thead th.product-total {
  text-align: right;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tbody tr.cart_item {
  border-bottom: 1px solid #dfdfdf;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tbody tr.cart_item td {
  padding: clamp(12px, 0.78125vw, 15px) 0;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  color: var(--neutral-color);
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tbody tr.cart_item td.product-name {
  font-weight: 500;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tbody tr.cart_item td.product-name .product-quantity {
  font-weight: 400;
  opacity: 0.7;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tbody tr.cart_item td.product-total {
  text-align: right;
  font-weight: 600;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr {
  border-bottom: 1px solid #dfdfdf;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr:last-child {
  border-bottom: none;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr th,
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr td {
  padding: clamp(12px, 0.78125vw, 15px) 0;
  font-size: clamp(14px, 0.8333333333vw, 16px);
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr th {
  text-align: left;
  font-weight: 500;
  color: var(--neutral-color);
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr td {
  text-align: right;
  font-weight: 600;
  color: var(--neutral-color);
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.order-total th,
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.order-total td {
  font-size: clamp(18px, 1.0416666667vw, 20px);
  font-weight: 700;
  padding-top: clamp(15px, 1.0416666667vw, 20px);
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.woocommerce-shipping-totals th {
  vertical-align: top;
  padding-top: clamp(18px, 1.1458333333vw, 22px) !important;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.woocommerce-shipping-totals td {
  padding: clamp(10px, 0.625vw, 12px) 0 !important;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.woocommerce-shipping-totals #shipping_method {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.woocommerce-shipping-totals #shipping_method li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background-color: var(--primary-color);
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.woocommerce-shipping-totals #shipping_method li:has(input:checked) {
  border-color: var(--accent-color);
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.woocommerce-shipping-totals #shipping_method li input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 2px solid #c0c0c0;
  border-radius: 50%;
  background-color: var(--primary-color);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.woocommerce-shipping-totals #shipping_method li input[type=radio]:checked {
  border-color: var(--accent-color);
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.woocommerce-shipping-totals #shipping_method li input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-color);
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.woocommerce-shipping-totals #shipping_method li input[type=radio]:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.woocommerce-shipping-totals #shipping_method li label {
  flex: 1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  text-align: left;
  font-size: clamp(13px, 0.78125vw, 15px);
  font-weight: 500;
  color: var(--neutral-color);
  line-height: 1.35;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.woocommerce-shipping-totals #shipping_method li label .woocommerce-Price-amount {
  font-weight: 600;
  white-space: nowrap;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.woocommerce-shipping-totals #shipping_method li #box_now_delivery_button {
  flex-basis: 100%;
  margin: 4px 0 0;
  padding: 8px 14px;
  border: none;
  border-radius: 50px;
  font-size: clamp(12px, 0.6770833333vw, 13px);
  font-weight: 600;
  color: #fff;
  cursor: pointer;
  transition: filter 0.2s ease;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .shop_table tfoot tr.woocommerce-shipping-totals #shipping_method li #box_now_delivery_button:hover {
  filter: brightness(0.92);
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .wc_payment_methods li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin: 0;
  background-color: var(--primary-color);
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: border-color 0.2s ease;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .wc_payment_methods li:has(input:checked) {
  border-color: var(--accent-color);
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .wc_payment_methods li > input[type=radio] {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin: 0;
  border: 2px solid #c0c0c0;
  border-radius: 50%;
  background-color: var(--primary-color);
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s ease;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .wc_payment_methods li > input[type=radio]:checked {
  border-color: var(--accent-color);
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .wc_payment_methods li > input[type=radio]:checked::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent-color);
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .wc_payment_methods li > input[type=radio]:focus-visible {
  outline: 2px solid var(--accent-color);
  outline-offset: 2px;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .wc_payment_methods li > label {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  cursor: pointer;
  font-size: clamp(13px, 0.78125vw, 15px);
  font-weight: 500;
  color: var(--neutral-color);
  line-height: 1.35;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .wc_payment_methods li > label img {
  max-height: 50px;
  width: auto;
  margin-left: auto;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .wc_payment_methods li .payment_box {
  flex-basis: 100%;
  margin: 4px 0 0;
  padding: 12px 14px;
  background-color: #f7f7f7;
  border: 1px solid #ececec;
  border-radius: 6px;
  font-size: clamp(12px, 0.7291666667vw, 14px);
  color: var(--neutral-color);
  line-height: 1.5;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .wc_payment_methods li .payment_box p {
  margin: 0;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .wc_payment_methods li .woocommerce-info {
  margin: 0;
  font-size: clamp(14px, 0.8333333333vw, 16px);
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: 20px;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
  font-size: clamp(12px, 0.7291666667vw, 14px);
  color: var(--neutral-color);
  opacity: 0.8;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text a {
  color: var(--accent-color);
  text-decoration: none;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .place-order .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text a:hover {
  text-decoration: underline;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .place-order #place_order {
  display: block;
  width: 100%;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 600;
  border: 1px solid var(--accent-color);
  cursor: pointer;
  transition: all 0.3s ease;
}
body.woocommerce-checkout .woocommerce form.checkout #order_review .woocommerce-checkout-payment .place-order #place_order:hover {
  background-color: var(--primary-color);
  color: var(--neutral-color);
  border-color: var(--neutral-color);
}

body.woocommerce-order-pay .page-hero {
  padding-top: var(--hh, 80px);
  padding-bottom: 0;
  position: relative;
  width: 100%;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  text-align: center;
}
body.woocommerce-order-pay .page-hero__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
body.woocommerce-order-pay .page-hero__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(90%) brightness(0.5);
}
body.woocommerce-order-pay .page-hero__content {
  position: relative;
  z-index: 2;
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body.woocommerce-order-pay .page-hero__content {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  body.woocommerce-order-pay .page-hero__content {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  body.woocommerce-order-pay .page-hero__content {
    padding-inline: 25px;
  }
}
body.woocommerce-order-pay .page-hero__title h1 {
  font-size: clamp(32px, 2.5vw, 48px);
  color: var(--neutral-color);
  font-weight: 600;
}
.no-thumbnail body.woocommerce-order-pay .page-hero__title h1 {
  color: var(--neutral-color);
}
body.woocommerce-order-pay .woocommerce {
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body.woocommerce-order-pay .woocommerce {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  body.woocommerce-order-pay .woocommerce {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  body.woocommerce-order-pay .woocommerce {
    padding-inline: 25px;
  }
}
body.woocommerce-order-pay .woocommerce {
  max-width: 800px;
  margin: 0 auto;
  margin-bottom: clamp(50px, 4.1666666667vw, 80px);
  grid-template-columns: 1fr;
}
body.woocommerce-order-pay .woocommerce .woocommerce-notices-wrapper {
  margin-bottom: 30px;
}
body.woocommerce-order-pay .woocommerce .woocommerce-notices-wrapper:empty {
  display: none;
}
body.woocommerce-order-pay .woocommerce #order_review {
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: clamp(30px, 2.0833333333vw, 40px);
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: clamp(30px, 2.0833333333vw, 40px);
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table thead th {
  padding: clamp(12px, 0.78125vw, 15px) 0;
  font-size: clamp(16px, 0.9375vw, 18px);
  font-weight: 600;
  color: var(--neutral-color);
  text-align: left;
  border-bottom: 2px solid #d0d0d0;
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table thead th.product-quantity, body.woocommerce-order-pay .woocommerce #order_review .shop_table thead th.product-total {
  text-align: right;
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table thead th.product-quantity {
  width: 80px;
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table thead th.product-total {
  width: 120px;
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table tbody tr.order_item {
  border-bottom: 1px solid #dfdfdf;
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table tbody tr.order_item td {
  padding: clamp(12px, 0.78125vw, 15px) 0;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  color: var(--neutral-color);
  vertical-align: middle;
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table tbody tr.order_item td.product-name {
  font-weight: 500;
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table tbody tr.order_item td.product-quantity, body.woocommerce-order-pay .woocommerce #order_review .shop_table tbody tr.order_item td.product-subtotal {
  text-align: right;
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table tbody tr.order_item td.product-quantity .product-quantity {
  font-weight: 400;
  opacity: 0.8;
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table tbody tr.order_item td.product-subtotal {
  font-weight: 600;
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table tfoot tr {
  border-bottom: 1px solid #dfdfdf;
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table tfoot tr:last-child {
  border-bottom: none;
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table tfoot tr th {
  padding: clamp(12px, 0.78125vw, 15px) 0;
  text-align: left;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 500;
  color: var(--neutral-color);
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table tfoot tr td.product-total {
  padding: clamp(12px, 0.78125vw, 15px) 0;
  text-align: right;
  font-weight: 600;
  color: var(--neutral-color);
  font-size: clamp(14px, 0.8333333333vw, 16px);
}
body.woocommerce-order-pay .woocommerce #order_review .shop_table tfoot tr:last-child th,
body.woocommerce-order-pay .woocommerce #order_review .shop_table tfoot tr:last-child td {
  font-size: clamp(18px, 1.0416666667vw, 20px);
  font-weight: 700;
  padding-top: clamp(15px, 1.0416666667vw, 20px);
}
@media only screen and (max-width: 767px) {
  body.woocommerce-order-pay .woocommerce #order_review .shop_table thead {
    display: none;
  }
  body.woocommerce-order-pay .woocommerce #order_review .shop_table tbody tr.order_item {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    padding: 15px 0;
  }
  body.woocommerce-order-pay .woocommerce #order_review .shop_table tbody tr.order_item td {
    padding: 0;
  }
  body.woocommerce-order-pay .woocommerce #order_review .shop_table tbody tr.order_item td.product-name {
    grid-column: 1/-1;
    margin-bottom: 5px;
  }
  body.woocommerce-order-pay .woocommerce #order_review .shop_table tbody tr.order_item td.product-quantity {
    grid-column: 1;
    text-align: left;
  }
  body.woocommerce-order-pay .woocommerce #order_review .shop_table tbody tr.order_item td.product-quantity::before {
    content: "Qty: ";
    font-weight: 600;
  }
  body.woocommerce-order-pay .woocommerce #order_review .shop_table tbody tr.order_item td.product-subtotal {
    grid-column: 2;
  }
  body.woocommerce-order-pay .woocommerce #order_review .shop_table tfoot tr {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
body.woocommerce-order-pay .woocommerce #order_review #payment .wc_payment_methods {
  list-style: none;
  padding: 0;
  margin: 0 0 clamp(20px, 1.5625vw, 30px);
}
body.woocommerce-order-pay .woocommerce #order_review #payment .wc_payment_methods li {
  padding: 15px;
  background-color: var(--primary-color);
  border-radius: 8px;
  margin-bottom: 10px;
}
body.woocommerce-order-pay .woocommerce #order_review #payment .wc_payment_methods li .woocommerce-info {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  color: var(--neutral-color);
}
body.woocommerce-order-pay .woocommerce #order_review #payment .wc_payment_methods li .woocommerce-info::before {
  display: none;
}
body.woocommerce-order-pay .woocommerce #order_review #payment .form-row .woocommerce-terms-and-conditions-wrapper {
  margin-bottom: clamp(20px, 1.5625vw, 30px);
}
body.woocommerce-order-pay .woocommerce #order_review #payment .form-row .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text {
  font-size: clamp(12px, 0.7291666667vw, 14px);
  color: var(--neutral-color);
  opacity: 0.8;
  line-height: 1.6;
}
body.woocommerce-order-pay .woocommerce #order_review #payment .form-row .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text p {
  margin: 0;
}
body.woocommerce-order-pay .woocommerce #order_review #payment .form-row .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text a {
  color: var(--accent-color);
  text-decoration: none;
}
body.woocommerce-order-pay .woocommerce #order_review #payment .form-row .woocommerce-terms-and-conditions-wrapper .woocommerce-privacy-policy-text a:hover {
  text-decoration: underline;
}
body.woocommerce-order-pay .woocommerce #order_review #payment .form-row #place_order {
  display: block;
  width: 100%;
  height: 55px;
  line-height: 55px;
  text-align: center;
  border-radius: 50px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 600;
  border: 1px solid var(--accent-color);
  cursor: pointer;
  transition: all 0.3s ease;
}
body.woocommerce-order-pay .woocommerce #order_review #payment .form-row #place_order:hover {
  background-color: var(--primary-color);
  color: var(--neutral-color);
  border-color: var(--neutral-color);
}
body.woocommerce-order-pay .woocommerce #order_review #payment .form-row input[type=hidden] {
  display: none;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-error,
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-info {
  padding: clamp(15px, 1.0416666667vw, 20px) clamp(20px, 1.5625vw, 30px);
  border-radius: 8px;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-message::before,
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-error::before,
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-info::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-message a,
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-error a,
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-info a {
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-message a:hover,
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-error a:hover,
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-info a:hover {
  opacity: 0.7;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-message {
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-message::before {
  background-color: #28a745;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-message a {
  color: #155724;
  text-decoration: underline;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-error {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-error::before {
  background-color: #dc3545;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-error a {
  color: #721c24;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-error ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-error ul li {
  margin-bottom: 5px;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-error ul li:last-child {
  margin-bottom: 0;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border-left: 4px solid #17a2b8;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-info::before {
  background-color: #17a2b8;
}
body.woocommerce-order-pay .woocommerce-notices-wrapper .woocommerce-info a {
  color: #0c5460;
}

body.woocommerce-account .page-hero {
  padding-top: var(--hh, 80px);
  padding-bottom: 0;
  position: relative;
  width: 100%;
  min-height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-bottom: 60px;
  text-align: center;
}
body.woocommerce-account .page-hero__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
}
body.woocommerce-account .page-hero__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  filter: grayscale(100%) contrast(90%) brightness(0.5);
}
body.woocommerce-account .page-hero__content {
  position: relative;
  z-index: 2;
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body.woocommerce-account .page-hero__content {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  body.woocommerce-account .page-hero__content {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  body.woocommerce-account .page-hero__content {
    padding-inline: 25px;
  }
}
body.woocommerce-account .page-hero__title h1 {
  font-size: clamp(32px, 2.5vw, 48px);
  color: var(--neutral-color);
  font-weight: 600;
}
.no-thumbnail body.woocommerce-account .page-hero__title h1 {
  color: var(--neutral-color);
}
body.woocommerce-account .woocommerce {
  padding-inline: 110px;
}
@media only screen and (min-width: 1280px) and (max-width: 1499px) {
  body.woocommerce-account .woocommerce {
    padding-inline: 60px;
  }
}
@media only screen and (min-width: 768px) and (max-width: 1279px) {
  body.woocommerce-account .woocommerce {
    padding-inline: 40px;
  }
}
@media only screen and (max-width: 767px) {
  body.woocommerce-account .woocommerce {
    padding-inline: 25px;
  }
}
body.woocommerce-account .woocommerce {
  max-width: 1920px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: clamp(300px, 20.8333333333vw, 400px) 1fr;
  gap: clamp(30px, 3.90625vw, 75px);
  align-items: flex-start;
  margin-bottom: clamp(50px, 4.1666666667vw, 80px);
}
@media only screen and (max-width: 1279px) {
  body.woocommerce-account .woocommerce {
    grid-template-columns: 1fr;
  }
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: clamp(30px, 2.0833333333vw, 40px);
  position: sticky;
  top: clamp(100px, 7.8125vw, 150px);
}
@media only screen and (max-width: 1279px) {
  body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation {
    position: static;
  }
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li {
  margin-bottom: 5px;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li:last-child {
  margin-bottom: 0;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a {
  display: block;
  padding: clamp(12px, 0.78125vw, 15px);
  font-size: clamp(16px, 0.9375vw, 18px);
  color: var(--neutral-color);
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li a:hover {
  background-color: rgba(0, 0, 0, 0.05);
  color: var(--accent-color);
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-navigation ul li.is-active > a {
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-weight: 600;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content {
  background-color: #f2f2f2;
  border-radius: 20px;
  padding: clamp(30px, 2.0833333333vw, 40px);
  min-width: 0;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper {
  margin-bottom: clamp(20px, 1.5625vw, 30px);
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-notices-wrapper:empty {
  display: none;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content p {
  font-size: clamp(14px, 0.8333333333vw, 16px);
  color: var(--neutral-color);
  line-height: 1.6;
  margin-bottom: 20px;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content p a {
  color: var(--accent-color);
  font-weight: 600;
  text-decoration: none;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content p a:hover {
  text-decoration: underline;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content p strong {
  font-weight: 600;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content p mark {
  background-color: var(--accent-color);
  color: var(--primary-color);
  padding: 0.2em 0.4em;
  border-radius: 4px;
  font-weight: 600;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content h2 {
  font-size: clamp(24px, 1.6666666667vw, 32px);
  font-weight: 600;
  color: var(--neutral-color);
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content h3 {
  font-size: clamp(18px, 1.0416666667vw, 20px);
  font-weight: 600;
  color: var(--neutral-color);
  margin: clamp(20px, 1.5625vw, 30px) 0 clamp(15px, 1.0416666667vw, 20px);
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: clamp(20px, 1.5625vw, 30px);
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table thead tr {
  background-color: var(--neutral-color);
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table thead th {
  padding: clamp(15px, 1.0416666667vw, 20px);
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 600;
  color: var(--primary-color);
  text-align: left;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr {
  border-bottom: 1px solid #d0d0d0;
  transition: background-color 0.3s ease;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr:last-of-type {
  border-bottom: none;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody td {
  padding: clamp(15px, 1.0416666667vw, 20px);
  font-size: clamp(14px, 0.8333333333vw, 16px);
  color: var(--neutral-color);
  vertical-align: middle;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody td a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody td a:hover {
  text-decoration: underline;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody td .woocommerce-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: var(--accent-color);
  color: var(--primary-color);
  font-size: clamp(12px, 0.7291666667vw, 14px);
  font-weight: 600;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody td .woocommerce-button:hover {
  background-color: var(--neutral-color);
  color: var(--primary-color);
}
@media only screen and (max-width: 1279px) {
  body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table thead {
    display: none;
  }
  body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody tr {
    display: block;
    margin-bottom: 20px;
    border: 1px solid #d0d0d0;
    border-radius: 10px;
  }
  body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody td {
    display: block;
    text-align: right;
    padding: 10px 15px;
    border-bottom: 1px dashed #ddd;
  }
  body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody td:last-child {
    border-bottom: none;
  }
  body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-orders-table tbody td::before {
    content: attr(data-title);
    float: left;
    font-weight: 600;
  }
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Address {
  background-color: var(--primary-color);
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  padding: clamp(20px, 1.5625vw, 30px);
  margin-bottom: clamp(20px, 1.5625vw, 30px);
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #d0d0d0;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header h3 {
  margin: 0;
  font-size: clamp(18px, 1.0416666667vw, 20px);
  font-weight: 600;
  color: var(--neutral-color);
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit {
  font-size: clamp(14px, 0.8333333333vw, 16px);
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Address header .edit:hover {
  text-decoration: underline;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-Address address {
  font-style: normal;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  color: var(--neutral-color);
  line-height: 1.8;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row {
  margin-bottom: 20px;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row label {
  display: block;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 500;
  color: var(--neutral-color);
  margin-bottom: 8px;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row label .required {
  color: var(--accent-color);
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row .input-text,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row select,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row textarea {
  width: 100%;
  height: 45px;
  padding: 0 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  background-color: var(--primary-color);
  color: var(--neutral-color);
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row .input-text:focus,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row select:focus,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row textarea:focus {
  outline: 1px solid var(--accent-color);
  border-color: var(--accent-color);
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row textarea {
  height: 100px;
  padding: 15px 20px;
  resize: vertical;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row-first,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row-last {
  width: calc(50% - 10px);
  display: inline-block;
}
@media only screen and (max-width: 767px) {
  body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row-first,
  body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row-last {
    width: 100%;
  }
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row-first {
  margin-right: 20px;
}
@media only screen and (max-width: 767px) {
  body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .form-row-first {
    margin-right: 0;
  }
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form button[type=submit],
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .button {
  height: 45px;
  padding: 0 clamp(20px, 1.6666666667vw, 32px);
  border-radius: 50px;
  border: none;
  background-color: var(--accent-color);
  color: var(--neutral-color);
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form button[type=submit]:hover,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content form .button:hover {
  background-color: var(--primary-color);
  color: var(--neutral-color);
  border: 1px solid var(--neutral-color);
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details {
  margin-top: clamp(30px, 2.0833333333vw, 40px);
  padding: 0;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #d0d0d0;
  border-radius: 10px;
  overflow: hidden;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table thead th {
  padding: clamp(15px, 1.0416666667vw, 20px);
  background-color: var(--neutral-color);
  color: var(--primary-color);
  font-size: clamp(14px, 0.8333333333vw, 16px);
  font-weight: 600;
  text-align: left;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table tbody tr,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table tfoot tr {
  border-bottom: 1px solid #d0d0d0;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table tbody tr:last-child,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table tfoot tr:last-child {
  border-bottom: none;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table tbody th,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table tbody td,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table tfoot th,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table tfoot td {
  padding: clamp(12px, 0.78125vw, 15px);
  font-size: clamp(14px, 0.8333333333vw, 16px);
  color: var(--neutral-color);
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table tbody th,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table tfoot th {
  font-weight: 500;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table tbody td,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table tfoot td {
  font-weight: 600;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table tfoot .order-total th,
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-order-details .shop_table tfoot .order-total td {
  font-size: clamp(16px, 0.9375vw, 18px);
  font-weight: 700;
}
body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details {
  padding: 0;
  margin-top: clamp(30px, 2.0833333333vw, 40px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(20px, 1.5625vw, 30px);
}
@media only screen and (max-width: 767px) {
  body.woocommerce-account .woocommerce .woocommerce-MyAccount-content .woocommerce-customer-details {
    grid-template-columns: 1fr;
  }
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 460px;
  margin: 0 auto;
  gap: 0 !important;
  padding-bottom: clamp(60px, 5.2083333333vw, 100px);
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) > h2 {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 2.0833333333vw, 40px);
  font-weight: 600;
  color: var(--neutral-color);
  margin-bottom: clamp(24px, 1.875vw, 36px);
  text-align: center;
  position: relative;
  padding-bottom: clamp(14px, 1.0416666667vw, 20px);
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) > h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 1px;
  background-color: var(--accent-color);
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 2.0833333333vw, 40px);
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login .woocommerce-form-row {
  margin-bottom: 20px;
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login .woocommerce-form-row label {
  display: block;
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--neutral-color);
  margin-bottom: 8px;
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login .woocommerce-form-row label .required {
  color: var(--accent-color);
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login .woocommerce-form-row label .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login .woocommerce-form-row .input-text {
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: none;
  border-bottom: 1px solid var(--border-color);
  border-radius: 0;
  font-family: "Comfortaa", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 15px;
  color: var(--neutral-color);
  background-color: transparent;
  transition: border-color 0.25s ease;
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login .woocommerce-form-row .input-text:focus {
  outline: none;
  border-color: var(--accent-color);
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login .woocommerce-form-row .password-input {
  position: relative;
  display: block;
  width: 100%;
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login .woocommerce-form-row .password-input .show-password-input {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  color: var(--text-color);
  transition: color 0.25s ease;
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login .woocommerce-form-row .password-input .show-password-input:hover {
  color: var(--neutral-color);
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login .woocommerce-form-row .password-input .show-password-input::after {
  content: "👁";
  font-size: 16px;
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login > .form-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(8px, 0.625vw, 12px);
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login > .form-row .woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: var(--text-color);
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login > .form-row .woocommerce-form-login__rememberme input[type=checkbox] {
  width: 16px;
  height: 16px;
  border: 1px solid var(--border-color);
  border-radius: 0;
  -webkit-appearance: auto;
     -moz-appearance: auto;
          appearance: auto;
  cursor: pointer;
  accent-color: var(--accent-color);
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login > .form-row .woocommerce-form-login__submit {
  height: 48px;
  padding: 0 40px;
  background-color: var(--neutral-color);
  color: var(--primary-color);
  font-family: "Signika", "Open Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: none;
  border-radius: 0;
  cursor: pointer;
  margin-top: clamp(20px, 1.5625vw, 30px);
  transition: background-color 0.25s ease;
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login > .form-row .woocommerce-form-login__submit:hover {
  background-color: var(--accent-color);
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login .woocommerce-LostPassword {
  margin-top: clamp(16px, 1.25vw, 24px);
  text-align: center;
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login .woocommerce-LostPassword a {
  font-family: "Comfortaa", "Open Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 14px;
  color: var(--text-color);
  text-decoration: underline;
  transition: color 0.25s ease;
}
body.woocommerce-account .woocommerce:has(.woocommerce-form-login):not(:has(.woocommerce-MyAccount-navigation)) .woocommerce-form-login .woocommerce-LostPassword a:hover {
  color: var(--accent-color);
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message,
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error,
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info {
  padding: clamp(15px, 1.0416666667vw, 20px) clamp(20px, 1.5625vw, 30px);
  border-radius: 8px;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  margin-bottom: 20px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 10px;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message::before,
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error::before,
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message a,
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error a,
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info a {
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s ease;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message a:hover,
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error a:hover,
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info a:hover {
  opacity: 0.7;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message {
  background-color: #d4edda;
  color: #155724;
  border-left: 4px solid #28a745;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message::before {
  background-color: #28a745;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-message a {
  color: #155724;
  text-decoration: underline;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error {
  background-color: #f8d7da;
  color: #721c24;
  border-left: 4px solid #dc3545;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error::before {
  background-color: #dc3545;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error a {
  color: #721c24;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error ul li {
  margin-bottom: 5px;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-error ul li:last-child {
  margin-bottom: 0;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info {
  background-color: #d1ecf1;
  color: #0c5460;
  border-left: 4px solid #17a2b8;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info::before {
  background-color: #17a2b8;
}
body.woocommerce-account .woocommerce-notices-wrapper .woocommerce-info a {
  color: #0c5460;
}