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

* {
  margin: 0;
  padding: 0;
  border: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img, picture, video, canvas, svg, iframe, embed, audio {
  display: block;
  max-width: 100%;
}

input, button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  border-radius: var(--border-radius);
  background: none;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
  word-break: break-word;
}

ol, ul {
  list-style: none;
}

a {
  cursor: pointer;
  text-underline-offset: 4px;
}

:root {
  --background-color: #F5E9D3;
  --primary-heading-text-color: #4A2C1D;
  --primary-text-color: #5E4632;
  --secondary-text-color: ;
  --border-color: #5E4632;
  --footer-border-color: rgba(var(--primary-text-color-rgb), .4);
  --welcome-background-color: #D4A373;
  --welcome-text-color: #FAF8F2;
  --logo-max-height: 120;
  --button-text-color: var(--background-color);
  --button-background-color: var(--primary-text-color);
  --button-hover-background-color: rgba(var(--primary-text-color-rgb), .8);
  --badge-text-color-primary: #FFFFFF;
  --badge-background-color-primary: #B8860B;
  --badge-text-color-secondary: #F8F1E7;
  --badge-background-color-secondary: #8B4513;
  --inventory-status-text-color: #C0392B;
  --announcement-background-color: #E2B76B;
  --announcement-text-color: #233D3A;
  --announcement-scroll-duration: 15s;
  --primary-font: "Cormorant", serif;
  --secondary-font: "Source Sans Pro", sans-serif;
  --error-background-color: #950f1e;
  --error-text-color: #FFFFFF;
  --border-radius: 4px;
  --border-radius-sm: 2px;
  --spacing-unit: 16px;
  --padding-size: 40px;
  --header-height: 108px;
  --header-height-mobile: 140px;
  --font-scale: 1;
  --shop-name-scale: 1;
  --product-grid-scale: 1;
  --product-title-scale: 1;
  --product-description-scale: 1;
  --header-scale: 1;
  --footer-scale: 1;
  --shop-sprinkles-size: 2em;
  --shop-sprinkles-animation: shake;
  --shop-sprinkles-style-duration: 4.6s;
  --shop-sprinkles-style-timing: cubic-bezier(0.33,0.65,0.45,1);
  --shop-sprinkles-fall-duration: 10.8s;
  --shop-sprinkles-spin-animation: none;
  --shop-sprinkles-density: 14;
  --video-rounded-radius: var(--border-radius);
  --video-margin-small: var(--spacing-unit);
  --video-margin-large: calc(var(--spacing-unit) * 2);
  --video-size-large: 100%;
}
@media screen and (max-width: 668px) {
  :root {
    --padding-size: 20px;
  }
}

html {
  min-height: 100%;
  position: relative;
  font-size: calc(16px * var(--font-scale, 1));
}

body {
  display: flex;
  flex-direction: column;
  background-color: #F5E9D3; /* Sandy Beige from new palette */
  background-image: url('https://i.ibb.co/mCTrm6gF/Gemini-Generated-Image-cgde46cgde46cgde.png');
  background-repeat: repeat;
  background-size: auto; /* Or specify a size if needed, e.g., 500px 500px */
  color: var(--primary-text-color);
  font-family: var(--secondary-font);
  font-size: 1rem;
  line-height: 1.5;
  height: 100%;
  min-height: 100vh;
}
body.overlay-open {
  height: 100vh;
  width: 100vw;
  overflow: hidden;
  overscroll-behavior: none;
}

.emoji {
  font-size: var(--shop-sprinkles-size) !important;
  animation-name: var(--shop-sprinkles-animation) !important;
  animation-duration: var(--shop-sprinkles-style-duration) !important;
  animation-timing-function: var(--shop-sprinkles-style-timing) !important;
}

.emoji .inner {
  animation-duration: var(--shop-sprinkles-fall-duration) !important;
}

.emoji .inner span {
  animation-name: var(--shop-sprinkles-spin-animation) !important;
}

a.skip-link {
  transition: all 0.3s;
  background: var(--background-color);
  border: 1px solid var(--primary-text-color);
  color: var(--primary-text-color);
  left: 25px;
  padding: 15px 20px;
  position: absolute;
  text-decoration: underline;
  top: -150px;
  z-index: 100;
}
a.skip-link:focus {
  top: 20px;
}

a, a:visited {
  color: #333333; /* Charcoal */
  text-decoration: none;
  transition: color 0.2s linear;
}
a:hover, a:visited:hover {
  text-decoration: underline;
  color: #D4AF37; /* Gold */
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-family: var(--primary-font);
  margin: 0;
  padding: 0;
  text-align: left;
  color: #D4AF37; /* Gold */
}

.errors {
  border-radius: var(--border-radius);
  padding: 16px;
  list-style: none;
  margin: 0 0 40px;
  text-align: center;
  background-color: var(--error-background-color);
  color: var(--error-text-color);
}

.wrapper {
  margin: 0 auto;
  padding: 0 var(--padding-size);
  position: relative;
  width: 100%;
  max-width: 1300px;
}

