@import url("https://fonts.googleapis.com/css2?family=Libre+Caslon+Text:ital,wght@0,400;0,700;1,400&family=Manrope:wght@300;400;500;600;700&display=swap");
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

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

:root {
  --header-height: 3.75rem;
}
@media (min-width: 768px) {
  :root {
    --header-height: 4.375rem;
  }
}
@media (min-width: 1200px) {
  :root {
    --header-height: 5rem;
  }
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
  color: #333333;
  background-color: #ffffff;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2D190D;
}

h1 {
  font-size: 1.875rem;
}
@media (min-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }
}
@media (min-width: 1200px) {
  h1 {
    font-size: 3rem;
  }
}

h2 {
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  h2 {
    font-size: 1.875rem;
  }
}

h3 {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  h3 {
    font-size: 1.5rem;
  }
}

h4 {
  font-size: 1.125rem;
}

h5 {
  font-size: 1rem;
}

h6 {
  font-size: 0.875rem;
}

strong,
b {
  font-weight: 700;
}

small {
  font-size: 0.875rem;
}

a {
  color: #54bcbf;
  text-decoration: none;
  transition: color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: 0.8;
  }
}

input {
  font-family: "Manrope", sans-serif;
}

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

button {
  cursor: pointer;
}

::selection {
  background-color: rgba(84, 188, 191, 0.3);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .container {
    padding-left: 0;
    padding-right: 0;
  }
}