header {
  background: #333333;
  padding: 20px 0;
  width: 100%;
  z-index: 10;
  color: #FFFFFF;
}
header .wrapper {
  display: grid;
  grid-template-columns: 0.75fr 2.5fr 0.75fr;
  grid-template-rows: 1fr;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  position: relative;
  z-index: 5;
  column-gap: 16px;
}
@media screen and (max-width: 668px) {
  header .wrapper {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    row-gap: 16px;
  }
}
header .header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  left: -4px;
  font-size: calc(1.1rem * var(--header-scale, 1));
  position: relative;
  text-align: left;
  gap: 20px;
}
@media screen and (max-width: 668px) {
  header .header-nav {
    grid-column: 1;
    grid-row: 1;
  }
}
header .header-nav * {
  text-transform: initial;
}
header .header-nav .menu-bars {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFFFFF;
  padding: 0;
  height: 36px;
  position: relative;
  width: 36px;
  transition: color 0.2s linear;
}
header .header-nav .menu-bars:hover {
  color: #D4AF37;
}
header .header-nav .menu-bars svg {
  fill: currentColor;
  height: 22px;
  width: 22px;
}
header .header-nav .open-category-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s linear;
  outline-offset: 4px;
}
header .header-nav .open-category-nav:hover {
  color: var(--secondary-text-color);
}
header .header-nav .header-category-nav {
  position: relative;
  width: 100%;
}
@media screen and (max-width: 800px) {
  header .header-nav .header-category-nav {
    display: none;
  }
}
header .header-nav .category-nav-arrow {
  flex-shrink: 0;
  fill: currentColor;
  height: 11px;
  width: 15px;
}
header .header-nav .category-dropdown {
  background: var(--background-color);
  transition: opacity 0.2s linear;
  border-radius: var(--border-radius);
  border: 1px solid var(--primary-text-color);
  left: -23px;
  margin: 0 auto;
  min-width: 250px;
  opacity: 0;
  overflow-y: scroll;
  padding: 15px;
  position: absolute;
  text-align: left;
  visibility: hidden;
  max-height: 500px;
  z-index: 3;
  top: calc(100% + 10px);
  scrollbar-width: thin;
  scrollbar-color: var(--primary-text-color) transparent;
  scrollbar-gutter: stable;
}
header .header-nav .category-dropdown[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
header .header-nav .category-dropdown::-webkit-scrollbar {
  height: 0.375rem;
  width: 0.75rem;
}
header .header-nav .category-dropdown::-webkit-scrollbar-track {
  background-color: transparent;
}
header .header-nav .category-dropdown::-webkit-scrollbar-thumb {
  border-radius: 0.375rem;
  border: 3px solid transparent;
  background-color: var(--primary-text-color);
  background-clip: content-box;
}
header .header-nav .category-dropdown .dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  z-index: 4;
}
header .header-nav .category-dropdown .dropdown-list li {
  display: block;
}
header .header-nav .category-dropdown .dropdown-list li a {
  display: block;
  font-size: calc(.95rem * var(--header-scale, 1));
  padding: 8px 10px;
}
header .header-nav .category-dropdown .dropdown-list li a:hover {
  text-decoration: underline;
}
header .store-name {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: calc(2.5rem * var(--shop-name-scale, 1) * var(--header-scale, 1));
  height: 100%;
  text-align: center;
  padding: 0 16px;
  word-break: break-word;
}
@media screen and (max-width: 800px) {
  header .store-name {
    font-size: calc(2rem * var(--shop-name-scale, 1) * var(--header-scale, 1));
  }
}
@media screen and (max-width: 668px) {
  header .store-name {
    font-size: calc(1.7rem * var(--shop-name-scale, 1) * var(--header-scale, 1));
    grid-column: 1/-1;
    grid-row: 2;
    padding: 0;
    height: auto;
  }
}
header .store-name.image {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .store-name.image .store-link {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .store-name.image img {
  display: block;
  margin: 0 auto;
  height: calc(var(--logo-max-height) * 1px);
  max-width: 100%;
  width: auto;
  object-fit: contain;
}
@media screen and (max-width: 800px) {
  header .store-name.image img {
    height: calc(var(--logo-max-height) * 0.75 * 1px);
  }
}
@media screen and (max-width: 668px) {
  header .store-name.image img {
    height: calc(var(--logo-max-height) * 0.65 * 1px);
  }
}
header .store-name .store-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--primary-font);
}
header .header-cart {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  text-align: right;
  column-gap: 16px;
  right: -4px;
}
header .header-cart .cart-link, header .header-cart .open-search {
  border-radius: var(--border-radius);
}
header .header-cart .cart-link:hover, header .header-cart .open-search:hover {
  color: #D4AF37;
}
@media screen and (max-width: 668px) {
  header .header-cart {
    column-gap: 8px;
    right: -8px;
    grid-column: 2;
    grid-row: 1;
  }
}
header .header-cart .cart-link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  width: 36px;
  position: relative;
  text-align: center;
  flex-shrink: 0;
  transition: color 0.2s linear;
}
header .header-cart .cart-link svg {
  fill: currentColor;
}
header .header-cart .cart-link:hover {
  color: var(--secondary-text-color);
}
header .header-cart .cart-link .cart-num-items {
  font-size: 0.75rem;
  position: absolute;
  top: 12px;
}
header .header-cart svg {
  fill: #FFFFFF;
  height: 30px;
  width: 30px;
}
@media screen and (max-width: 668px) {
  header .header-cart svg {
    height: 26px;
    width: 26px;
  }
}
header .header-cart .open-search {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
}
header .header-cart .open-search svg {
  height: 22px;
  position: relative;
  fill: currentColor;
  top: 2px;
  width: 22px;
}
@media screen and (max-width: 668px) {
  header .header-cart .open-search svg {
    height: 20px;
    width: 20px;
  }
}

.content {
  flex: 1;
  padding: 48px 0 120px;
}
@media screen and (max-width: 800px) {
  .content {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 668px) {
  .content {
    padding-top: 20px;
    padding-bottom: 150px;
  }
}
.content h1 {
  font-size: 1.8rem;
  margin-bottom: 60px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .content h1 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 668px) {
  .content h1 {
    font-size: 1.25rem;
    margin-bottom: 40px;
  }
}
.content.product .wrapper {
  max-width: 1200px;
}
.content.custom .wrapper {
  max-width: calc(800px + var(--padding-size));
}
.content.custom .custom-page-content {
  font-family: var(--secondary-font);
}
.content.custom .custom-page-content p {
  margin: revert;
}
.content.custom .custom-page-content > :first-child {
  margin-top: 0;
}
.content.custom .custom-page-content > :last-child {
  margin-bottom: 0;
}
.content.custom .custom-page-content ol, .content.custom .custom-page-content ul {
  padding-left: 1.5em;
  margin: 1em 0;
}
.content.custom .custom-page-content ol ol, .content.custom .custom-page-content ol ul, .content.custom .custom-page-content ul ol, .content.custom .custom-page-content ul ul {
  margin: 0.5em 0;
}
.content.custom .custom-page-content ul {
  list-style: disc;
}
.content.custom .custom-page-content ol {
  list-style: decimal;
}
.content.custom .custom-page-content a {
  text-decoration: underline;
}
.content.custom .custom-page-content img {
  dislay: inline-block;
  margin: 0 auto;
  max-width: 100%;
  margin-bottom: 16px;
}
.content.custom .custom-page-content iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  margin-bottom: 16px;
}
.content .page-title, .content .page-header {
  color: var(--primary-heading-text-color);
  margin: 40px 0 20px;
}
.content.page-contact .wrapper {
  max-width: calc(760px + var(--padding-size));
}
.content.page-cart .wrapper {
  max-width: calc(880px + var(--padding-size));
}

footer *:not(.footer-custom-content) {
  text-transform: initial;
}
footer .wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  margin: 0 auto;
  padding: 40px 40px;
  border-top: 1px solid var(--footer-border-color);
  font-size: calc(1.125rem * var(--footer-scale, 1));
  background: #333333;
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  footer .wrapper {
    font-size: calc(1rem * var(--footer-scale, 1));
  }
}

.footer__pages {
  width: 100%;
  display: flex;
  column-gap: 30px;
  flex-wrap: wrap;
  margin: 0 auto;
  align-items: center;
  justify-content: center;
  row-gap: 6px;
}
@media screen and (max-width: 500px) {
  .footer__pages {
    flex-direction: column;
    text-align: center;
  }
}
.footer__pages a {
  display: block;
  padding: 2px;
  color: #FFFFFF;
}
.footer__pages a:hover {
  text-decoration: underline;
  color: #D4AF37;
}

.footer-custom-content {
  display: block;
  text-align: center;
  padding: 10px 10px 20px 10px;
  font-size: calc(1rem * var(--footer-scale, 1));
}
.footer-custom-content img {
  display: block;
  margin: 20px auto;
}
.footer-custom-content a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.social-icons {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (max-width: 668px) {
  .social-icons {
    gap: 16px;
  }
}
.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  color: #FFFFFF;
}
.social-icons a:hover {
  color: #D4AF37;
}
.social-icons a svg {
  fill: currentColor;
  height: 20px;
  width: 20px;
}
.social-icons a svg.tumblr-icon {
  width: 14px;
}
.social-icons a svg.reddit-icon, .social-icons a svg.discord-icon {
  width: 24px;
  height: 24px;
}

.bigcartel-credit {
  line-height: 1em;
  font-size: 0.975rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  outline-offset: 4px;
  padding: 2px 0;
  text-decoration: none;
}
.bigcartel-credit:hover {
  text-decoration: none;
}
.bigcartel-credit__text {
  position: relative;
}
.bigcartel-credit__lockup {
  display: block;
  fill: currentColor;
  padding-top: 1px;
  width: 80px;
}

.select {
  border-radius: var(--border-radius);
  border: 1px solid var(--primary-text-color);
  font-family: var(--secondary-font);
  height: 60px;
  padding: 0;
  position: relative;
  width: 100%;
}
.select select {
  height: 100%;
  padding: 0 50px 0 20px;
  position: relative;
  width: 100%;
  z-index: 2;
}
.select select option {
  background-color: #FFF;
  color: #000;
}
.select select option:disabled {
  color: graytext;
}
.select select:focus {
  box-shadow: none;
}
.select select::-ms-expand {
  display: none;
}
.select svg {
  fill: currentColor;
  pointer-events: none;
  height: 8px;
  margin-top: -2px;
  position: absolute;
  right: 20px;
  top: 50%;
  width: 13px;
  z-index: 1;
}

.button, a.button {
  transition: background 0.2s linear;
  background: #D4AF37; /* Gold */
  border-radius: var(--border-radius);
  color: #FFFFFF; /* White */
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 275px;
  padding: 20px;
  text-align: center;
  white-space: pre-wrap;
  width: 100%;
}
.button:not(:disabled):hover, .button:not(:disabled):active, a.button:not(:disabled):hover, a.button:not(:disabled):active {
  background: #c18e3c; /* Darker Gold on hover */
  color: #FFFFFF;
}

input, textarea {
  border-radius: var(--border-radius);
  background: var(--background-color);
  border: 1px solid var(--primary-text-color);
  color: var(--primary-text-color);
  font-family: var(--secondary-font);
  max-width: 100%;
  padding: 14px;
}

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

.message-banner {
  padding: 16px;
  margin: 0 auto 32px;
  text-align: center;
  width: 100%;
  max-width: 760px;
}
.message-banner--centered {
  text-align: center;
}
.message-banner--no-bg {
  color: var(--primary-text-color);
  background: none;
  padding: 0;
}

.announcement-message {
  align-items: center;
  background-color: var(--announcement-background-color);
  color: var(--announcement-text-color);
  display: none;
  font-size: calc(1.1rem * var(--header-scale, 1));
  justify-content: center;
  line-height: 1.25em;
  padding: 22px 96px;
  position: relative;
  text-align: center;
  width: 100%;
  z-index: 500;
}
.announcement-message a, .announcement-message a:visited {
  color: var(--announcement-text-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media screen and (max-width: 668px) {
  .announcement-message {
    padding: 14px 64px;
  }
}
.announcement-message.visible {
  display: flex;
}
.announcement-message__close-button {
  align-items: center;
  color: var(--announcement-text-color);
  display: flex;
  height: 32px;
  justify-content: center;
  padding: 0;
  position: absolute;
  right: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
}
@media screen and (max-width: 668px) {
  .announcement-message__close-button {
    right: 16px;
  }
}
.announcement-message__close-icon {
  height: 14px;
  width: 14px;
}
.announcement-message__text {
  display: inline-flex;
}
.announcement-message--scrolling {
  cursor: pointer;
  padding: 0;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (hover: hover) {
  .announcement-message--scrolling:hover .announcement-message__scroll-content {
    animation-play-state: paused;
  }
}
.announcement-message--scrolling:focus-visible .announcement-message__scroll-content {
  animation-play-state: paused;
}
.announcement-message--scrolling.is-paused .announcement-message__scroll-content {
  animation-play-state: paused;
}
.announcement-message--scrolling .announcement-message__text {
  padding: 0 96px;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
@media screen and (max-width: 668px) {
  .announcement-message--scrolling .announcement-message__text {
    padding: 0 64px;
  }
}
.announcement-message__scroll-wrapper {
  padding: 22px 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  isolation: isolate;
}
@media screen and (max-width: 668px) {
  .announcement-message__scroll-wrapper {
    padding: 14px 0;
  }
}
.announcement-message__scroll-content {
  display: inline-flex;
  white-space: nowrap;
  animation: scroll-announcement var(--announcement-scroll-duration) linear infinite;
  contain: layout style;
}

@keyframes scroll-announcement {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(var(--scroll-distance, -20%), 0, 0);
  }
}
.cart-container {
  margin: 0 auto;
  max-width: 800px;
  width: 100%;
}
@media screen and (max-width: 668px) {
  .cart-container {
    max-width: 100%;
  }
}

.cart-empty {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 600px;
  align-items: center;
  margin: 0 auto;
  width: 100%;
}

.cart-columns {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 1fr;
  column-gap: 64px;
}
@media screen and (max-width: 945px) {
  .cart-columns {
    grid-template-columns: 1fr;
  }
}

.cart-header {
  display: grid;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.cart-header .page-title {
  margin-bottom: 0;
}

.copy-cart-link {
  margin-left: auto;
}

.cart-items {
  border-bottom: 1px solid var(--border-color);
}

.cart-item {
  display: grid;
  grid-template-columns: auto 1fr 148px auto;
  justify-content: flex-start;
  align-items: flex-start;
  border-top: 1px solid var(--border-color);
  padding: 24px 0;
  gap: 16px;
}
@media (max-width: 945px) {
  .cart-item {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: repeat(2, auto);
  }
}
@media screen and (max-width: 945px) {
  .cart-item .cart-item-image-holder {
    grid-area: 1/1/3/2;
  }
}
.cart-item .cart-item-image-link {
  display: block;
  height: 90px;
  overflow: hidden;
  width: 90px;
}
@media screen and (max-width: 945px) {
  .cart-item .cart-item-image-link {
    height: 64px;
    width: 64px;
  }
}
.cart-item .cart-item-image-link img {
  border-radius: var(--border-radius);
  height: 100%;
  object-fit: cover;
  width: 100%;
}
.cart-item .cart-item-detail {
  padding-right: 24px;
}
@media (max-width: 945px) {
  .cart-item .cart-item-detail {
    grid-area: 1/2/2/3;
    padding-right: 0;
  }
}
.cart-item .product-name {
  font-size: 1.2rem;
  word-break: break-word;
}
.cart-item .option-name {
  font-size: 1rem;
  margin-top: 4px;
}
.cart-item input {
  border: none;
  height: 100%;
  padding: 8px;
  text-align: center;
  width: 48px;
}
.cart-item input::-webkit-outer-spin-button, .cart-item input::-webkit-inner-spin-button {
  display: none;
}
.cart-item .cart-qty {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 148px;
  gap: 8px;
}
@media (max-width: 945px) {
  .cart-item .cart-qty {
    align-items: center;
    grid-area: 2/2/3/4;
    justify-content: flex-start;
    flex-direction: row;
    width: 100%;
    gap: 24px;
  }
}
.cart-item .qty-holder {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius);
  gap: 8px;
}
.cart-item .qty-holder.disabled > * {
  opacity: 0.7;
  cursor: not-allowed;
  user-select: none;
  pointer-events: none;
}
.cart-item .qty-button {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 36px;
}
.cart-item .qty-button svg {
  width: 14px;
  height: 16px;
}
.cart-item .cart-remove-item--link {
  display: inline-block;
  height: auto;
  padding: 0.5em;
  line-height: 1em;
  font-weight: normal;
  font-size: 0.925rem;
  padding: 8px 16px;
  width: auto;
}
@media (max-width: 945px) {
  .cart-item .cart-remove-item--link {
    padding: 4px 0;
    margin-left: auto;
  }
}
.cart-item .cart-item-price {
  font-size: 1.1rem;
  margin-left: auto;
  min-width: 100px;
  min-height: 42px;
  display: flex;
  justify-content: flex-end;
  text-align: right;
  flex-direction: column;
}
.cart-item .cart-item-price .price-suffix {
  font-size: 0.9rem;
}
@media screen and (max-width: 945px) {
  .cart-item .cart-item-price {
    font-size: 1.2rem;
    min-height: 0;
    min-width: 0;
    grid-area: 1/3/2/4;
    margin-left: 0;
  }
}

.cart-footer {
  display: grid;
  place-items: center;
  gap: 2rem;
  margin-top: 24px;
  margin-left: auto;
  width: 100%;
  max-width: 300px;
}
@media screen and (max-width: 668px) {
  .cart-footer {
    max-width: 100%;
  }
}

.cart-subtotal {
  display: flex;
  gap: 16px;
  font-size: 1.5rem;
  align-items: flex-start;
  width: 100%;
}
.cart-subtotal__amount {
  margin-left: auto;
}

.cart-submit {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
}
.cart-submit .button {
  max-width: 100%;
  width: 100%;
}

.message-banner--cart {
  border-radius: var(--border-radius);
  background-color: var(--announcement-background-color);
  color: var(--announcement-text-color);
  padding: 16px;
  margin: 0 auto 32px;
  text-align: center;
  width: 100%;
  max-width: 760px;
}
.message-banner--cart a, .message-banner--cart a:visited {
  color: var(--announcement-text-color);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-form .form-block {
  margin-bottom: 24px;
  text-align: left;
}
.contact-form input {
  height: 54px;
}
.contact-form textarea {
  height: 220px;
  resize: vertical;
}
.contact-form input, .contact-form textarea {
  width: 100%;
}
.contact-form input:active, .contact-form input:focus, .contact-form textarea:active, .contact-form textarea:focus {
  border: 1px solid var(--primary-text-color);
}
.contact-form label {
  display: block;
  margin-bottom: 8px;
}
.contact-form .contact-name, .contact-form .contact-recaptcha, .contact-form .contact-send, .contact-form .contact-email {
  display: block;
  position: relative;
  width: 100%;
}
.contact-form .recaptcha-note {
  display: block;
  font-family: var(--secondary-font);
  font-size: 0.975rem;
  margin-top: 10px;
  text-align: center;
}
.contact-form .recaptcha-note a {
  text-decoration: underline;
}
.contact-form .contact-send {
  text-align: center;
  width: 100%;
}
.contact-form .contact-send button {
  margin: 30px auto;
  width: 300px;
}
@media screen and (max-width: 668px) {
  .contact-form .contact-send button {
    max-width: 100%;
    width: 100%;
  }
}

.message-sent {
  text-align: center;
}

.message-banner--contact {
  color: var(--primary-text-color);
  background-color: unset;
  padding: 0;
  text-align: center;
  width: 100%;
}
.message-banner--contact a, .message-banner--contact a:visited {
  display: inline;
  text-decoration: underline;
}
.message-banner--contact ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}
.message-banner--contact li {
  text-align: center;
}
.message-banner--contact img {
  display: block;
  margin: 10px auto;
}

:root {
  --pagination-background: transparent;
  --pagination-page-background: var(--primary-text-color);
  --pagination-active-page: var(--primary-text-color);
}

.home-welcome {
  border-radius: var(--border-radius);
  margin: 0 auto 40px;
  clip-path: content-box;
}
.home-welcome > a {
  display: block;
}
.home-welcome .welcome-image {
  display: block;
  width: 100%;
}
.home-welcome .welcome-message {
  background: var(--welcome-background-color);
  color: var(--welcome-text-color);
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
  border: 10px solid transparent;
  border-image: url('https://i.ibb.co/mrz417GB/border.png') 30 round;
}
@media screen and (max-width: 668px) {
  .home-welcome .welcome-message {
    padding: 20px;
    gap: 20px;
  }
}
.home-welcome .welcome-message .welcome-header {
  color: var(--welcome-text-color);
  font-size: 1.5rem;
  font-weight: normal;
  margin: 0 auto;
  max-width: 600px;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 668px) {
  .home-welcome .welcome-message .welcome-header {
    font-size: 1.1rem;
    padding: 20px 0;
  }
}
.home-welcome .welcome-message a.welcome-button {
  display: inline-flex;
  margin-left: auto;
  margin-right: auto;
  max-width: 600px;
  min-width: 300px;
  padding: 20px 60px;
  width: auto;
}
@media screen and (max-width: 668px) {
  .home-welcome .welcome-message a.welcome-button {
    max-width: 100%;
    min-width: 0;
    width: 100%;
  }
}
.home-welcome.has-welcome-text .home-slideshow {
  background: var(--welcome-background-color);
}
.home-welcome .home-slideshow .splide__slide {
  width: 100%;
}
.home-welcome .home-slideshow .slideshow-image {
  border-radius: var(--border-radius);
  width: 100%;
}
.home-welcome .home-slideshow .splide__arrow {
  width: 2.5rem;
  height: 2.5rem;
  z-index: 10;
  opacity: 0;
  transition: opacity 0.2s;
  background: rgba(255, 255, 255, 0.5);
  border: none;
  border-radius: var(--border-radius);
  backdrop-filter: blur(4px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  top: calc(50% - 15px);
  transform: translateY(-50%);
}
.home-welcome .home-slideshow .splide__arrow:not(:disabled):hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.95);
}
.home-welcome .home-slideshow .splide__arrow svg {
  fill: #262626;
  transition: fill 0.2s;
}
.home-welcome .home-slideshow .splide__arrow:hover svg {
  fill: #000;
}
.home-welcome .home-slideshow .splide__pagination {
  z-index: 1;
  background: var(--pagination-background);
  border-radius: 18px;
  display: inline-flex;
  position: relative;
  margin-top: 8px;
  bottom: auto;
  align-items: center;
  justify-content: center;
  transform: translateX(-50%);
  left: 50%;
  padding: 4px 8px;
  gap: 2px;
  right: auto;
}
.home-welcome .home-slideshow .splide__pagination li {
  display: flex;
}
.home-welcome .home-slideshow .splide__pagination .splide__pagination__page {
  opacity: 1;
  background: none;
  border: 1px solid var(--pagination-page-background);
  height: 10px;
  width: 10px;
}
.home-welcome .home-slideshow .splide__pagination .splide__pagination__page.is-active {
  background: var(--pagination-active-page);
  transform: scale(1.1);
}

#main .featured-container {
  margin: 0 auto 48px auto;
  max-width: 1024px;
  font-size: 1rem;
}
@media screen and (max-width: 800px) {
  #main .featured-container {
    font-size: 0.95rem;
  }
}
#main .featured-title {
  margin-bottom: 0;
  font-size: calc(1.5em * var(--product-grid-scale, 1));
  text-align: center;
}
@media screen and (max-width: 668px) {
  #main .featured-title {
    font-size: calc(1.35em * var(--product-grid-scale, 1));
  }
}
#main .featured-message {
  text-align: center;
  margin: 20px auto 40px auto;
  padding: 0 1.5rem;
}
#main .featured-message ol, #main .featured-message ul {
  text-align: left;
  margin: 1em auto;
  max-width: 600px;
  padding-left: 2.5em;
}
#main .featured-message ol ol, #main .featured-message ol ul, #main .featured-message ul ol, #main .featured-message ul ul {
  margin: 0.5em 0;
  padding-left: 1.5em;
}
#main .featured-message ul {
  list-style: disc;
}
#main .featured-message ol {
  list-style: decimal;
}
#main .featured-message a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
#main .featured-message img {
  display: inline-block;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 16px;
}
#main .featured-message iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  margin-bottom: 16px;
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.collage-image {
  opacity: 1;
  animation: fade-in 0.4s ease-in-out forwards;
}
.collage-image.loading {
  opacity: 0;
  animation: none;
}