.site-main__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .site-main__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .site-main__container {
    padding-left: 0;
    padding-right: 0;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 700;
  padding: 0.75rem 1rem;
  background-color: #2D190D;
  color: #ffffff;
  font-weight: 500;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .skip-link {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.skip-link:focus {
  clip: auto;
  width: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  white-space: normal;
}

.site-main {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  min-height: 100dvh;
}
.admin-bar .site-main {
  min-height: calc(100vh - 46px);
  min-height: calc(100dvh - 46px);
}
@media (min-width: 783px) {
  .admin-bar .site-main {
    min-height: calc(100vh - 32px);
    min-height: calc(100dvh - 32px);
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background-color: #ffffff;
  height: 4.375rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.admin-bar .header {
  top: 46px;
}
@media (min-width: 783px) {
  .admin-bar .header {
    top: 32px;
  }
}
@media (min-width: 1200px) {
  .header {
    position: sticky;
  }
  .admin-bar .header {
    top: 46px;
  }
}
@media (min-width: 1200px) and (min-width: 783px) {
  .admin-bar .header {
    top: 32px;
  }
}
.header__container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.375rem;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .header__container {
    padding: 0 1.5rem;
  }
}
@media (min-width: 1200px) {
  .header__container {
    padding: 0 2rem;
  }
}
.header__left {
  display: none;
}
@media (min-width: 768px) {
  .header__left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
  }
}
.header__divider {
  width: 1px;
  height: 1.5rem;
  background-color: rgba(103, 103, 103, 0.2);
  display: none;
}
@media (min-width: 1200px) {
  .header__divider {
    display: block;
  }
}
@media (min-width: 768px) {
  .header__logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
  }
}
.header__logo img {
  height: 2rem;
  width: auto;
}
@media (min-width: 768px) {
  .header__logo img {
    height: 2.5rem;
  }
}
.header__search-wrapper {
  display: none;
  position: relative;
}
@media (min-width: 1200px) {
  .header__search-wrapper {
    display: block;
  }
}
.header__search {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 17.5rem;
  padding-inline: 0.75rem;
  height: 2.5rem;
  background-color: #ffffff;
  border: solid 0.0625rem rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .header__search {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.header__search {
  transition: box-shadow 150ms ease;
}
@media (min-width: 1200px) {
  .header__search {
    width: 20rem;
  }
}
.header__search:focus-within {
  box-shadow: 0 0 0 2px rgba(84, 188, 191, 0.2);
}
.header__search > svg:first-child {
  flex-shrink: 0;
  color: #676767;
}
.header__search input {
  flex: 1;
  min-width: 0;
  padding: 0;
  font-size: 0.875rem;
  color: #676767;
  background: transparent;
  border: none;
}
.header__search input::placeholder {
  color: #676767;
}
.header__search input:focus {
  outline: none;
}
.header__search input::-webkit-search-cancel-button {
  display: none;
}
.header__search-loader {
  display: none;
}
.header__search-loader svg {
  width: 1rem;
  height: 1rem;
  color: #676767;
  animation: spin 1s linear infinite;
}
.header__search-loader--visible {
  display: flex;
}
.header__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  flex: 1;
}
.header__actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.header__info {
  display: none;
}
@media (min-width: 1200px) {
  .header__info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
}
.header__info--mobile {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
@media (min-width: 1200px) {
  .header__info--mobile {
    display: none;
  }
}
.header__budget {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D190D;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .header__budget {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.header__budget svg {
  width: 1rem;
  height: 1rem;
  color: #54bcbf;
}
.header__action {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 2.5rem;
  height: 2.5rem;
  color: #2D190D;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .header__action {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.header__action {
  transition: background-color 150ms ease, color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .header__action:hover {
    background-color: rgb(242.25, 242.25, 242.25);
  }
}
.header__action svg {
  width: 1.25rem;
  height: 1.25rem;
}
.header__badge {
  position: absolute;
  top: -25%;
  right: -25%;
  min-width: 1.125rem;
  height: 1.125rem;
  text-align: center;
  padding: 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #54bcbf;
  border-radius: 9999px;
}
.header__account {
  position: relative;
}

.account-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 100;
  width: 17.5rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .account-dropdown {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.account-dropdown {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 150ms ease, visibility 150ms ease, transform 150ms ease;
}
.account-dropdown--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.account-dropdown__header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.account-dropdown__avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #54bcbf;
  border: none;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .account-dropdown__avatar {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.account-dropdown__avatar--clickable {
  cursor: pointer;
  transition: transform 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .account-dropdown__avatar--clickable:hover {
    transform: scale(1.05);
  }
}
@media (min-width: 1200px) {
  .account-dropdown__avatar--clickable {
    pointer-events: none;
    cursor: default;
  }
  .account-dropdown__avatar--clickable:hover {
    transform: none;
  }
}
.account-dropdown__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
  flex: 1;
}
.account-dropdown__budget {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #54bcbf;
}
.account-dropdown__budget svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}
@media (min-width: 1200px) {
  .account-dropdown__budget {
    display: none;
  }
}
.account-dropdown__store-selector {
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
@media (min-width: 1200px) {
  .account-dropdown__store-selector {
    display: none;
  }
}
.account-dropdown__store-selector .store-selector__dropdown {
  position: static;
  opacity: 1;
  visibility: visible;
  transform: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  max-height: 0;
  overflow: hidden;
  transition: max-height 150ms ease;
}
.account-dropdown__store-selector .store-selector__dropdown--open {
  max-height: 18.75rem;
}
.account-dropdown__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D190D;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-dropdown__email {
  font-size: 0.75rem;
  color: #676767;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.account-dropdown__menu {
  padding: 0.5rem;
}
.account-dropdown__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  font-size: 0.875rem;
  color: #676767;
  text-decoration: none;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .account-dropdown__link {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.account-dropdown__link {
  transition: background-color 150ms ease, color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .account-dropdown__link:hover {
    background-color: #F2EEE8;
    color: #2D190D;
  }
}
.account-dropdown__link svg {
  width: 1rem;
  height: 1rem;
}
.account-dropdown__footer {
  padding: 0.5rem;
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.account-dropdown__logout {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem;
  font-size: 0.875rem;
  color: #dc3545;
  text-decoration: none;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .account-dropdown__logout {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.account-dropdown__logout {
  transition: background-color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .account-dropdown__logout:hover {
    background-color: rgba(220, 53, 69, 0.1);
  }
}
.account-dropdown__logout svg {
  width: 1rem;
  height: 1rem;
}

.main,
.main-inner {
  margin-top: 4.375rem;
}
@media (min-width: 1200px) {
  .main,
  .main-inner {
    margin-top: 0;
  }
}

.main-inner {
  padding: 1rem;
}
@media (min-width: 768px) {
  .main-inner {
    padding: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .main-inner {
    padding: 2rem;
  }
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.search-dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 100;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .search-dropdown {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.search-dropdown {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 150ms ease, visibility 150ms ease, transform 150ms ease;
}
.search-dropdown--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.search-dropdown__empty {
  display: none;
  padding: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: #676767;
}
.search-dropdown__empty--visible {
  display: block;
}
.search-dropdown__results {
  max-height: 25rem;
  overflow-y: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.search-dropdown__results::-webkit-scrollbar {
  display: none;
}
.search-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  text-decoration: none;
  transition: background-color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .search-dropdown__item:hover {
    background-color: #F2EEE8;
  }
}
.search-dropdown__item--active {
  background-color: #F2EEE8;
}
.search-dropdown__item:first-child {
  border-radius: calc(0.75rem - 1px) calc(0.75rem - 1px) 0 0;
}
.search-dropdown__item:last-child {
  border-radius: 0 0 calc(0.75rem - 1px) calc(0.75rem - 1px);
}
.search-dropdown__item:only-child {
  border-radius: calc(0.75rem - 1px);
}
.search-dropdown__image {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background-color: #F2EEE8;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .search-dropdown__image {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.search-dropdown__image {
  overflow: hidden;
}
.search-dropdown__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-dropdown__content {
  flex: 1;
  min-width: 0;
}
.search-dropdown__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-dropdown__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #676767;
}
.search-dropdown__category {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 7.5rem;
}
.search-dropdown__price {
  font-weight: 600;
  color: #2D190D;
}
.search-dropdown__stock {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}
.search-dropdown__stock--in-stock {
  color: #28a745;
}
.search-dropdown__stock--out-of-stock {
  color: #dc3545;
}
.search-dropdown__stock svg {
  width: 0.75rem;
  height: 0.75rem;
}

@media (min-width: 1200px) {
  .header__action--search {
    display: none;
  }
}

.search-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  display: flex;
  opacity: 0;
  visibility: hidden;
  transition: opacity 150ms ease, visibility 150ms ease;
}
.search-modal--open {
  opacity: 1;
  visibility: visible;
}
.search-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(51, 51, 51, 0.5);
}
.search-modal__content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #ffffff;
}
.search-modal__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.admin-bar .search-modal__header {
  padding-top: calc(1rem + 46px);
}
@media (min-width: 783px) {
  .admin-bar .search-modal__header {
    padding-top: calc(1rem + 32px);
  }
}
.search-modal__form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
  position: relative;
}
.search-modal__form > svg:first-child {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #676767;
}
.search-modal__form input[type=search] {
  flex: 1;
  min-width: 0;
  padding: 0;
  font-size: 1rem;
  color: #2D190D;
  background: transparent;
  border: none;
}
.search-modal__form input[type=search]::placeholder {
  color: #676767;
}
.search-modal__form input[type=search]:focus {
  outline: none;
}
.search-modal__form input[type=search]::-webkit-search-cancel-button {
  display: none;
}
.search-modal__loader {
  display: none;
  flex-shrink: 0;
}
.search-modal__loader svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #676767;
  animation: spin 1s linear infinite;
}
.search-modal__loader--visible {
  display: flex;
}
.search-modal__close {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  color: #2D190D;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .search-modal__close {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.search-modal__close {
  transition: background-color 150ms ease, color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .search-modal__close:hover {
    background-color: rgb(242.25, 242.25, 242.25);
  }
}
.search-modal__close svg {
  width: 1.25rem;
  height: 1.25rem;
}
.search-modal__body {
  flex: 1;
  overflow-y: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.search-modal__body::-webkit-scrollbar {
  display: none;
}
.search-modal__empty {
  display: none;
  padding: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #676767;
}
.search-modal__empty--visible {
  display: block;
}
.search-modal__results {
  display: flex;
  flex-direction: column;
}
.search-modal__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  text-decoration: none;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
  transition: background-color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .search-modal__item:hover {
    background-color: #F2EEE8;
  }
}
.search-modal__item--active {
  background-color: #F2EEE8;
}
.search-modal__image {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  background-color: #F2EEE8;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .search-modal__image {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.search-modal__image {
  overflow: hidden;
}
.search-modal__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-modal__product-content {
  flex: 1;
  min-width: 0;
}
.search-modal__name {
  font-size: 1rem;
  font-weight: 500;
  color: #2D190D;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.search-modal__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #676767;
}
.search-modal__category {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 9.375rem;
}
.search-modal__price {
  font-weight: 600;
  color: #2D190D;
}
.search-modal__stock {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.search-modal__stock--in-stock {
  color: #28a745;
}
.search-modal__stock--out-of-stock {
  color: #dc3545;
}
.search-modal__stock svg {
  width: 0.875rem;
  height: 0.875rem;
}

.store-selector {
  position: relative;
}
.store-selector__toggle {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .store-selector__toggle {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.store-selector__toggle {
  transition: background-color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .store-selector__toggle:hover {
    background-color: #F2EEE8;
  }
}
.store-selector__toggle > svg:first-child {
  width: 1rem;
  height: 1rem;
  color: #54bcbf;
}
.store-selector__current {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
  max-width: 9.375rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.store-selector__arrow {
  width: 0.875rem;
  height: 0.875rem;
  color: #676767;
  transition: transform 150ms ease;
}
[aria-expanded=true] .store-selector__arrow {
  transform: rotate(180deg);
}
.store-selector__single {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  height: 2.5rem;
  padding: 0 0.75rem;
  font-size: 0.875rem;
  color: #2D190D;
  background-color: #F2EEE8;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .store-selector__single {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.store-selector__single > svg:first-child {
  width: 1rem;
  height: 1rem;
  color: #54bcbf;
}
.store-selector__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  right: 0;
  z-index: 100;
  min-width: 17.5rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .store-selector__dropdown {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.store-selector__dropdown {
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.5rem);
  transition: opacity 150ms ease, visibility 150ms ease, transform 150ms ease;
}
.store-selector__dropdown--open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.store-selector__header {
  padding: 0.75rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #676767;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.store-selector__list {
  max-height: 18.75rem;
  overflow-y: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.store-selector__list::-webkit-scrollbar {
  display: none;
}
.store-selector__item {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
  padding: 0.75rem 1rem;
  text-align: left;
  transition: background-color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .store-selector__item:hover {
    background-color: #F2EEE8;
  }
}
.store-selector__item--active {
  background-color: rgba(84, 188, 191, 0.05);
}
.store-selector__item--active .store-selector__item-name {
  color: #54bcbf;
}
.store-selector__item:disabled {
  cursor: default;
}
.store-selector__item:last-child {
  border-radius: 0 0 calc(0.75rem - 1px) calc(0.75rem - 1px);
}
.store-selector__item-name {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
}
.store-selector__item-code {
  font-size: 0.75rem;
  color: #676767;
}
.store-selector__item-check {
  width: 1rem;
  height: 1rem;
  color: #54bcbf;
}

.footer {
  background-color: #ffffff;
  color: #333333;
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
  padding: 1rem;
}
@media (min-width: 768px) {
  .footer {
    padding: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .footer {
    padding: 2rem;
  }
}
.footer__top {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
}
@media (min-width: 768px) {
  .footer__top {
    grid-template-columns: 1fr 1fr;
    padding: 3rem 0;
  }
}
@media (min-width: 1200px) {
  .footer__top {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
  }
}
.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.footer__logo {
  height: 2.5rem;
  width: fit-content;
}
.footer__nav, .footer__support {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .footer__nav, .footer__support {
    grid-column: auto;
  }
}
.footer__title {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #333333;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer__link {
  font-size: 0.875rem;
  color: rgba(51, 51, 51, 0.7);
  text-decoration: none;
  transition: color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__link:hover {
    color: #333333;
  }
}
.footer__link--small {
  font-size: 0.75rem;
  color: rgba(51, 51, 51, 0.5);
}
.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(51, 51, 51, 0.7);
}
.footer__contact-item svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #54bcbf;
  flex-shrink: 0;
}
.footer__contact-item a {
  color: rgba(51, 51, 51, 0.7);
  text-decoration: none;
  transition: color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .footer__contact-item a:hover {
    color: #333333;
  }
}
.footer__bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
  text-align: center;
  padding-block-start: 2rem;
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
@media (min-width: 768px) {
  .footer__bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer__copyright {
  font-size: 0.75rem;
  color: rgba(51, 51, 51, 0.5);
}
.footer__legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1rem;
}
@media (min-width: 768px) {
  .footer__legal {
    justify-content: flex-end;
  }
}

.product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-card {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.product-card {
  overflow: hidden;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  transition: box-shadow 300ms ease, transform 300ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover {
    box-shadow: 0 0.5rem 1.5rem rgba(51, 51, 51, 0.1);
    transform: translateY(-0.25rem);
  }
}
.product-card__media {
  position: relative;
  aspect-ratio: 1;
}
@supports not (aspect-ratio: 1) {
  .product-card__media::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}
.product-card__media {
  overflow: hidden;
  background-color: #F2EEE8;
}
.product-card__link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
  transition: opacity 300ms ease, transform 300ms ease;
}
.product-card__image--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-card__image--hover {
    opacity: 1;
  }
}
.product-card__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #F2EEE8;
}
.product-card__placeholder-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #676767;
}
.product-card__badges {
  position: absolute;
  top: 0.5rem;
  left: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  z-index: 2;
}
.product-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-card__badge {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.product-card__badge--sale {
  background-color: #54bcbf;
  color: #ffffff;
}
.product-card__badge--new {
  background-color: #2D190D;
  color: #ffffff;
}
.product-card__quick-add {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background-color: #ffffff;
  color: #333333;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-card__quick-add {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.product-card__quick-add {
  opacity: 0;
  transform: translateY(0.625rem);
  transition: all 300ms ease;
  z-index: 3;
}
.product-card__quick-add svg {
  width: 1.125rem;
  height: 1.125rem;
}
@media (hover: hover) and (pointer: fine) {
  .product-card__quick-add:hover {
    background-color: #333333;
    color: #ffffff;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-card__quick-add {
    opacity: 1;
    transform: translateY(0);
  }
}
.product-card__content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 1rem;
  background-color: #ffffff;
  transition: background-color 300ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-card__content {
    background-color: #F2EEE8;
  }
}
.product-card__text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex-grow: 1;
  min-width: 0;
}
.product-card__title {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  color: #333333;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-card__stock {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 9999px;
  z-index: 2;
}
.product-card__stock--in {
  background-color: #28a745;
}
.product-card__stock--partial {
  background-color: #ffc107;
}
.product-card__stock--out {
  background-color: #dc3545;
}
.product-card__price {
  font-size: 1.125rem;
  font-weight: 700;
  color: #2D190D;
  flex-shrink: 0;
  white-space: nowrap;
}
.product-card__price del {
  font-size: 0.875rem;
  color: #676767;
}
.product-card__price ins {
  text-decoration: none;
  color: #54bcbf;
}
.product-card__colors {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.product-card__color {
  width: 0.875rem;
  height: 0.875rem;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  background-color: #676767;
  border-radius: 0.25rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-card__color {
      corner-shape: squircle;
      border-radius: 0.5rem;
    }
  }
}
.product-card__color {
  transition: transform 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .product-card__color:hover {
    transform: scale(1.2);
  }
}
.product-card__color-more {
  font-size: 0.75rem;
  color: #676767;
  font-weight: 500;
}

@media (max-width: 767px) {
  .product-card:hover {
    box-shadow: none;
    transform: none;
  }
  .product-card__quick-add {
    display: none;
  }
  .product-card__content {
    gap: 0.25rem;
  }
  .product-card__badge {
    padding: 0.25rem;
    font-size: 0.625rem;
  }
  .product-card__color {
    width: 0.75rem;
    height: 0.75rem;
  }
}
.btn {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.2;
  text-decoration: none;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .btn {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.btn {
  transition: all 150ms ease;
}
@media (min-width: 768px) {
  .btn {
    min-height: 2.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    border-radius: 0.5rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .btn {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.btn svg,
.btn i {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .btn svg,
  .btn i {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.btn:focus-visible {
  outline: none;
}
.btn:disabled, .btn--disabled {
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}
.btn--primary {
  background-color: #2D190D;
  color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .btn--primary:hover {
    background-color: rgb(40.5, 22.5, 11.7);
  }
}
.btn--secondary {
  background-color: #F2EEE8;
  color: #2D190D;
}
@media (hover: hover) and (pointer: fine) {
  .btn--secondary:hover {
    background-color: rgb(229.9, 226.1, 220.4);
  }
}
.btn--outline {
  background-color: transparent;
  color: #2D190D;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .btn--outline:hover {
    background-color: #F2EEE8;
    border-color: #2D190D;
  }
}
.btn--ghost {
  background-color: transparent;
  color: #676767;
}
@media (hover: hover) and (pointer: fine) {
  .btn--ghost:hover {
    background-color: #F2EEE8;
    color: #2D190D;
  }
}
.btn--accent {
  background-color: #54bcbf;
  color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .btn--accent:hover {
    background-color: rgb(75.6, 169.2, 171.9);
  }
}
.btn--white {
  background-color: #ffffff;
  color: #2D190D;
}
@media (hover: hover) and (pointer: fine) {
  .btn--white:hover {
    background-color: #F2EEE8;
  }
}
.btn--danger {
  background-color: #dc3545;
  color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .btn--danger:hover {
    background-color: rgb(198, 47.7, 62.1);
  }
}
.btn--destructive {
  color: #dc3545;
  border-color: rgba(220, 53, 69, 0.3);
}
@media (hover: hover) and (pointer: fine) {
  .btn--destructive:hover {
    background-color: rgba(220, 53, 69, 0.1);
    border-color: #dc3545;
  }
}
.btn--success {
  background-color: #28a745;
  color: #ffffff;
}
@media (hover: hover) and (pointer: fine) {
  .btn--success:hover {
    background-color: rgb(36, 150.3, 62.1);
  }
}
.btn--warning {
  background-color: #ffc107;
  color: #333333;
}
@media (hover: hover) and (pointer: fine) {
  .btn--warning:hover {
    background-color: rgb(229.5, 173.7, 6.3);
  }
}
.btn--sm {
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .btn--sm {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
@media (min-width: 768px) {
  .btn--sm {
    min-height: 2.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
.btn--sm svg,
.btn--sm i {
  width: 0.875rem;
  height: 0.875rem;
}
@media (min-width: 768px) {
  .btn--sm svg,
  .btn--sm i {
    width: 1rem;
    height: 1rem;
  }
}
.btn--lg {
  min-height: 3rem;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .btn--lg {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
@media (min-width: 768px) {
  .btn--lg {
    min-height: 4rem;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 0.75rem;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .btn--lg {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.btn--lg svg,
.btn--lg i {
  width: 1.25rem;
  height: 1.25rem;
}
@media (min-width: 768px) {
  .btn--lg svg,
  .btn--lg i {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.btn--full {
  width: 100%;
}
.btn--full-mobile {
  width: 100%;
}
@media (min-width: 768px) {
  .btn--full-mobile {
    width: auto;
  }
}
.btn--icon {
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.5rem;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .btn--icon {
    min-width: 2.75rem;
    min-height: 2.75rem;
    padding: 0.75rem;
  }
}
.btn--icon.btn--sm {
  min-width: 2.5rem;
  min-height: 2.5rem;
  padding: 0.25rem;
}
@media (min-width: 768px) {
  .btn--icon.btn--sm {
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: 0.5rem;
  }
}
.btn--icon.btn--lg {
  min-width: 3rem;
  min-height: 3rem;
  padding: 0.75rem;
}
@media (min-width: 768px) {
  .btn--icon.btn--lg {
    min-width: 4rem;
    min-height: 4rem;
    padding: 1rem;
  }
}
.btn--pill {
  border-radius: 9999px;
}
.btn--loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}
.btn--loading::after {
  content: "";
  position: absolute;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 9999px;
  animation: btn-spin 0.6s linear infinite;
}
.btn--loading.btn--primary::after, .btn--loading.btn--accent::after, .btn--loading.btn--danger::after, .btn--loading.btn--success::after {
  border-color: #ffffff;
  border-right-color: transparent;
}
.btn--loading.btn--secondary::after, .btn--loading.btn--outline::after, .btn--loading.btn--ghost::after, .btn--loading.btn--warning::after {
  border-color: #2D190D;
  border-right-color: transparent;
}

@keyframes btn-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.btn-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .btn-group {
    flex-direction: row;
    gap: 0;
  }
}
@media (min-width: 768px) {
  .btn-group .btn {
    border-radius: 0;
  }
  .btn-group .btn:first-child {
    border-radius: 0.5rem;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .btn-group .btn:first-child {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
@media (min-width: 768px) {
  .btn-group .btn:last-child {
    border-radius: 0.5rem;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .btn-group .btn:last-child {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
@media (min-width: 768px) {
  .btn-group .btn:not(:first-child) {
    margin-left: -0.0625rem;
  }
}
.btn-group--row {
  flex-direction: row;
  gap: 0;
}
.btn-group--row .btn {
  border-radius: 0;
}
.btn-group--row .btn:first-child {
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .btn-group--row .btn:first-child {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.btn-group--row .btn:first-child {
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}
.btn-group--row .btn:last-child {
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .btn-group--row .btn:last-child {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.btn-group--row .btn:last-child {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}
.btn-group--row .btn:not(:first-child) {
  margin-left: -0.0625rem;
}
.btn-group--full {
  width: 100%;
}
.btn-group--full .btn {
  flex: 1;
}

.form-control, .form-textarea, .form-select {
  width: 100%;
  min-height: 3rem;
  padding: 0.75rem 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.2;
  color: #2D190D;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .form-control, .form-textarea, .form-select {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.form-control, .form-textarea, .form-select {
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
@media (min-width: 768px) {
  .form-control, .form-textarea, .form-select {
    min-height: 2.75rem;
  }
}
.form-control::placeholder, .form-textarea::placeholder, .form-select::placeholder {
  color: #676767;
}
.form-control:focus, .form-textarea:focus, .form-select:focus {
  outline: none;
  border-color: #54bcbf;
  box-shadow: 0 0 0 3px rgba(84, 188, 191, 0.1);
}
.form-control:disabled, .form-textarea:disabled, .form-select:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #F2EEE8;
}
.form-control--sm {
  min-height: 2.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .form-control--sm {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
@media (min-width: 768px) {
  .form-control--sm {
    min-height: 2.5rem;
  }
}
.form-control--lg {
  min-height: 3rem;
  padding: 1rem 1.25rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .form-control--lg {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
@media (min-width: 768px) {
  .form-control--lg {
    min-height: 4rem;
  }
}
.form-control--error {
  border-color: #dc3545;
}
.form-control--error:focus {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.form-select {
  appearance: none;
  padding-right: 2.5rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23676767' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 1rem;
  cursor: pointer;
}
.form-select--sm {
  min-height: 2.5rem;
  padding: 0.5rem 2rem 0.5rem 0.75rem;
  font-size: 0.875rem;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .form-select--sm {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
@media (min-width: 768px) {
  .form-select--sm {
    min-height: 2.5rem;
  }
}
.form-select--lg {
  min-height: 3rem;
  padding: 1rem 3rem 1rem 1.25rem;
  font-size: 1.125rem;
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .form-select--lg {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
@media (min-width: 768px) {
  .form-select--lg {
    min-height: 4rem;
  }
}

.form-textarea {
  min-height: 7.5rem;
  resize: vertical;
}

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
}
.form-label__required {
  color: #dc3545;
}
.form-label__optional {
  font-weight: 400;
  color: #676767;
  font-size: 0.75rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.form-group--inline {
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
}

.form-error {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #dc3545;
}
.form-error svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}

.form-hint {
  font-size: 0.875rem;
  color: #676767;
}

.form-check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.form-check__input {
  appearance: none;
  width: 1.125rem;
  height: 1.125rem;
  margin: 0;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  background-color: #ffffff;
  cursor: pointer;
  transition: all 150ms ease;
}
.form-check__input[type=checkbox] {
  border-radius: 0.25rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .form-check__input[type=checkbox] {
      corner-shape: squircle;
      border-radius: 0.5rem;
    }
  }
}
.form-check__input[type=radio] {
  border-radius: 9999px;
}
.form-check__input:checked {
  background-color: #54bcbf;
  border-color: #54bcbf;
}
.form-check__input[type=checkbox]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-size: 0.75rem;
  background-position: center;
  background-repeat: no-repeat;
}
.form-check__input[type=radio]:checked {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Ccircle cx='12' cy='12' r='6' fill='%23ffffff'/%3E%3C/svg%3E");
  background-size: 0.625rem;
  background-position: center;
  background-repeat: no-repeat;
}
.form-check__input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(84, 188, 191, 0.1);
}
.form-check__input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-check__label {
  font-size: 0.875rem;
  color: #2D190D;
  cursor: pointer;
  user-select: none;
}
.form-check--sm .form-check__input {
  width: 1rem;
  height: 1rem;
}
.form-check--sm .form-check__label {
  font-size: 0.75rem;
}

.form-switch {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.form-switch__input {
  appearance: none;
  position: relative;
  width: 2.75rem;
  height: 1.5rem;
  margin: 0;
  background-color: #F2EEE8;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 9999px;
  cursor: pointer;
  transition: all 150ms ease;
}
.form-switch__input::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 1.125rem;
  height: 1.125rem;
  background-color: #ffffff;
  border-radius: 9999px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  transition: transform 150ms ease;
}
.form-switch__input:checked {
  background-color: #54bcbf;
  border-color: #54bcbf;
}
.form-switch__input:checked::after {
  transform: translateX(1.25rem);
}
.form-switch__input:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(84, 188, 191, 0.1);
}
.form-switch__input:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.form-switch__label {
  font-size: 0.875rem;
  color: #2D190D;
  cursor: pointer;
  user-select: none;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.modal.is-open {
  opacity: 1;
  visibility: visible;
}
.modal.is-open .modal__content {
  transform: translateY(0);
}
.modal__backdrop {
  position: absolute;
  inset: 0;
  background-color: rgba(51, 51, 51, 0.5);
  backdrop-filter: blur(4px);
}
.modal__content {
  position: relative;
  width: 100%;
  max-width: 31.25rem;
  max-height: calc(100vh - 2rem);
  background-color: #ffffff;
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .modal__content {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.modal__content {
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  transform: translateY(1.25rem);
  transition: transform 300ms ease;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .modal__content {
    max-height: calc(100vh - 4rem);
  }
}
.modal__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
@media (min-width: 768px) {
  .modal__header {
    padding: 1.5rem;
  }
}
.modal__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background-color: rgba(84, 188, 191, 0.1);
  border-radius: 9999px;
  flex-shrink: 0;
}
.modal__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #54bcbf;
}
.modal__header-content {
  flex: 1;
  min-width: 0;
}
.modal__title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.125rem;
  color: #2D190D;
}
@media (min-width: 768px) {
  .modal__title {
    font-size: 1.25rem;
  }
}
.modal__subtitle {
  font-size: 0.875rem;
  color: #676767;
}
.modal__close {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  margin-left: auto;
  color: #676767;
  border-radius: 9999px;
  transition: all 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .modal__close:hover {
    background-color: #F2EEE8;
    color: #2D190D;
  }
}
.modal__close svg {
  width: 1.25rem;
  height: 1.25rem;
}
.modal__body {
  padding: 1.25rem;
  overflow-y: auto;
}
@media (min-width: 768px) {
  .modal__body {
    padding: 1.5rem;
  }
}
.modal__footer {
  display: flex;
  gap: 0.75rem;
  padding: 1.25rem;
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
@media (min-width: 768px) {
  .modal__footer {
    padding: 1.5rem;
  }
}
.modal__footer .btn {
  flex: 1;
}
.modal--sm .modal__content {
  max-width: 25rem;
}
.modal--lg .modal__content {
  max-width: 40rem;
}

.modal-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.modal-form__info {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  background-color: rgba(84, 188, 191, 0.08);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .modal-form__info {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.modal-form__info svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #54bcbf;
}
.modal-form__info p {
  font-size: 0.875rem;
  color: #2D190D;
  line-height: 1.75;
}
.modal-form__info--protected {
  background-color: rgba(255, 193, 7, 0.1);
}
.modal-form__info--protected svg {
  color: rgb(204, 154.4, 5.6);
}
.modal-form__fields {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .modal-form__fields {
    grid-template-columns: repeat(2, 1fr);
  }
}
.modal-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .modal-form__field--full {
    grid-column: span 2;
  }
}
.modal-form__label {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
}
.modal-form__required {
  color: #dc3545;
}
.modal-form__optional {
  font-weight: 400;
  color: #676767;
  font-size: 0.75rem;
}
.modal-form__input, .modal-form__select {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #2D190D;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .modal-form__input, .modal-form__select {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.modal-form__input, .modal-form__select {
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.modal-form__input::placeholder, .modal-form__select::placeholder {
  color: #676767;
}
.modal-form__input:focus, .modal-form__select:focus {
  outline: none;
  border-color: #54bcbf;
  box-shadow: 0 0 0 0.1875rem rgba(84, 188, 191, 0.1);
}
.modal-form__select-wrapper {
  position: relative;
}
.modal-form__select {
  appearance: none;
  padding-right: 2.5rem;
  cursor: pointer;
}
.modal-form__select-icon {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  color: #676767;
}
.modal-form__select-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.product-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.product-lightbox--active {
  opacity: 1;
  visibility: visible;
}
.product-lightbox--active .product-lightbox__overlay {
  opacity: 1;
}
.product-lightbox--active .product-lightbox__container {
  transform: scale(1);
  opacity: 1;
}
.product-lightbox__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51, 51, 51, 0.95);
  opacity: 0;
  transition: opacity 300ms ease;
  cursor: zoom-out;
}
.product-lightbox__container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.95);
  opacity: 0;
  transition: transform 300ms ease, opacity 300ms ease;
}
.product-lightbox__content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 1rem;
}
@media (min-width: 768px) {
  .product-lightbox__content {
    padding: 5rem 2rem;
  }
}
.product-lightbox__image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
  aspect-ratio: 1/1;
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-lightbox__image {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.product-lightbox__close {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-lightbox__close {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.product-lightbox__close {
  color: #ffffff;
  transition: background 150ms ease, transform 150ms ease;
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  .product-lightbox__close {
    top: 1.5rem;
    right: 1.5rem;
    width: 3rem;
    height: 3rem;
  }
}
.product-lightbox__close svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 768px) {
  .product-lightbox__close svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-lightbox__close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
  }
}
.product-lightbox__close:active {
  transform: scale(0.95);
}
.product-lightbox__nav-wrapper {
  position: absolute;
  bottom: 4rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  gap: 1rem;
}
@media (min-width: 768px) {
  .product-lightbox__nav-wrapper {
    top: 50%;
    bottom: auto;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    justify-content: space-between;
    padding: 0 1.5rem;
    width: 100%;
  }
}
.product-lightbox__nav {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  width: 2.75rem;
  height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.1);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-lightbox__nav {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.product-lightbox__nav {
  color: #ffffff;
  transition: background 150ms ease, transform 150ms ease, opacity 150ms ease;
  backdrop-filter: blur(8px);
}
@media (min-width: 768px) {
  .product-lightbox__nav {
    width: 3.5rem;
    height: 3.5rem;
  }
}
.product-lightbox__nav svg {
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 768px) {
  .product-lightbox__nav svg {
    width: 1.75rem;
    height: 1.75rem;
  }
}
.product-lightbox__nav:disabled {
  opacity: 0.3;
  cursor: not-allowed;
  pointer-events: none;
}
@media (hover: hover) and (pointer: fine) {
  .product-lightbox__nav:hover:not(:disabled) {
    background: rgba(255, 255, 255, 0.2);
  }
}
.product-lightbox__nav:active:not(:disabled) {
  transform: scale(0.95);
}
.product-lightbox__counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 0.0625rem solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  white-space: nowrap;
}
@media (min-width: 768px) {
  .product-lightbox__counter {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
  }
}

body.product-lightbox-open {
  overflow: hidden;
}

.woocommerce-notices-wrapper:empty {
  display: none;
}
.woocommerce-notices-wrapper:not(:empty) {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-block-end: 1.5rem;
}
@media (min-width: 768px) {
  .woocommerce-notices-wrapper:not(:empty) {
    gap: 1rem;
    margin-block-end: 2rem;
  }
}
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  margin: 0;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .woocommerce-notices-wrapper .woocommerce-message,
    .woocommerce-notices-wrapper .woocommerce-info {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info {
  animation: slideIn 0.3s ease-out;
}
@media (min-width: 768px) {
  .woocommerce-notices-wrapper .woocommerce-message,
  .woocommerce-notices-wrapper .woocommerce-info {
    align-items: center;
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}
.woocommerce-notices-wrapper .woocommerce-message:focus-visible,
.woocommerce-notices-wrapper .woocommerce-info:focus-visible {
  outline: none;
}
.woocommerce-notices-wrapper .woocommerce-message::before,
.woocommerce-notices-wrapper .woocommerce-info::before {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-block-start: 0.125rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media (min-width: 768px) {
  .woocommerce-notices-wrapper .woocommerce-message::before,
  .woocommerce-notices-wrapper .woocommerce-info::before {
    width: 1.5rem;
    height: 1.5rem;
    margin-block-start: 0;
  }
}
.woocommerce-notices-wrapper .woocommerce-message a,
.woocommerce-notices-wrapper .woocommerce-info a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .woocommerce-notices-wrapper .woocommerce-message a:hover,
  .woocommerce-notices-wrapper .woocommerce-info a:hover {
    opacity: 0.8;
  }
}
.woocommerce-notices-wrapper .woocommerce-message a:focus-visible,
.woocommerce-notices-wrapper .woocommerce-info a:focus-visible {
  outline: none;
}
.woocommerce-notices-wrapper .woocommerce-message button:focus-visible,
.woocommerce-notices-wrapper .woocommerce-info button:focus-visible {
  outline: none;
}
.woocommerce-notices-wrapper .woocommerce-error {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  margin: 0;
  list-style: none;
}
.woocommerce-notices-wrapper .woocommerce-error:focus-visible {
  outline: none;
}
.woocommerce-notices-wrapper .woocommerce-error li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.75;
  color: rgb(165, 39.75, 51.75);
  background-color: rgba(220, 53, 69, 0.1);
  border: 0.0625rem solid rgba(220, 53, 69, 0.25);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .woocommerce-notices-wrapper .woocommerce-error li {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.woocommerce-notices-wrapper .woocommerce-error li {
  list-style: none;
  animation: slideIn 0.3s ease-out;
}
@media (min-width: 768px) {
  .woocommerce-notices-wrapper .woocommerce-error li {
    align-items: center;
    padding: 1rem 1.25rem;
    font-size: 1rem;
  }
}
.woocommerce-notices-wrapper .woocommerce-error li::before {
  content: "";
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-block-start: 0.125rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dc3545' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='15' y1='9' x2='9' y2='15'%3E%3C/line%3E%3Cline x1='9' y1='9' x2='15' y2='15'%3E%3C/line%3E%3C/svg%3E");
}
@media (min-width: 768px) {
  .woocommerce-notices-wrapper .woocommerce-error li::before {
    width: 1.5rem;
    height: 1.5rem;
    margin-block-start: 0;
  }
}
.woocommerce-notices-wrapper .woocommerce-error li a {
  color: inherit;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .woocommerce-notices-wrapper .woocommerce-error li a:hover {
    opacity: 0.8;
  }
}
.woocommerce-notices-wrapper .woocommerce-message {
  color: rgb(30, 125.25, 51.75);
  background-color: rgba(40, 167, 69, 0.1);
  border: 0.0625rem solid rgba(40, 167, 69, 0.25);
}
.woocommerce-notices-wrapper .woocommerce-message::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2328a745' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M22 11.08V12a10 10 0 1 1-5.93-9.14'%3E%3C/path%3E%3Cpolyline points='22 4 12 14.01 9 11.01'%3E%3C/polyline%3E%3C/svg%3E");
}
.woocommerce-notices-wrapper .woocommerce-info {
  color: rgb(63, 141, 143.25);
  background-color: rgba(84, 188, 191, 0.1);
  border: 0.0625rem solid rgba(84, 188, 191, 0.25);
}
.woocommerce-notices-wrapper .woocommerce-info::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2354bcbf' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='10'%3E%3C/circle%3E%3Cline x1='12' y1='16' x2='12' y2='12'%3E%3C/line%3E%3Cline x1='12' y1='8' x2='12.01' y2='8'%3E%3C/line%3E%3C/svg%3E");
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.welcome {
  padding: 1.25rem;
  margin-bottom: 1.5rem;
  background-color: #F2EEE8;
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .welcome {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
@media (min-width: 768px) {
  .welcome {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
}
.welcome__title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .welcome__title {
    font-size: 1.5rem;
  }
}
.welcome__subtitle {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #676767;
}
@media (min-width: 768px) {
  .welcome__subtitle {
    font-size: 1rem;
  }
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .stats {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 2rem;
  }
}

.stat-card {
  padding: 1rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .stat-card {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
@media (min-width: 768px) {
  .stat-card {
    padding: 1.25rem;
  }
}
.stat-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 0.75rem;
  background-color: rgba(84, 188, 191, 0.1);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .stat-card__icon {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.stat-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #54bcbf;
}
.stat-card__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D190D;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .stat-card__value {
    font-size: 1.5rem;
  }
}
.stat-card__label {
  margin-top: 0.25rem;
  font-size: 0.75rem;
  color: #676767;
}
@media (min-width: 768px) {
  .stat-card__label {
    font-size: 0.875rem;
  }
}

.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .section-header {
    margin-bottom: 1.5rem;
  }
}
.section-header__title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .section-header__title {
    font-size: 1.25rem;
  }
}
.section-header__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #54bcbf;
  text-decoration: none;
  transition: gap 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .section-header__link:hover {
    gap: 0.5rem;
  }
}
.section-header__link svg {
  width: 1rem;
  height: 1rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    margin-bottom: 2rem;
  }
}
@media (min-width: 1200px) {
  .products-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.quick-categories {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .quick-categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
  }
}
@media (min-width: 1200px) {
  .quick-categories {
    grid-template-columns: repeat(6, 1fr);
  }
}

.quick-category {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  text-decoration: none;
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .quick-category {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.quick-category {
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .quick-category:hover {
    border-color: #54bcbf;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  }
}
.quick-category__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #F2EEE8;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .quick-category__icon {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.quick-category__icon img {
  width: 1.5rem;
  height: 1.5rem;
  object-fit: contain;
}
.quick-category__info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.quick-category__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.quick-category__count {
  font-size: 0.75rem;
  color: #676767;
}

.recent-orders {
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .recent-orders {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.recent-orders {
  overflow: hidden;
}
.recent-orders__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
@media (min-width: 768px) {
  .recent-orders__header {
    padding: 1.25rem;
  }
}
.recent-orders__title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 400;
}
.recent-orders__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #54bcbf;
  text-decoration: none;
  transition: gap 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .recent-orders__link:hover {
    gap: 0.5rem;
  }
}
.recent-orders__link svg {
  width: 1rem;
  height: 1rem;
}
.recent-orders__list {
  display: flex;
  flex-direction: column;
}
.recent-orders__empty {
  padding: 2rem;
  text-align: center;
  color: #676767;
}

.order-row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.75rem;
  padding: 1rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
  text-decoration: none;
  transition: background-color 150ms ease;
}
@media (min-width: 768px) {
  .order-row {
    grid-template-columns: auto 1fr auto auto;
    gap: 1.5rem;
    padding: 1rem 1.25rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .order-row:hover {
    background-color: #F2EEE8;
  }
}
.order-row:last-child {
  border-bottom: none;
}
.order-row__id {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D190D;
}
.order-row__date {
  font-size: 0.875rem;
  color: #676767;
}
@media (max-width: 767px) {
  .order-row__date {
    display: none;
  }
}
.order-row__items {
  font-size: 0.875rem;
  color: #676767;
}
@media (max-width: 767px) {
  .order-row__items {
    display: none;
  }
}
.order-row__status {
  display: inline-flex;
  padding: 0.25rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 9999px;
}
.order-row__status--pending {
  color: rgb(178.5, 135.1, 4.9);
  background-color: rgba(255, 193, 7, 0.15);
}
.order-row__status--processing {
  color: #54bcbf;
  background-color: rgba(84, 188, 191, 0.1);
}
.order-row__status--completed {
  color: #28a745;
  background-color: rgba(40, 167, 69, 0.1);
}
.order-row__status--cancelled {
  color: #dc3545;
  background-color: rgba(220, 53, 69, 0.1);
}

@media (min-width: 1200px) {
  .catalog-layout {
    display: grid;
    grid-template-columns: 17.5rem 1fr;
    grid-template-rows: 1fr auto;
  }
}
@media (min-width: 1200px) {
  .catalog-layout > .filter-sidebar__overlay {
    display: none;
  }
}
@media (min-width: 1200px) {
  .catalog-layout > .filter-sidebar {
    grid-column: 1;
    grid-row: 1/-1;
  }
}
@media (min-width: 1200px) {
  .catalog-layout > .catalog__main {
    grid-column: 2;
    grid-row: 1;
  }
}
.catalog-layout > .footer {
  padding: 1rem;
}
@media (min-width: 768px) {
  .catalog-layout > .footer {
    padding: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .catalog-layout > .footer {
    grid-column: 2;
    grid-row: 2;
    padding: 2rem;
  }
}

.filter-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 500;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 20rem;
  background-color: #ffffff;
  transform: translateX(-100%);
  transition: transform 300ms ease;
}
.admin-bar .filter-sidebar {
  top: 46px;
}
@media (min-width: 783px) {
  .admin-bar .filter-sidebar {
    top: 32px;
  }
}
.filter-sidebar.is-active {
  transform: translateX(0);
}
@media (min-width: 1200px) {
  .filter-sidebar {
    position: sticky;
    top: 4.375rem;
    z-index: 1;
    width: 17.5rem;
    max-width: none;
    height: calc(100vh - 4.375rem);
    flex-shrink: 0;
    border-right: 0.0625rem solid rgba(103, 103, 103, 0.2);
    transform: none;
  }
  .admin-bar .filter-sidebar {
    top: calc(4.375rem + 46px);
    height: calc(100vh - 4.375rem - 46px);
  }
}
@media (min-width: 1200px) and (min-width: 783px) {
  .admin-bar .filter-sidebar {
    top: calc(4.375rem + 32px);
    height: calc(100vh - 4.375rem - 32px);
  }
}
.filter-sidebar__overlay {
  position: fixed;
  inset: 0;
  z-index: 499;
  background-color: rgba(51, 51, 51, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 300ms ease;
}
.admin-bar .filter-sidebar__overlay {
  top: 46px;
}
@media (min-width: 783px) {
  .admin-bar .filter-sidebar__overlay {
    top: 32px;
  }
}
.filter-sidebar__overlay.is-active {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1200px) {
  .filter-sidebar__overlay {
    display: none;
  }
}
.filter-sidebar__header {
  height: 4.375rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.filter-sidebar__title {
  font-size: 1.125rem;
  font-weight: 600;
  margin: 0;
}
.filter-sidebar__close {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: #676767;
  transition: color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .filter-sidebar__close:hover {
    color: #2D190D;
  }
}
@media (min-width: 1200px) {
  .filter-sidebar__close {
    display: none;
  }
}
.filter-sidebar__close svg {
  width: 1.5rem;
  height: 1.5rem;
}
.filter-sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.filter-sidebar__body::-webkit-scrollbar {
  display: none;
}
.filter-sidebar__footer {
  display: flex;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.filter-sidebar__footer .btn {
  flex: 1;
}

.filter-group:not(:last-child) {
  margin-bottom: 0.5rem;
}

.filter-accordion__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  cursor: pointer;
  list-style: none;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.filter-accordion__summary::-webkit-details-marker {
  display: none;
}
.filter-accordion__summary::marker {
  display: none;
}
.filter-accordion__title {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.025em;
}
.filter-accordion__icon {
  width: 1.125rem;
  height: 1.125rem;
  color: #676767;
  transition: transform 150ms ease;
}
.filter-accordion[open] .filter-accordion__icon {
  transform: rotate(180deg);
}
.filter-accordion__content {
  padding: 1rem 0;
}

.filter-switch {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
}
.filter-switch__input {
  display: none;
}
.filter-switch__input:checked + .filter-switch__slider {
  background-color: #54bcbf;
}
.filter-switch__input:checked + .filter-switch__slider::after {
  transform: translateX(1.125rem);
}
.filter-switch__slider {
  position: relative;
  width: 2.625rem;
  height: 1.5rem;
  background-color: rgba(103, 103, 103, 0.2);
  border-radius: 9999px;
  transition: background-color 150ms ease;
}
.filter-switch__slider::after {
  content: "";
  position: absolute;
  top: 0.125rem;
  left: 0.125rem;
  width: 1.25rem;
  height: 1.25rem;
  background-color: #ffffff;
  border-radius: 9999px;
  transition: transform 150ms ease;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
.filter-switch__label {
  font-size: 0.875rem;
  color: #2D190D;
}

.filter-price {
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}
.filter-price__field {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.filter-price__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #676767;
  text-transform: uppercase;
}
.filter-price__input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .filter-price__input {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.filter-price__input {
  font-size: 0.875rem;
  color: #2D190D;
  transition: border-color 150ms ease;
}
.filter-price__input:focus {
  outline: none;
  border-color: #2D190D;
}
.filter-price__input::placeholder {
  color: #676767;
}
.filter-price__separator {
  padding-bottom: 0.5rem;
  color: #676767;
}

.filter-search-wrapper {
  position: relative;
  margin-bottom: 0.75rem;
}
.filter-search-wrapper svg {
  position: absolute;
  top: 50%;
  left: 0.75rem;
  transform: translateY(-50%);
  width: 0.875rem;
  height: 0.875rem;
  color: #676767;
  pointer-events: none;
}

.filter-search {
  width: 100%;
  padding: 0.5rem 2.25rem 0.5rem 2.25rem;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .filter-search {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.filter-search {
  font-size: 0.875rem;
  color: #2D190D;
  transition: border-color 150ms ease;
}
.filter-search:focus {
  outline: none;
  border-color: #2D190D;
}
.filter-search::placeholder {
  color: #676767;
}
.filter-search::-webkit-search-cancel-button {
  display: none;
}

.filter-search-clear {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1rem;
  height: 1rem;
  color: #676767;
  opacity: 0;
  visibility: hidden;
  transition: all 150ms ease;
}
.filter-search-clear.is-visible {
  opacity: 1;
  visibility: visible;
}
@media (hover: hover) and (pointer: fine) {
  .filter-search-clear:hover {
    color: #2D190D;
  }
}
.filter-search-clear svg {
  position: static;
  transform: none;
  width: 0.875rem;
  height: 0.875rem;
  pointer-events: auto;
}

.filter-search-empty {
  display: none;
  padding: 1rem;
  text-align: center;
  font-size: 0.75rem;
  color: #676767;
}
.filter-search-empty.is-visible {
  display: block;
}

.filter-checkboxes {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  max-height: 18.75rem;
  overflow-y: auto;
}
.filter-checkboxes::-webkit-scrollbar {
  width: 0.375rem;
}
.filter-checkboxes::-webkit-scrollbar-track {
  background: #F2EEE8;
  border-radius: 0.25rem;
}
.filter-checkboxes::-webkit-scrollbar-thumb {
  background: rgba(103, 103, 103, 0.2);
  border-radius: 0.25rem;
  transition: background 150ms ease;
}
.filter-checkboxes::-webkit-scrollbar-thumb:hover {
  background: #676767;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  padding: 0.25rem 0;
}
.filter-checkbox__input {
  display: none;
}
.filter-checkbox__input:checked + .filter-checkbox__box {
  background-color: #54bcbf;
  border-color: #54bcbf;
}
.filter-checkbox__input:checked + .filter-checkbox__box::after {
  opacity: 1;
}
.filter-checkbox__box {
  position: relative;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.25rem;
  transition: all 150ms ease;
}
.filter-checkbox__box::after {
  content: "";
  position: absolute;
  top: 0.25rem;
  left: 0.4375rem;
  width: 0.3125rem;
  height: 0.5625rem;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 150ms ease;
}
.filter-checkbox__label {
  font-size: 0.875rem;
  color: #2D190D;
}
@media (hover: hover) and (pointer: fine) {
  .filter-checkbox:hover .filter-checkbox__box {
    border-color: #54bcbf;
  }
}

.catalog__main {
  min-width: 0;
  padding: 1rem;
  margin-top: 4.375rem;
}
@media (min-width: 768px) {
  .catalog__main {
    padding: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .catalog__main {
    margin-top: 0;
    padding: 2rem;
  }
}

@media (min-width: 1200px) {
  .catalog__filter-toggle {
    display: none;
  }
}
.catalog__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 1200px) {
  .catalog__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }
}
.catalog__filters {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.catalog__filters::-webkit-scrollbar {
  display: none;
}
.catalog__filter {
  font-size: 0.875rem;
  font-weight: 500;
  color: #676767;
  text-decoration: none;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  flex-shrink: 0;
  border: solid 0.0625rem rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .catalog__filter {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.catalog__filter {
  transition: all 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .catalog__filter:hover {
    color: #2D190D;
    background-color: rgba(242, 238, 232, 0.5);
  }
}
.catalog__filter--active {
  color: #ffffff;
  background-color: #2D190D;
  border-color: #2D190D;
}
@media (hover: hover) and (pointer: fine) {
  .catalog__filter--active:hover {
    background-color: rgb(40.5, 22.5, 11.7);
    color: #ffffff;
  }
}
.catalog__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .catalog__actions {
    justify-content: flex-start;
  }
}
@media (min-width: 1200px) {
  .catalog__actions {
    justify-content: flex-end;
  }
}
.catalog__sort {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.catalog__divider {
  width: 0.0625rem;
  background-color: rgba(51, 51, 51, 0.3);
}
.catalog__sort-label {
  display: none;
}
@media (min-width: 768px) {
  .catalog__sort-label {
    display: block;
    font-size: 0.875rem;
    color: #676767;
    font-weight: 500;
    white-space: nowrap;
  }
}
.catalog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 992px) {
  .catalog__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .catalog__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.catalog__pagination {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding-top: 2rem;
}
@media (min-width: 768px) {
  .catalog__pagination {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
  }
}
.catalog__pagination-info {
  font-size: 0.875rem;
  color: #676767;
  text-align: center;
}
@media (min-width: 768px) {
  .catalog__pagination-info {
    text-align: left;
    flex: 1;
  }
}
.catalog__pagination-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.catalog__pagination-perpage {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .catalog__pagination-perpage {
    flex: 1;
    justify-content: flex-end;
  }
}
.catalog__pagination-perpage .form-select {
  width: fit-content;
}
.catalog__pagination-perpage-label {
  font-size: 0.875rem;
  color: #676767;
  font-weight: 500;
  white-space: nowrap;
}
.catalog__pagination-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
  text-decoration: none;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .catalog__pagination-link {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.catalog__pagination-link {
  transition: all 150ms ease;
}
.catalog__pagination-link svg {
  width: 1rem;
  height: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .catalog__pagination-link:hover {
    border-color: #2D190D;
    background-color: #F2EEE8;
  }
}
.catalog__pagination-link--disabled {
  color: #676767;
  opacity: 0.5;
  pointer-events: none;
}
.catalog__pagination-pages {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.catalog__pagination-page {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.25rem;
  height: 2.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
  text-decoration: none;
  border: 0.0625rem solid transparent;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .catalog__pagination-page {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.catalog__pagination-page {
  transition: all 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .catalog__pagination-page:hover {
    border-color: rgba(103, 103, 103, 0.2);
    background-color: #F2EEE8;
  }
}
.catalog__pagination-page--current {
  background-color: #2D190D;
  color: #ffffff;
  border-color: #2D190D;
}
.catalog__pagination-ellipsis {
  padding: 0 0.25rem;
  color: #676767;
}
.catalog__empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 20rem;
  padding: 2rem;
}
.catalog__empty-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  text-align: center;
  max-width: 25rem;
}
.catalog__empty-icon {
  width: 3rem;
  height: 3rem;
  color: #676767;
}
.catalog__empty-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D190D;
}
@media (min-width: 768px) {
  .catalog__empty-title {
    font-size: 1.5rem;
  }
}
.catalog__empty-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #676767;
  margin-bottom: 1rem;
}

.product-page__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .product-page__container {
    gap: 2rem;
  }
}
.product-page__breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  overflow: hidden;
}
.product-page__breadcrumb a {
  display: none;
  color: #676767;
  text-decoration: none;
  white-space: nowrap;
  transition: color 150ms ease;
}
@media (min-width: 768px) {
  .product-page__breadcrumb a {
    display: inline;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-page__breadcrumb a:hover {
    color: #54bcbf;
  }
}
.product-page__breadcrumb a:last-of-type {
  display: inline;
}
.product-page__breadcrumb span {
  color: #2D190D;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-page__breadcrumb svg {
  display: none;
  flex-shrink: 0;
  width: 0.875rem;
  height: 0.875rem;
  color: rgba(103, 103, 103, 0.5);
}
@media (min-width: 768px) {
  .product-page__breadcrumb svg {
    display: inline;
  }
}
.product-page__breadcrumb svg:last-of-type {
  display: inline;
}
.product-page__main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .product-page__main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
}
@media (min-width: 1200px) {
  .product-page__main {
    gap: 4rem;
  }
}
.product-page__gallery {
  position: relative;
}
@media (min-width: 768px) {
  .product-page__gallery {
    display: flex;
  }
}
@media (min-width: 992px) {
  .product-page__gallery {
    max-height: calc(100dvh - 4.375rem - 6rem - 1.3125rem);
  }
}
.product-page__info {
  display: flex;
  flex-direction: column;
}
.product-page__tabs {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .product-page__tabs {
    gap: 2rem;
  }
}
.product-page__related {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .product-page__related {
    gap: 2rem;
  }
}
.product-page__related-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) {
  .product-page__related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .product-page__related-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.product-gallery {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .product-gallery {
    position: sticky;
    top: calc(70px + 4rem);
    min-height: 0;
    flex: 1;
  }
}
.product-gallery__main {
  position: relative;
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-gallery__main {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.product-gallery__main {
  overflow: hidden;
  background-color: #F2EEE8;
}
.product-gallery__image {
  position: relative;
  width: 100%;
  height: 100%;
  aspect-ratio: 1/1;
  cursor: zoom-in;
  overflow: hidden;
}
.product-gallery__image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(51, 51, 51, 0);
  transition: background 300ms ease;
  pointer-events: none;
}
.product-gallery__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: rgba(103, 103, 103, 0.2) solid 0.0625rem;
  transition: transform 300ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .product-gallery__image:hover::after {
    background: rgba(51, 51, 51, 0.15);
  }
  .product-gallery__image:hover img {
    transform: scale(1.05);
  }
}
.product-gallery__placeholder {
  aspect-ratio: 1;
}
@supports not (aspect-ratio: 1) {
  .product-gallery__placeholder::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
}
.product-gallery__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #F2EEE8;
}
.product-gallery__placeholder svg {
  width: 4rem;
  height: 4rem;
  color: rgba(103, 103, 103, 0.3);
}
.product-gallery__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-gallery__badge {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.product-gallery__badge {
  z-index: 2;
}
.product-gallery__badge--sale {
  background-color: #54bcbf;
  color: #ffffff;
}
.product-gallery__badge--new {
  background-color: #2D190D;
  color: #ffffff;
}
.product-gallery__thumbs {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-gallery__thumbs::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .product-gallery__thumbs {
    gap: 0.75rem;
  }
}
.product-gallery__thumb {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-gallery__thumb {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.product-gallery__thumb {
  overflow: hidden;
  border: 2px solid transparent;
  transition: border-color 150ms ease;
}
@media (min-width: 768px) {
  .product-gallery__thumb {
    width: 5rem;
    height: 5rem;
  }
}
@media (min-width: 992px) {
  .product-gallery__thumb {
    height: 100%;
  }
}
.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .product-gallery__thumb img {
    object-position: top;
  }
}
.product-gallery__thumb--active, .product-gallery__thumb:hover {
  border-color: #2D190D;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product-info__categories {
  font-size: 0.875rem;
  color: #676767;
}
.product-info__categories a {
  color: #54bcbf;
  text-decoration: none;
}
@media (hover: hover) and (pointer: fine) {
  .product-info__categories a:hover {
    text-decoration: underline;
  }
}
.product-info__title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .product-info__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 1200px) {
  .product-info__title {
    font-size: 2.25rem;
  }
}
.product-info__price {
  font-size: 1.25rem;
  font-weight: 600;
  color: #2D190D;
}
@media (min-width: 768px) {
  .product-info__price {
    font-size: 1.5rem;
  }
}
.product-info__price del {
  font-size: 1rem;
  font-weight: 400;
  color: #676767;
}
.product-info__price ins {
  text-decoration: none;
  color: #54bcbf;
}
.product-info__description {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 1rem;
  color: #676767;
  line-height: 1.75;
}
.product-info__stock {
  display: flex;
  align-items: center;
}
.product-info__stock-status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.product-info__stock-status svg {
  width: 1rem;
  height: 1rem;
}
.product-info__stock-status--in-stock {
  color: #28a745;
}
.product-info__stock-status--out-of-stock {
  color: #dc3545;
}
.product-info__admin-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background-color: rgba(84, 188, 191, 0.1);
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-info__admin-notice {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.product-info__admin-notice {
  font-size: 0.875rem;
  color: #54bcbf;
  width: fit-content;
}
.product-info__admin-notice svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.product-info__meta {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1200px) {
  .product-info__meta {
    grid-template-columns: repeat(4, 1fr);
  }
}
.product-info__meta-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.875rem;
}
.product-info__meta-label {
  color: #676767;
}
.product-info__meta-value {
  color: #2D190D;
  font-weight: 500;
}
.product-info__reassurance {
  margin-block-start: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #F2EEE8;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-info__reassurance {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
@media (min-width: 768px) {
  .product-info__reassurance {
    flex-direction: row;
    justify-content: space-between;
    padding: 1.25rem;
  }
}
.product-info__reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #2D190D;
}
.product-info__reassurance-item svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #54bcbf;
}

.product-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.product-form__variations {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.product-form__variation {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-form__label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D190D;
}
.product-form__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product-form__option {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-form__option {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.product-form__option {
  transition: all 150ms ease;
  text-transform: uppercase;
}
@media (hover: hover) and (pointer: fine) {
  .product-form__option:hover {
    border-color: #2D190D;
  }
}
.product-form__option--selected {
  background-color: #2D190D;
  border-color: #2D190D;
  color: #ffffff;
}
.product-form__option--readonly {
  cursor: default;
  pointer-events: none;
}
.product-form__quantity {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.product-form__quantity-selector {
  display: flex;
  align-items: center;
  width: fit-content;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-form__quantity-selector {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.product-form__quantity-selector {
  overflow: hidden;
}
.product-form__quantity-btn {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  color: #2D190D;
  transition: background-color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .product-form__quantity-btn:hover {
    background-color: #F2EEE8;
  }
}
.product-form__quantity-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}
.product-form__quantity-input {
  width: 3.75rem;
  height: 2.75rem;
  border: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  color: #2D190D;
  -moz-appearance: textfield;
}
.product-form__quantity-input::-webkit-outer-spin-button, .product-form__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.product-form__quantity-input:focus {
  outline: none;
}
.product-form__error {
  display: none;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #dc3545;
  width: fit-content;
  background-color: rgba(220, 53, 69, 0.1);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-form__error {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.product-form__error--visible {
  display: flex;
}
.product-form__error svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
}

.product-tabs__nav {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.product-tabs__nav::-webkit-scrollbar {
  display: none;
}
@media (min-width: 768px) {
  .product-tabs__nav {
    gap: 0.75rem;
  }
}
.product-tabs__tab {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  flex-shrink: 0;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #676767;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  background-color: transparent;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .product-tabs__tab {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.product-tabs__tab {
  transition: all 150ms ease;
}
@media (min-width: 768px) {
  .product-tabs__tab {
    padding: 1rem 1.5rem;
    font-size: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .product-tabs__tab:hover {
    color: #2D190D;
    background-color: #F2EEE8;
  }
}
.product-tabs__tab--active {
  color: #2D190D;
  background-color: #F2EEE8;
  border-bottom-color: #2D190D;
}
.product-tabs__content {
  padding-top: 1.5rem;
}
@media (min-width: 768px) {
  .product-tabs__content {
    padding-top: 2rem;
  }
}
.product-tabs__panel {
  display: none;
}
.product-tabs__panel--active {
  display: block;
}
.product-tabs__text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: 0.875rem;
  color: #676767;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .product-tabs__text {
    font-size: 1rem;
  }
}
.product-tabs__text ul,
.product-tabs__text ol {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.5rem;
  list-style-type: disc;
}
.product-tabs__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .product-tabs__table {
    font-size: 1rem;
  }
}
.product-tabs__table tr {
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.product-tabs__table tr:last-child {
  border-bottom: none;
}
.product-tabs__table th,
.product-tabs__table td {
  padding: 0.75rem 0.5rem;
  text-align: left;
}
@media (min-width: 768px) {
  .product-tabs__table th,
  .product-tabs__table td {
    padding: 1rem;
  }
}
.product-tabs__table th {
  font-weight: 600;
  color: #2D190D;
  background-color: #F2EEE8;
  vertical-align: top;
}
.product-tabs__table td {
  color: #676767;
}

.cart-page__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .cart-page__container {
    gap: 2rem;
  }
}
.cart-page__container:has(.cart-page__title.visually-hidden:only-child) {
  gap: 0;
}
.cart-page__header {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.cart-page__title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .cart-page__title {
    font-size: 1.875rem;
  }
}
.cart-page__count {
  font-size: 0.875rem;
  color: #676767;
}
.cart-page__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 1200px) {
  .cart-page__content {
    grid-template-columns: 1fr 25rem;
    gap: 1.5rem;
  }
}
.cart-page__main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1200px) {
  .cart-page__sidebar {
    position: sticky;
    top: var(--site-header-space);
    align-self: start;
  }
}
.cart-page__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cart-page__item {
  display: grid;
  grid-template-columns: 5rem 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem 1rem;
  padding: 1rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .cart-page__item {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
@media (min-width: 768px) {
  .cart-page__item {
    grid-template-columns: 6.25rem 1fr auto auto auto;
    grid-template-rows: auto;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem;
  }
}
.cart-page__item-image {
  grid-row: span 2;
  aspect-ratio: 1/1;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .cart-page__item-image {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.cart-page__item-image {
  overflow: hidden;
  background-color: #F2EEE8;
}
@media (min-width: 768px) {
  .cart-page__item-image {
    grid-row: span 1;
    width: 6.25rem;
    height: 6.25rem;
  }
}
.cart-page__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-page__item-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #F2EEE8;
}
.cart-page__item-placeholder svg {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(103, 103, 103, 0.3);
}
.cart-page__item-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}
.cart-page__item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.cart-page__item-title {
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .cart-page__item-title {
    font-size: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .cart-page__item-title:hover {
    color: #54bcbf;
  }
}
.cart-page__item-sku {
  font-size: 0.75rem;
  color: #676767;
}
.cart-page__item-backorder {
  font-size: 0.75rem;
  color: #ffc107;
}
.cart-page__item-price-mobile {
  font-size: 0.875rem;
  font-weight: 500;
  color: #676767;
}
@media (min-width: 768px) {
  .cart-page__item-price-mobile {
    display: none;
  }
}
.cart-page__item-quantity {
  grid-column: 2;
  justify-self: start;
}
@media (min-width: 768px) {
  .cart-page__item-quantity {
    grid-column: auto;
    justify-self: center;
  }
}
.cart-page__item-quantity-selector {
  display: flex;
  align-items: center;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .cart-page__item-quantity-selector {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.cart-page__item-quantity-selector {
  overflow: hidden;
}
.cart-page__item-quantity-btn {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: #2D190D;
  transition: background-color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .cart-page__item-quantity-btn:hover {
    background-color: #F2EEE8;
  }
}
.cart-page__item-quantity-btn svg {
  width: 1rem;
  height: 1rem;
}
.cart-page__item-quantity-input, .cart-page__item .qty {
  width: 3rem;
  height: 2.25rem;
  border: solid 0.0625rem rgba(103, 103, 103, 0.2);
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .cart-page__item-quantity-input, .cart-page__item .qty {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.cart-page__item-quantity-input, .cart-page__item .qty {
  text-align: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D190D;
  -moz-appearance: textfield;
}
.cart-page__item-quantity-input::-webkit-outer-spin-button, .cart-page__item-quantity-input::-webkit-inner-spin-button, .cart-page__item .qty::-webkit-outer-spin-button, .cart-page__item .qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-page__item-quantity-input:focus, .cart-page__item .qty:focus {
  outline: none;
}
.cart-page__item-subtotal {
  display: none;
  font-size: 1rem;
  font-weight: 600;
  color: #2D190D;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .cart-page__item-subtotal {
    display: block;
  }
}
.cart-page__item-remove {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
}
@media (min-width: 768px) {
  .cart-page__item-remove {
    position: relative;
    top: auto;
    right: auto;
  }
}
.cart-page__item-remove-btn {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  color: #676767;
  border-radius: 0.375rem;
  transition: color 150ms ease, background-color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .cart-page__item-remove-btn:hover {
    color: #dc3545;
    background-color: rgba(220, 53, 69, 0.1);
  }
}
.cart-page__item-remove-btn svg {
  width: 1.125rem;
  height: 1.125rem;
}
.cart-page__item dl.variation {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.75rem;
  margin: 0;
  font-size: 0.75rem;
  color: #676767;
}
.cart-page__item dl.variation dt {
  font-weight: 500;
}
.cart-page__item dl.variation dt::after {
  content: ":";
}
.cart-page__item dl.variation dd {
  margin: 0;
}
.cart-page__item dl.variation dd p {
  margin: 0;
}
.cart-page__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
@media (min-width: 768px) {
  .cart-page__actions {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
  }
}
.cart-page__actions-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .cart-page__actions-group {
    flex-direction: row;
    gap: 0.75rem;
  }
}
.cart-page__summary {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .cart-page__summary {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.cart-page__summary-title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.cart-page__summary-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cart-page__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.cart-page__summary-row--total {
  padding-top: 1rem;
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.cart-page__summary-row--total .cart-page__summary-label {
  font-size: 1rem;
  font-weight: 600;
  color: #2D190D;
}
.cart-page__summary-row--total .cart-page__summary-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D190D;
}
.cart-page__summary-row--coupon .cart-page__summary-value--discount {
  color: #28a745;
}
.cart-page__summary-label {
  font-size: 0.875rem;
  color: #676767;
}
.cart-page__summary-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
}
.cart-page__summary-coupon-code {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #54bcbf;
  background-color: rgba(84, 188, 191, 0.1);
  border-radius: 0.25rem;
  text-transform: uppercase;
}
.cart-page__summary-coupon {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-bottom: 1.25rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.cart-page__summary-coupon-form {
  display: flex;
  gap: 0.5rem;
}
.cart-page__summary-coupon-input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: #2D190D;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .cart-page__summary-coupon-input {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.cart-page__summary-coupon-input::placeholder {
  color: #676767;
}
.cart-page__summary-coupon-input:focus {
  outline: none;
  border-color: #2D190D;
}
.cart-page__summary-coupon-btn {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
  background-color: #F2EEE8;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .cart-page__summary-coupon-btn {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.cart-page__summary-coupon-btn {
  white-space: nowrap;
  transition: background-color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .cart-page__summary-coupon-btn:hover {
    background-color: rgb(229.9, 226.1, 220.4);
  }
}
.cart-page__summary-checkout {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.cart-page__summary-checkout-note {
  font-size: 0.75rem;
  color: #676767;
  text-align: center;
}
.cart-page__summary-reassurance {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.cart-page__summary-reassurance-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #676767;
}
.cart-page__summary-reassurance-item svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #54bcbf;
}
.cart-page__budget {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #F2EEE8;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .cart-page__budget {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.cart-page__budget {
  border: 0.0625rem solid transparent;
}
.cart-page__budget--exceeded {
  background-color: rgba(220, 53, 69, 0.08);
  border-color: rgba(220, 53, 69, 0.2);
}
.cart-page__budget-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-page__budget-header svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #54bcbf;
}
.cart-page__budget--exceeded .cart-page__budget-header svg {
  color: #dc3545;
}
.cart-page__budget-title {
  font-size: 0.875rem;
  font-weight: 600;
}
.cart-page__budget-progress-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cart-page__budget-progress {
  height: 0.375rem;
  background-color: #ffffff;
  border-radius: 9999px;
  overflow: hidden;
}
.cart-page__budget--exceeded .cart-page__budget-progress {
  background-color: rgba(255, 255, 255, 0.6);
}
.cart-page__budget-progress-bar {
  height: 100%;
  background-color: #54bcbf;
  border-radius: 9999px;
  transition: width 300ms ease;
}
.cart-page__budget--exceeded .cart-page__budget-progress-bar {
  background-color: #dc3545;
}
.cart-page__budget-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #676767;
}
.cart-page__budget-remaining {
  font-weight: 500;
  color: #2D190D;
}
.cart-page__budget--exceeded .cart-page__budget-remaining {
  color: #dc3545;
}
.cart-page__budget-total {
  font-weight: 500;
  color: #676767;
}
.cart-page__budget-alert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #dc3545;
  background-color: rgba(220, 53, 69, 0.1);
  border-radius: 0.375rem;
}
.cart-page__budget-alert svg {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}
.cart-page__empty {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 37.5rem;
  padding-inline: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.cart-page__empty-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  background-color: #F2EEE8;
  border-radius: 9999px;
}
.cart-page__empty-icon svg {
  width: 2.25rem;
  height: 2.25rem;
  color: #676767;
}
.cart-page__empty-content {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.cart-page__empty-title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.25rem;
  color: #2D190D;
}
@media (min-width: 768px) {
  .cart-page__empty-title {
    font-size: 1.5rem;
  }
}
.cart-page__empty-text {
  font-size: 1rem;
  color: #676767;
  max-width: 25rem;
}

.woocommerce-shipping-destination,
.woocommerce-shipping-methods {
  font-size: 0.875rem;
  color: #2D190D;
}
.woocommerce-shipping-destination li,
.woocommerce-shipping-methods li {
  list-style: none;
}
.woocommerce-shipping-destination label,
.woocommerce-shipping-methods label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.woocommerce-shipping-destination input[type=radio],
.woocommerce-shipping-methods input[type=radio] {
  accent-color: #2D190D;
}

.cart-page__summary-row--shipping {
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
  padding-top: 0.75rem;
}

.cart-page__shipping-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .cart-page__shipping-details {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.cart-page__shipping-details {
  font-size: 0.875rem;
  color: #676767;
}
.cart-page__shipping-details i {
  flex-shrink: 0;
  color: #54bcbf;
}

.shipping-calculator-button {
  display: inline-block;
  font-size: 0.875rem;
  color: #54bcbf;
  text-decoration: none;
  cursor: pointer;
}
.shipping-calculator-button:hover {
  text-decoration: underline;
}

.shipping-calculator-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #F2EEE8;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .shipping-calculator-form {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.shipping-calculator-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.shipping-calculator-form .form-row label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
}
.shipping-calculator-form .form-row input[type=text],
.shipping-calculator-form .form-row select {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .shipping-calculator-form .form-row input[type=text],
    .shipping-calculator-form .form-row select {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.shipping-calculator-form .form-row input[type=text],
.shipping-calculator-form .form-row select {
  font-size: 0.875rem;
}
.shipping-calculator-form .form-row input[type=text]:focus,
.shipping-calculator-form .form-row select:focus {
  outline: none;
  border-color: #54bcbf;
}
.shipping-calculator-form button {
  width: 100%;
}

.checkout-page__container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .checkout-page__container {
    gap: 2rem;
  }
}
.checkout-page__header {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.checkout-page__title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.5rem;
}
@media (min-width: 768px) {
  .checkout-page__title {
    font-size: 1.875rem;
  }
}
.checkout-page__subtitle {
  font-size: 0.875rem;
  color: #676767;
}
.checkout-page__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 1200px) {
  .checkout-page__content {
    grid-template-columns: 1fr 25rem;
    gap: 1.5rem;
  }
}
.checkout-page__main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.checkout-page__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 1200px) {
  .checkout-page__sidebar {
    position: sticky;
    top: var(--site-header-space);
    align-self: start;
  }
}
.checkout-page__section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.25rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .checkout-page__section {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
@media (min-width: 768px) {
  .checkout-page__section {
    padding: 1.5rem;
  }
}
.checkout-page__section-title {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.125rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
@media (min-width: 768px) {
  .checkout-page__section-title {
    font-size: 1.25rem;
  }
}
.checkout-page__section-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #54bcbf;
}
@media (min-width: 768px) {
  .checkout-page__section-title svg {
    width: 1.5rem;
    height: 1.5rem;
  }
}
.checkout-page__section-count {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #676767;
  justify-self: end;
}
.checkout-page__section-optional {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 400;
  color: #676767;
}
.checkout-page__section-edit {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #54bcbf;
  text-decoration: none;
  transition: color 150ms ease;
}
@media (hover: hover) and (pointer: fine) {
  .checkout-page__section-edit:hover {
    color: rgb(71.4, 159.8, 162.35);
  }
}
.checkout-page__section-edit svg {
  width: 1rem;
  height: 1rem;
}
.checkout-page__items {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.checkout-page__item {
  display: grid;
  grid-template-columns: 3.75rem 1fr auto;
  gap: 0.75rem;
  padding: 0.75rem;
  background-color: #F2EEE8;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .checkout-page__item {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
@media (min-width: 768px) {
  .checkout-page__item {
    grid-template-columns: 4.375rem 1fr auto auto;
    gap: 1rem;
    padding: 1rem;
  }
}
.checkout-page__item-image {
  width: 3.75rem;
  height: 100%;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .checkout-page__item-image {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.checkout-page__item-image {
  overflow: hidden;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .checkout-page__item-image {
    width: 4.375rem;
    height: 4.375rem;
  }
}
.checkout-page__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout-page__item-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: #F2EEE8;
}
.checkout-page__item-placeholder svg {
  width: 1.25rem;
  height: 1.25rem;
  color: rgba(103, 103, 103, 0.3);
}
.checkout-page__item-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.checkout-page__item-name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media (min-width: 768px) {
  .checkout-page__item-name {
    font-size: 1rem;
  }
}
.checkout-page__item-sku {
  font-size: 0.75rem;
  color: #676767;
}
.checkout-page__item-quantity {
  display: flex;
  align-items: flex-start;
  gap: 0.25rem;
  font-size: 0.875rem;
  color: #676767;
}
@media (min-width: 768px) {
  .checkout-page__item-quantity {
    align-items: center;
  }
}
.checkout-page__item-qty-label {
  color: #676767;
}
.checkout-page__item-qty-value {
  font-weight: 600;
  color: #2D190D;
}
.checkout-page__item-subtotal {
  display: none;
  font-size: 1rem;
  font-weight: 600;
  color: #2D190D;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .checkout-page__item-subtotal {
    display: flex;
    align-items: center;
  }
}
.checkout-page__item dl.variation {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  margin: 0;
  font-size: 0.75rem;
  color: #676767;
}
.checkout-page__item dl.variation dt {
  font-weight: 500;
}
.checkout-page__item dl.variation dt::after {
  content: ":";
}
.checkout-page__item dl.variation dd {
  margin: 0;
}
.checkout-page__item dl.variation dd p {
  margin: 0;
}
.checkout-page__addresses {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .checkout-page__addresses {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}
.checkout-page__address-card {
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .checkout-page__address-card {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.checkout-page__address-card {
  overflow: hidden;
}
.checkout-page__address-card-header {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: #F2EEE8;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
@media (min-width: 768px) {
  .checkout-page__address-card-header {
    gap: 0.75rem;
    padding: 1rem 1.25rem;
  }
}
.checkout-page__address-card-header > svg {
  width: 1rem;
  height: 1rem;
  color: #54bcbf;
}
@media (min-width: 768px) {
  .checkout-page__address-card-header > svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.checkout-page__address-card-title {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D190D;
  text-transform: uppercase;
  letter-spacing: 0.025em;
  margin: 0;
}
.checkout-page__address-card-edit {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  font-size: 0;
  color: #54bcbf;
  background-color: #ffffff;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .checkout-page__address-card-edit {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.checkout-page__address-card-edit {
  transition: all 150ms ease;
  justify-self: end;
}
@media (min-width: 768px) {
  .checkout-page__address-card-edit {
    width: auto;
    height: auto;
    gap: 0.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    background-color: transparent;
    border-radius: 0;
  }
}
@media (hover: hover) and (pointer: fine) {
  .checkout-page__address-card-edit:hover {
    background-color: #F2EEE8;
  }
}
@media (hover: hover) and (pointer: fine) and (min-width: 768px) {
  .checkout-page__address-card-edit:hover {
    background-color: transparent;
    text-decoration: underline;
  }
}
.checkout-page__address-card-edit svg {
  width: 1rem;
  height: 1rem;
}
.checkout-page__address-card-body {
  padding: 1rem;
}
@media (min-width: 768px) {
  .checkout-page__address-card-body {
    padding: 1.25rem;
  }
}
.checkout-page__address-card-address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #676767;
}
@media (min-width: 768px) {
  .checkout-page__address-card-address {
    font-size: 1rem;
  }
}
.checkout-page__address-card-address strong {
  display: block;
  color: #2D190D;
  font-weight: 600;
}
.checkout-page__address-card-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}
@media (min-width: 768px) {
  .checkout-page__address-card-empty {
    gap: 0.75rem;
    padding: 0.5rem;
  }
}
.checkout-page__address-card-empty > svg {
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(103, 103, 103, 0.3);
}
@media (min-width: 768px) {
  .checkout-page__address-card-empty > svg {
    width: 2rem;
    height: 2rem;
  }
}
.checkout-page__address-card-empty p {
  font-size: 0.75rem;
  color: #676767;
}
@media (min-width: 768px) {
  .checkout-page__address-card-empty p {
    font-size: 0.875rem;
  }
}
.checkout-page__address-card-empty--error > svg {
  color: #dc3545;
}
.checkout-page__address-card-empty--error p {
  color: #333333;
  font-weight: 500;
}
.checkout-page__address-card-empty-hint {
  font-size: 0.75rem;
  color: #676767;
}
.checkout-page__address-card-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: #676767;
  background-color: rgba(103, 103, 103, 0.05);
  border-radius: 0.25rem;
}
.checkout-page__address-card-hint > svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.checkout-page__address-card-hint--locked {
  background-color: rgba(255, 193, 7, 0.1);
  color: rgb(134.5, 100.875, 0);
}
.checkout-page__address-selector {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .checkout-page__address-selector {
    gap: 1rem;
  }
}
.checkout-page__address-selector-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D190D;
  margin: 0;
}
@media (min-width: 768px) {
  .checkout-page__address-selector-label {
    font-size: 1rem;
  }
}
.checkout-page__address-option {
  display: flex;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 2px solid rgba(103, 103, 103, 0.2);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .checkout-page__address-option {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.checkout-page__address-option {
  cursor: pointer;
  transition: all 150ms ease;
}
@media (min-width: 768px) {
  .checkout-page__address-option {
    padding: 1rem;
    gap: 1rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .checkout-page__address-option:hover {
    border-color: #54bcbf;
    background-color: rgba(84, 188, 191, 0.03);
  }
}
.checkout-page__address-option--selected {
  border-color: #54bcbf;
  background-color: rgba(84, 188, 191, 0.05);
}
.checkout-page__address-radio {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: #54bcbf;
}
.checkout-page__address-option-content {
  flex: 1;
  min-width: 0;
}
.checkout-page__address-option-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.checkout-page__address-option-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D190D;
}
@media (min-width: 768px) {
  .checkout-page__address-option-title {
    font-size: 1rem;
  }
}
.checkout-page__address-option-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .checkout-page__address-option-badge {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.checkout-page__address-option-badge--protected {
  color: rgb(178.5, 135.1, 4.9);
  background-color: rgba(255, 193, 7, 0.15);
}
.checkout-page__address-option-badge svg {
  width: 0.875rem;
  height: 0.875rem;
}
.checkout-page__address-option-address {
  font-style: normal;
  font-size: 0.75rem;
  line-height: 1.75;
  color: #676767;
}
@media (min-width: 768px) {
  .checkout-page__address-option-address {
    font-size: 0.875rem;
  }
}
.checkout-page__address-option-address strong {
  display: block;
  color: #2D190D;
  font-weight: 600;
  margin-bottom: 0.25rem;
}
.checkout-page__notes {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.checkout-page__notes-textarea {
  width: 100%;
  padding: 1rem;
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  color: #2D190D;
  background-color: #F2EEE8;
  border: 0.0625rem solid transparent;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .checkout-page__notes-textarea {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.checkout-page__notes-textarea {
  resize: vertical;
  min-height: 6.25rem;
}
.checkout-page__notes-textarea::placeholder {
  color: #676767;
}
.checkout-page__notes-textarea:focus {
  outline: none;
  border-color: #2D190D;
  background-color: #ffffff;
}
.checkout-page__summary {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background-color: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .checkout-page__summary {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.checkout-page__summary-title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.checkout-page__summary-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.checkout-page__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.checkout-page__summary-row--total {
  padding-top: 1rem;
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.checkout-page__summary-row--total .checkout-page__summary-label {
  font-size: 1rem;
  font-weight: 600;
  color: #2D190D;
}
.checkout-page__summary-row--total .checkout-page__summary-value {
  font-size: 1.25rem;
  font-weight: 700;
  color: #2D190D;
}
.checkout-page__summary-row--coupon .checkout-page__summary-value {
  color: #28a745;
}
.checkout-page__summary-label {
  font-size: 0.875rem;
  color: #676767;
}
.checkout-page__summary-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
}
.checkout-page__summary-info {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  background-color: rgba(84, 188, 191, 0.1);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .checkout-page__summary-info {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.checkout-page__summary-info svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: #54bcbf;
}
.checkout-page__summary-info p {
  font-size: 0.875rem;
  color: #2D190D;
  line-height: 1.75;
}
.checkout-page__summary-submit {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.checkout-page__summary-workflow {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.checkout-page__summary-workflow-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D190D;
}
.checkout-page__summary-workflow-steps {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.checkout-page__summary-workflow-steps li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #676767;
  counter-increment: step;
}
.checkout-page__summary-workflow-steps li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.25rem;
  height: 1.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: #54bcbf;
  background-color: rgba(84, 188, 191, 0.1);
  border-radius: 9999px;
}
.checkout-page__summary-workflow-steps li svg {
  display: none;
}
.checkout-page__summary-error {
  font-size: 0.75rem;
  color: #dc3545;
  text-align: center;
}
.checkout-page__budget {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  background-color: #F2EEE8;
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .checkout-page__budget {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.checkout-page__budget {
  border: 0.0625rem solid transparent;
}
.checkout-page__budget--exceeded {
  background-color: rgba(220, 53, 69, 0.08);
  border-color: rgba(220, 53, 69, 0.2);
}
.checkout-page__budget-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.checkout-page__budget-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #54bcbf;
}
.checkout-page__budget--exceeded .checkout-page__budget-header svg {
  color: #dc3545;
}
.checkout-page__budget-title {
  font-size: 0.875rem;
  font-weight: 600;
}
.checkout-page__budget-progress-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.checkout-page__budget-progress {
  height: 0.375rem;
  background-color: #ffffff;
  border-radius: 9999px;
  overflow: hidden;
}
.checkout-page__budget--exceeded .checkout-page__budget-progress {
  background-color: rgba(255, 255, 255, 0.6);
}
.checkout-page__budget-progress-bar {
  height: 100%;
  background-color: #54bcbf;
  border-radius: 9999px;
  transition: width 300ms ease;
}
.checkout-page__budget--exceeded .checkout-page__budget-progress-bar {
  background-color: #dc3545;
}
.checkout-page__budget-info {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #676767;
}
.checkout-page__budget-remaining {
  font-weight: 500;
  color: #2D190D;
}
.checkout-page__budget--exceeded .checkout-page__budget-remaining {
  color: #dc3545;
}
.checkout-page__budget-total {
  font-weight: 500;
  color: #676767;
}
.checkout-page__budget-alert {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #dc3545;
  background-color: rgba(220, 53, 69, 0.1);
  border-radius: 0.375rem;
}
.checkout-page__budget-alert svg {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
}
.checkout-page__summary-row--shipping {
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
  padding-top: 0.75rem;
}
.checkout-page__shipping-details {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background-color: #F2EEE8;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .checkout-page__shipping-details {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.checkout-page__shipping-details {
  font-size: 0.875rem;
  color: #676767;
}
.checkout-page__shipping-details i {
  flex-shrink: 0;
  color: #54bcbf;
}

.order-confirmation__header {
  text-align: center;
  padding-block-end: 1.5rem;
}
@media (min-width: 768px) {
  .order-confirmation__header {
    padding-block-end: 2.5rem;
  }
}
.order-confirmation__icon {
  width: 4rem;
  height: 4rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
@media (min-width: 768px) {
  .order-confirmation__icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
  }
}
.order-confirmation__icon svg {
  width: 2rem;
  height: 2rem;
}
@media (min-width: 768px) {
  .order-confirmation__icon svg {
    width: 2.5rem;
    height: 2.5rem;
  }
}
.order-confirmation__icon--success {
  background-color: rgba(40, 167, 69, 0.1);
  color: #28a745;
}
.order-confirmation__icon--warning {
  background-color: rgba(255, 193, 7, 0.1);
  color: #ffc107;
}
.order-confirmation__title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.75rem;
}
@media (min-width: 768px) {
  .order-confirmation__title {
    font-size: 1.875rem;
  }
}
@media (min-width: 992px) {
  .order-confirmation__title {
    font-size: 2.25rem;
  }
}
.order-confirmation__subtitle {
  font-size: 1rem;
  color: #676767;
  margin: 0 auto;
  max-width: 31.25rem;
}
@media (min-width: 768px) {
  .order-confirmation__subtitle {
    font-size: 1.125rem;
  }
}
.order-confirmation__content {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .order-confirmation__content {
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .order-confirmation__content {
    grid-template-columns: 1fr 23.75rem;
    align-items: start;
  }
}
.order-confirmation__main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.order-confirmation__section {
  background: #ffffff;
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .order-confirmation__section {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.order-confirmation__section {
  border: 0.0625rem solid rgba(51, 51, 51, 0.1);
  padding: 1rem;
}
@media (min-width: 768px) {
  .order-confirmation__section {
    padding: 1.5rem;
  }
}
.order-confirmation__section--status {
  padding: 0;
  background: transparent;
  box-shadow: none;
}
.order-confirmation__section-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  color: #2D190D;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.1);
}
@media (min-width: 768px) {
  .order-confirmation__section-title {
    gap: 0.75rem;
    font-size: 1.125rem;
    margin: 0 0 1.25rem;
    padding-bottom: 1rem;
  }
}
@media (min-width: 992px) {
  .order-confirmation__section-title {
    font-size: 1.25rem;
  }
}
.order-confirmation__section-title svg {
  width: 1.125rem;
  height: 1.125rem;
  color: #54bcbf;
}
@media (min-width: 768px) {
  .order-confirmation__section-title svg {
    width: 1.25rem;
    height: 1.25rem;
  }
}
.order-confirmation__count {
  background: rgba(84, 188, 191, 0.1);
  color: #54bcbf;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  margin-left: auto;
}
@media (min-width: 768px) {
  .order-confirmation__count {
    font-size: 0.875rem;
    padding: 0.25rem 0.75rem;
  }
}
.order-confirmation__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .order-confirmation__sidebar {
    position: sticky;
    top: calc(var(--site-header-space) + 1.5rem);
  }
}

.order-status-card {
  background: #ffffff;
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .order-status-card {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.order-status-card {
  padding: 1rem;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .order-status-card {
    padding: 1.5rem;
    gap: 1rem;
  }
}
.order-status-card__badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  width: fit-content;
}
@media (min-width: 768px) {
  .order-status-card__badge {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
}
.order-status-card__badge svg {
  width: 1rem;
  height: 1rem;
}
.order-status-card__badge--pending {
  background: #ffc107;
  color: #2D190D;
}
.order-status-card__badge--confirmed {
  background: #28a745;
  color: #ffffff;
}
.order-status-card__text {
  font-size: 0.875rem;
  color: #2D190D;
  margin: 0;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .order-status-card__text {
    font-size: 1rem;
  }
}

.order-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 768px) {
  .order-details {
    gap: 1rem;
  }
}
.order-details__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 0.5rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.1);
}
@media (min-width: 768px) {
  .order-details__row {
    padding-bottom: 0.75rem;
  }
}
.order-details__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.order-details__row--total {
  margin-top: 0.5rem;
  padding-top: 0.75rem;
  border-top: 0.125rem solid rgba(45, 25, 13, 0.1);
  border-bottom: none;
}
@media (min-width: 768px) {
  .order-details__row--total {
    padding-top: 1rem;
  }
}
.order-details__row--total .order-details__label,
.order-details__row--total .order-details__value {
  font-size: 1rem;
  font-weight: 700;
  color: #2D190D;
}
@media (min-width: 768px) {
  .order-details__row--total .order-details__label,
  .order-details__row--total .order-details__value {
    font-size: 1.125rem;
  }
}
.order-details__label {
  font-size: 0.875rem;
  color: #676767;
}
@media (min-width: 768px) {
  .order-details__label {
    font-size: 1rem;
  }
}
.order-details__value {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
}
@media (min-width: 768px) {
  .order-details__value {
    font-size: 1rem;
  }
}
.order-details__value--highlight {
  font-size: 1rem;
  font-weight: 700;
  color: #54bcbf;
}
@media (min-width: 768px) {
  .order-details__value--highlight {
    font-size: 1.125rem;
  }
}

.order-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-item {
  display: grid;
  grid-template-columns: 3.75rem 1fr;
  grid-template-rows: auto auto;
  gap: 0.75rem;
  align-items: start;
  padding: 1rem;
  background: #F2EEE8;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  .order-item {
    grid-template-columns: 5rem 1fr auto auto;
    grid-template-rows: auto;
    align-items: center;
    gap: 1rem;
  }
}
.order-item__image {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.375rem;
  overflow: hidden;
  background: #ffffff;
  grid-row: span 2;
}
@media (min-width: 768px) {
  .order-item__image {
    width: 5rem;
    height: 5rem;
    grid-row: auto;
  }
}
.order-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-item__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(103, 103, 103, 0.1);
  color: rgba(103, 103, 103, 0.4);
}
.order-item__placeholder svg {
  width: 1.5rem;
  height: 1.5rem;
}
.order-item__details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.order-item__name {
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
}
@media (min-width: 768px) {
  .order-item__name {
    font-size: 1rem;
  }
}
.order-item__sku {
  font-size: 0.75rem;
  color: #676767;
}
.order-item__quantity {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .order-item__quantity {
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
  }
}
.order-item__qty-label {
  font-size: 0.75rem;
  color: #676767;
}
.order-item__qty-value {
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D190D;
}
@media (min-width: 768px) {
  .order-item__qty-value {
    font-size: 1rem;
  }
}
.order-item__subtotal {
  font-size: 0.875rem;
  font-weight: 700;
  color: #2D190D;
  margin-left: auto;
}
@media (min-width: 768px) {
  .order-item__subtotal {
    font-size: 1rem;
    text-align: right;
    min-width: 5rem;
    margin-left: 0;
  }
}

.order-address {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #676767;
}
@media (min-width: 768px) {
  .order-address {
    font-size: 1rem;
  }
}

.order-notes {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #676767;
  margin: 0;
  padding: 0.75rem;
  background: #F2EEE8;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  .order-notes {
    font-size: 1rem;
    padding: 1rem;
  }
}

.order-workflow {
  background: #ffffff;
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .order-workflow {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.order-workflow {
  border: 0.0625rem solid rgba(51, 51, 51, 0.1);
  padding: 1rem;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}
@media (min-width: 768px) {
  .order-workflow {
    padding: 1.5rem;
  }
}
.order-workflow__title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1rem;
  font-weight: 400;
  margin: 0 0 1rem;
}
@media (min-width: 768px) {
  .order-workflow__title {
    font-size: 1.125rem;
    margin: 0 0 1.25rem;
  }
}
.order-workflow__steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.order-workflow__step {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0;
  position: relative;
}
.order-workflow__step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 0.875rem;
  top: 2.625rem;
  width: 0.125rem;
  height: calc(100% - 0.875rem);
  background: rgba(103, 103, 103, 0.2);
}
.order-workflow__step--completed .order-workflow__step-icon {
  background: #28a745;
  color: #ffffff;
}
.order-workflow__step--completed .order-workflow__step-text {
  color: #2D190D;
}
.order-workflow__step--completed::after {
  background: #28a745;
}
.order-workflow__step--active .order-workflow__step-icon {
  background: #ffc107;
  color: #2D190D;
  animation: pulse 2s infinite;
}
.order-workflow__step--active .order-workflow__step-text {
  color: #2D190D;
  font-weight: 600;
}
.order-workflow__step-icon {
  width: 1.875rem;
  height: 1.875rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(103, 103, 103, 0.2);
  color: #676767;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.order-workflow__step-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}
.order-workflow__step-text {
  font-size: 0.875rem;
  color: #676767;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(255, 193, 7, 0.4);
  }
  50% {
    box-shadow: 0 0 0 0.5rem rgba(255, 193, 7, 0);
  }
}
.order-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.order-actions--centered {
  align-items: center;
  margin-top: 2rem;
}

.order-help {
  background: rgba(51, 51, 51, 0.1);
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .order-help {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.order-help {
  padding: 1rem;
}
@media (min-width: 768px) {
  .order-help {
    padding: 1.25rem;
  }
}
.order-help__title {
  font-size: 0.875rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
  .order-help__title {
    font-size: 1rem;
  }
}
.order-help__text {
  font-size: 0.75rem;
  color: #676767;
  margin: 0;
  line-height: 1.75;
}
@media (min-width: 768px) {
  .order-help__text {
    font-size: 0.875rem;
  }
}

.order-view {
  padding: 1.5rem 0;
}
.order-view__header {
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.1);
}
.order-view__header-main {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .order-view__header-main {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.order-view__title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0;
}
@media (min-width: 768px) {
  .order-view__title {
    font-size: 1.875rem;
  }
}
.order-view__status {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}
.order-view__status svg {
  width: 1rem;
  height: 1rem;
}
.order-view__status--pending-approval {
  background: rgba(255, 193, 7, 0.15);
  color: rgb(204, 154.4, 5.6);
}
.order-view__status--approved {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}
.order-view__status--rejected {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}
.order-view__status--processing, .order-view__status--completed {
  background: rgba(84, 188, 191, 0.15);
  color: #54bcbf;
}
.order-view__status--on-hold, .order-view__status--pending {
  background: rgba(103, 103, 103, 0.1);
  color: #676767;
}
.order-view__date {
  font-size: 1rem;
  color: #676767;
  margin: 0;
}
.order-view__alert {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
}
.order-view__alert > svg {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}
.order-view__alert--warning {
  background: rgba(255, 193, 7, 0.1);
  border: 0.0625rem solid rgba(255, 193, 7, 0.3);
}
.order-view__alert--warning > svg {
  color: #ffc107;
}
.order-view__alert--error {
  background: rgba(220, 53, 69, 0.1);
  border: 0.0625rem solid rgba(220, 53, 69, 0.3);
}
.order-view__alert--error > svg {
  color: #dc3545;
}
.order-view__alert-content strong {
  display: block;
  font-size: 1rem;
  color: #2D190D;
  margin-bottom: 0.25rem;
}
.order-view__alert-content p {
  font-size: 0.875rem;
  color: #676767;
  margin: 0;
  line-height: 1.75;
}
.order-view__content {
  display: grid;
  gap: 2rem;
}
@media (min-width: 992px) {
  .order-view__content {
    grid-template-columns: 1fr 21.875rem;
    align-items: start;
  }
}
.order-view__main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.order-view__section {
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.order-view__section-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #2D190D;
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.1);
}
.order-view__section-title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #54bcbf;
}
.order-view__count {
  background: rgba(84, 188, 191, 0.1);
  color: #54bcbf;
  font-family: "Manrope", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  margin-left: auto;
}
.order-view__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.order-view__item {
  display: grid;
  grid-template-columns: 3.75rem 1fr auto auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1rem;
  background: #F2EEE8;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  .order-view__item {
    grid-template-columns: 4.375rem 1fr auto auto;
    gap: 1rem;
  }
}
.order-view__item-image {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 0.375rem;
  overflow: hidden;
  background: #ffffff;
}
@media (min-width: 768px) {
  .order-view__item-image {
    width: 4.375rem;
    height: 4.375rem;
  }
}
.order-view__item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.order-view__item-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(103, 103, 103, 0.1);
  color: rgba(103, 103, 103, 0.4);
}
.order-view__item-placeholder svg {
  width: 1.5rem;
  height: 1.5rem;
}
.order-view__item-details {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}
.order-view__item-name {
  font-size: 1rem;
  font-weight: 500;
  color: #2D190D;
}
.order-view__item-sku {
  font-size: 0.75rem;
  color: #676767;
}
.order-view__item-quantity {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.order-view__item-qty-label {
  font-size: 0.75rem;
  color: #676767;
}
.order-view__item-qty-value {
  font-size: 1rem;
  font-weight: 600;
  color: #2D190D;
}
.order-view__item-subtotal {
  font-size: 1rem;
  font-weight: 700;
  color: #2D190D;
  text-align: right;
  min-width: 4.375rem;
}
.order-view__timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-left: 1rem;
}
.order-view__timeline-item {
  position: relative;
  padding-left: 1.5rem;
}
.order-view__timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0.3125rem;
  top: 1.25rem;
  width: 0.125rem;
  height: calc(100% + 1rem);
  background: rgba(103, 103, 103, 0.2);
}
.order-view__timeline-marker {
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 0.75rem;
  height: 0.75rem;
  background: #54bcbf;
  border-radius: 9999px;
}
.order-view__timeline-date {
  font-size: 0.75rem;
  color: #676767;
  display: block;
  margin-bottom: 0.25rem;
}
.order-view__timeline-text {
  font-size: 0.875rem;
  color: #2D190D;
  margin: 0;
  line-height: 1.75;
}
.order-view__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media (min-width: 992px) {
  .order-view__sidebar {
    position: sticky;
    top: 1.5rem;
  }
}
.order-view__summary {
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.1);
  border-radius: 0.5rem;
  padding: 1.25rem;
}
.order-view__summary-title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.125rem;
  font-weight: 400;
  color: #2D190D;
  margin: 0 0 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.1);
}
.order-view__summary-rows {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.order-view__summary-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  color: #676767;
}
.order-view__summary-row--total {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 0.125rem solid rgba(45, 25, 13, 0.1);
  font-size: 1.125rem;
  font-weight: 700;
  color: #2D190D;
}
.order-view__info-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(84, 188, 191, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
}
.order-view__info-card > svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #54bcbf;
}
.order-view__info-label {
  display: block;
  font-size: 0.75rem;
  color: #676767;
}
.order-view__info-value {
  font-size: 1rem;
  font-weight: 600;
  color: #2D190D;
}
.order-view__address, .order-view__notes {
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
}
.order-view__address-title, .order-view__notes-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D190D;
  margin: 0 0 0.75rem;
}
.order-view__address-title svg, .order-view__notes-title svg {
  width: 1rem;
  height: 1rem;
  color: #676767;
}
.order-view__address-content {
  font-style: normal;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #676767;
}
.order-view__notes-content {
  font-size: 0.875rem;
  line-height: 1.75;
  color: #676767;
  margin: 0;
}
.order-view__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.order-view__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 150ms ease;
}
.order-view__btn svg {
  width: 1rem;
  height: 1rem;
}
.order-view__btn--secondary {
  background: #ffffff;
  color: #2D190D;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.order-view__btn--secondary:hover {
  background: #F2EEE8;
  border-color: rgba(103, 103, 103, 0.3);
}

.woocommerce-account.logged-in .woocommerce {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-bottom: calc(5rem + env(safe-area-inset-bottom));
}
@media (min-width: 992px) {
  .woocommerce-account.logged-in .woocommerce {
    display: grid;
    grid-template-columns: 17.5rem 1fr;
    align-items: start;
    gap: 2rem;
    padding-bottom: 0;
  }
}

.account-nav {
  position: fixed;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;
  width: calc(100% - 2rem);
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.75rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .account-nav {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.account-nav {
  padding-bottom: env(safe-area-inset-bottom);
}
@media (min-width: 992px) {
  .account-nav {
    position: sticky;
    top: calc(70px + 2rem);
    bottom: auto;
    left: 0;
    transform: none;
    width: auto;
    border: 0.0625rem solid rgba(103, 103, 103, 0.1);
    border-radius: 0.5rem;
    box-shadow: none;
    padding-bottom: 0;
    overflow: hidden;
  }
}
@media (min-width: 992px) and (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .account-nav {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
.account-nav__list {
  display: flex;
  justify-content: space-around;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 992px) {
  .account-nav__list {
    flex-direction: column;
  }
}
.account-nav__item {
  flex: 1;
}
@media (min-width: 992px) {
  .account-nav__item {
    flex: none;
    border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.1);
  }
  .account-nav__item:last-child {
    border-bottom: none;
  }
}
.account-nav__item--active .account-nav__link {
  color: #54bcbf;
}
@media (min-width: 992px) {
  .account-nav__item--active .account-nav__link {
    background: rgba(84, 188, 191, 0.1);
    font-weight: 600;
  }
  .account-nav__item--active .account-nav__link::before {
    opacity: 1;
  }
}
.account-nav__item--active .account-nav__link svg {
  color: #54bcbf;
}
@media (max-width: 991px) {
  .account-nav__item--logout {
    display: none;
  }
}
.account-nav__item--logout .account-nav__link {
  color: #dc3545;
}
.account-nav__item--logout .account-nav__link:hover {
  background: rgba(220, 53, 69, 0.1);
}
.account-nav__item--logout .account-nav__link::before {
  background: #dc3545;
}
.account-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 0.75rem;
  color: #676767;
  text-decoration: none;
  transition: color 150ms ease, background 150ms ease;
}
.account-nav__link span {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.account-nav__link svg {
  width: 1.5rem;
  height: 1.5rem;
}
.account-nav__link:active {
  background: rgba(103, 103, 103, 0.05);
}
@media (min-width: 992px) {
  .account-nav__link {
    justify-content: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: #2D190D;
    position: relative;
  }
  .account-nav__link::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #54bcbf;
    opacity: 0;
    transition: opacity 150ms ease;
  }
  .account-nav__link:hover {
    background: #F2EEE8;
    color: #54bcbf;
  }
  .account-nav__link:active {
    background: #F2EEE8;
  }
  .account-nav__link span {
    position: static;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
    flex: 1;
  }
  .account-nav__link svg {
    width: 1rem;
    height: 1rem;
    order: 1;
    margin-left: auto;
    opacity: 0;
  }
}

.woocommerce-MyAccount-content {
  min-width: 0;
}
.woocommerce-MyAccount-content > p:first-child {
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
  margin: 0 0 1.5rem;
  font-size: 1rem;
  line-height: 1.75;
  color: #676767;
}
.woocommerce-MyAccount-content > p:first-child a {
  color: #54bcbf;
  font-weight: 500;
}
.woocommerce-MyAccount-content > p:first-child a:hover {
  text-decoration: underline;
}
.woocommerce-MyAccount-content > p:first-child strong {
  color: #2D190D;
}

.woocommerce-orders-table {
  width: 100%;
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
  border-collapse: collapse;
}
.woocommerce-orders-table thead {
  background: #F2EEE8;
}
.woocommerce-orders-table thead th {
  padding: 1rem 1.25rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 600;
  color: #676767;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.1);
}
.woocommerce-orders-table thead th .nobr {
  white-space: nowrap;
}
.woocommerce-orders-table tbody tr {
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.1);
  transition: background 150ms ease;
}
.woocommerce-orders-table tbody tr:last-child {
  border-bottom: none;
}
.woocommerce-orders-table tbody tr:hover {
  background: rgba(242, 238, 232, 0.5);
}
.woocommerce-orders-table th[data-title],
.woocommerce-orders-table td {
  padding: 1rem 1.25rem;
  font-size: 0.875rem;
  color: #676767;
  vertical-align: middle;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-number {
  font-weight: 500;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a {
  color: #54bcbf;
  font-weight: 600;
  text-decoration: none;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-number a:hover {
  text-decoration: underline;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-date {
  color: #676767;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-date time {
  white-space: nowrap;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-status {
  font-weight: 500;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-total {
  font-weight: 600;
  color: #2D190D;
  white-space: nowrap;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions {
  text-align: right;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  background: #54bcbf;
  color: #ffffff;
  border: none;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  transition: background 150ms ease;
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a:hover {
  background: rgb(71.4, 159.8, 162.35);
}
.woocommerce-orders-table .woocommerce-orders-table__cell-order-actions a.pay {
  display: none;
}

.woocommerce-orders-table__status,
mark.order-status {
  background: transparent !important;
}
.woocommerce-orders-table__status.status-pending-approval,
mark.order-status.status-pending-approval {
  background: rgba(255, 193, 7, 0.15) !important;
  color: rgb(191.25, 144.75, 5.25);
}
.woocommerce-orders-table__status.status-approved,
mark.order-status.status-approved {
  background: rgba(40, 167, 69, 0.15) !important;
  color: #28a745;
}
.woocommerce-orders-table__status.status-rejected,
mark.order-status.status-rejected {
  background: rgba(220, 53, 69, 0.15) !important;
  color: #dc3545;
}
.woocommerce-orders-table__status.status-processing,
mark.order-status.status-processing {
  background: rgba(84, 188, 191, 0.15) !important;
  color: #54bcbf;
}
.woocommerce-orders-table__status.status-completed,
mark.order-status.status-completed {
  background: rgba(40, 167, 69, 0.15) !important;
  color: #28a745;
}
.woocommerce-orders-table__status.status-on-hold,
mark.order-status.status-on-hold {
  background: rgba(255, 193, 7, 0.15) !important;
  color: rgb(191.25, 144.75, 5.25);
}
.woocommerce-orders-table__status.status-cancelled, .woocommerce-orders-table__status.status-failed,
mark.order-status.status-cancelled,
mark.order-status.status-failed {
  background: rgba(220, 53, 69, 0.15) !important;
  color: #dc3545;
}

.woocommerce-MyAccount-content .woocommerce-message,
.woocommerce-MyAccount-content .woocommerce-info,
.woocommerce-MyAccount-content .woocommerce-error {
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.1);
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
  font-size: 1rem;
}
.woocommerce-MyAccount-content .woocommerce-message:focus-visible,
.woocommerce-MyAccount-content .woocommerce-info:focus-visible,
.woocommerce-MyAccount-content .woocommerce-error:focus-visible {
  outline: none;
}
.woocommerce-MyAccount-content .woocommerce-message::before,
.woocommerce-MyAccount-content .woocommerce-info::before,
.woocommerce-MyAccount-content .woocommerce-error::before {
  display: none;
}
.woocommerce-MyAccount-content .woocommerce-message a:focus-visible,
.woocommerce-MyAccount-content .woocommerce-message button:focus-visible,
.woocommerce-MyAccount-content .woocommerce-info a:focus-visible,
.woocommerce-MyAccount-content .woocommerce-info button:focus-visible,
.woocommerce-MyAccount-content .woocommerce-error a:focus-visible,
.woocommerce-MyAccount-content .woocommerce-error button:focus-visible {
  outline: none;
  box-shadow: none;
}
.woocommerce-MyAccount-content .woocommerce-message a.button,
.woocommerce-MyAccount-content .woocommerce-info a.button,
.woocommerce-MyAccount-content .woocommerce-error a.button {
  background: #54bcbf;
  color: #ffffff;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.woocommerce-MyAccount-content .woocommerce-message a.button:hover,
.woocommerce-MyAccount-content .woocommerce-info a.button:hover,
.woocommerce-MyAccount-content .woocommerce-error a.button:hover {
  background: rgb(71.4, 159.8, 162.35);
}
.woocommerce-MyAccount-content .woocommerce-message {
  border-left: 4px solid #28a745;
}
.woocommerce-MyAccount-content .woocommerce-info {
  border-left: 4px solid #54bcbf;
}
.woocommerce-MyAccount-content .woocommerce-error {
  border-left: 4px solid #dc3545;
}

.woocommerce-Addresses {
  display: grid;
  gap: 1.25rem;
}
@media (min-width: 768px) {
  .woocommerce-Addresses {
    grid-template-columns: repeat(2, 1fr);
  }
}

.woocommerce-Address {
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}
.woocommerce-Address-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.25rem;
  background: #F2EEE8;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.1);
}
.woocommerce-Address-title h3 {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.woocommerce-Address-title a {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: #54bcbf;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
}
.woocommerce-Address-title a:hover {
  text-decoration: underline;
}
.woocommerce-Address address {
  padding: 1.25rem;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.75;
  color: #676767;
}

.woocommerce-address-fields,
.woocommerce-EditAccountForm {
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.1);
  border-radius: 0.5rem;
  padding: 1.5rem;
}
.woocommerce-address-fields__field-wrapper,
.woocommerce-EditAccountForm__field-wrapper {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .woocommerce-address-fields__field-wrapper,
  .woocommerce-EditAccountForm__field-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
.woocommerce-address-fields .form-row,
.woocommerce-EditAccountForm .form-row {
  margin: 0;
}
@media (min-width: 768px) {
  .woocommerce-address-fields .form-row-wide,
  .woocommerce-EditAccountForm .form-row-wide {
    grid-column: span 2;
  }
}
.woocommerce-address-fields .form-row-first, .woocommerce-address-fields .form-row-last,
.woocommerce-EditAccountForm .form-row-first,
.woocommerce-EditAccountForm .form-row-last {
  grid-column: span 1;
}
.woocommerce-address-fields label,
.woocommerce-EditAccountForm label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
  margin-bottom: 0.5rem;
}
.woocommerce-address-fields label .required,
.woocommerce-EditAccountForm label .required {
  color: #dc3545;
}
.woocommerce-address-fields label .optional,
.woocommerce-EditAccountForm label .optional {
  font-weight: 400;
  color: #676767;
  font-size: 0.75rem;
}
.woocommerce-address-fields input[type=text],
.woocommerce-address-fields input[type=email],
.woocommerce-address-fields input[type=password],
.woocommerce-address-fields input[type=tel],
.woocommerce-address-fields select,
.woocommerce-address-fields textarea,
.woocommerce-EditAccountForm input[type=text],
.woocommerce-EditAccountForm input[type=email],
.woocommerce-EditAccountForm input[type=password],
.woocommerce-EditAccountForm input[type=tel],
.woocommerce-EditAccountForm select,
.woocommerce-EditAccountForm textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.375rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #2D190D;
  background: #ffffff;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.woocommerce-address-fields input[type=text]::placeholder,
.woocommerce-address-fields input[type=email]::placeholder,
.woocommerce-address-fields input[type=password]::placeholder,
.woocommerce-address-fields input[type=tel]::placeholder,
.woocommerce-address-fields select::placeholder,
.woocommerce-address-fields textarea::placeholder,
.woocommerce-EditAccountForm input[type=text]::placeholder,
.woocommerce-EditAccountForm input[type=email]::placeholder,
.woocommerce-EditAccountForm input[type=password]::placeholder,
.woocommerce-EditAccountForm input[type=tel]::placeholder,
.woocommerce-EditAccountForm select::placeholder,
.woocommerce-EditAccountForm textarea::placeholder {
  color: rgba(103, 103, 103, 0.4);
}
.woocommerce-address-fields input[type=text]:focus,
.woocommerce-address-fields input[type=email]:focus,
.woocommerce-address-fields input[type=password]:focus,
.woocommerce-address-fields input[type=tel]:focus,
.woocommerce-address-fields select:focus,
.woocommerce-address-fields textarea:focus,
.woocommerce-EditAccountForm input[type=text]:focus,
.woocommerce-EditAccountForm input[type=email]:focus,
.woocommerce-EditAccountForm input[type=password]:focus,
.woocommerce-EditAccountForm input[type=tel]:focus,
.woocommerce-EditAccountForm select:focus,
.woocommerce-EditAccountForm textarea:focus {
  outline: none;
  border-color: #54bcbf;
  box-shadow: 0 0 0 3px rgba(84, 188, 191, 0.1);
}
.woocommerce-address-fields select,
.woocommerce-EditAccountForm select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23676767' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.woocommerce-address-fields .select2-container,
.woocommerce-EditAccountForm .select2-container {
  width: 100% !important;
}
.woocommerce-address-fields .select2-container .select2-selection--single,
.woocommerce-EditAccountForm .select2-container .select2-selection--single {
  height: auto;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.375rem;
}
.woocommerce-address-fields .select2-container .select2-selection--single .select2-selection__rendered,
.woocommerce-EditAccountForm .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  font-size: 1rem;
  color: #2D190D;
  line-height: 1.5;
}
.woocommerce-address-fields .select2-container .select2-selection--single .select2-selection__arrow,
.woocommerce-EditAccountForm .select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 0.75rem;
}
.woocommerce-address-fields .select2-container .select2-selection--single .select2-selection__arrow b,
.woocommerce-EditAccountForm .select2-container .select2-selection--single .select2-selection__arrow b {
  border-color: #676767 transparent transparent;
}
.woocommerce-address-fields .select2-container--open .select2-selection--single,
.woocommerce-EditAccountForm .select2-container--open .select2-selection--single {
  border-color: #54bcbf;
  box-shadow: 0 0 0 3px rgba(84, 188, 191, 0.1);
}
.woocommerce-address-fields p:last-child,
.woocommerce-EditAccountForm p:last-child {
  margin-top: 1.5rem;
}
@media (min-width: 768px) {
  .woocommerce-address-fields p:last-child,
  .woocommerce-EditAccountForm p:last-child {
    grid-column: span 2;
  }
}
.woocommerce-address-fields button[type=submit],
.woocommerce-EditAccountForm button[type=submit] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: #54bcbf;
  color: #ffffff;
  border: none;
  border-radius: 0.375rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 150ms ease;
}
.woocommerce-address-fields button[type=submit]:hover,
.woocommerce-EditAccountForm button[type=submit]:hover {
  background: rgb(71.4, 159.8, 162.35);
}

@media (max-width: 767px) {
  .woocommerce-orders-table {
    display: block;
    border: none;
    background: transparent;
  }
  .woocommerce-orders-table thead {
    display: none;
  }
  .woocommerce-orders-table tbody {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .woocommerce-orders-table tbody tr {
    display: block;
    padding: 1rem;
    background: #ffffff;
    border: 0.0625rem solid rgba(103, 103, 103, 0.1);
    border-radius: 0.5rem;
  }
  .woocommerce-orders-table tbody tr:hover {
    background: #ffffff;
  }
  .woocommerce-orders-table th[data-title],
  .woocommerce-orders-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.1);
  }
  .woocommerce-orders-table th[data-title]:last-child,
  .woocommerce-orders-table td:last-child {
    border-bottom: none;
  }
  .woocommerce-orders-table th[data-title]::before,
  .woocommerce-orders-table td::before {
    content: attr(data-title);
    font-size: 0.75rem;
    font-weight: 600;
    color: #676767;
    text-transform: uppercase;
  }
  .woocommerce-orders-table .woocommerce-orders-table__cell-order-actions {
    justify-content: flex-end;
    padding-top: 0.75rem;
    border-bottom: none;
  }
  .woocommerce-orders-table .woocommerce-orders-table__cell-order-actions::before {
    display: none;
  }
}
.woocommerce-message--info {
  text-align: center;
  padding: 2.5rem !important;
}
.woocommerce-message--info .woocommerce-Button {
  margin-top: 1rem;
}

.account-dashboard {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .account-dashboard {
    gap: 2rem;
  }
}
.account-dashboard__header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 1rem;
}
.account-dashboard__header .btn {
  margin-left: auto;
}
@media (max-width: 575px) {
  .account-dashboard__header .btn {
    width: 100%;
  }
}
.account-dashboard__stats {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 0.5rem;
}
@media (min-width: 768px) {
  .account-dashboard__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .account-dashboard__stats {
    gap: 1rem;
    grid-template-columns: repeat(3, 1fr);
  }
}
.account-dashboard__content {
  display: grid;
  gap: 2rem;
}
@media (min-width: 992px) {
  .account-dashboard__content {
    grid-template-columns: 1fr 20rem;
    align-items: start;
  }
}
.account-dashboard__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.account-stat {
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.1);
  border-left: 3px solid #676767;
  border-radius: 0.375rem;
  padding: 0.75rem;
  text-align: center;
}
@media (min-width: 576px) {
  .account-stat {
    border-radius: 0.5rem;
    padding: 1.25rem;
    text-align: left;
  }
}
.account-stat--budget {
  border-left-color: #54bcbf;
}
.account-stat--pending {
  border-left-color: #ffc107;
}
.account-stat--approved {
  border-left-color: #28a745;
}
.account-stat__value {
  display: block;
  font-size: 1.125rem;
  font-weight: 700;
  color: #2D190D;
  line-height: 1;
  margin-bottom: 0.25rem;
}
@media (min-width: 576px) {
  .account-stat__value {
    font-size: 1.5rem;
  }
}
.account-stat__label {
  display: block;
  font-size: 0.75rem;
  color: #676767;
}
@media (min-width: 576px) {
  .account-stat__label {
    font-size: 0.875rem;
  }
}
.account-stat__info {
  display: none;
  font-size: 0.75rem;
  color: rgba(103, 103, 103, 0.7);
  margin-top: 0.5rem;
}
@media (min-width: 576px) {
  .account-stat__info {
    display: block;
  }
}
.account-stat__progress-wrapper {
  display: none;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.75rem;
}
@media (min-width: 576px) {
  .account-stat__progress-wrapper {
    display: flex;
  }
}
.account-stat__progress {
  flex: 1;
  height: 0.375rem;
  background: rgba(103, 103, 103, 0.1);
  border-radius: 9999px;
  overflow: hidden;
}
.account-stat__progress-bar {
  height: 100%;
  background: #54bcbf;
  border-radius: 9999px;
  transition: width 300ms ease;
}
.account-stat__progress-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #676767;
  flex-shrink: 0;
}

.account-quick-links__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.account-quick-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background: #F2EEE8;
  border-radius: 0.375rem;
  text-decoration: none;
  transition: all 150ms ease;
}
.account-quick-link svg {
  width: 20px;
  height: 20px;
  color: #54bcbf;
}
.account-quick-link span {
  font-size: 0.75rem;
  font-weight: 500;
  color: #2D190D;
  text-align: center;
}
.account-quick-link:hover {
  background: rgba(84, 188, 191, 0.1);
}

.account-help-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: rgba(84, 188, 191, 0.05);
  border: 0.0625rem solid rgba(84, 188, 191, 0.1);
  border-radius: 0.5rem;
  padding: 1.25rem;
}
.account-help-card__icon {
  width: 3rem;
  height: 3rem;
  background: #ffffff;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.account-help-card__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #54bcbf;
}
.account-help-card__content {
  flex: 1;
  min-width: 0;
}
.account-help-card__title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.25rem;
}
.account-help-card__text {
  font-size: 0.875rem;
  color: #676767;
  margin: 0;
  line-height: 1.75;
}

.account-edit {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .account-edit {
    gap: 2rem;
  }
}
.account-edit__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.account-edit__header-icon {
  display: none;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(84, 188, 191, 0.1);
  border-radius: 0.5rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
@media (min-width: 768px) {
  .account-edit__header-icon {
    display: flex;
  }
}
.account-edit__header-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #54bcbf;
}
.account-edit__header-content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  flex: 1;
}
.account-edit__title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 400;
}
@media (min-width: 768px) {
  .account-edit__title {
    font-size: 1.875rem;
  }
}
.account-edit__title span {
  color: #54bcbf;
}
.account-edit__subtitle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  color: #676767;
  margin: 0;
}
.account-edit__subtitle svg {
  width: 1rem;
  height: 1rem;
}
.account-edit__form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.account-edit__section {
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.1);
  border-radius: 0.5rem;
  overflow: hidden;
}
.account-edit__section--quick-links {
  display: none;
}
@media (min-width: 992px) {
  .account-edit__section--quick-links {
    display: block;
  }
}
.account-edit__section-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #F2EEE8;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.1);
}
.account-edit__section-header svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #54bcbf;
}
.account-edit__section-title {
  font-family: "Manrope", sans-serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #2D190D;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}
.account-edit__section-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.account-edit__section-content--no-padding {
  padding: 0;
}
.account-edit__section-info {
  font-size: 0.875rem;
  color: #676767;
  margin: 0 0 0.5rem;
  padding: 0.75rem 1rem;
  background: rgba(84, 188, 191, 0.05);
  border-radius: 0.375rem;
  border-left: 3px solid #54bcbf;
}
.account-edit__row {
  display: grid;
  gap: 1rem;
}
@media (min-width: 768px) {
  .account-edit__row {
    grid-template-columns: repeat(2, 1fr);
  }
}
.account-edit__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 0.5rem;
}
.account-edit__section-action {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
  font-size: 0.875rem;
  font-weight: 500;
  color: #54bcbf;
  text-decoration: none;
}
.account-edit__section-action svg {
  width: 0.875rem;
  height: 0.875rem;
}
.account-edit__section-action:hover {
  text-decoration: underline;
}
.account-edit__fields {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.account-edit__fields .form-row {
  width: 100%;
  margin: 0;
}
.account-edit__fields .form-row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #2D190D;
  margin-bottom: 0.5rem;
}
.account-edit__fields .form-row label .required {
  color: #dc3545;
}
.account-edit__fields .form-row label .optional {
  font-weight: 400;
  color: #676767;
  font-size: 0.75rem;
}
.account-edit__fields .form-row input[type=text],
.account-edit__fields .form-row input[type=email],
.account-edit__fields .form-row input[type=tel],
.account-edit__fields .form-row select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.375rem;
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #2D190D;
  background: #ffffff;
  transition: border-color 150ms ease, box-shadow 150ms ease;
}
.account-edit__fields .form-row input[type=text]::placeholder,
.account-edit__fields .form-row input[type=email]::placeholder,
.account-edit__fields .form-row input[type=tel]::placeholder,
.account-edit__fields .form-row select::placeholder {
  color: rgba(103, 103, 103, 0.4);
}
.account-edit__fields .form-row input[type=text]:focus,
.account-edit__fields .form-row input[type=email]:focus,
.account-edit__fields .form-row input[type=tel]:focus,
.account-edit__fields .form-row select:focus {
  outline: none;
  border-color: #54bcbf;
  box-shadow: 0 0 0 3px rgba(84, 188, 191, 0.1);
}
.account-edit__fields .form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23676767' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  background-size: 16px;
  padding-right: 2.5rem;
}
.account-edit__fields .form-row .select2-container {
  width: 100% !important;
}
.account-edit__fields .form-row .select2-container .select2-selection--single {
  height: auto;
  padding: 0.75rem 1rem;
  border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  border-radius: 0.375rem;
}
.account-edit__fields .form-row .select2-container .select2-selection--single .select2-selection__rendered {
  padding: 0;
  font-size: 1rem;
  color: #2D190D;
  line-height: 1.5;
}
.account-edit__fields .form-row .select2-container .select2-selection--single .select2-selection__arrow {
  height: 100%;
  right: 0.75rem;
}
.account-edit__fields .form-row .select2-container--open .select2-selection--single {
  border-color: #54bcbf;
  box-shadow: 0 0 0 3px rgba(84, 188, 191, 0.1);
}
.account-edit__field {
  width: 100%;
}
@media (min-width: 768px) {
  .account-edit__field--half {
    width: calc(50% - 0.5rem);
  }
}

.account-addresses {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .account-addresses {
    grid-template-columns: repeat(2, 1fr);
  }
}

.account-address {
  font-style: normal;
  font-size: 1rem;
  line-height: 1.75;
  color: #676767;
}
.account-address--empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 1.5rem;
}
.account-address--empty > svg {
  width: 2rem;
  height: 2rem;
  color: rgba(103, 103, 103, 0.3);
  margin-bottom: 0.75rem;
}
.account-address--empty p {
  color: #676767;
  margin: 0 0 1rem;
}

.account-info-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(84, 188, 191, 0.05);
  border-left: 0.1875rem solid #54bcbf;
  border-radius: 0.375rem;
}
.account-info-box > svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #54bcbf;
  flex-shrink: 0;
}
.account-info-box p {
  font-size: 0.875rem;
  color: #676767;
  line-height: 1.5;
  margin: 0;
}

.account-downloads {
  display: flex;
  flex-direction: column;
}

.account-download {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.1);
  transition: background 150ms ease;
}
.account-download:last-child {
  border-bottom: none;
}
.account-download:hover {
  background: #F2EEE8;
}
.account-download__icon {
  width: 2.75rem;
  height: 2.75rem;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.account-download__icon svg {
  width: 1.375rem;
  height: 1.375rem;
  color: #28a745;
}
.account-download__info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.account-download__name {
  font-size: 1rem;
  font-weight: 600;
  color: #2D190D;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.account-download__product {
  font-size: 0.875rem;
  color: #676767;
}
.account-download__remaining, .account-download__expires {
  font-size: 0.75rem;
  color: rgba(103, 103, 103, 0.7);
}

.account-orders {
  display: flex;
  flex-direction: column;
}

.account-order {
  display: grid;
  grid-template-columns: 1fr auto auto auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 1.25rem;
  border-bottom: 0.0625rem solid rgba(103, 103, 103, 0.1);
  text-decoration: none;
  transition: background 150ms ease;
}
.account-order:last-child {
  border-bottom: none;
}
.account-order:hover {
  background: #F2EEE8;
}
.account-order__main {
  min-width: 0;
}
.account-order__number {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  color: #2D190D;
}
.account-order__date {
  font-size: 0.75rem;
  color: #676767;
}
.account-order__status {
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}
.account-order__status--pending-approval {
  background: rgba(255, 193, 7, 0.15);
  color: rgb(191.25, 144.75, 5.25);
}
.account-order__status--approved {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}
.account-order__status--rejected {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}
.account-order__status--processing {
  background: rgba(84, 188, 191, 0.15);
  color: #54bcbf;
}
.account-order__status--completed {
  background: rgba(40, 167, 69, 0.15);
  color: #28a745;
}
.account-order__status--on-hold {
  background: rgba(255, 193, 7, 0.15);
  color: rgb(191.25, 144.75, 5.25);
}
.account-order__status--cancelled, .account-order__status--failed {
  background: rgba(220, 53, 69, 0.15);
  color: #dc3545;
}
.account-order__status--pending {
  background: rgba(103, 103, 103, 0.15);
  color: #676767;
}
.account-order__status--refunded {
  background: rgba(103, 103, 103, 0.15);
  color: #676767;
}
.account-order__items {
  font-size: 0.875rem;
  color: #676767;
  white-space: nowrap;
}
.account-order__total {
  font-size: 1rem;
  font-weight: 700;
  color: #2D190D;
  white-space: nowrap;
}
.account-order__arrow {
  color: rgba(103, 103, 103, 0.4);
}
.account-order__arrow svg {
  width: 1rem;
  height: 1rem;
}
@media (max-width: 767px) {
  .account-order {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    gap: 0.5rem 1rem;
  }
  .account-order__main {
    grid-column: 1;
    grid-row: 1;
  }
  .account-order__status {
    grid-column: 2;
    grid-row: 1;
  }
  .account-order__items {
    grid-column: 1;
    grid-row: 2;
  }
  .account-order__total {
    grid-column: 2;
    grid-row: 2;
    text-align: right;
  }
  .account-order__arrow {
    display: none;
  }
}

.account-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
}
.account-pagination__info {
  font-size: 0.875rem;
  color: #676767;
}

.account-edit__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.5rem;
  margin-left: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  border-radius: 0.375rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .account-edit__badge {
      corner-shape: squircle;
      border-radius: 0.75rem;
    }
  }
}
.account-edit__badge--protected {
  color: rgb(178.5, 135.1, 4.9);
  background-color: rgba(255, 193, 7, 0.15);
}
.account-edit__badge--optional {
  color: #676767;
  background-color: rgba(103, 103, 103, 0.1);
}

.account-info-box--warning {
  background-color: rgba(255, 193, 7, 0.1);
  border-left: 0.1875rem solid rgb(204, 154.4, 5.6);
}
.account-info-box--warning svg {
  color: rgb(204, 154.4, 5.6);
}

.legal-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #2D190D;
}
@media (min-width: 768px) {
  .legal-content {
    gap: 1.25rem;
    padding: 1.5rem;
    font-size: 1rem;
  }
}
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-weight: 400;
  color: #2D190D;
}
.legal-content h2 {
  font-size: 1.125rem;
}
@media (min-width: 768px) {
  .legal-content h2 {
    font-size: 1.5rem;
  }
}
.legal-content h3 {
  font-size: 1rem;
}
@media (min-width: 768px) {
  .legal-content h3 {
    font-size: 1.25rem;
  }
}
.legal-content h4 {
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .legal-content h4 {
    font-size: 1.125rem;
  }
}
.legal-content ul,
.legal-content ol {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-left: 1.25rem;
}
.legal-content a {
  color: #54bcbf;
  text-decoration: underline;
  text-underline-offset: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .legal-content a:hover {
    text-decoration: none;
  }
}
.legal-content strong {
  font-weight: 600;
}

.account-stat--shipping {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
}
.account-stat--shipping .account-stat__value,
.account-stat--shipping .account-stat__label,
.account-stat--shipping .account-stat__info {
  color: #ffffff;
}

.login-page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
}
@media (min-width: 768px) {
  .login-page {
    background-color: #F2EEE8;
  }
}
.login-page__bg {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 0;
  pointer-events: none;
}
.login-page__bg img {
  display: block;
  width: 100%;
  height: auto;
}
.login-page__cacao-decoration {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}
.login-page__cacao-decoration img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.login-page__cacao-decoration--top-left {
  top: 2rem;
  left: 1.5rem;
  width: 3.75rem;
  height: 7.5rem;
  opacity: 0.15;
}
@media (min-width: 768px) {
  .login-page__cacao-decoration--top-left {
    top: 3rem;
    left: 3rem;
    width: 5rem;
    height: 10rem;
  }
}
@media (min-width: 1200px) {
  .login-page__cacao-decoration--top-left {
    width: 6.125rem;
    height: 12.5rem;
  }
}
.login-page__cacao-decoration--bottom-right {
  bottom: 2rem;
  right: 1.5rem;
  width: 3.125rem;
  height: 6.25rem;
  opacity: 0.12;
  transform: rotate(15deg);
}
@media (min-width: 768px) {
  .login-page__cacao-decoration--bottom-right {
    bottom: 3rem;
    right: 3rem;
    width: 4.375rem;
    height: 8.75rem;
  }
}
@media (min-width: 1200px) {
  .login-page__cacao-decoration--bottom-right {
    width: 5.625rem;
    height: 11.25rem;
  }
}
.login-page__cacao-decoration--top-right {
  top: 4rem;
  right: 2rem;
  width: 2.5rem;
  height: 5rem;
  opacity: 0.1;
  transform: rotate(-20deg);
}
@media (min-width: 768px) {
  .login-page__cacao-decoration--top-right {
    top: 5rem;
    right: 4rem;
    width: 3.75rem;
    height: 7.5rem;
  }
}
@media (min-width: 1200px) {
  .login-page__cacao-decoration--top-right {
    width: 4.375rem;
    height: 8.75rem;
  }
}
.login-page__container {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
  padding: 1rem;
}
@media (min-width: 768px) {
  .login-page__container {
    padding: 1.5rem;
  }
}
.login-page__card {
  width: 100%;
  max-width: 27.5rem;
}
@media (min-width: 768px) {
  .login-page__card {
    border-radius: 0.75rem;
    background: #ffffff;
    padding: 1.5rem;
    border: 0.0625rem solid rgba(103, 103, 103, 0.2);
  }
}
@media (min-width: 768px) and (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .login-page__card {
      corner-shape: squircle;
      border-radius: 1.5rem;
    }
  }
}
.login-page__logo {
  display: block;
  text-align: center;
  margin-bottom: 2.5rem;
}
.login-page__logo img {
  height: 2.5rem;
  width: auto;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .login-page__logo img {
    height: 3rem;
  }
}
.login-page__header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.login-page__title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin: 0 0 0.5rem;
}
@media (min-width: 768px) {
  .login-page__title {
    font-size: 1.875rem;
  }
}
.login-page__subtitle {
  font-size: 1rem;
  color: #676767;
  margin: 0;
}
.login-page__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.login-page__lost-password {
  text-align: center;
  margin: 1rem 0 0;
}
.login-page__lost-password a {
  font-size: 0.875rem;
  color: #54bcbf;
  text-decoration: none;
}
.login-page__lost-password a:hover {
  text-decoration: underline;
}
.login-page .woocommerce-error,
.login-page .woocommerce-message,
.login-page .woocommerce-info {
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  list-style: none;
}
.login-page .woocommerce-error:focus-visible,
.login-page .woocommerce-message:focus-visible,
.login-page .woocommerce-info:focus-visible {
  outline: none;
}
.login-page .woocommerce-error::before,
.login-page .woocommerce-message::before,
.login-page .woocommerce-info::before {
  display: none;
}
.login-page .woocommerce-error li,
.login-page .woocommerce-message li,
.login-page .woocommerce-info li {
  color: #676767;
}
.login-page .woocommerce-error a:focus-visible,
.login-page .woocommerce-error button:focus-visible,
.login-page .woocommerce-message a:focus-visible,
.login-page .woocommerce-message button:focus-visible,
.login-page .woocommerce-info a:focus-visible,
.login-page .woocommerce-info button:focus-visible {
  outline: none;
  box-shadow: none;
}
.login-page .woocommerce-error {
  border-left: 4px solid #dc3545;
}
.login-page .woocommerce-error li {
  color: #dc3545;
}
.login-page .woocommerce-message {
  border-left: 4px solid #28a745;
}
.login-page .woocommerce-info {
  border-left: 4px solid #54bcbf;
}
.login-page .activation-alert {
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.1);
  border-radius: 0.5rem;
  padding: 1rem;
  font-size: 0.875rem;
}
.login-page .activation-alert p {
  color: #676767;
}
.login-page .activation-alert--error {
  border-left: 4px solid #dc3545;
}
.login-page .activation-alert--error p {
  color: #dc3545;
}
.login-page .activation-alert--success {
  border-left: 4px solid #28a745;
}
.login-page .activation-alert--success p {
  color: #28a745;
}
.login-page .activation-requirements {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #676767;
}
.login-page .activation-requirements__title {
  font-weight: 500;
}
.login-page .activation-requirements__list {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding-left: 1.5rem;
  line-height: 1.5;
}
.login-page .activation-requirements__list li {
  list-style: disc;
}
.login-page .password-input {
  position: relative;
  display: flex;
  align-items: center;
}
.login-page .password-input .form-control {
  padding-right: 3rem;
}
.login-page .show-password-input {
  appearance: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  font: inherit;
  color: inherit;
  position: absolute;
  top: 50%;
  right: 0.75rem;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #676767;
  transition: color 150ms ease;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .login-page .show-password-input:hover {
    color: #54bcbf;
  }
}
.login-page .show-password-input:focus-visible {
  outline: none;
}

.contact-page__container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .contact-page__container {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .contact-page__container {
    padding-left: 0;
    padding-right: 0;
  }
}
.contact-page__container {
  max-width: 45rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .contact-page__container {
    gap: 2rem;
  }
}
.contact-page__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: #ffffff;
  border: 0.0625rem solid rgba(103, 103, 103, 0.1);
  border-radius: 0.5rem;
}
@media (min-width: 768px) {
  @supports (corner-shape: squircle) {
    .contact-page__success {
      corner-shape: squircle;
      border-radius: 1rem;
    }
  }
}
@media (min-width: 768px) {
  .contact-page__success {
    padding: 3rem 1.5rem;
  }
}
.contact-page__success-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(40, 167, 69, 0.1);
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .contact-page__success-icon {
    width: 4rem;
    height: 4rem;
  }
}
.contact-page__success-icon svg {
  width: 1.75rem;
  height: 1.75rem;
  color: #28a745;
}
@media (min-width: 768px) {
  .contact-page__success-icon svg {
    width: 2rem;
    height: 2rem;
  }
}
.contact-page__success-title {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .contact-page__success-title {
    font-size: 1.5rem;
  }
}
.contact-page__success-text {
  font-size: 0.875rem;
  color: #676767;
  max-width: 25rem;
}
@media (min-width: 768px) {
  .contact-page__success-text {
    font-size: 1rem;
  }
}
.contact-page__honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

.error-404 {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #F2EEE8 0%, #ffffff 100%);
  padding: 1.5rem;
}
@media (min-width: 768px) {
  .error-404 {
    padding: 2rem;
  }
}
.error-404__container {
  width: 100%;
  max-width: 37.5rem;
}
.error-404__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
}
.error-404__logo img {
  height: 2.5rem;
  width: auto;
}
@media (min-width: 768px) {
  .error-404__logo img {
    height: 3.3125rem;
  }
}
.error-404__title {
  font-family: "Libre Caslon Text", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #2D190D;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .error-404__title {
    font-size: 1.875rem;
  }
}
.error-404__message {
  font-size: 1rem;
  color: #676767;
  line-height: 1.75;
  max-width: 25rem;
}
@media (min-width: 768px) {
  .error-404__message {
    font-size: 1.125rem;
  }
}
.error-404__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
@media (min-width: 768px) {
  .error-404__actions {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }
}
.error-404__help {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-top: 1rem;
  border-top: 0.0625rem solid rgba(103, 103, 103, 0.2);
}
.error-404__help-text {
  font-size: 0.875rem;
  color: #676767;
}
.error-404__help-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #54bcbf;
  text-decoration: none;
  transition: color 150ms ease;
}
.error-404__help-link svg {
  width: 1rem;
  height: 1rem;
}
@media (hover: hover) and (pointer: fine) {
  .error-404__help-link:hover {
    color: rgb(75.6, 169.2, 171.9);
  }
}

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