.video-embed-container {
  margin-top: 28px;
  padding-bottom: 20px;
}

.welcome-clickable {
  cursor: pointer;
}
.welcome-clickable:hover {
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

/* Hero Video Section */
.hero-video-container {
  position: relative;
  width: 100%;
  margin: 0 auto 40px;
  max-width: 1200px;
  overflow: hidden;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.hero-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 20px;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0 0 15px;
  letter-spacing: 1px;
  font-family: var(--primary-font);
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: #FFFFFF;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
  margin-bottom: 25px;
  font-family: var(--secondary-font);
}

.hero-button-container {
  display: flex;
  justify-content: center;
}

.hero-button {
  display: inline-block;
  background: #D4AF37;
  color: #FFFFFF;
  padding: 15px 35px;
  font-size: 1.2rem;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid #FFFFFF;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-button:hover {
  background: #c18e3c;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
  color: #FFFFFF;
}

/* Overlay effect for video */
.hero-video-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Featured Products Section */
.featured-products-section {
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.featured-products-section {
  position: relative;
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.featured-products-section {
  text-align: center; /* Center the content inside this container */
  margin: 60px auto;
  max-width: 1200px;
  padding: 0 20px;
}

.featured-products-section .featured-title {
  text-align: center;
  font-size: 2.2rem;
  color: #333333;
  margin: 40px auto 50px;
  font-family: var(--primary-font);
  background: rgba(253, 243, 218, 0.95);
  display: inline-block; /* Changed back to inline-block with centered container */
  padding: 15px 40px;
  border-radius: 30px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid #D4AF37;
}

.featured-products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Product styling overrides for featured section */
.featured-products .product-list-thumb {
  border: 10px solid transparent;
  border-image: url('https://i.ibb.co/mrz417GB/border.png') 30 round;
  width: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: rgba(253, 243, 218, 0.7);
  border-radius: var(--border-radius);
  padding: 10px;
}

.featured-products .product-list-thumb:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.featured-products .product-list-image-container {
  border-radius: var(--border-radius);
  margin: 0 auto; /* Center the image container */
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
  max-width: 250px; /* Limit width for better centering */
}

.featured-products .product-list-image {
  border-radius: var(--border-radius);
  transform: translate3d(0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  object-fit: cover; /* Ensure proper image fitting */
}

.featured-products .product-list-thumb-info {
  line-height: normal;
  padding: 12px 0 0;
  position: relative;
  text-align: center;
  display: grid;
  gap: 8px;
  font-size: calc(1rem * var(--product-grid-scale, 1));
  align-items: center; /* Center content vertically */
  justify-items: center; /* Center content horizontally */
}

.featured-products .product-list-thumb-name {
  color: #333333;
  font-weight: bold;
  transition: color 0.3s ease;
  text-align: center; /* Center the text */
  width: 100%; /* Ensure full width for centering */
}

.featured-products .product-list-thumb-name:hover {
  color: #D4AF37;
}

.featured-products .product-list-thumb-price {
  color: #333333;
  font-weight: bold;
  transition: color 0.3s ease;
  text-align: center; /* Center the text */
  width: 100%; /* Ensure full width for centering */
}

.featured-products .product-list-thumb-price:hover {
  color: #D4AF37;
}

/* Product page styling */
.content.page-products .page-title {
  color: var(--primary-heading-text-color);
  transition: color 0.3s ease;
}

.content.page-products .page-title:hover {
  color: #D4AF37;
}

/* Product list styling for products page */
.content.page-products .product-list-thumb-name {
  color: #333333;
  transition: color 0.3s ease;
}

.content.page-products .product-list-thumb-name:hover {
  color: #D4AF37;
}

.content.page-products .product-list-thumb-price {
  color: #333333;
  transition: color 0.3s ease;
}

.content.page-products .product-list-thumb-price:hover {
  color: #D4AF37;
}

/* Product list link hover effect */
.content.page-products .product-list-link:hover .product-list-thumb-name,
.content.page-products .product-list-link:hover .product-list-thumb-price {
  color: #D4AF37;
}

/* General product list styling for products page */
.content.page-products .product-list-thumb-name {
  color: #333333;
  font-weight: bold;
  transition: color 0.3s ease;
}

.content.page-products .product-list-thumb-name:hover {
  color: #D4AF37;
}

.content.page-products .product-list-thumb-price {
  color: #333333;
  transition: color 0.3s ease;
}

.content.page-products .product-list-thumb-price:hover {
  color: #D4AF37;
}

.featured-products .product-list-thumb-status {
  top: 12px;
  right: 12px;
  position: absolute;
  z-index: 2;
  font-size: calc(0.925rem * min(var(--product-grid-scale, 1), 1.25));
  line-height: normal;
  display: inline-block;
  padding: 6px 8px;
  border-radius: var(--border-radius-sm);
  background: var(--badge-background-color-primary);
  color: var(--badge-text-color-primary);
}

/* Responsive adjustments */
@media screen and (max-width: 900px) {
  .hero-title {
    font-size: 3rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .featured-products {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 600px) {
  .hero-title {
    font-size: 2rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .hero-button {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .featured-products {
    grid-template-columns: 1fr;
  }
  
  .featured-products-section .featured-title {
    font-size: 2rem;
  }
}

.product-password-form-container {
  margin: 40px auto;
  padding: 0 20px;
}
.product-password-form-container h1 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.product-breadcrumb {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  column-gap: 12px;
  row-gap: 4px;
  flex-wrap: wrap;
}
@media screen and (max-width: 668px) {
  .product-breadcrumb {
    font-size: 0.925rem;
  }
}
.product-breadcrumb .next-arrow {
  width: 5px;
  fill: var(--primary-text-color);
  opacity: 0.8;
}
.product-breadcrumb a {
  text-decoration: none;
}
.product-breadcrumb a:hover {
  text-decoration: underline;
}

.product-container {
  display: grid;
  grid-template-columns: 1fr 400px;
  column-gap: 60px;
  row-gap: 40px;
}
@media screen and (max-width: 945px) {
  .product-container {
    column-gap: 40px;
    grid-template-columns: 1fr 360px;
  }
}
@media screen and (max-width: 800px) {
  .product-container {
    grid-template-columns: minmax(0, 1fr);
  }
}

.reset-selection-button-container {
  text-align: center;
  width: 100%;
}
.reset-selection-button-container button.reset-selection-button {
  display: none;
}

.product-form {
  width: 100%;
}
.product-form button {
  max-width: 100%;
}
@media screen and (max-width: 945px) {
  .product-form {
    max-width: 100%;
  }
}

.product-selects {
  margin-bottom: 20px;
}

.product-option-groups {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-detail {
  display: flex;
  flex-direction: column;
  row-gap: 36px;
}
.product-detail__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.product-detail__title, .product-detail .page-title {
  color: var(--primary-heading-text-color);
  font-size: calc(2rem * var(--product-title-scale, 1));
  line-height: 1.2;
  padding-bottom: 10px;
}
@media screen and (max-width: 945px) {
  .product-detail__title, .product-detail .page-title {
    font-size: calc(1.9rem * var(--product-title-scale, 1));
  }
}
@media screen and (max-width: 668px) {
  .product-detail__title, .product-detail .page-title {
    font-size: calc(1.5rem * var(--product-title-scale, 1));
  }
}
.product-detail__status {
  font-size: calc(0.875rem * min(var(--product-title-scale, 1), 1.3));
  line-height: normal;
  display: inline-block;
}
.product-detail__pricing {
  display: flex;
  align-items: center;
  font-size: calc(1.3rem * var(--product-title-scale, 1));
  color: var(--primary-text-color);
}
@media screen and (max-width: 668px) {
  .product-detail__pricing {
    font-size: calc(1.1rem * var(--product-title-scale, 1));
  }
}
.product-detail__separator {
  margin: 0 8px;
}
.product-detail__description {
  font-size: calc(1rem * var(--product-description-scale, 1));
}
.product-detail__description p {
  margin: revert;
}
.product-detail__description > :first-child {
  margin-top: 0;
}
.product-detail__description > :last-child {
  margin-bottom: 0;
}
.product-detail__description ol, .product-detail__description ul {
  padding-left: 1.5em;
  margin: 1em 0;
}
.product-detail__description ol ol, .product-detail__description ol ul, .product-detail__description ul ol, .product-detail__description ul ul {
  margin: 0.5em 0;
}
.product-detail__description ul {
  list-style: disc;
}
.product-detail__description ol {
  list-style: decimal;
}
.product-detail__description a {
  text-decoration: underline;
}
.product-detail__description img {
  display: inline-block;
  margin: 0 auto;
  max-width: 100%;
  margin-bottom: 16px;
}
.product-detail__description iframe {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  margin-bottom: 16px;
}
.product-detail .page-title {
  color: var(--primary-heading-text-color);
  margin-bottom: 0;
  text-align: left;
}

.related-products-container {
  margin-top: 100px;
}

.related-products-header {
  display: flex;
  align-items: center;
  font-size: calc(1rem * var(--product-grid-scale, 1));
}
@media screen and (max-width: 800px) {
  .related-products-header {
    font-size: calc(0.8rem * var(--product-grid-scale, 1));
  }
}
@media screen and (max-width: 500px) {
  .related-products-header {
    display: block;
  }
}
.related-products-header .related-products-view-all-link {
  margin-left: auto;
}
.related-products-header .related-products-view-all-link:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.related-product-list.product-list {
  --columns: 4;
}
@media screen and (max-width: 800px) {
  .related-product-list.product-list {
    justify-content: flex-start;
  }
}
@media screen and (max-width: 945px) {
  .related-product-list.product-list {
    --columns: 2;
    --gap: calc(var(--spacing-unit) * 2);
  }
}
@media screen and (max-width: 668px) {
  .related-product-list.product-list {
    --columns: 2;
  }
}

.product-list {
  --gap: calc(var(--spacing-unit) * 4);
  --row-gap: 56px;
  --columns: 3;
  --spacing-unit: 20px; /* Increased spacing for larger images */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  row-gap: var(--row-gap);
  margin-top: 28px;
}
.product-list--center {
  justify-content: center;
}
@media screen and (max-width: 800px) {
  .product-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 668px) {
  .product-list {
    grid-template-columns: repeat(1, 1fr);
    --gap: calc(var(--spacing-unit) * 2);
  }
}
@media screen and (max-width: 668px) {
  .product-list {
    --row-gap: 24px;
  }
}

.product-list-thumb {
  border: 15px solid transparent; /* Increased border size */
  border-image: url('https://i.ibb.co/mrz417GB/border.png') 40 round; /* Increased slice size for better border rendering */
  width: 100%; /* Grid will handle width distribution */
  transition: transform 0.3s ease, box-shadow 0.3s ease; /* Add transition for hover effect */
}

.product-list-thumb:hover {
  transform: translateY(-5px); /* Subtle lift effect on hover */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15); /* Enhanced shadow on hover */
}

a.product-list-link {
  text-decoration: none;
  outline-offset: 4px;
  position: relative;
}
@media (hover: hover) {
  a.product-list-link:hover .product-list-thumb-name {
    text-decoration: underline;
  }
}

.product-list-image-container {
  border-radius: var(--border-radius);
  margin: 0;
  overflow: hidden;
  padding-bottom: 100%;
  position: relative;
  width: 100%;
}
.product-list-image-container-default {
  padding-bottom: 0;
}

.product-list-image {
  border-radius: var(--border-radius);
  transform: translate3d(0, 0, 0);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.product-list-image.grid-default {
  position: relative;
}
.product-list-image.grid-cover {
  object-fit: cover;
}
.product-list-image.grid-contain {
  object-fit: contain;
}

.home-featured-categories .product-list-image-container-default {
  padding-bottom: 100%;
}
.home-featured-categories .product-list-image.grid-default {
  position: absolute;
  object-fit: contain;
}

.product-list-thumb-status {
  top: 12px;
  right: 12px;
  position: absolute;
  z-index: 2;
  font-size: calc(0.925rem * min(var(--product-grid-scale, 1), 1.25));
  line-height: normal;
  display: inline-block;
  padding: 6px 8px;
  border-radius: var(--border-radius-sm);
}
.product-list-thumb-status.status-primary {
  background: var(--badge-background-color-primary);
  color: var(--badge-text-color-primary);
}
.product-list-thumb-status.status-secondary {
  background: var(--badge-background-color-secondary);
  color: var(--badge-text-color-secondary);
}

.product-list-thumb-info {
  line-height: normal;
  padding: 12px 0 0;
  position: relative;
  text-align: center;
  display: grid;
  gap: 8px;
  font-size: calc(1rem * var(--product-grid-scale, 1));
}
.product-list-thumb-info--left {
  text-align: left;
}

.product-list-thumb-name {
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .product-list-thumb-name {
    font-size: calc(1rem * var(--product-grid-scale, 1));
  }
}

.product-list-thumb-price {
  color: #FFFFFF;
}
@media screen and (max-width: 800px) {
  .product-list-thumb-price {
    font-size: calc(0.9rem * var(--product-grid-scale, 1));
  }
}

.product-list-thumb-options-description {
  font-style: italic;
  font-size: calc(1rem * var(--product-grid-scale, 1));
  margin-top: -4px;
}
@media screen and (max-width: 800px) {
  .product-list-thumb-options-description {
    font-size: calc(0.9rem * var(--product-grid-scale, 1));
  }
}

.price-suffix {
  white-space: nowrap;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary-text-color);
  position: relative;
  text-align: center;
  width: 100%;
  gap: 16px;
  padding-top: 80px;
}
.pagination .page-link {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 12px;
  padding: 0 8px;
}
.pagination .page-link:hover {
  text-decoration: underline;
}
.pagination .page-link.disabled {
  display: none;
}
.pagination .page-link svg {
  width: 10px;
  height: 14px;
}
.pagination .previous, .pagination .next {
  display: none;
}

.page-numbers {
  display: flex;
  gap: 12px;
}
.page-numbers .current {
  text-underline-offset: 4px;
  text-decoration: underline;
}
.page-numbers > a, .page-numbers span {
  padding: 2px 10px;
}
.page-numbers > a:hover {
  text-decoration: underline;
}

.pagination-arrow {
  display: block;
  fill: currentColor;
  height: 17px;
  width: 17px;
}
.pagination-arrow.prev-arrow {
  margin-right: auto;
}
.pagination-arrow.next-arrow {
  margin-left: auto;
}

:root {
  --thumbnail-active-color: var(--secondary-text-color);
  --thumb-scroller-color: var(--primary-text-color);
  --thumb-scroller-border-width: 1px;
  --thumb-scroller-border-color: var(--primary-text-color);
  --thumb-scroller-background: var(--background-color);
  --thumb-scroller-background-hover: transparent;
  --current-slide-background: var(--background-color);
  --current-slide-color: var(--primary-text-color);
  --active-slide-border-width: 2px;
  --active-slide-border-width-offset: -2px;
  --arrow-background-color: var(--background-color);
  --arrow-color: var(--primary-text-color);
  --gap-width: 16px;
  --num-images: 5;
}
@media screen and (max-width: 668px) {
  :root {
    --gap-width: 12px;
  }
}

.product-carousel .splide__list {
  align-items: flex-start;
}
.product-carousel .splide__slide {
  transition: height 0.2s ease;
}
.product-carousel .splide__slide img {
  display: block;
  width: 100%;
  height: auto;
}
.product-carousel .splide__slide:not(.is-active) {
  height: 0;
}

.splide__track {
  border-radius: var(--border-radius);
}

.splide__arrows {
  display: none;
}
@media (hover: hover) {
  .splide__arrows {
    display: block;
  }
}

.splide__arrow {
  transition: opacity 0.2s ease;
  opacity: 0;
  border-radius: var(--border-radius);
  width: 2em;
  height: 3em;
  background: var(--arrow-background-color);
  color: var(--arrow-color);
}
.splide__arrow:disabled {
  opacity: 0;
}
.splide__arrow--prev {
  left: 0.75em;
}
.splide__arrow--next {
  right: 0.75em;
}
.splide__arrow svg {
  fill: currentColor;
}

.splide:hover .splide__arrow:not(:disabled), .splide:focus-within .splide__arrow:not(:disabled) {
  opacity: 1;
}

.product-image {
  border-radius: var(--border-radius);
  width: 100%;
}

.product-thumbnails--list {
  display: flex;
  gap: var(--gap-width);
  list-style: none;
  flex: 1;
  padding: 0 calc(var(--gap-width) / 2);
  scroll-padding-left: calc(var(--gap-width) / 2);
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: var(--border-radius);
}
.product-thumbnails--list.mobile-overflow {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (max-width: 668px) {
  .product-thumbnails--list .product-thumbnails--item {
    --num-images: 4;
  }
  .product-thumbnails--list.mobile-overflow {
    padding-left: 0;
    padding-right: 0;
  }
  .product-thumbnails--list.mobile-overflow .product-thumbnails--item {
    --num-images: 5;
  }
}
.product-thumbnails--list.is-overflow {
  justify-content: flex-start;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}
.product-thumbnails--list.is-overflow::-webkit-scrollbar {
  display: none;
}
.product-thumbnails--list.thumbnails {
  flex-wrap: wrap;
}
.product-thumbnails--item {
  width: calc(calc(100% / var(--num-images)) - calc(var(--gap-width) - calc(var(--gap-width) / var(--num-images))));
  flex-shrink: 0;
  cursor: pointer;
  border-radius: var(--border-radius);
  user-select: none;
  pointer-events: none;
  position: relative;
  scroll-snap-align: start;
}
.product-thumbnails--item:before {
  content: "";
  display: block;
  padding-bottom: 100%;
}
.product-thumbnails--item:not([aria-current="true"]):hover img {
  opacity: 0.8;
}
.product-thumbnails--item[aria-current="true"] .product-thumbnails--change-slide img {
  outline: var(--active-slide-border-width) solid var(--thumbnail-active-color);
  outline-offset: var(--active-slide-border-width-offset);
}
.product-thumbnails--item .product-thumbnails--change-slide {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  height: 100%;
  width: 100%;
  padding: 0;
  overflow: hidden;
  user-select: none;
  border-radius: var(--border-radius);
  pointer-events: auto;
}
.product-thumbnails--item .product-thumbnails--change-slide img {
  border-radius: var(--border-radius);
  height: 100%;
  width: 100%;
  object-fit: cover;
}

a.gallery-link {
  cursor: zoom-in;
  display: block;
}

.product-thumbnails-buttons-container {
  align-items: center;
  display: flex;
  gap: 4px;
  margin-top: var(--gap-width);
  width: 100%;
}
.product-thumbnails-buttons-container .thumb-scroller {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 48px;
  color: var(--thumb-scroller-color);
  background: var(--thumb-scroller-background);
  border-radius: var(--border-radius);
  border: var(--thumb-scroller-border-width) solid var(--thumb-scroller-border-color);
}
@media screen and (max-width: 668px) {
  .product-thumbnails-buttons-container .thumb-scroller {
    height: 44px;
  }
}
.product-thumbnails-buttons-container .thumb-scroller[disabled] {
  opacity: 0.2;
  cursor: not-allowed;
}
.product-thumbnails-buttons-container .thumb-scroller:not([disabled]):hover {
  background: var(--thumb-scroller-background-hover);
}
.product-thumbnails-buttons-container .thumb-scroller svg {
  fill: currentColor;
  display: block;
  width: 16px;
}
.product-thumbnails-buttons-container .thumb-scroller--left svg {
  transform: rotate(90deg);
}
.product-thumbnails-buttons-container .thumb-scroller--right svg {
  transform: rotate(-90deg);
}
.product-thumbnails-buttons-container .thumb-scroller.hidden {
  display: none;
}

@media screen and (min-width: 669px) {
  .overlay-image-counter {
    display: none;
  }

  .desktop-stacked .splide .splide__list, .desktop-two-column .splide .splide__list {
    display: flex !important;
    flex-direction: column;
    gap: 16px;
  }
  .desktop-stacked .splide .splide__slide, .desktop-two-column .splide .splide__slide {
    height: auto;
    flex-shrink: 0;
    width: 100%;
  }
  .desktop-stacked .product-thumbnails-buttons-container, .desktop-two-column .product-thumbnails-buttons-container {
    display: none;
  }

  .desktop-two-column .splide .splide__list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  .desktop-two-column .splide .splide__track {
    overflow: visible;
  }
  .desktop-two-column .splide .splide__slide {
    width: calc((100% / 2) - 8px);
  }
  .desktop-two-column .splide .splide__slide:not(:first-child):before {
    content: "";
    display: block;
    padding-bottom: 100%;
  }
  .desktop-two-column .splide .splide__slide:not(:first-child) .zoom-image-container {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    height: 100%;
    width: 100%;
    padding: 0;
    overflow: hidden;
    user-select: none;
    border-radius: var(--border-radius);
    pointer-events: auto;
  }
  .desktop-two-column .splide .splide__slide:not(:first-child) .zoom-image-container img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .desktop-two-column .splide .splide__slide:first-child {
    width: 100%;
  }

  .desktop-carousel .thumb-scroller {
    display: flex;
  }
  .desktop-carousel .overlay-image-counter {
    display: flex;
  }

  .desktop-thumbnails .product-thumbnails {
    padding: 0px;
  }
  .desktop-thumbnails .product-thumbnails--list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    padding: 0;
  }
  .desktop-thumbnails .product-thumbnails--item {
    width: 100%;
  }

  .mobile-buttons-indicator {
    display: none;
  }
}
@media screen and (max-width: 668px) {
  .mobile-show-thumbnails .mobile-buttons-indicator {
    display: none;
  }
  .mobile-show-thumbnails .thumb-scroller {
    display: flex;
  }

  .mobile-hide-thumbnails .overlay-image-counter {
    display: none;
  }
  .mobile-hide-thumbnails .product-thumbnails-buttons-container {
    display: none;
  }
  .mobile-hide-thumbnails .mobile-buttons-indicator {
    display: flex;
    font-size: 0.925rem;
    gap: 24px;
    align-items: center;
    justify-content: center;
    margin-top: 16px;
  }
  .mobile-hide-thumbnails .mobile-buttons-indicator .change-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    width: 40px;
    height: 40px;
    background: var(--thumb-scroller-background);
    color: var(--thumb-scroller-color);
  }
  .mobile-hide-thumbnails .mobile-buttons-indicator .change-slide svg {
    display: block;
    width: 16px;
  }
  .mobile-hide-thumbnails .mobile-buttons-indicator .change-slide--left svg {
    transform: rotate(90deg);
  }
  .mobile-hide-thumbnails .mobile-buttons-indicator .change-slide--right svg {
    transform: rotate(-90deg);
  }
}
.overlay-image-counter {
  position: absolute;
  right: 10px;
  bottom: 10px;
  font-size: 0.8rem;
  background: var(--current-slide-background);
  color: var(--current-slide-color);
  padding: 6px 8px;
  border-radius: var(--border-radius);
}

.maintenance-page {
  --font-scale: 1;
  --shop-name-scale: 1;
  --product-grid-scale: 1;
  --product-title-scale: 1;
  --product-description-scale: 1;
  --header-scale: 1;
  --footer-scale: 1;
  font-size: 16px;
  padding: 140px 60px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .maintenance-page {
    padding: 80px 20px;
  }
}
.maintenance-page .maintenance-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.maintenance-page .maintenance-image-container {
  width: 100%;
  max-width: 600px;
}
.maintenance-page .maintenance-image {
  width: 100%;
  height: auto;
  max-height: 60vh;
  object-fit: contain;
  border-radius: var(--border-radius);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 668px) {
  .maintenance-page .maintenance-image {
    max-height: 50vh;
  }
}
.maintenance-page .maintenance-header {
  font-size: 2em;
  line-height: 1.2;
  margin: 0;
  padding: 0;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .maintenance-page .maintenance-header {
    font-size: 1.75em;
  }
}
@media screen and (max-width: 668px) {
  .maintenance-page .maintenance-header {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 500px) {
  .maintenance-page .maintenance-header {
    font-size: 1.4em;
  }
}
.maintenance-page .maintenance-text {
  font-family: var(--secondary-font);
  font-size: 1.125em;
  line-height: 1.6;
  color: var(--primary-text-color);
  max-width: 600px;
  margin: -30px auto 0 auto;
}
@media screen and (max-width: 800px) {
  .maintenance-page .maintenance-text {
    font-size: 1em;
  }
}
@media screen and (max-width: 668px) {
  .maintenance-page .maintenance-text {
    font-size: 1em;
  }
}
@media screen and (max-width: 500px) {
  .maintenance-page .maintenance-text {
    font-size: 1em;
  }
}
.maintenance-page .maintenance-icons {
  display: flex;
  align-items: center;
  column-gap: 16px;
  row-gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  max-width: 500px;
}
.maintenance-page .maintenance-icons li {
  display: inline-block;
}
.maintenance-page .maintenance-icons li a {
  display: block;
  padding: 0 4px;
  transition: opacity 0.2s ease;
}
.maintenance-page .maintenance-icons li a:hover {
  opacity: 0.7;
}
.maintenance-page .maintenance-icons li a svg {
  fill: currentColor;
  height: 20px;
  width: 20px;
}
.maintenance-page .maintenance-icons li a svg.tumblr-icon {
  width: 13px;
}
.maintenance-page .maintenance-icons li a svg.reddit-icon, .maintenance-page .maintenance-icons li a svg.discord-icon {
  width: 24px;
  height: 24px;
}

.search-modal {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  z-index: 999;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  background-color: rgba(var(--background-color-rgb),.8);
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.search-modal[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}
.search-modal__content {
  background-color: var(--background-color);
  border-bottom: 1px solid var(--primary-text-color);
  text-align: center;
  display: grid;
  grid-template-rows: 1fr;
  width: 100%;
}
.search-modal__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 32px;
  max-width: 800px;
  position: relative;
  margin: 0 auto;
  width: 100%;
}
.search-modal__form {
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 16px;
  row-gap: 8px;
  width: 100%;
}
.search-modal__input {
  grid-row: 2/2;
  grid-column: 1/1;
  border-radius: var(--border-radius);
  background: var(--background-color);
  border: 1px solid var(--primary-text-color);
  font-weight: normal;
  width: 100%;
  font-size: 1rem;
  height: 48px;
  padding: 8px 12px;
}
.search-modal__input:focus-visible {
  outline: none;
  box-shadow: none;
}
.search-modal__submit {
  color: var(--button-text-color);
  background: var(--button-background-color);
  grid-row: 2/2;
  grid-column: 1/1;
  padding: 0;
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.search-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 4rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  margin-left: auto;
  transition: color 0.2s linear;
}
.search-modal__close-icon {
  height: 20px;
  width: 20px;
}
.search-modal__close:hover {
  color: var(--secondary-text-color);
}
.search-modal__label {
  text-align: left;
}

.navigation-modal {
  transition: opacity 0.2s, visibility 0s 0.2s;
  height: 100%;
  left: 0;
  opacity: 0;
  position: fixed;
  top: 0;
  visibility: hidden;
  width: 100%;
  z-index: 1000;
  overscroll-behavior: contain;
  background: var(--background-color);
}
.navigation-modal .wrapper {
  max-width: 600px;
  margin: 0;
}
.navigation-modal * {
  text-transform: initial;
}
.navigation-modal[aria-hidden="false"] {
  transition: opacity 0.2s;
  opacity: 1;
  visibility: visible;
}
.navigation-modal[aria-hidden="false"] .navigation-modal__content {
  display: block;
}
.navigation-modal__content {
  display: none;
  height: 100%;
  overflow-y: scroll;
  padding: 0 0 90px;
}
.navigation-modal__header {
  padding: 24px 0 12px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: sticky;
  top: 0;
  height: var(--header-height);
}
@media screen and (max-width: 945px) {
  .navigation-modal__header {
    padding: 0;
    height: 80px;
    margin-top: 16px;
  }
}
.navigation-modal__close {
  cursor: pointer;
  height: 40px;
  display: flex;
  left: -8px;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0px;
  width: 40px;
}
@media screen and (max-width: 668px) {
  .navigation-modal__close {
    left: -4px;
  }
}
.navigation-modal__close svg {
  fill: currentColor;
  height: 18px;
  width: 18px;
}
.navigation-modal__main {
  padding: 0 0 0 5px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.navigation-modal__list {
  text-align: left;
  font-size: calc(1.4rem * var(--header-scale, 1));
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 16px 0 0;
}
.navigation-modal__list a:hover {
  text-decoration: underline;
}
.navigation-modal .social-icons {
  justify-content: flex-start;
  gap: 16px;
  position: relative;
  left: -4px;
}

.navigation-modal__categories-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  text-underline-offset: 4px;
}
.navigation-modal__categories-toggle:hover {
  text-decoration: underline;
}
.navigation-modal__categories-toggle[aria-expanded="true"] svg {
  transform: rotate(180deg);
}
.navigation-modal__categories-toggle svg {
  fill: currentColor;
  width: 16px;
}
.navigation-modal__categories .category-list {
  display: block;
  margin-top: 16px;
  margin-left: 16px;
}
.navigation-modal__categories .category-list ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: calc(0.9rem * var(--header-scale, 1));
}
.navigation-modal__categories .category-list[aria-hidden="true"] {
  display: none;
}

@media screen and (max-width: 668px) {
  body.has-announcement .navigation-modal__header {
    margin-top: 62px;
  }
}
/*


 */

.hero-video-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 40px;
}

.hero-video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-video-overlay-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #FFFFFF; /* White text for contrast */
  font-size: 4em; /* Large font size */
  font-family: var(--primary-font); /* Use the primary font for headings */
  text-align: center;
  z-index: 1; /* Ensure text is above the video */
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* Add a subtle shadow for readability */
}

@media screen and (max-width: 800px) {
  .hero-video-overlay-text {
    font-size: 3em;
  }
}

@media screen and (max-width: 668px) {
  .hero-video-overlay-text {
    font-size: 2em;
  }
}

/* Products page hero image */
.products-hero-image {
  margin: 20px auto 40px;
  max-width: 1200px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  position: relative;
}

.products-hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.products-hero-text {
  position: absolute;
  top: 15%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.products-hero-text h2 {
  font-size: 2.5rem;
  color: #FFFFFF;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  margin: 0;
  font-family: var(--primary-font);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* Add a subtle overlay for better text readability */
.products-hero-image::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Product page specific styling */
.content.page-product .product-detail__title, 
.content.page-product .product-detail .page-title {
  color: #333333;
  transition: color 0.3s ease;
}

.content.page-product .product-detail__title:hover, 
.content.page-product .product-detail .page-title:hover {
  color: #D4AF37;
}

.content.page-product .product-detail__pricing {
  color: #333333;
  transition: color 0.3s ease;
}

.content.page-product .product-detail__pricing:hover {
  color: #D4AF37;
}

.content.page-product .product-detail__description {
  color: #333333;
}

.content.page-product .product-form .button {
  background: #D4AF37;
  color: #FFFFFF;
}

.content.page-product .product-form .button:hover {
  background: #c18e3c;
  color: #FFFFFF;
}
