/** Shopify CDN: Minification failed

Line 8073:3 Unexpected ","

**/
/* ============================================
   Wooded Carving Co — Brand Design Tokens
   ============================================
   Central source of truth for colors, typography,
   spacing, and borders. All custom styles reference
   these tokens via var(--wc-*).
   ============================================ */

:root {
  /* ---------- Dynamic theme settings ---------- */
  --color-body-text: #111111;
  --color-body: #fbf3e4;
  --color-bg: #fbf3e4;

  /* ---------- Colors ---------- */
  --wc-black: #0b0b0b;
  --wc-dark-brown: #1B140F;
  --wc-warm-dark: #2c2218;
  --wc-cocoa: #292117;
  --wc-charcoal: #1f2022;
  --wc-body-text: #4b4f54;
  --wc-muted-brown: #5a5148;
  --wc-warm-border: #c8c1b6;
  --wc-border-gray: #c2c1cc;
  --wc-cream: #f4ead6;
  --wc-parchment: #fbf3e4;
  --wc-white: #FFFFFF;
  --wc-promo-red: #AC0606;
  --wc-gold: #ab7d07;
  --wc-gold-light: #d29800;
  --wc-purple: #423f54;
  --wc-purple-light: #57536d;
  --wc-top-bar: #6a6671;

  /* ---------- Typography ---------- */
  --wc-font-display: "Bricolage Grotesque", sans-serif;
  --wc-font-body: "Figtree", sans-serif;
  --wc-font-serif: new-spirit, serif;
  --wc-font-heading: "Plus Jakarta Sans", sans-serif;
  --wc-font-gothic: bernhard-gothic-urw, sans-serif;

  /* ---------- Font sizes ---------- */
  --wc-text-hero: clamp(34px, 6vw, 52px);
  --wc-text-display: clamp(20px, 3vw, 28px);
  --wc-text-card: clamp(20px, 4.5vw, 32px);
  --wc-text-card-heading: clamp(18px, 2.5vw, 21px);
  --wc-text-body-sm: clamp(14px, 2vw, 17px);
  --wc-text-body: clamp(16px, 2.2vw, 20px);
  --wc-text-section-title: 1.5rem;
  --wc-text-product-title: 1.4rem;
  --wc-text-quote: 1.3rem;
  --wc-text-label: 0.85rem;

  /* ---------- Font weights ---------- */
  --wc-weight-display: 800;
  --wc-weight-heading: 700;
  --wc-weight-heading-light: 600;
  --wc-weight-body: 400;
  --wc-weight-body-medium: 500;
  --wc-weight-body-bold: 700;

  /* ---------- Spacing ---------- */
  --wc-space-xs: 4px;
  --wc-space-sm: 8px;
  --wc-space-md: 16px;
  --wc-space-lg: 24px;
  --wc-space-xl: 32px;
  --wc-space-2xl: 48px;
  --wc-space-section: clamp(20px, 3vw, 28px);

  /* ---------- Buttons ---------- */
  --wc-btn-padding: 12px 20px;
  --wc-btn-padding-lg: 14px 28px;

  /* ---------- Border radius ---------- */
  --wc-radius-sm: 4px;
  --wc-radius-md: 10px;
  --wc-radius-lg: 15px;
  --wc-radius-pill: 100px;

  /* ---------- Borders ---------- */
  --wc-border: 1px solid var(--wc-black);
  --wc-border-light: 1.5px solid var(--wc-warm-border);

  /* ---------- Breakpoints (reference only — not usable in media queries) ---------- */
  /* Mobile: max-width 798px  |  Desktop: min-width 799px  |  Small mobile: 480px */
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

/* ---------- Product page layout (match homepage) ---------- */
body.product {
  display: flex;
  flex-wrap: wrap;
}

/* ---------- Global body font ---------- */
body {
  font-family: var(--wc-font-body);
}

/* ---------- Base theme font overrides ---------- */
h1, h2, h3, h4, h5, h6,
.headline, .subtitle {
  font-family: var(--wc-font-heading);
}

a.top-bar__menu-item-link,
.cart_count,
#nav ul li:not(.megaMenu-dropdown) a,
#nav ul li:not(.megaMenu-dropdown) summary,
#nav ul li.megaMenu-dropdown > details > summary,
#mobile_nav ul li a,
a.slicknav_btn,
.mobile_currency select {
  font-family: var(--wc-font-body);
  font-weight: 600;
  font-size: 15px;
}

a.button, button,
input[type="submit"], input[type="reset"], input[type="button"],
.action_button, a.action_button,
input.action_button[type="submit"], input.action_button[type="button"],
.shopify-payment-button__button--unbranded {
  font-family: var(--wc-font-body);
}

more-payment-options-link {
  display: none;
}

.collection-wrapper p {
  font-family: var(--wc-font-body);
}

.product__title {
  font-family: var(--wc-font-serif);
  line-height: 1.3;
  text-align: left;
  border-bottom: none;
  text-transform: none;
  font-size: 44px !important;
  padding-bottom: 0;
  margin-bottom: 0;
}

/* ============================================
   Custom Styles — Wooded Carving Co
   ============================================ */


shopify-payment-terms {
  display: block;
  margin-top: 10px;
}

/* Review stars */
.spr-badge {
  margin-bottom: 10px;
}

/* Ready to ship shown under product description
=============================================== */
.ready-to-ship {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  font-family: var(--wc-font-serif);
  font-size: 18px;
  color: var(--wc-black);
  border: 1px solid #0b0b0b;
  border-radius: 100px;
  gap: 8px;
  padding: 6px 12px;
  margin-top: 15px;
  span {
    font-weight: 500 !important;
  }
}

.ready-to-ship__icon {
  width: 18px;
  height: 18px;
}

/* Custom Copy under product images/description 
=============================================== */
.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  /* margin-bottom: 2rem; */
  background: var(--wc-white);
  border: 1px solid #0b0b0b;
  border-radius: 14px;
  padding: 20px;
  font-family: var(--wc-font-body);
}

.article-col {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.article-col p {
  margin: 0;
}

.article-col .dropcap {
  margin-bottom: 5px;
}

.article-col > :last-child {
  margin-bottom: 0;
}

.dropcap {
  margin-bottom: 5px;
}

/* .dropcap::first-letter {
  float: left;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-right: 0.5rem;
} */

.pull {
  background: var(--wc-parchment);
  border: 1px solid var(--wc-black);
  border-radius: 14px;
  padding: 1rem;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 1rem;
}

@media (max-width: 798px) {
  .article-grid {
    max-width: 100%;
    margin: auto 10px;
  }
}

/* Product Info Box
=============================================== */
.info-box-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 1rem 0;
}

.info-box {
  flex: 1;
  border: 1px solid #0b0b0b;
  /* box-shadow: 0 2px 0 #0b0b0b; */
  border-radius: 14px;
  padding: 1rem;
  background: var(--wc-cream);
}

.info-box h4 {
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 0.7rem;
  text-transform: uppercase;
  border: none;
  padding: 0;
  margin: 0;
}

.info-box p {
  font-size: 0.95rem;
  line-height: 1.1;
  margin: 0;
}

@media (max-width: 798px) {
  .info-box-grid {
    padding: 10px;
  }

  .info-box {
    flex: 1 1 98%; /* full width on mobile */
  }
}

/* Product Recommendations Section (bottom of the product page)
=============================================== */

.product-recommendations .recommended-title {
  display: none;
}

.product-recommendations {
  padding-top: 0;
}

.product-recommendations .info {
  padding: 10px;
}

.product-recommendations
  .title,
  .money {
    font-weight: 600 !important;
    font-size: 1.4rem;
}

.product-recommendations
  .money {
    font-size: 1.1rem;
}

/* Product Metafields
=============================================== */
.product-specs {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #0b0b0b;
  border-radius: 14px;
  width: 100%;
}

.specs-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 10px;
}

.spec {
  flex: 1 1 calc(33.333% - 20px); /* max 3 per row */
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 200px;
}

.spec-icon {
  width: 20px;
  height: 20px;
  color: #444;
}

.spec-text {
  display: flex;
  flex-direction: column;
}

.spec-heading {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  color: #5c5c5c;
  letter-spacing: .08em;
  line-height: 1.4;
}

.spec-value {
  font-size: 18px;
  font-weight: 700 !important;
  color: var(--wc-black);
  line-height: 1.1;

  /* NEW */
  display: flex;
  align-items: baseline;   /* key for pill alignment */
  gap: 10px;
  flex-wrap: wrap;         /* protects mobile / long labels */
}

.spec-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 3px 10px;
  border-radius: 999px;

  font-size: 0.85rem;
  line-height: 1;
  font-weight: 600;

  white-space: nowrap;

  /* helps it sit visually centered with large serif numerals */
  transform: translateY(-0.06em);
}

.spec-help-link {
  font-size: 1rem;
  color: var(--wc-black) !important;
}

.spec-dimension {
  font-weight: 700 !important;
  margin-right: 0;         /* NEW: let flex gap control spacing */
  white-space: nowrap;
}

.thickness-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.85rem;
  line-height: 1.2;
  font-weight: 600;
  background: var(--wc-cream);
  color: #5a3e1b;
  vertical-align: middle;
}

.thickness-badge--slim {
  background: #f2f4f7;
  color: #374151;
  border: 1px solid black;
}

.thickness-badge--thick {
  background: #efe6d8;
  color: var(--wc-warm-dark);
}

.thickness-badge--extra {
  background: #e7dac7;
  color: var(--wc-warm-dark);
  box-shadow: 0 0 0 1px rgba(63,42,23,0.08) inset;
  font-weight: 700 !important;
}

.product-metafields {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  width: 100%;
}

.product-metafields .column.metafield {
  font-size: 14px;
  border: 1px solid #0b0b0b;
  /* box-shadow: 0 2px 0 #0b0b0b; */
  border-radius: 14px;
  padding: 2px 7px;
  margin-left: 0;
  font-weight: 500;
}

.metafield {
  display: flex;
  align-items: center;
  gap: 0.2em;
}

.metafield .dot {
  position: relative;
  top: 4px;
}

/* #Contact form
================================================== */
.quote-container {
  margin: 2em 0;
}
.quote-container p {
  font-style: italic;
  font-weight: bold;
}

.contact_form {
  clear: both;
  padding-top: 0.75em;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media only screen and (max-width: 798px) {
  .contact_form {
    display: block;
  }
}
.contact_form h3 {
  text-align: inherit;
  border: none;
}

@media only screen and (max-width: 798px) {
  .contact_image--right {
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1400px) {
  .contact_image--right {
    padding-right: 60px;
  }
}

@media only screen and (max-width: 798px) {
  .contact_image--left {
    padding-bottom: 20px;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1400px) {
  .contact_image--left {
    padding-left: 60px;
  }
}

.contact_text_position--right {
  flex-direction: row-reverse;
}

.contact_text_position--center {
  flex-direction: column;
  align-items: center;
}

.contact_image_position--right {
  flex-direction: row-reverse;
}

.contact-template_contact_form {
  margin-bottom: 50px;
}

.contact_form.contact_text_position--center .contact_content {
  margin-bottom: 25px;
}

.contact_form .contact_image img {
  width: 100%;
}

/* #Recipient form
================================================== */
.recipient-disclosure {
  --recipient-disclosure-bottom-margin: 20px;
  --recipient-form-checkbox-width: 15px;
  --recipient-form-checkbox-border-width: 2px;
  --recipient-form-checkbox-border-color: #111111;
  --recipient-form-error-color: #d04343;
}

.purchase-details__quantity + .recipient-disclosure {
  --recipient-disclosure-bottom-margin: 24px;
}

input[type=checkbox].recipient-disclosure__checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
input[type=checkbox].recipient-disclosure__checkbox:after {
  display: none;
  content: "✔";
  color: #111111;
}
input[type=checkbox].recipient-disclosure__checkbox:checked:after {
  display: block;
}

.recipient-disclosure__checkbox-label {
  padding: 0;
  font-weight: normal;
}
.recipient-disclosure__checkbox-label svg {
  display: none;
}

.recipient-disclosure__checkbox-label-text {
  font-weight: normal;
  font-size: 16px;
}
@media only screen and (max-width: 798px) {
  .recipient-disclosure__checkbox-label-text {
    padding: 10px 0;
  }
}

@media only screen and (max-width: 798px) {
  .recipient-form {
    margin-top: 10px;
  }
}

.recipient-form__required {
  color: var(--recipient-form-error-color);
}

.recipient-form--has-errors input[type=email].recipient-form__input--email {
  border: 1px solid var(--recipient-form-error-color);
  margin-bottom: 5px;
}

.recipient-form__input--message {
  margin: 0;
}

.recipient-form__error-message {
  color: var(--recipient-form-error-color);
  margin-bottom: 15px;
  font-size: 14px;
}

.recipient-form__max-characters-message {
  margin-top: 5px;
}

/* #Rich text section
================================================== */
.shopify-section--rich-text .action_button {
  width: auto;
  /* display: inline; */
}

.shopify-section--rich-text img,
.rich_text_and_image img {
  max-width: 200px;
}

/* #Testimonials
================================================== */

.section-testimonials .testimonials__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
}

.section-testimonials .testimonials__row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: stretch;
  justify-content: space-between;
}

.section-testimonials .testimonials__card {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
  padding: 5px;
  gap: 0;
}

.section-testimonials .testimonials__card p {
  margin: 0;
}

.section-testimonials .testimonials__image-wrapper {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1.5px solid black;
  border-radius: 15px;
  margin-bottom: 5px;
}

.section-testimonials .testimonials__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section-testimonials .testimonials__product-name {
  font-weight: var(--wc-weight-body-medium);
  font-size: 1rem;
  margin-top: 0;
  margin-bottom: 2px;
  font-family: var(--wc-font-body);
  padding: 0 !important;
}

.section-testimonials .testimonials__product-detail {
  font-size: .9rem;
  margin-top: 0;
  margin-bottom: 2px;
  padding: 0 !important;
}

.section-testimonials .testimonials__quote {
  font-weight: var(--wc-weight-body-medium);
  font-size: var(--wc-text-quote);
  font-family: var(--wc-font-serif);
  margin-top: 0;
  margin-bottom: 0;
}

.section-testimonials .testimonials__customer-name {
  font-size: 1rem !important;
  letter-spacing: .05rem;
  font-family: var(--wc-font-body);
  margin-top: 5px;
}

@media (max-width: 798px) {
  .section-testimonials .testimonials__row {
    flex-direction: column;
    gap: 5px;
  }

  .section-testimonials .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .section-testimonials .testimonials__quote {
    font-size: calc(var(--wc-text-quote) - 0.1rem);
    font-family: var(--wc-font-serif);
  }
}

/* #Our Process – timeline steps
   ---------------------------------------- */

.section-process .process-steps {
  position: relative;
  padding-left: 8px;
}

/* Vertical line behind badges */
.section-process .process-steps::before {
  content: "";
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(0, 0, 0, 0.07);
}

/* Each step row */
.section-process .process-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 6px 0;
}

/* Badge wrapper so badges sit on top of the vertical line */
.section-process .process-step__badge {
  position: relative;
  z-index: 1;
  margin-left: 8px; /* keeps badge centered over the line */
}

/* Number badge */
.section-process .process-step__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 2px solid rgba(0, 0, 0, 0.7);
  background: var(--wc-warm-dark);
  color: white;
  font-size: 0.8rem !important;
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* Step content */
.section-process .process-step__title {
  margin: 0 0 2px;
  padding-bottom: 4px !important;
  font-size: 1rem;
}

.section-process .process-step__text {
  margin: 0;
  font-size: var(--wc-text-body-sm);
  line-height: 1.45;
  font-family: var(--wc-font-body);
}

.section-process .process__left-heading {
  margin: 0 auto 5px 0 !important;
  padding-bottom: 0 !important;
  font-family: var(--wc-font-gothic);
  font-size: 1.35rem;
  text-transform: none !important;
}

.section-process .process__left-text {
  margin-bottom: 15px;
  font-size: var(--wc-text-body-sm);
  letter-spacing: .01rem;
  line-height: 1.5;
  font-family: var(--wc-font-body);
}

/* Tighten line + badges on small screens */

@media (max-width: 600px) {
  .section-process .process-steps::before {
    left: 20px;
  }

  .section-process .process-step__badge {
    margin-left: 4px;
  }

  .section-process .process-step__number {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    font-size: 0.75rem;
  }
}

/* #Logo-list
================================================== */
.logo-bar {
  text-align: center;
}
.logo-bar .logo-bar__item {
  width: 160px;
  display: inline-block;
  margin: 0 10px 15px 10px;
  vertical-align: middle;
}
@media only screen and (min-width: 1025px) and (max-width: 1400px) {
  .logo-bar .logo-bar__item {
    margin: 0 25px 15px 25px;
  }
}

/* #Home page - Image with text overlay
================================================== */
.banner-section {
  line-height: 0;
  overflow: hidden;
  position: relative;
}
.banner-section .banner-section__image {
  margin: 0;
  width: 100%;
  display: block;
}
.banner-section .banner-section__caption {
  top: 50%;
  margin: 0;
  z-index: 3;
  width: 100%;
  position: absolute;
  color: var(--wc-white);
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
  pointer-events: none;
}
.banner-section .banner-section__caption .banner-section__caption-headline {
  border: 0;
  text-align: inherit;
  margin-bottom: 0.2em;
  color: #1f2022;
  font-family: Jost, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  line-height: 47px;
}
@media only screen and (max-width: 798px) {
  .banner-section .banner-section__caption .banner-section__caption-headline {
    font-size: 1.5em;
    line-height: 1em;
  }
}
.banner-section .banner-section__caption .banner-section__caption-subtitle {
  line-height: 1.5em;
  margin-bottom: 35px;
  color: #1f2022;
  font-family: Jost, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: none;
  font-size: 20px;
}
@media only screen and (max-width: 798px) {
  .banner-section .banner-section__caption .banner-section__caption-subtitle {
    font-size: 1.2em;
    line-height: 1em;
    margin-bottom: 10px;
  }
}
.banner-section .banner-section__caption .banner-section__caption-button {
  width: auto;
  line-height: 0;
  padding: 20px 25px;
  pointer-events: all;
}
@media only screen and (max-width: 798px) {
  .banner-section .banner-section__caption .banner-section__caption-button {
    padding: 15px;
    font-size: 12px;
  }
}

/* #Home page - Slideshow
================================================== */
.slideshow {
  overflow: hidden;
}
.slideshow .slideshow__gallery-cell {
  width: 100%;
}
.slideshow .slideshow__gallery-cell .slideshow__gallery-cell-image {
  margin: 0;
  width: 100%;
  display: block;
}
.slideshow .slideshow__caption {
  top: 50%;
  margin: 0;
  z-index: 3;
  width: 100%;
  position: absolute;
  color: var(--wc-white);
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
  transform: translateY(-50%);
  pointer-events: none;
}
.slideshow .slideshow__caption .slideshow__caption-headline {
  border: 0;
  text-align: inherit;
  margin-bottom: 0.2em;
  color: #1f2022;
  font-family: Jost, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 42px;
  line-height: 47px;
}
@media only screen and (max-width: 798px) {
  .slideshow .slideshow__caption .slideshow__caption-headline {
    font-size: 1.5em;
    line-height: 1em;
  }
}
.slideshow .slideshow__caption .slideshow__caption-subtitle {
  line-height: 1.5em;
  margin-bottom: 35px;
  color: #1f2022;
  font-family: Jost, sans-serif;
  font-weight: 500;
  font-style: normal;
  text-transform: none;
  font-size: 20px;
}
@media only screen and (max-width: 798px) {
  .slideshow .slideshow__caption .slideshow__caption-subtitle {
    font-size: 1.2em;
    line-height: 1em;
    margin-bottom: 10px;
  }
}
.slideshow .slideshow__caption .slideshow__caption-button {
  width: auto;
  line-height: 0;
  padding: 20px 25px;
  pointer-events: all;
}
@media only screen and (max-width: 798px) {
  .slideshow .slideshow__caption .slideshow__caption-button {
    padding: 15px;
    font-size: 12px;
  }
}
@media only screen and (max-width: 798px) {
  .slideshow .slideshow__caption .slideshow__caption-content {
    padding: 0 30px;
  }
}
.slideshow .flickity-page-dots {
  bottom: 50px;
}
.slideshow .flickity-page-dots .dot {
  opacity: 1;
  width: 7px;
  height: 7px;
  background-color: var(--wc-white);
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}
.slideshow .flickity-page-dots .dot.is-selected {
  border: 1px solid var(--wc-white);
  background-color: transparent;
  transform: scale(1.5);
}
@media only screen and (max-width: 798px) {
  .slideshow .flickity-page-dots {
    display: none;
  }
}
.slideshow .flickity-button {
  opacity: 0.8;
  color: var(--wc-white);
  background-color: transparent;
}
.slideshow .flickity-button:hover {
  opacity: 1;
  background-color: transparent;
}
.slideshow .flickity-button.previous {
  left: -36px;
}
.slideshow .flickity-button.next {
  right: -36px;
}
@media only screen and (max-width: 798px) {
  .slideshow .flickity-button {
    display: none;
  }
}
.slideshow:hover .flickity-prev-next-button.previous {
  left: 40px;
}
.slideshow:hover .flickity-prev-next-button.next {
  right: 40px;
}

.dark-overlay-true:after {
  content: "";
  position: absolute;
  z-index: 2;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}

/* Adds fade transition for slideshows and product galleries, excludes thumbnail carousels */
.slideshow.slideshow-transition--fade .flickity-slider,
.product-gallery.slideshow-transition--fade .product-gallery__main .flickity-slider {
  transform: none !important;
}
.slideshow.slideshow-transition--fade .product-gallery__image,
.slideshow.slideshow-transition--fade .slideshow__gallery-cell,
.product-gallery.slideshow-transition--fade .product-gallery__main .product-gallery__image,
.product-gallery.slideshow-transition--fade .product-gallery__main .slideshow__gallery-cell {
  left: 0 !important;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: -1;
}
.slideshow.slideshow-transition--fade .product-gallery__image.is-selected,
.slideshow.slideshow-transition--fade .slideshow__gallery-cell.is-selected,
.product-gallery.slideshow-transition--fade .product-gallery__main .product-gallery__image.is-selected,
.product-gallery.slideshow-transition--fade .product-gallery__main .slideshow__gallery-cell.is-selected {
  opacity: 1;
  z-index: 0;
}

/* #Home page - Map
================================================== */
.shopify-section--map .map__container svg,
.shopify-section--page-contact-template .map__container svg,
.page-details-block.block_map .map__container svg,
.product-details-block.block_map .map__container svg {
  height: 400px;
  display: block;
}
@media only screen and (max-width: 480px) {
  .shopify-section--map .map__container svg,
  .shopify-section--page-contact-template .map__container svg,
  .page-details-block.block_map .map__container svg,
  .product-details-block.block_map .map__container svg {
    height: 250px;
  }
}
.shopify-section--map .map__layout,
.shopify-section--page-contact-template .map__layout,
.page-details-block.block_map .map__layout,
.product-details-block.block_map .map__layout {
  display: flex;
}
@media only screen and (max-width: 798px) {
  .shopify-section--map .map__layout,
  .shopify-section--page-contact-template .map__layout,
  .page-details-block.block_map .map__layout,
  .product-details-block.block_map .map__layout {
    flex-wrap: wrap;
  }
}
.shopify-section--map .map__layout.map__layout--right,
.shopify-section--page-contact-template .map__layout.map__layout--right,
.page-details-block.block_map .map__layout.map__layout--right,
.product-details-block.block_map .map__layout.map__layout--right {
  flex-direction: row-reverse;
}
.shopify-section--map .map__display,
.shopify-section--page-contact-template .map__display,
.page-details-block.block_map .map__display,
.product-details-block.block_map .map__display {
  width: 75%;
  display: flex;
  align-items: center;
  flex: 1 0 75%;
}
.shopify-section--map .map__display .maps,
.shopify-section--page-contact-template .map__display .maps,
.page-details-block.block_map .map__display .maps,
.product-details-block.block_map .map__display .maps {
  width: 100%;
}
.shopify-section--map .map__display .maps iframe,
.shopify-section--page-contact-template .map__display .maps iframe,
.page-details-block.block_map .map__display .maps iframe,
.product-details-block.block_map .map__display .maps iframe {
  display: block;
}
.shopify-section--map .map__display.map__hours--false,
.shopify-section--map .map__display .image-element__wrap,
.shopify-section--page-contact-template .map__display.map__hours--false,
.shopify-section--page-contact-template .map__display .image-element__wrap,
.page-details-block.block_map .map__display.map__hours--false,
.page-details-block.block_map .map__display .image-element__wrap,
.product-details-block.block_map .map__display.map__hours--false,
.product-details-block.block_map .map__display .image-element__wrap {
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .shopify-section--map .map__display,
  .shopify-section--page-contact-template .map__display,
  .page-details-block.block_map .map__display,
  .product-details-block.block_map .map__display {
    width: 100%;
  }
}
.shopify-section--map .map__info,
.shopify-section--page-contact-template .map__info,
.page-details-block.block_map .map__info,
.product-details-block.block_map .map__info {
  width: 25%;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 798px) {
  .shopify-section--map .map__info,
  .shopify-section--page-contact-template .map__info,
  .page-details-block.block_map .map__info,
  .product-details-block.block_map .map__info {
    width: 100%;
    height: auto;
  }
}
.shopify-section--map .map__info .title,
.shopify-section--page-contact-template .map__info .title,
.page-details-block.block_map .map__info .title,
.product-details-block.block_map .map__info .title {
  margin-left: 0;
  margin-right: 0;
  width: 100%;
}
.shopify-section--map .map__info .align_center,
.shopify-section--page-contact-template .map__info .align_center,
.page-details-block.block_map .map__info .align_center,
.product-details-block.block_map .map__info .align_center {
  justify-content: center;
}
.shopify-section--map .map__info .align_left,
.shopify-section--page-contact-template .map__info .align_left,
.page-details-block.block_map .map__info .align_left,
.product-details-block.block_map .map__info .align_left {
  justify-content: flex-start;
}
.shopify-section--map .map__info .align_right,
.shopify-section--page-contact-template .map__info .align_right,
.page-details-block.block_map .map__info .align_right,
.product-details-block.block_map .map__info .align_right {
  justify-content: flex-end;
}
.shopify-section--map .map__info .info,
.shopify-section--page-contact-template .map__info .info,
.page-details-block.block_map .map__info .info,
.product-details-block.block_map .map__info .info {
  padding: 1.5rem;
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .shopify-section--map .map__info .info,
  .shopify-section--page-contact-template .map__info .info,
  .page-details-block.block_map .map__info .info,
  .product-details-block.block_map .map__info .info {
    justify-content: center;
  }
}
.shopify-section--map .map__info .info p,
.shopify-section--page-contact-template .map__info .info p,
.page-details-block.block_map .map__info .info p,
.product-details-block.block_map .map__info .info p {
  margin-bottom: 0;
}
.shopify-section--map .map__info .map__address,
.shopify-section--page-contact-template .map__info .map__address,
.page-details-block.block_map .map__info .map__address,
.product-details-block.block_map .map__info .map__address {
  width: 100%;
}
@media only screen and (max-width: 798px) {
  .shopify-section--map .map__info .map__address,
  .shopify-section--page-contact-template .map__info .map__address,
  .page-details-block.block_map .map__info .map__address,
  .product-details-block.block_map .map__info .map__address {
    text-align: center;
  }
}
.shopify-section--map .map__directions,
.shopify-section--page-contact-template .map__directions,
.page-details-block.block_map .map__directions,
.product-details-block.block_map .map__directions {
  max-width: 90%;
  margin: 20px 0;
}

.page-contact .map__container {
  padding-top: 40px;
}

/* #Home page - Newsletter
================================================== */
.shopify-section--newsletter {
  margin-bottom: 35px !important;
}
@media only screen and (max-width: 798px) {
  .shopify-section--newsletter {
    margin: 0 0 80px;
  }
}
.shopify-section--newsletter h2 {
  display: flex;
  gap: 5px;
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-section-title);
  font-weight: var(--wc-weight-heading);
  border-top: none;
  border-bottom: 1px solid black;
  line-height: 1;
  padding-top: 0;
  margin-bottom: 0;
  text-align: left;
}
.shopify-section--newsletter q {
  font-family: var(--wc-font-heading) !important;
}
.shopify-section--newsletter p {
  margin-bottom: 0;
}

/* ---------- newsletter column title (mixed font) ---------- */
.newsletter-col-title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-section-title);
  font-weight: var(--wc-weight-heading);
}

.newsletter-col-title__brand {
  font-family: rinse, sans-serif;
}

.newsletter-col-title__text {
  font-family: var(--wc-font-heading);
}
.shopify-section--newsletter input {
  margin-bottom: 0;
}
@media only screen and (max-width: 798px) {
  .shopify-section--newsletter input {
    margin-bottom: 10px;
  }
}
@media only screen and (max-width: 798px) {
  .shopify-section--newsletter input.action_button.sign_up {
    margin-bottom: 0px;
  }
}
.shopify-section--newsletter .newsletter {
  margin-bottom: 0;
}
/* .shopify-section--newsletter .homepage-newsletter {
  padding: 30px 0;
} */

/* Newsletter popup */
.popup-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.popup-container.imagePosition--right {
  flex-direction: row-reverse;
}
.popup-container .popup-image {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  height: 100%;
}
@media only screen and (max-width: 798px) {
  .popup-container .popup-image {
    display: none;
  }
}
.popup-container .popup-image img {
  width: 100%;
}
.popup-container .popup-text {
  box-sizing: border-box;
  padding: 0 40px;
  width: 60%;
  max-width: 500px;
  margin: 66px 0 54px;
}
@media only screen and (max-width: 798px) {
  .popup-container .popup-text {
    width: 100%;
  }
}
.popup-container .popup-text p.headline {
  line-height: 1.2;
}
.popup-container .popup-text p.headline,
.popup-container .popup-text p {
  margin-bottom: 24px;
}
.popup-container.no-image .popup-text {
  width: 100%;
}
.popup-container .newsletter .contact-form {
  width: 100%;
}
.popup-container .newsletter .input-row {
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
  max-width: 400px;
}
.popup-container .newsletter .input-row input {
  margin: 0;
}
.popup-container .newsletter .input-row input[type=text],
.popup-container .newsletter .input-row input[type=email] {
  margin-bottom: 12px;
}
.popup-container .newsletter .input-row input.action_button {
  width: 100%;
}
.popup-container .newsletter .input-row input[type=text],
.popup-container .newsletter .input-row input[type=email],
.popup-container .newsletter .input-row input[type=submit].action_button {
  margin-left: auto;
  margin-right: auto;
  max-width: 400px;
}
@media only screen and (max-width: 798px) {
  .popup-container .newsletter .input-row input[type=text],
  .popup-container .newsletter .input-row input[type=email],
  .popup-container .newsletter .input-row input[type=submit].action_button {
    margin-bottom: 12px;
  }
}.popup-container .newsletter .input-row input.first-name {
    margin-right: 6px;
    width: calc(50% - 6px);
  }
@media only screen and (max-width: 798px) {
    .popup-container .newsletter .input-row input.first-name {
      margin-right: 0;
      width: 100%;
      max-width: 100%;
    }
  }
.popup-container .newsletter .input-row input.last-name {
    margin-left: 6px;
    width: calc(50% - 6px);
  }
@media only screen and (max-width: 798px) {
    .popup-container .newsletter .input-row input.last-name {
      margin-left: 0;
      width: 100%;
      max-width: 100%;
    }
  }
@media only screen and (max-width: 798px) {
    .popup-container .newsletter .input-row input.contact_email,
    .popup-container .newsletter .input-row input.action_button.sign_up {
      max-width: 100%;
    }
  }.popup-container .input-row.first-last {
  flex-direction: row;
}
@media only screen and (max-width: 798px) {
  .popup-container .input-row.first-last {
    flex-direction: column;
  }
}
.popup-container .icon-close {
  font-size: 12px;
}

/* .homepage-newsletter {
  padding: 30px 0;
} */
@media only screen and (max-width: 798px) {
  .homepage-newsletter {
    padding: 0;
    max-width: 380px;
  }
}

/* #Home page - Image with text
================================================== */
.block_image_with_text .image-with-text__image-column,
.shopify-section--image-with-text .image-with-text__image-column {
  text-align: center;
}
.block_image_with_text .image-with-text__wrapper,
.shopify-section--image-with-text .image-with-text__wrapper {
  padding: 60px 40px;
}
@media only screen and (max-width: 798px) {
  .block_image_with_text .image-with-text__wrapper,
  .shopify-section--image-with-text .image-with-text__wrapper {
    padding: 20px 0;
  }
}
@media(orientation: portrait) {
  .image-with-text__wrapper h6 {
    font-size: 13px !important;
  }
}
.block_image_with_text .image-with-text__text-column .action_button,
.shopify-section--image-with-text .image-with-text__text-column .action_button,
.slideshow-with-text .image-with-text__text-column .action_button {
  width: auto;
  margin-top: 15px;
  display: inline-block;
}

@media only screen and (max-width: 798px) {
  .slideshow-with-text .image-with-text__text-column .action_button {
    padding: var(--wc-btn-padding-lg);
    min-height: 48px;
  }
}

.featured-product .flex-container {
  display: inline-flex;
}

.flex-container.featured-product-grid--left {
  flex-direction: row-reverse;
}
.flex-container.featured-product-grid--left .featured-product-image {
  margin-left: 50px;
}
.flex-container.featured-product-grid--right .featured-product-image {
  margin-right: 50px;
}

@media only screen and (max-width: 798px) {
  .featured-product .flex-container {
    flex-direction: column;
  }
  .featured-product .flex-container .featured-product-image {
    margin-left: 0px;
    margin-right: 0px;
  }
  .featured-product .flex-container .content_column {
    padding: 20px 0;
  }
}

/* #Home page - Divider
================================================== */
.divider {
  opacity: 0;
}
.divider.divider--true {
  opacity: 1;
}

/* #Home page - Quote
================================================== */
.quote__text {
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  text-transform: uppercase;
  padding: 15px 0;
  border-top: 1px solid #0b0b0b;
  border-bottom: 1px solid #0b0b0b;
}

.quote__text p {
  margin: 0;
}

/* #Home page - Contact form
================================================== */
.contact__form-name {
  margin-right: 20px;
}
@media only screen and (max-width: 480px) {
  .contact__form-name {
    margin-right: 0;
  }
}

.contact__form-name,
.contact__form-email {
  flex: 1 1 auto;
}
@media only screen and (max-width: 480px) {
  .contact__form-name,
  .contact__form-email {
    flex: 1 1 100%;
  }
}

.contact__form-message {
  flex-basis: 100%;
}

.contact__form-image {
  margin-bottom: 20px;
}

/* #Quick Shop
================================================== */
.quick-shop {
  display: flex;
  justify-content: space-between;
}
.quick-shop .quick-shop__product-gallery,
.quick-shop .quick-shop__product-description {
  width: calc(50% - 25px);
}

.quick-shop__lightbox .fancybox-content,
.shopify-section--product-quickshop-template {
  width: 90%;
  max-width: 840px;
  background-color: var(--wc-white);
  cursor: pointer !important; /* overwrite default fancybox cursor */
}
@media only screen and (min-width: 1401px) {
  .quick-shop__lightbox .fancybox-content,
  .shopify-section--product-quickshop-template {
    max-width: 1080px;
  }
}

.product-quickshop {
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.2s linear;
}
.product-quickshop #shopify-section-header,
.product-quickshop #shopify-section-footer,
.product-quickshop .product-header,
.product-quickshop .shopify-section:not(.shopify-section--quick-shop) {
  display: none;
}
.product-quickshop .product-quickshop__container {
  padding: 44px;
}

.shopify-section--product-quickshop-template {
  margin: 50px auto;
}

/* #Swatch Styles
================================================== */.product_section .product_form {
    opacity: 0;
    transition: opacity 0.2s ease;
  }
.product_section .product_form.is-visible {
    opacity: 1;
  }
.select,
  .selector-wrapper {
    display: none;
  }
.swatch_options {
    margin-bottom: 1em;
  }
.swatch .option-title {
    width: 100%;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 1.1rem;
  }
/* Hide radio buttons */
.swatch input {
    /* Allow user to cycle through radio buttons with keyboard */
    width: 0;
    height: 0;
    opacity: 0;
    position: absolute;
  }
.swatch label {
    cursor: pointer;
    padding: 0 10px;
    font-size: 14px;
    white-space: nowrap;
    /* text-transform: uppercase; */
    height: 36px;
    min-width: 40px;
    line-height: 36px;
    font-weight: 500 !important;
  }
.swatch .color label {
    background-size: cover;
    background-position: center;
    height: 30px;
    min-width: 30px;
    line-height: 30px;
  }
.swatch-element {
    border: 2px solid var(--wc-warm-border, #c8c1b6);
    min-width: 30px;
    min-height: 30px;
  }
.swatch-element.color {
    padding: 5px;
  }
.swatch-element.color, .swatch-element.color label {
    border-radius: 50%;
    border: 1px solid #e2e2e2;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
.swatch-element.color.swatch-element label {
    margin: 0;
    padding: 0;
    overflow: hidden;
    width: 30px;
    height: 30px;
  }
.swatch_options input:checked + .swatch-element {
    border-color: var(--wc-dark-brown, #1B140F);
  }
.swatch_options input:focus + .swatch-element {
    outline: -webkit-focus-ring-color auto 5px;
  }
.swatch .swatch-element {
    position: relative;
    margin-right: 10px;
    margin-bottom: 5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translateZ(0);
    border-radius: 15px;
    text-align: center;
  }
.swatch .swatch-element .crossed-out {
    display: none;
  }
.swatch .swatch-element.soldout .crossed-out {
    width: 100%;
    height: 100%;
    display: block;
  }
.swatch .swatch-element.soldout label {
    opacity: 0.6;
  }
.crossed-out {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    position: absolute;
  }
/* Tooltips */
.swatch .tooltip {
    text-align: center;
    background: #333333;
    background: rgba(51, 51, 51, 0.9);
    color: var(--wc-white);
    bottom: 100%;
    padding: 5px 10px;
    display: block;
    position: absolute;
    width: 120px;
    font-size: 13px;
    margin-bottom: 15px;
    opacity: 0;
    visibility: hidden;
    z-index: 60;
    box-sizing: border-box;
    transition: all 0.25s ease-out;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.28);
    left: -35px;
    transform: translateY(10px);
  }
.swatch .tooltip:before {
    content: "";
    left: 0;
    bottom: -20px;
    height: 20px;
    width: 100%;
    display: block;
    position: absolute;
  }
/* CSS triangle */
.swatch .tooltip:after {
    content: "";
    border-left: solid transparent 10px;
    border-right: solid transparent 10px;
    border-top: solid rgba(51, 51, 51, 0.9) 10px;
    bottom: -10px;
    height: 0;
    width: 0;
    left: 50%;
    margin-left: -13px;
    position: absolute;
  }
.swatch .swatch-element:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
  }

/* Swatch price differential (size variants) */
.swatch-label--has-price {
    display: flex !important;
    align-items: center;
    padding-right: 10px;
    overflow: hidden;
    transition: padding-right 0.15s ease;
  }
.swatch-label--has-price.swatch-label--showing-price {
    padding-right: 0 !important;
  }
.swatch-label__value {
    display: inline;
  }
.swatch-label__price {
    display: none;
    align-items: center;
    margin-left: 8px;
    padding: 0 10px;
    height: 100%;
    font-size: 0.85em;
    font-weight: 500;
    background: var(--wc-dark-brown, #1B140F);
    color: var(--wc-cream, #f4ead6);
    border-radius: 0 14px 14px 0;
    margin-right: -1px;
  }
.swatch-label--showing-price .swatch-label__price {
    display: inline-flex;
  }
.swatch_options input:checked + .swatch-element .swatch-label__price {
    background: var(--wc-cream, #f4ead6);
    color: var(--wc-dark-brown, #1B140F);
  }/* #Sidebar
================================================== */
.sidebar ul,
.sidebar li {
  list-style: none;
}

.sidebar .ss-icon {
  color: #111111;
}

.sidebar .search {
  padding-top: 8px;
}

.sidebar input.sign_up[type=submit],
.sidebar input.contact_email[type=email] {
  width: 100%;
}

.sidebar__content {
  margin-left: 10px;
  margin-right: 10px;
}
@media only screen and (max-width: 798px) {
  .sidebar__content {
    padding: 0;
    border: none;
  }
}

.has-sidebar-option,
.section--has-sidebar-option {
  width: 100%;
}

.content-wrapper {
  width: 100%;
}

.content-wrapper--blog .sidebar__content,
.content-wrapper--article .sidebar__content {
  padding-left: 20px;
  border-left: solid 1px #0b0b0b;
}
@media only screen and (max-width: 798px) {
  .content-wrapper--blog .sidebar__content,
  .content-wrapper--article .sidebar__content {
    padding: 0;
    border: none;
  }
}

.sidebar .sidebar__content .input-row {
  flex-direction: column;
  margin-left: 0px;
  margin-right: 0px;
}
.sidebar .sidebar__content .input-row input {
  margin: 5px 0;
}

.sidebar .newsletter {
  margin-bottom: 5px;
  margin-top: -20px;
}
.sidebar .newsletter .contact-form {
  width: auto;
}

@media only screen and (max-width: 798px) {
  .sidebar {
    width: 100% !important; /* to overwrite desktop styles set inside of section */
  }
  .has-sidebar-option {
    width: 100% !important; /* to overwrite desktop styles set inside of section */
  }
}
@media only screen and (max-width: 798px) {
  .sidebar--blog {
    margin-top: 2rem;
  }
}

.product_slider {
  margin-bottom: 2em;
  background: #fff;
  padding: var(--wc-space-lg, 24px);
  border: 1px solid #c8c1b6;
  border-radius: var(--wc-radius-md, 10px);
}

@media only screen and (max-width: 480px) {
  .product-gallery .product-gallery__main .product-gallery__image a,
  .product-gallery .product-gallery__main .product-gallery__image .video__container,
  .product-gallery .product-gallery__main .product-gallery__image .plyr--youtube {
    min-height: 100%;
    max-height: 75vh; /* Prevents main product image from taking up whole viewport */
  }
}
@media only screen and (max-width: 480px) {
  .product-gallery .product-gallery__main model-viewer {
    min-height: 300px;
  }
}

/* Product Slider Arrows */
.gallery-arrows__wrapper {
  display: flex;
  justify-content: center;
  padding: 20px 20px 0;
}
.gallery-arrows__wrapper .gallery-left-arrow {
  margin-right: 40px;
}
.gallery-arrows__wrapper .gallery-arrow {
  opacity: 0.7;
  padding: 3px 3px 0;
}
.gallery-arrows__wrapper .gallery-arrow .svg-arrow {
  fill: #111111;
}
.gallery-arrows__wrapper .gallery-arrow:hover .svg-arrow, .gallery-arrows__wrapper .gallery-arrow:focus .svg-arrow, .gallery-arrows__wrapper .gallery-arrow:active .svg-arrow {
  opacity: 1;
}

/*
  Arrows always visible on mobile
  Arrows hidden on desktop
*/
@media only screen and (min-width: 799px) {
  .has-bottom-thumbnails-on-mobile .gallery-arrows__wrapper {
    display: none;
  }
}

/* #Flickity
================================================== */
/*! Flickity v2.2.1
https://flickity.metafizzy.co
---------------------------------------------- */
.flickity-enabled {
  position: relative;
}

.flickity-enabled:focus {
  outline: 0;
}

.flickity-viewport {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.flickity-slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.flickity-enabled.is-draggable {
  -webkit-tap-highlight-color: transparent;
  -webkit-user-select: none;
  user-select: none;
}

.flickity-enabled.is-draggable .flickity-viewport {
  cursor: move;
  cursor: grab;
}

.flickity-enabled.is-draggable .flickity-viewport.is-pointer-down {
  cursor: grabbing;
}

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
  display: none;
}

.flickity-button:hover {
  background: var(--wc-white);
  cursor: pointer;
}

.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px #19f;
}

.flickity-button:active {
  opacity: 0.6;
}

.flickity-button:disabled {
  opacity: 0.3;
  cursor: auto;
  pointer-events: none;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-prev-next-button {
  top: 50%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  transform: translateY(-50%);
}

.flickity-prev-next-button.previous {
  left: 10px;
}

.flickity-prev-next-button.next {
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.previous {
  left: auto;
  right: 10px;
}

.flickity-rtl .flickity-prev-next-button.next {
  right: auto;
  left: 10px;
}

.flickity-prev-next-button .flickity-button-icon {
  position: absolute;
  left: 20%;
  top: 20%;
  width: 60%;
  height: 60%;
}

.flickity-page-dots {
  position: absolute;
  width: 100%;
  bottom: -25px;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
  line-height: 1;
}

.flickity-rtl .flickity-page-dots {
  direction: rtl;
}

.flickity-page-dots .dot {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin: 0 8px;
  background: #333;
  border-radius: 50%;
  opacity: 0.25;
  cursor: pointer;
}

.flickity-page-dots .dot.is-selected {
  opacity: 1;
}

/* flickity-fade */
.flickity-enabled.is-fade .flickity-slider > * {
  pointer-events: none;
  z-index: 0;
}

.flickity-enabled.is-fade .flickity-slider > .is-selected {
  pointer-events: auto;
  z-index: 1;
}

/* #Product Slider Custom Styles
================================================== */
.flickity-viewport {
  width: 100%;
}

.product-gallery:hover .flickity-prev-next-button {
  opacity: 1;
}
.product-gallery .product-gallery__main .flickity-prev-next-button {
  transition: all 0.3s ease-in-out;
}
.product-gallery .product-gallery__main .flickity-prev-next-button:hover {
  color: #333333;
}
@media screen and (max-width: 580px) {
  .product-gallery .product-gallery__main .flickity-prev-next-button {
    opacity: 1;
    top: 100%;
    padding: 0;
    z-index: 30;
    transform: none;
    opacity: 0.5;
    background: none;
  }
  .product-gallery .product-gallery__main .flickity-prev-next-button:hover {
    opacity: 1;
  }
  .product-gallery .product-gallery__main .flickity-prev-next-button .flickity-button-icon {
    height: 30px;
    width: 30px;
    fill: #111111;
  }
  .product-gallery .product-gallery__main .flickity-prev-next-button.next {
    right: 30%;
  }
  .product-gallery .product-gallery__main .flickity-prev-next-button.previous {
    left: 30%;
  }
}
.product-gallery .product-gallery__thumbnails .flickity-prev-next-button {
  transition: all 0.3s ease-in-out;
}
.product-gallery .product-gallery__thumbnails .flickity-prev-next-button:hover {
  color: #333333;
}
.product-gallery .flickity-page-dots {
  display: none;
}

.product-section__lightbox .fancybox-image {
  padding: 0;
}

/* #Product Gallery Frame
================================================== */
.product-gallery {
  border: 1px solid #c8c1b6;
  border-radius: var(--wc-radius-md, 10px);
  background: #fff;
  padding: var(--wc-space-lg, 24px);
  box-sizing: border-box;
}

/* #Thumbnail Gallery Styles
================================================== */
.product-gallery__thumbnails {
  /* When thumbnail slider is enabled */
  /* When thumbnail slider is disabled (thumbnail grid) */
  /* When thumbnails are set to bottom */
  /* When thumbnails are set to left/right */
}
.product-gallery__thumbnails .product-gallery__thumbnail {
  width: calc(25% - 15px);
  margin: 0 5px;
}
.product-gallery__thumbnails .product-gallery__thumbnail img {
  max-width: 100%;
  height: auto;
  border: 1px solid #0b0b0b;
  border-radius: 14px;
}
.product-gallery__thumbnails.is-slide-nav--true {
  /* Base styles */
  /* When thumbnails are set to 'left/right' */
}
.product-gallery__thumbnails.is-slide-nav--true .product-gallery__thumbnail {
  position: relative;
  opacity: 0.6;
  cursor: grab;
}
.product-gallery__thumbnails.is-slide-nav--true .product-gallery__thumbnail.is-nav-selected {
  opacity: 1;
}
@media screen and (min-width: 580px) {
  .product-gallery__thumbnails.is-slide-nav--true.product-gallery__thumbnails--right-thumbnails, .product-gallery__thumbnails.is-slide-nav--true.product-gallery__thumbnails--left-thumbnails {
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
  }
  .product-gallery__thumbnails.is-slide-nav--true.product-gallery__thumbnails--right-thumbnails::-webkit-scrollbar, .product-gallery__thumbnails.is-slide-nav--true.product-gallery__thumbnails--left-thumbnails::-webkit-scrollbar { /* WebKit */
    width: 0;
    height: 0;
  }
}
.product-gallery__thumbnails.is-slide-nav--false {
  flex-wrap: wrap;
  /* When thumbnails are set to 'bottom' */
}
.product-gallery__thumbnails.is-slide-nav--false.product-gallery__thumbnails--bottom-thumbnails {
  display: flex;
  justify-content: center;
}
.product-gallery__thumbnails.is-slide-nav--false.product-gallery__thumbnails--bottom-thumbnails .product-gallery__thumbnail {
  margin-bottom: 20px;
  line-height: 0;
}
@media screen and (min-width: 580px) {
  .product-gallery__thumbnails.product-gallery__thumbnails--bottom-thumbnails {
    margin-top: 20px;
  }
}
.product-gallery__thumbnails.product-gallery__thumbnails--right-thumbnails, .product-gallery__thumbnails.product-gallery__thumbnails--left-thumbnails {
  padding-top: 20px;
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 580px) {
  .product-gallery__thumbnails.product-gallery__thumbnails--right-thumbnails, .product-gallery__thumbnails.product-gallery__thumbnails--left-thumbnails {
    justify-content: flex-start;
    align-self: flex-start;
    display: block;
    width: 100%;
    padding-top: 0;
  }
  .product-gallery__thumbnails.product-gallery__thumbnails--right-thumbnails .product-gallery__thumbnail, .product-gallery__thumbnails.product-gallery__thumbnails--left-thumbnails .product-gallery__thumbnail {
    width: 100%;
    margin: 0;
  }
  .product-gallery__thumbnails.product-gallery__thumbnails--right-thumbnails .product-gallery__thumbnail:last-child, .product-gallery__thumbnails.product-gallery__thumbnails--left-thumbnails .product-gallery__thumbnail:last-child {
    margin-bottom: 0;
  }
  .product-gallery__thumbnails.product-gallery__thumbnails--right-thumbnails .product-gallery__thumbnail:before, .product-gallery__thumbnails.product-gallery__thumbnails--left-thumbnails .product-gallery__thumbnail:before {
    line-height: 0;
    color: transparent;
    display: block;
    text-align: center;
    content: counter(carousel-cell);
  }
}
@media screen and (max-width: 580px) {
  .product-gallery__thumbnails {
    padding-top: 0px;
    margin-top: 15px;
  }
}
.no-js .product-gallery__thumbnails {
  display: flex;
}

/* When thumbnails are set to left/right and there is more than one thumbnail, adjust size of main gallery and thumbnail gallery */
@media screen and (min-width: 580px) {
  .product-gallery--right-thumbnails:not(.product-gallery--media-amount-1),
  .product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) {
    display: flex;
  }
  .product-gallery--right-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__main,
  .product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__main {
    width: 85%;
    height: 100%;
  }
  .product-gallery--right-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnails,
  .product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnails {
    width: 12%;
  }
  .product-gallery--right-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnail,
  .product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnail {
    width: 100% !important;
    margin-bottom: 10px;
  }
  .product-gallery--right-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnail:last-child,
  .product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnail:last-child {
    margin-bottom: 0;
  }
}

/* When thumbnails are set to left and there is more than one thumbnail, adjust position of main gallery and thumbnail gallery */
@media screen and (min-width: 580px) {
  .product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__main {
    order: 2;
  }
  .product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnails {
    margin-right: 20px;
    order: 1;
  }
  .product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnails {
    margin-right: 20px;
  }
}

/* When thumbnails are set to right and there is more than one thumbnail, adjust position of main gallery and thumbnail gallery */
.product-gallery--right-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnails {
  margin-left: 20px;
}

/* Reduce main image dominance, increase thumbnail space */
@media screen and (min-width: 580px) {
  .product-gallery--right-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__main,
  .product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__main {
    width: 78%;
  }
  .product-gallery--right-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnails,
  .product-gallery--left-thumbnails:not(.product-gallery--media-amount-1) .product-gallery__thumbnails {
    width: 18%;
  }
}

/* When thumbnails are hidden */
@media screen and (max-width: 580px) {
  .product-gallery__thumbnails--false {
    margin-bottom: 3em;
  }
}

@media screen and (min-width: 580px) {
  .product-gallery.display-arrows--false .flickity-viewport:hover .flickity-prev-next-button,
  .product-gallery.display-arrows--false .flickity-prev-next-button {
    display: none !important; /* Ensure navigation arrows do not display */
  }
}

.product-gallery__main,
.product-gallery__thumbnails.is-slide-nav--true {
  opacity: 0;
  transition: ease-in-out 0.2s opacity;
}
.product-gallery__main.flickity-enabled, .product-gallery__main.vertical-slider-enabled, .no-js .product-gallery__main,
.product-gallery__thumbnails.is-slide-nav--true.flickity-enabled,
.product-gallery__thumbnails.is-slide-nav--true.vertical-slider-enabled,
.no-js .product-gallery__thumbnails.is-slide-nav--true {
  opacity: 1;
}

.product-gallery__image {
  width: 100%;
  height: auto;
}
.product-gallery__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  overflow: hidden;
}
.no-js .product-gallery__image img {
  display: none;
}
.no-js .product-gallery__image noscript img {
  display: block;
}

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

.product-gallery__link {
  display: block;
}

.product-gallery__image .product-gallery__link,
.product-gallery__image model-viewer {
  width: calc(100% - 10px);
  margin: 0 auto;
}
.product-gallery__image .product-gallery__link:focus,
.product-gallery__image model-viewer:focus {
  outline: -webkit-focus-ring-color auto 5px;
}

/* Media position for all product templates */
.product_section.media-position--right {
  flex-direction: row-reverse;
}

@media screen and (max-width: 798px) {
  .product_section.media-position--left,
  .product_section.media-position--right {
    flex-direction: column;
  }
}

/* #Content Creator
================================================== */
/* Slideshow */
.flickity-slider > li {
  width: 100%;
  text-align: center;
  list-style-type: none;
}

.flexslider {
  overflow: hidden;
  position: relative;
}
.flexslider .flickity-prev-next-button {
  opacity: 0;
  background: transparent;
}
.flexslider:hover .flickity-prev-next-button.previous {
  left: 25px;
  opacity: 0.6;
}
.flexslider:hover .flickity-prev-next-button.next {
  right: 15px;
  opacity: 0.6;
}
.flexslider:hover .flickity-prev-next-button:hover {
  opacity: 1;
}
.flexslider .flickity-prev-next-button.arrow-is-inverse .flickity-button-icon {
  transform: scale(-1, 1);
}

.header_banner {
  position: relative;
  z-index: 0;
}
@media only screen and (max-width: 798px) {
  .header_banner {
    margin-top: 0;
  }
}

.details-section .slides img.lazyloaded {
  width: 100%;
}

.header_banner {
  margin-bottom: 25px;
}

.homepage_content .action_button {
  width: auto;
  display: inline;
}

.padding-toggle {
  padding-top: 0;
  padding-bottom: 0;
  margin-bottom: 0 !important; /* overrides styles applied to index sections */
}
.padding-toggle .enable-padding--true {
  padding-top: 40px;
  padding-bottom: 40px;
}

.image-with-text-overlay-section .container .eight.columns,
.shopify-section--page-faq-template .container .eight.columns,
.shopify-section--article-template .container .eight.columns {
  width: 560px;
}
@media only screen and (max-width: 480px) {
  .image-with-text-overlay-section .container .eight.columns,
  .shopify-section--page-faq-template .container .eight.columns,
  .shopify-section--article-template .container .eight.columns {
    width: 300px;
  }
}

#grid .column,
#grid .columns {
  background: #ddd;
  height: 25px;
  line-height: 25px;
  margin-bottom: 10px;
  text-align: center;
  text-transform: uppercase;
  color: #555;
  font-size: 12px;
  font-weight: bold;
  border-radius: 2px;
}

#grid .column:hover,
#grid .columns:hover {
  background: #bbb;
  color: #333;
}

#grid .example-grid {
  overflow: hidden;
}

/* #Fancybox
================================================== */
.fancybox-bg {
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.2s linear;
}

.fancybox-toolbar {
  display: none;
}

.fancybox-content {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

/* Add border around images */
.fancybox-image {
  padding: 15px;
  background-color: var(--wc-white);
}

/* Style close button */
.fancybox-close {
  position: absolute;
  padding: 15px;
  top: 5px;
  right: 5px;
  cursor: pointer;
  z-index: 8040;
  line-height: 1;
  font-size: 14px !important;
  color: #111111 !important; /* overwrite default Fancybox styles */
  font-family: "responsive" !important;
}

/* Style navigation elements */
.fancybox-nav {
  position: absolute;
  top: 0;
  width: 40%;
  height: 100%;
  cursor: pointer;
  text-decoration: none;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  z-index: 8040;
}
.fancybox-nav span {
  position: absolute;
  top: 50%;
  transform: translateY(0);
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 8040;
  visibility: hidden;
  color: #333;
  opacity: 0.8;
  text-shadow: 0 0 1px var(--wc-white);
}
.fancybox-nav:hover span {
  visibility: visible;
}

.fancybox-prev {
  left: 0;
}
.fancybox-prev span:before {
  position: absolute;
  left: 30px;
}

.fancybox-next {
  right: 0;
}
.fancybox-next span {
  right: 0;
}
.fancybox-next span:before {
  position: absolute;
  right: 30px;
}

/* #Simplebar
================================================== */
[data-simplebar] {
  position: relative;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-content: flex-start;
  align-items: flex-start;
}

.simplebar-wrapper {
  overflow: hidden;
  width: inherit;
  height: inherit;
  max-width: inherit;
  max-height: inherit;
}

.simplebar-mask {
  direction: inherit;
  position: absolute;
  overflow: hidden;
  padding: 0;
  margin: 0;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  width: auto !important;
  height: auto !important;
  z-index: 0;
}

.simplebar-offset {
  direction: inherit !important;
  box-sizing: inherit !important;
  resize: none !important;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  padding: 0;
  margin: 0;
  -webkit-overflow-scrolling: touch;
}

.simplebar-content-wrapper {
  direction: inherit;
  box-sizing: border-box !important;
  position: relative;
  display: block;
  height: 100%;
  width: auto;
  max-width: 100%;
  max-height: 100%;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.simplebar-content-wrapper::-webkit-scrollbar, .simplebar-hide-scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

.simplebar-content:after, .simplebar-content:before {
  content: " ";
  display: table;
}

.simplebar-placeholder {
  max-height: 100%;
  max-width: 100%;
  width: 100%;
  pointer-events: none;
}

.simplebar-height-auto-observer-wrapper {
  box-sizing: inherit !important;
  height: 100%;
  width: 100%;
  max-width: 1px;
  position: relative;
  float: left;
  max-height: 1px;
  overflow: hidden;
  z-index: -1;
  padding: 0;
  margin: 0;
  pointer-events: none;
  flex-grow: inherit;
  flex-shrink: 0;
  flex-basis: 0;
}

.simplebar-height-auto-observer {
  box-sizing: inherit;
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  height: 1000%;
  width: 1000%;
  min-height: 1px;
  min-width: 1px;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

.simplebar-track {
  z-index: 1;
  position: absolute;
  right: 0;
  bottom: 0;
  pointer-events: none;
  overflow: hidden;
}

[data-simplebar].simplebar-dragging .simplebar-content {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
}

[data-simplebar].simplebar-dragging .simplebar-track {
  pointer-events: all;
}

.simplebar-scrollbar {
  position: absolute;
  left: 0;
  right: 0;
  min-height: 10px;
}

.simplebar-scrollbar:before {
  position: absolute;
  content: "";
  background: black;
  border-radius: 7px;
  left: 2px;
  right: 2px;
  opacity: 0;
  transition: opacity 0.2s linear;
}

.simplebar-scrollbar.simplebar-visible:before {
  opacity: 0.5;
  transition: opacity 0s linear;
}

.simplebar-track.simplebar-vertical {
  top: 0;
  width: 11px;
}

.simplebar-track.simplebar-vertical .simplebar-scrollbar:before {
  top: 2px;
  bottom: 2px;
}

.simplebar-track.simplebar-horizontal {
  left: 0;
  height: 11px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar:before {
  height: 100%;
  left: 2px;
  right: 2px;
}

.simplebar-track.simplebar-horizontal .simplebar-scrollbar {
  right: auto;
  left: 0;
  top: 2px;
  height: 7px;
  min-height: 0;
  min-width: 10px;
  width: auto;
}

[data-simplebar-direction=rtl] .simplebar-track.simplebar-vertical {
  right: auto;
  left: 0;
}

.hs-dummy-scrollbar-size {
  direction: rtl;
  position: fixed;
  opacity: 0;
  visibility: hidden;
  height: 500px;
  width: 500px;
  overflow-y: hidden;
  overflow-x: scroll;
}

.simplebar-hide-scrollbar {
  position: fixed;
  left: 0;
  visibility: hidden;
  overflow-y: scroll;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* #Plyr
================================================== */
@keyframes plyr-progress {
  to {
    background-position: 25px 0;
  }
}
@keyframes plyr-popup {
  0% {
    opacity: 0.5;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes plyr-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.plyr {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: subpixel-antialiased;
  direction: ltr;
  font-family: Avenir, "Avenir Next", "Helvetica Neue", "Segoe UI", Helvetica, Arial, sans-serif;
  font-variant-numeric: tabular-nums;
  font-weight: 500;
  line-height: 1.7;
  max-width: 100%;
  min-width: 200px;
  position: relative;
  text-shadow: none;
  transition: box-shadow 0.3s ease;
}

.plyr audio, .plyr video {
  border-radius: inherit;
  height: auto;
  vertical-align: middle;
  width: 100%;
}

.plyr button {
  font: inherit;
  line-height: inherit;
  width: auto;
}

.plyr:focus {
  outline: 0;
}

.plyr--full-ui {
  box-sizing: border-box;
}

.plyr--full-ui *, .plyr--full-ui ::after, .plyr--full-ui ::before {
  box-sizing: inherit;
}

.plyr--full-ui a, .plyr--full-ui button, .plyr--full-ui input, .plyr--full-ui label {
  touch-action: manipulation;
}

.plyr__badge {
  background: #4a5764;
  border-radius: 2px;
  color: var(--wc-white);
  font-size: 9px;
  line-height: 1;
  padding: 3px 4px;
}

.plyr--full-ui ::-webkit-media-text-track-container {
  display: none;
}

.plyr__captions {
  animation: plyr-fade-in 0.3s ease;
  bottom: 0;
  color: var(--wc-white);
  display: none;
  font-size: 14px;
  left: 0;
  padding: 10px;
  position: absolute;
  text-align: center;
  transition: transform 0.4s ease-in-out;
  width: 100%;
}

.plyr__captions .plyr__caption {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  line-height: 185%;
  padding: 0.2em 0.5em;
  white-space: pre-wrap;
}

.plyr__captions .plyr__caption div {
  display: inline;
}

.plyr__captions span:empty {
  display: none;
}

@media (min-width: 480px) {
  .plyr__captions {
    font-size: 16px;
    padding: 20px;
  }
}
@media (min-width: 799px) {
  .plyr__captions {
    font-size: 18px;
  }
}
.plyr--captions-active .plyr__captions {
  display: block;
}

.plyr:not(.plyr--hide-controls) .plyr__controls:not(:empty) ~ .plyr__captions {
  transform: translateY(-40px);
}

.plyr__control {
  background: 0 0;
  border: 0;
  border-radius: 3px;
  color: inherit;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  padding: 7px;
  position: relative;
  transition: all 0.3s ease;
}

.plyr__control svg {
  display: block;
  fill: currentColor;
  height: 18px;
  pointer-events: none;
  width: 18px;
}

.plyr__control:focus {
  outline: 0;
}

.plyr__control.plyr__tab-focus {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

a.plyr__control {
  text-decoration: none;
}

a.plyr__control::after, a.plyr__control::before {
  display: none;
}

.plyr__control.plyr__control--pressed .icon--not-pressed, .plyr__control.plyr__control--pressed .label--not-pressed, .plyr__control:not(.plyr__control--pressed) .icon--pressed, .plyr__control:not(.plyr__control--pressed) .label--pressed {
  display: none;
}

.plyr--audio .plyr__control.plyr__tab-focus, .plyr--audio .plyr__control:hover, .plyr--audio .plyr__control[aria-expanded=true] {
  background: #00b3ff;
  color: var(--wc-white);
}

.plyr--video .plyr__control.plyr__tab-focus, .plyr--video .plyr__control:hover, .plyr--video .plyr__control[aria-expanded=true] {
  background: #00b3ff;
  color: var(--wc-white);
}

.plyr__control--overlaid {
  background: rgba(0, 179, 255, 0.8);
  border: 0;
  border-radius: 100%;
  color: var(--wc-white);
  display: none;
  left: 50%;
  padding: 15px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.plyr__control--overlaid svg {
  left: 2px;
  position: relative;
}

.plyr__control--overlaid:focus, .plyr__control--overlaid:hover {
  background: #00b3ff;
}

.plyr--playing .plyr__control--overlaid {
  opacity: 0;
  visibility: hidden;
}

.plyr--full-ui.plyr--video .plyr__control--overlaid {
  display: block;
}

.plyr--full-ui ::-webkit-media-controls {
  display: none;
}

.plyr__controls {
  align-items: center;
  display: flex;
  justify-content: flex-end;
  text-align: center;
}

.plyr__controls .plyr__progress__container {
  flex: 1;
  min-width: 0;
}

.plyr__controls .plyr__controls__item {
  margin-left: 2.5px;
}

.plyr__controls .plyr__controls__item:first-child {
  margin-left: 0;
  margin-right: auto;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-left: 2.5px;
}

.plyr__controls .plyr__controls__item.plyr__time {
  padding: 0 5px;
}

.plyr__controls .plyr__controls__item.plyr__progress__container:first-child, .plyr__controls .plyr__controls__item.plyr__time + .plyr__time, .plyr__controls .plyr__controls__item.plyr__time:first-child {
  padding-left: 0;
}

.plyr__controls .plyr__controls__item.plyr__volume {
  padding-right: 5px;
}

.plyr__controls .plyr__controls__item.plyr__volume:first-child {
  padding-right: 0;
}

.plyr__controls:empty {
  display: none;
}

.plyr--audio .plyr__controls {
  background: var(--wc-white);
  border-radius: inherit;
  color: #4a5764;
  padding: 10px;
}

.plyr--video .plyr__controls {
  background: linear-gradient(rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.7));
  border-bottom-left-radius: inherit;
  border-bottom-right-radius: inherit;
  bottom: 0;
  color: var(--wc-white);
  left: 0;
  padding: 20px 5px 5px;
  position: absolute;
  right: 0;
  transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
  z-index: 3;
}

@media (min-width: 480px) {
  .plyr--video .plyr__controls {
    padding: 35px 10px 10px;
  }
}
.plyr--video.plyr--hide-controls .plyr__controls {
  opacity: 0;
  pointer-events: none;
  transform: translateY(100%);
}

.plyr [data-plyr=airplay], .plyr [data-plyr=captions], .plyr [data-plyr=fullscreen], .plyr [data-plyr=pip] {
  display: none;
}

.plyr--airplay-supported [data-plyr=airplay], .plyr--captions-enabled [data-plyr=captions], .plyr--fullscreen-enabled [data-plyr=fullscreen], .plyr--pip-supported [data-plyr=pip] {
  display: inline-block;
}

.plyr__menu {
  display: flex;
  position: relative;
}

.plyr__menu .plyr__control svg {
  transition: transform 0.3s ease;
}

.plyr__menu .plyr__control[aria-expanded=true] svg {
  transform: rotate(90deg);
}

.plyr__menu .plyr__control[aria-expanded=true] .plyr__tooltip {
  display: none;
}

.plyr__menu__container {
  animation: plyr-popup 0.2s ease;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4a5764;
  font-size: 16px;
  margin-bottom: 10px;
  position: absolute;
  right: -3px;
  text-align: left;
  white-space: nowrap;
  z-index: 3;
}

.plyr__menu__container > div {
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1), width 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.plyr__menu__container::after {
  border: 4px solid transparent;
  border-top-color: rgba(255, 255, 255, 0.9);
  content: "";
  height: 0;
  position: absolute;
  right: 15px;
  top: 100%;
  width: 0;
}

.plyr__menu__container [role=menu] {
  padding: 7px;
}

.plyr__menu__container [role=menuitem], .plyr__menu__container [role=menuitemradio] {
  margin-top: 2px;
}

.plyr__menu__container [role=menuitem]:first-child, .plyr__menu__container [role=menuitemradio]:first-child {
  margin-top: 0;
}

.plyr__menu__container .plyr__control {
  align-items: center;
  color: #4a5764;
  display: flex;
  font-size: 14px;
  padding: 4px 11px;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr__menu__container .plyr__control > span {
  align-items: inherit;
  display: flex;
  width: 100%;
}

.plyr__menu__container .plyr__control::after {
  border: 4px solid transparent;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.plyr__menu__container .plyr__control--forward {
  padding-right: 28px;
}

.plyr__menu__container .plyr__control--forward::after {
  border-left-color: rgba(74, 87, 100, 0.8);
  right: 5px;
}

.plyr__menu__container .plyr__control--forward.plyr__tab-focus::after, .plyr__menu__container .plyr__control--forward:hover::after {
  border-left-color: currentColor;
}

.plyr__menu__container .plyr__control--back {
  font-weight: 500;
  margin: 7px;
  margin-bottom: 3px;
  padding-left: 28px;
  position: relative;
  width: calc(100% - 14px);
}

.plyr__menu__container .plyr__control--back::after {
  border-right-color: rgba(74, 87, 100, 0.8);
  left: 7px;
}

.plyr__menu__container .plyr__control--back::before {
  background: #c1c9d1;
  box-shadow: 0 1px 0 var(--wc-white);
  content: "";
  height: 1px;
  left: 0;
  margin-top: 4px;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 100%;
}

.plyr__menu__container .plyr__control--back.plyr__tab-focus::after, .plyr__menu__container .plyr__control--back:hover::after {
  border-right-color: currentColor;
}

.plyr__menu__container .plyr__control[role=menuitemradio] {
  padding-left: 7px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after, .plyr__menu__container .plyr__control[role=menuitemradio]::before {
  border-radius: 100%;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::before {
  background: rgba(0, 0, 0, 0.1);
  content: "";
  display: block;
  flex-shrink: 0;
  height: 16px;
  margin-right: 10px;
  transition: all 0.3s ease;
  width: 16px;
}

.plyr__menu__container .plyr__control[role=menuitemradio]::after {
  background: var(--wc-white);
  border: 0;
  height: 6px;
  left: 12px;
  opacity: 0;
  top: 50%;
  transform: translateY(-50%) scale(0);
  transition: transform 0.3s ease, opacity 0.3s ease;
  width: 6px;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::before {
  background: #00b3ff;
}

.plyr__menu__container .plyr__control[role=menuitemradio][aria-checked=true]::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.plyr__menu__container .plyr__control[role=menuitemradio].plyr__tab-focus::before, .plyr__menu__container .plyr__control[role=menuitemradio]:hover::before {
  background: rgba(0, 0, 0, 0.1);
}

.plyr__menu__container .plyr__menu__value {
  align-items: center;
  display: flex;
  margin-left: auto;
  margin-right: -5px;
  overflow: hidden;
  padding-left: 25px;
  pointer-events: none;
}

.plyr--full-ui input[type=range] {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 26px;
  color: #00b3ff;
  display: block;
  height: 19px;
  margin: 0;
  padding: 0;
  transition: box-shadow 0.3s ease;
  width: 100%;
}

.plyr--full-ui input[type=range]::-webkit-slider-runnable-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -webkit-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  -webkit-user-select: none;
  user-select: none;
  background-image: linear-gradient(to right, currentColor var(--value, 0), transparent var(--value, 0));
}

.plyr--full-ui input[type=range]::-webkit-slider-thumb {
  background: var(--wc-white);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  -webkit-appearance: none;
  margin-top: -4px;
}

.plyr--full-ui input[type=range]::-moz-range-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -moz-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-moz-range-thumb {
  background: var(--wc-white);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -moz-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
}

.plyr--full-ui input[type=range]::-moz-range-progress {
  background: currentColor;
  border-radius: 2.5px;
  height: 5px;
}

.plyr--full-ui input[type=range]::-ms-track {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
  color: transparent;
}

.plyr--full-ui input[type=range]::-ms-fill-upper {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
}

.plyr--full-ui input[type=range]::-ms-fill-lower {
  background: 0 0;
  border: 0;
  border-radius: 2.5px;
  height: 5px;
  -ms-transition: box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  user-select: none;
  background: currentColor;
}

.plyr--full-ui input[type=range]::-ms-thumb {
  background: var(--wc-white);
  border: 0;
  border-radius: 100%;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2);
  height: 13px;
  position: relative;
  -ms-transition: all 0.2s ease;
  transition: all 0.2s ease;
  width: 13px;
  margin-top: 0;
}

.plyr--full-ui input[type=range]::-ms-tooltip {
  display: none;
}

.plyr--full-ui input[type=range]:focus {
  outline: 0;
}

.plyr--full-ui input[type=range]::-moz-focus-outer {
  border: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-webkit-slider-runnable-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-moz-range-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 5px rgba(0, 179, 255, 0.5);
  outline: 0;
}

.plyr--full-ui.plyr--video input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]::-moz-range-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]::-ms-track {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--full-ui.plyr--video input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--video input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(255, 255, 255, 0.5);
}

.plyr--full-ui.plyr--audio input[type=range]::-webkit-slider-runnable-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]::-moz-range-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]::-ms-track {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-webkit-slider-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-moz-range-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr--full-ui.plyr--audio input[type=range]:active::-ms-thumb {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(35, 41, 47, 0.2), 0 0 0 3px rgba(0, 0, 0, 0.1);
}

.plyr__poster {
  background-color: #000;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: contain;
  height: 100%;
  left: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  transition: opacity 0.2s ease;
  width: 100%;
  z-index: 1;
}

.plyr--stopped.plyr__poster-enabled .plyr__poster {
  opacity: 1;
}

.plyr__time {
  font-size: 14px;
}

.plyr__time + .plyr__time::before {
  content: "⁄";
  margin-right: 10px;
}

@media (max-width: 767px) {
  .plyr__time + .plyr__time {
    display: none;
  }
}
.plyr--video .plyr__time {
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
}

.plyr__tooltip {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  color: #4a5764;
  font-size: 14px;
  font-weight: 500;
  left: 50%;
  line-height: 1.3;
  margin-bottom: 10px;
  opacity: 0;
  padding: 5px 7.5px;
  pointer-events: none;
  position: absolute;
  transform: translate(-50%, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  white-space: nowrap;
  z-index: 2;
}

.plyr__tooltip::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr .plyr__control:hover .plyr__tooltip, .plyr__tooltip--visible {
  opacity: 1;
  transform: translate(-50%, 0) scale(1);
}

.plyr .plyr__control:hover .plyr__tooltip {
  z-index: 3;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip {
  left: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 0 100%;
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip::before, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip::before {
  left: 16px;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip {
  left: auto;
  right: 0;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 100% 100%;
}

.plyr__controls > .plyr__control:last-child .plyr__tooltip::before {
  left: auto;
  right: 16px;
  transform: translateX(50%);
}

.plyr__controls > .plyr__control:first-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control .plyr__tooltip--visible, .plyr__controls > .plyr__control:first-child + .plyr__control.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child + .plyr__control:hover .plyr__tooltip, .plyr__controls > .plyr__control:first-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:first-child:hover .plyr__tooltip, .plyr__controls > .plyr__control:last-child .plyr__tooltip--visible, .plyr__controls > .plyr__control:last-child.plyr__tab-focus .plyr__tooltip, .plyr__controls > .plyr__control:last-child:hover .plyr__tooltip {
  transform: translate(0, 0) scale(1);
}

.plyr--video {
  background: #000;
  overflow: hidden;
}

.plyr--video.plyr--menu-open {
  overflow: visible;
}

.plyr__video-wrapper {
  background: #000;
  border-radius: inherit;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__video-embed, .plyr__video-wrapper--fixed-ratio {
  height: 0;
  padding-bottom: 56.25%;
}

.plyr__video-embed iframe, .plyr__video-wrapper--fixed-ratio video {
  border: 0;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  -webkit-user-select: none;
  user-select: none;
  width: 100%;
}

.plyr--full-ui .plyr__video-embed > .plyr__video-embed__container {
  padding-bottom: 240%;
  position: relative;
  transform: translateY(-38.28125%);
}

.plyr__progress {
  left: 6.5px;
  margin-right: 13px;
  position: relative;
}

.plyr__progress input[type=range], .plyr__progress__buffer {
  margin-left: -6.5px;
  margin-right: -6.5px;
  width: calc(100% + 13px);
}

.plyr__progress input[type=range] {
  position: relative;
  z-index: 2;
}

.plyr__progress .plyr__tooltip {
  font-size: 14px;
  left: 0;
}

.plyr__progress__buffer {
  -webkit-appearance: none;
  background: 0 0;
  border: 0;
  border-radius: 100px;
  height: 5px;
  left: 0;
  margin-top: -2.5px;
  padding: 0;
  position: absolute;
  top: 50%;
}

.plyr__progress__buffer::-webkit-progress-bar {
  background: 0 0;
}

.plyr__progress__buffer::-webkit-progress-value {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  -webkit-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-moz-progress-bar {
  background: currentColor;
  border-radius: 100px;
  min-width: 5px;
  -moz-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr__progress__buffer::-ms-fill {
  border-radius: 100px;
  -ms-transition: width 0.2s ease;
  transition: width 0.2s ease;
}

.plyr--video .plyr__progress__buffer {
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.15);
  color: rgba(255, 255, 255, 0.25);
}

.plyr--audio .plyr__progress__buffer {
  color: rgba(193, 201, 209, 0.66);
}

.plyr--loading .plyr__progress__buffer {
  animation: plyr-progress 1s linear infinite;
  background-image: linear-gradient(-45deg, rgba(35, 41, 47, 0.6) 25%, transparent 25%, transparent 50%, rgba(35, 41, 47, 0.6) 50%, rgba(35, 41, 47, 0.6) 75%, transparent 75%, transparent);
  background-repeat: repeat-x;
  background-size: 25px 25px;
  color: transparent;
}

.plyr--video.plyr--loading .plyr__progress__buffer {
  background-color: rgba(255, 255, 255, 0.25);
}

.plyr--audio.plyr--loading .plyr__progress__buffer {
  background-color: rgba(193, 201, 209, 0.66);
}

.plyr__volume {
  align-items: center;
  display: flex;
  flex: 1;
  position: relative;
}

.plyr__volume input[type=range] {
  margin-left: 5px;
  position: relative;
  z-index: 2;
}

@media (min-width: 480px) {
  .plyr__volume {
    max-width: 90px;
  }
}
@media (min-width: 799px) {
  .plyr__volume {
    max-width: 110px;
  }
}
.plyr--is-ios .plyr__volume {
  display: none !important;
}

.plyr--is-ios.plyr--vimeo [data-plyr=mute] {
  display: none !important;
}

.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:fullscreen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

.plyr:fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }
  .plyr:fullscreen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-webkit-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-webkit-full-screen video {
  height: 100%;
}

.plyr:-webkit-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-webkit-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-webkit-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-webkit-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-webkit-full-screen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-moz-full-screen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-moz-full-screen video {
  height: 100%;
}

.plyr:-moz-full-screen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-moz-full-screen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-moz-full-screen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-moz-full-screen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-moz-full-screen .plyr__captions {
    font-size: 21px;
  }
}
.plyr:-ms-fullscreen {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
}

.plyr:-ms-fullscreen video {
  height: 100%;
}

.plyr:-ms-fullscreen .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr:-ms-fullscreen.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr:-ms-fullscreen .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr:-ms-fullscreen.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr:-ms-fullscreen .plyr__captions {
    font-size: 21px;
  }
}
.plyr--fullscreen-fallback {
  background: #000;
  border-radius: 0 !important;
  height: 100%;
  margin: 0;
  width: 100%;
  bottom: 0;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10000000;
}

.plyr--fullscreen-fallback video {
  height: 100%;
}

.plyr--fullscreen-fallback .plyr__video-wrapper {
  height: 100%;
  position: static;
}

.plyr--fullscreen-fallback.plyr--vimeo .plyr__video-wrapper {
  height: 0;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen {
  display: block;
}

.plyr--fullscreen-fallback .plyr__control .icon--exit-fullscreen + svg {
  display: none;
}

.plyr--fullscreen-fallback.plyr--hide-controls {
  cursor: none;
}

@media (min-width: 1024px) {
  .plyr--fullscreen-fallback .plyr__captions {
    font-size: 21px;
  }
}
.plyr__ads {
  border-radius: inherit;
  bottom: 0;
  cursor: pointer;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}

.plyr__ads > div, .plyr__ads > div iframe {
  height: 100%;
  position: absolute;
  width: 100%;
}

.plyr__ads::after {
  background: rgba(35, 41, 47, 0.8);
  border-radius: 2px;
  bottom: 10px;
  color: var(--wc-white);
  content: attr(data-badge-text);
  font-size: 11px;
  padding: 2px 6px;
  pointer-events: none;
  position: absolute;
  right: 10px;
  z-index: 3;
}

.plyr__ads::after:empty {
  display: none;
}

.plyr__cues {
  background: currentColor;
  display: block;
  height: 5px;
  left: 0;
  margin: -2.5px 0 0;
  opacity: 0.8;
  position: absolute;
  top: 50%;
  width: 3px;
  z-index: 3;
}

.plyr__preview-thumb {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 3px;
  bottom: 100%;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  margin-bottom: 10px;
  opacity: 0;
  padding: 3px;
  pointer-events: none;
  position: absolute;
  transform: translate(0, 10px) scale(0.8);
  transform-origin: 50% 100%;
  transition: transform 0.2s 0.1s ease, opacity 0.2s 0.1s ease;
  z-index: 2;
}

.plyr__preview-thumb--is-shown {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

.plyr__preview-thumb::before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(255, 255, 255, 0.9);
  bottom: -4px;
  content: "";
  height: 0;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 0;
  z-index: 2;
}

.plyr__preview-thumb__image-container {
  background: #c1c9d1;
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  z-index: 0;
}

.plyr__preview-thumb__image-container img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr__preview-thumb__time-container {
  bottom: 6px;
  left: 0;
  position: absolute;
  right: 0;
  white-space: nowrap;
  z-index: 3;
}

.plyr__preview-thumb__time-container span {
  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 2px;
  color: var(--wc-white);
  font-size: 14px;
  padding: 3px 6px;
}

.plyr__preview-scrubbing {
  bottom: 0;
  filter: blur(1px);
  height: 100%;
  left: 0;
  margin: auto;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0.3s ease;
  width: 100%;
  z-index: 1;
}

.plyr__preview-scrubbing--is-shown {
  opacity: 1;
}

.plyr__preview-scrubbing img {
  height: 100%;
  left: 0;
  max-height: none;
  max-width: none;
  object-fit: contain;
  position: absolute;
  top: 0;
  width: 100%;
}

.plyr--no-transition {
  transition: none !important;
}

.plyr__sr-only {
  clip: rect(1px, 1px, 1px, 1px);
  overflow: hidden;
  border: 0 !important;
  height: 1px !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
}

.plyr [hidden] {
  display: none !important;
}

/* #Model Viewer
================================================== */
.shopify-model-viewer-ui {
  position: relative;
  display: block;
  cursor: pointer;
}

.shopify-model-viewer-ui model-viewer {
  transform: translateZ(0);
  z-index: 1;
}

.shopify-model-viewer-ui model-viewer.shopify-model-viewer-ui__disabled {
  pointer-events: none;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen model-viewer {
  position: relative;
  width: 100vw;
  height: 100vh;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen .shopify-model-viewer-ui__control-icon--exit-fullscreen {
  display: block;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--fullscreen .shopify-model-viewer-ui__control-icon--enter-fullscreen {
  display: none;
}

.shopify-model-viewer-ui.shopify-model-viewer-ui--desktop.shopify-model-viewer-ui--child-focused .shopify-model-viewer-ui__controls-area, .shopify-model-viewer-ui.shopify-model-viewer-ui--desktop:hover .shopify-model-viewer-ui__controls-area {
  opacity: 1;
}

.shopify-model-viewer-ui:not(.shopify-model-viewer-ui--desktop) .shopify-model-viewer-ui__controls-area {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  display: flex;
  flex-direction: column;
  background: var(--wc-white);
  opacity: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: absolute;
  bottom: 10px;
  right: 10px;
  z-index: 1;
  transition: opacity 0.1s linear;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area:not(.shopify-model-viewer-ui__controls-area--playing) {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
  color: #3a3a3a;
  border-radius: 0;
  border: none;
  margin: 0;
  cursor: pointer;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button:not(.focus-visible) {
  outline: 0;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control {
  padding: 0;
  height: 44px;
  width: 44px;
  background: 0 0;
  position: relative;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:hover {
  color: rgba(0, 0, 0, 0.55);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control.focus-visible:focus, .shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:active {
  color: rgba(0, 0, 0, 0.55);
  background: rgba(0, 0, 0, 0.05);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after {
  position: absolute;
  content: "";
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  width: 28px;
  bottom: 0;
  right: 8px;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon {
  width: 44px;
  height: 44px;
  fill: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster {
  background: var(--wc-white);
  position: absolute;
  border: 1px solid rgba(0, 0, 0, 0.05);
  top: 50%;
  left: 50%;
  padding: 0;
  transform: translate3d(-50%, -50%, 0);
  height: 62px;
  width: 62px;
  z-index: 1;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:focus, .shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover {
  color: rgba(0, 0, 0, 0.55);
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__poster-control-icon {
  width: 60px;
  height: 60px;
  z-index: 1;
  fill: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon--exit-fullscreen {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__control-icon--enter-fullscreen {
  display: block;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__spritesheet {
  display: none;
}

.shopify-model-viewer-ui .shopify-model-viewer-ui__sr-only {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

/* #Text Grid
================================================== */

.text-grid__row {
  display: flex;
  flex-wrap: wrap;
  margin: auto;
  width: 100%;
  gap: 18px;
  justify-content: space-evenly;
  padding: 10px 0;
  @media(max-width: 480px) {
    gap: 7px;
  }
}

.text-grid__heading {
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}

.text-grid__col {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  box-sizing: border-box;
  text-align: center;
  border: 1px solid #0b0b0b;
  /* box-shadow: 0 2px 0 #0b0b0b; */
  border-radius: 12px;
  background: var(--wc-cream);
  h2, p, .text-grid__subheading {
    padding: 5px;
    margin: 0;
  }
  h2 {
    text-transform: none;
    letter-spacing: 1px;
    line-height: 1;
    font-size: var(--wc-text-card-heading);
    font-family: var(--wc-font-display);
    font-weight: var(--wc-weight-display);
    margin-top: 7px;
  }
  p {
    font-family: var(--wc-font-body);
    line-height: 1.3;
    font-size: var(--wc-text-body);
  }
  @media(max-width: 480px){
    .text-grid__subheading {
      line-height: 1.2;
      max-width: 145px;
    }
  }
  .text-grid__subheading  {
    padding: 0 7px;
    padding-bottom: 0;
    text-align: center;
  }
}

/* Text-grid icons */
.text-grid__icon {
  color: var(--wc-black);
  margin-bottom: var(--wc-space-xs);
  line-height: 1;
}
.text-grid__icon svg {
  width: 30px;
  height: 30px;
}
@media (max-width: 798px) {
  .text-grid__icon svg {
    width: 24px;
    height: 24px;
  }
}

/* Desktop column widths */
.text-grid__col.col-2 { flex: 0 0 48%; max-width: 48%; }
.text-grid__col.col-3 { flex: 0 0 31.333%; max-width: 31.333%; }
.text-grid__col.col-4 { flex: 0 0 23%; max-width: 23%; }

/* Mobile overrides */
@media (max-width: 749px) {
  .text-grid__col.mobile-col-1 { flex: 0 0 94%; max-width: 94%; }
  .text-grid__col.mobile-col-2 { flex: 0 0 48%; max-width: 100%; justify-content: stretch; }
  .text-grid__col {
    padding: 8px 3px 3px;
  }
  .text-grid__row {
    justify-content: center;
  }
}

/* #Gift/Text Row
================================================== */

.text-row__inner {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  border: 1px solid #0b0b0b;
  /* box-shadow: 0 2px 0 #0b0b0b; */
  border-radius: 14px;
  padding: 10px;
  margin: auto;
}

.text-row__header {
  flex: 1;
  text-transform: none !important;
  margin: 0 !important;
}

.text-row__copy {
  flex: 2;
  text-align: center;
  font-size: 20px;
  p {
    margin: 0;
  }
}

.text-row__button {
  flex: 0 0 auto;
  max-width: 200px;
}

/* mobile: stack into column */
@media (max-width: 798px) {
  .text-row__inner {
    flex-direction: column;
    text-align: center;
  }

  .text-row__button {
    margin-top: 15px;
  }
}

/* #Newsletter Custom Styles
================================================== */

.newsletter-grid {
  display: flex;
  gap: 50px;
  flex-direction: row-reverse;
}

.newsletter-col {
  flex: 1 1 100%;
  padding: 16px;
  align-content: center;
}

.newsletter-col {
  border: 1px solid #0b0b0b;
  border-radius: 14px;
}

.side-content {
  border: 1px solid #0b0b0b;
  /* box-shadow: 0 2px 0 #0b0b0b; */
  border-radius: 14px;
}

.side-content .side-copy {
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-body);
  line-height: 1.3;
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  padding-top: 10px;
  height: 100%;
  @media(max-width: 480px) {
    display: block;
  }
}

.side-content .side-copy-col {
  flex: 1 1 50%;
  p {
    margin-bottom: 0;
  }
}

.side-logo {
  max-width: 300px;
}

@media (min-width: 799px) {
  .newsletter-col {
    flex: 1 1 40%; /* form column */
  }

  .side-content {
    flex: 1 1 60%; /* logo + copy column */
  }
}

@media (max-width: 798px) {
  .newsletter-grid {
    flex-direction: column-reverse;
    gap: 20px;
  }
  /* .side-content .side-copy {
  flex-wrap: wrap;
  } */
}

/* #Product Media Custom Styles
================================================== */


.model__container {
  position: relative;
}
.model__container--single-model {
  min-height: 300px;
}
.model__container model-viewer {
  min-height: 300px;
}

.view-in-your-space {
  padding: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 44px;
  background: #f4dfb8;
  color: #111111;
  font: inherit;
  text-transform: none;
  border-radius: 0px;
  margin-top: 0;
}
.view-in-your-space:active, .view-in-your-space:focus, .view-in-your-space:hover {
  background: #f4dfb8;
  color: #111111;
}
.view-in-your-space svg {
  width: auto;
  height: auto;
  margin: 0;
}
.view-in-your-space svg path:first-child {
  stroke: #111111;
}
.view-in-your-space svg path:last-child {
  fill: #111111;
}

.plyr--video .plyr__controls {
  background: rgba(251, 243, 228, 0.6);
  padding: 10px;
}
.plyr--video .plyr__control {
  background: transparent;
  color: #111111;
}
.plyr--video .plyr__control:hover {
  background: #fbf3e4;
  color: #111111;
}
.plyr--video .plyr__controls__item.plyr__time,
.plyr--video input[type=range],
.plyr--video .plyr__controls__item {
  color: #111111;
}
.plyr--video .plyr__progress input[type=range] + .thumb {
  background-color: #111111;
  color: #111111;
}
.plyr--video input[type=range]::-webkit-slider-thumb {
  background-color: #111111;
}
.plyr--video input[type=range]::-moz-range-thumb {
  background-color: #111111;
}
.plyr--video input[type=range]::-ms-thumb {
  background-color: #111111;
}
.plyr--video .plyr__progress__buffer,
.plyr--video .plyr__control[aria-expanded=true] {
  background-color: rgba(17, 17, 17, 0.6);
}
.plyr--video .plyr__control.plyr__tab-focus {
  background-color: #111111;
}
.plyr--video .plyr__control--overlaid {
  background: #fbf3e4;
  padding: 4px;
  border-radius: 0;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.plyr--video .plyr__control--overlaid svg {
  left: auto;
}
.plyr--video .plyr__control--overlaid:hover {
  background: #fbf3e4;
}
.plyr--video .plyr__control--overlaid:hover .play-icon-button-control rect {
  opacity: 0.75;
}
.plyr--video .plyr__control .play-icon-button-control {
  width: 52px;
  height: 52px;
}
.plyr--video .plyr__control .play-icon-button-control rect {
  fill: #fbf3e4;
}
.plyr--video .plyr__control .play-icon-button-control path {
  fill: #111111;
}

.plyr__controls .plyr__controls__item.plyr__progress__container {
  padding-right: 10px;
  padding-left: 10px;
}

/* Styles for a vertical volume scrollbar */
.plyr--full-ui .plyr__volume {
  background-color: rgba(251, 243, 228, 0.25);
  border-radius: 5px;
  bottom: 105px;
  height: 40px;
  opacity: 0;
  padding: 10px 15px !important;
  position: absolute;
  transform: rotate(270deg);
  transition: visibility 0.4s linear 0.4s, opacity 0.4s linear 0.3s;
  width: 140px;
}
.plyr--full-ui .plyr__volume:before {
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 4px solid rgba(251, 243, 228, 0.25);
  bottom: 18px;
  content: "";
  left: -6px;
  position: absolute;
  transform: rotate(90deg);
  z-index: 2;
}
.plyr--full-ui .plyr__volume:hover {
  opacity: 1;
  visibility: visible;
}
.plyr--full-ui .plyr__volume.plyr__volume--is-visible {
  opacity: 1;
  transition: visibility 0.4s linear, opacity 0.4s linear;
}
.plyr--full-ui .plyr__volume input[type=range] {
  color: #111111;
  margin: 0 auto;
}

.plyr--full-ui .plyr__volume input[type=range]::-webkit-slider-runnable-track,
.plyr--full-ui .plyr__volume input[type=range]::-moz-range-track,
.plyr--full-ui .plyr__volume input[type=range]::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range]::-moz-range-thumb {
  box-shadow: none;
}

.plyr--full-ui .plyr__volume input[type=range]::-ms-fill-upper,
.plyr--full-ui .plyr__volume input[type=range]::-ms-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-webkit-slider-runnable-track,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-moz-range-track,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-ms-track {
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.25);
}

.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-moz-range-thumb,
.plyr--full-ui .plyr__volume input[type=range].plyr__tab-focus::-ms-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-webkit-slider-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-moz-range-thumb,
.plyr--full-ui .plyr__volume input[type=range]:active::-ms-thumb {
  box-shadow: none;
}

.plyr--audio .plyr--full-ui .plyr__volume {
  bottom: 125px;
  right: -37px;
}

.plyr--is-ios .plyr__volume {
  display: none !important;
}

.plyr__control[data-plyr=mute]:hover + .plyr__volume {
  opacity: 1;
  transition: visibility 0.4s linear, opacity 0.4s linear;
}

@media (min-width: 480px) {
  .plyr--full-ui .plyr__volume input[type=range] {
    max-width: 90px;
  }
}
@media (min-width: 750px) {
  .plyr--full-ui .plyr__volume input[type=range] {
    max-width: 110px;
  }
}
@media only screen and (max-width: 989px) {
  .plyr--is-touch .plyr__volume {
    display: none !important;
  }
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button {
  color: #111111;
  background: #fbf3e4;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button[hidden] {
  display: none;
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:hover,
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--poster:focus {
  color: rgba(17, 17, 17, 0.55);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__controls-area {
  background: #fbf3e4;
  border: 1px solid rgba(17, 17, 17, 0.05);
}
.shopify-model-viewer-ui .shopify-model-viewer-ui__button--control:not(:last-child):after {
  border-bottom: 1px solid rgba(17, 17, 17, 0.05);
}

@media only screen and (min-width: 799px) {
  .video-on-hover .plyr__controls,
  .video-on-hover .plyr__control--overlaid,
  .video-controls-enabled--false .plyr__controls,
  .video-controls-enabled--false .plyr__control--overlaid {
    opacity: 0;
  }
  .video-on-hover .plyr__controls > *,
  .video-on-hover .plyr__control--overlaid > *,
  .video-controls-enabled--false .plyr__controls > *,
  .video-controls-enabled--false .plyr__control--overlaid > * {
    pointer-events: none;
    cursor: auto;
  }
}

/* Hide controls when video is stopped */
.plyr.plyr--stopped .plyr__controls {
  display: none;
}

/* Set product media height */
.product_slider.product-height-set model-viewer {
  margin: 0 auto;
}
.product_slider.product-height-set .product-gallery__main img,
.product_slider.product-height-set .product-gallery__main .plyr--html5 video {
  width: 100%;
}
.product_slider.product-height-set .product-gallery__main img {
  object-fit: contain;
}
.product_slider.product-height-set .product-gallery__main .plyr--youtube .plyr__video-embed {
  height: 100%;
}

@media only screen and (max-width: 480px) {
  .product-gallery .product-gallery__main .product-gallery__image a,
  .product-gallery .product-gallery__main .product-gallery__image .video__container,
  .product-gallery .product-gallery__main .product-gallery__image .plyr--youtube {
    min-height: 100%;
    max-height: 75vh; /* Prevents main product image from taking up whole viewport */
  }
}
@media only screen and (max-width: 480px) {
  .product-gallery .product-gallery__main model-viewer {
    min-height: 300px;
  }
}

.product-gallery__thumbnails .product-gallery__thumbnail {
  position: relative;
}
.product-gallery__thumbnails .media-badge {
  position: absolute;
  top: 0;
  right: 0;
  max-width: 33%;
  max-height: 33%;
  min-width: 20px;
  width: 25px;
  height: 25px;
}
.product-gallery__thumbnails .media-badge svg {
  width: 100%;
  height: 100%;
}
.product-gallery__thumbnails .media-badge path:first-child {
  fill: #fbf3e4;
}
.product-gallery__thumbnails .media-badge path:last-child {
  fill: #111111;
}
.product-gallery__thumbnails .media-badge g path:first-child {
  stroke: #111111;
}
.product-gallery__thumbnails .media-badge .media-badge__outline {
  stroke: rgba(17, 17, 17, 0.05);
}

/* Newsletter */
.js-newsletter-popup {
  padding: 0;
  display: none;
}

.newsletter {
  margin-bottom: 1.5em;
}
.newsletter .contact-form {
  width: 460px;
  margin: 0 auto;
}
@media only screen and (max-width: 798px) {
  .newsletter .contact-form {
    width: 100%;
  }
}
.newsletter .input-row {
  display: flex;
  margin-left: -5px;
  margin-right: -5px;
}
@media only screen and (max-width: 798px) {
  .newsletter .input-row {
    flex-direction: column;
    margin-left: 0px;
    margin-right: 0px;
  }
}
.newsletter .input-row input {
  margin: 5px;
  border: 1px solid #0b0b0b;
  border-radius: 15px;
}
@media only screen and (max-width: 798px) {
  .newsletter .input-row input {
    margin: 5px 0;
  }
}
.newsletter input.sign_up {
  display: inline-block;
  width: 30%;
  flex: none;
}
@media only screen and (max-width: 798px) {
  .newsletter input.sign_up {
    width: 100%;
  }
}

.newsletter_popup,
.newsletter_popup p.headline,
.newsletter_popup a,
.newsletter_popup a:visited {
  color: #ffffff;
}

.newsletter_popup .newsletter {
  margin-bottom: 0;
}

.newsletter_popup .js-newsletter-popup {
  background-color: #ffffff;
  max-width: 600px;
}

.newsletter_popup .fancybox-close {
  color: #ffffff !important; /* overwrite default Fancybox styles */
}

/* Zoom on image */
[data-slideshow-animation=zoom] img {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: zoom-in;
}

/* #Currency / Language switcher
================================================== */
.selectors-form {
  margin-bottom: 0;
}

.selectors-form summary {
  list-style: none;
}
.selectors-form summary::-webkit-details-marker {
  display: none;
}

.no-js .selectors-form--no-js-hidden {
  display: none;
}

.selectors-form__wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}
@media only screen and (max-width: 798px) {
  .selectors-form__wrap {
    width: 100%;
  }
}

.selectors-form__item {
  margin-right: 20px;
}
.selectors-form__item:last-child, .localization .selectors-form__item {
  margin-right: 0;
}

.disclosure {
  position: relative;
}
.no-js .disclosure {
  position: initial;
}

.disclosure__toggle {
  background-color: #fbf3e4;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  color: #000000;
  font-family: Jost, sans-serif;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  padding: 10px;
  position: relative;
  text-transform: uppercase;
  z-index: 2;
}
.no-js .disclosure__toggle {
  pointer-events: none;
}
.disclosure__toggle:active {
  border-color: #dfdfdf;
  box-shadow: none;
}
.disclosure__toggle.is-clicked, .disclosure__toggle:focus, .disclosure__toggle:hover {
  background-color: #fbf3e4;
  border-color: #dfdfdf;
  color: #0b0b0b;
}
.disclosure__toggle.is-clicked + .disclosure__list-wrap {
  display: block;
}
.disclosure__toggle .icon-down-arrow {
  margin-left: 10px;
  pointer-events: none;
}

.disclosure__details {
  position: relative;
}

.disclosure-list__item--radio {
  margin: 0;
}
.disclosure-list__item--radio + .disclosure-list__item--label {
  height: 100%;
  color: #111111;
  word-break: keep-all;
  margin-left: 5px;
  margin-bottom: 0;
  padding: 0;
}

.disclosure__submit {
  margin: 1rem 0;
}

.disclosure-list__item-wrapper {
  display: flex;
  align-items: center;
  margin-top: 1rem;
}
.disclosure-list__item-wrapper:first-child {
  margin-top: 0;
}

.disclosure__list-wrap {
  bottom: 100%;
  display: none;
  position: absolute;
  z-index: 4;
}
.disclosure__list-wrap.animated {
  animation-duration: 0.5s;
}
[open] .disclosure__list-wrap {
  display: block;
  width: -webkit-max-content;
  width: max-content;
}

.disclosure-list {
  background-color: #fbf3e4;
  border: 1px solid #dfdfdf;
  border-radius: 2px;
  list-style: none;
  margin-bottom: 0;
  margin-left: 0;
  padding: 0 10px;
  max-height: 300px;
  overflow-y: auto;
}
.no-js .disclosure-list {
  padding: 0.75rem;
}

li.disclosure-list__item {
  line-height: 1;
  list-style: none;
  padding: 0;
  text-transform: uppercase;
}

button.disclosure__button {
  background-color: transparent;
  border: 0;
  color: #000000;
  font-family: Jost, sans-serif;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  padding: 10px 0;
  text-align: left;
  text-transform: uppercase;
}
button.disclosure__button:hover, button.disclosure__button:focus, button.disclosure__button[aria-current=true] {
  color: #0b0b0b;
}

/* #Password Page
================================================== */
#password-container {
  margin: 75px auto 0;
  max-width: 100%;
  display: table;
  text-align: center;
  display: table;
  text-align: center;
}
@media only screen and (max-width: 798px) {
  #password-container {
    margin-top: 10px;
  }
}

.password-page-message {
  font-size: 3em;
  line-height: 1.2;
  margin: 10px auto;
  padding: 12px 0;
  text-align: center;
}

.password-message {
  max-width: 600px;
  font-size: 1.2em;
}

.password-social .social_icons a,
.password-social .social_icons a:visited,
.password-social .social_icons a:active {
  font-size: 44px;
}

.password-footer {
  margin-top: 15px;
  margin-bottom: 40px;
  font-size: 13px;
  text-align: center;
}

.password-footer a {
  text-decoration: none;
}

.password-page-row {
  display: table-row;
  width: 100%;
  height: 100%;
  margin: 0 auto;
}

.password-page-col {
  display: table-cell;
  vertical-align: middle;
  padding: 5px 30px;
  width: 100%;
}

.password-page-col h1 {
  border: 0;
}

.password-logo {
  max-width: 200px; /* Allows logo to be more prominent */
  margin: 0px auto;
}

.hr-small {
  margin: 7px auto;
  width: 50%;
  border-width: 1px 0 0;
}

.password-social {
  margin-top: 10px;
  padding-top: 20px;
}

.password-social ul {
  margin-left: 0;
  padding-left: 0;
  margin-bottom: 10px;
}

.password-social .social_icons li {
  display: inline;
  margin-left: 0;
}

.password-social .social_icons a:hover {
  color: #c69000;
}

.powered {
  display: block;
  margin-top: 15px;
}

.shopify a {
  background-repeat: no-repeat;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAARCAYAAADUryzEAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA0JJREFUeNqMU81vG0UU/83sR73YG+M4xrHj4jj9UCFNSaGlQQUhhFBRpXIo6jEHQFXFAbhy4B/gioTgzgGV7ws5IAoqUgUSoWoIaZJGpGpMHDuptf5a7+fM8nZpJaRy4M0+jd7szO/93u/NsAsX5vFvi6IInHNUq5NnstnsqXp96xur3f392HNlrIcLePHkS8hlTchIJvtVSTOjIaSAwhkiGsXi+BudjjVp28Oj+XzhrPDZh5qqfoIQD5j6wrxHCAJ6UMXVr3pgnB0c9O2843jrE5XMtZER47GTp+bOqfn++d9+Ct5TuLrCGAcjpgnAWEVSdg8HSyWUzTl8v7D08szxSltPB6/OPDWeW/q1caI2O0zfbrThBM7pjdbiz9PG7LsK01epYKiCaMlIQadnHag9UZ2vbuqvl47tVMwcY3fdFjLFCIHksB0bQojCTmfzlWyHf53S0qsyigESMRS0uqtvNbs330nXNHhRAWl3ChnNhLG/jzBy4fg27pGG5TSqWsARV6EGwk+WScgymIQ5auLpyTdRHj2arC//9QXuDpfgeDYkQcgoZixq4DKuAGoo7wEwVg5DD3PVt1EafRzL21/C0HJo9f4gYUO4gZNkFMk5Nkli3wcI4vP7yIvxhsLIIXhBHzfqlzHwWihkDiNjPEwlDJNE/zDABGPQKfR5QAzI8wRU9IWNurWIlJbF+dmP8Ig5ja67Az8cwvWdmCVi4YSMSlTzODjAQxGAvCZkaIpI4MeN97Fc/xbpfXk8WXmNqPcw9C1idR8gKSNN06GYEScZYwZVJ+xj/8hpPJp9HmvNK/Bd6g0zEXfJ9rvEwE0A4qbFLOibimN15RcLR57JVFx7iLGHpvFs9RJ8QZvofmzsXoEXDqAqWiIiyUaAUSIkBTVVY1BuXuth6rhxcaxizDb619EcrGPg7+JG8zJWdj8HZwplk7hTHyDiKrU5BVWXyKT57ncfNz9TRBjxrRWn3/zT2+7seV7DWuabnR+MTrCm6ikNnLLEL3R720dmQkMqFz8dia3rdmvhg8an7MH3hZRhKuVsQTtcPmCcGK+lZvLl1JEdK9T7PW9t75a72L7tXh3sBbdEELXxP00h1//rx98CDACS7p3N/ZPUwQAAAABJRU5ErkJggg==);
  padding-left: 21px;
  color: #1f2022;
  text-decoration: none;
}

/* Password Page Modal CSS */
.controls {
  display: block;
  margin: 1em;
  text-align: right;
  text-transform: uppercase;
  position: relative;
}

#open-me {
  text-align: center;
  margin-bottom: 35px;
}
#open-me a:hover {
  color: #c69000;
}

.close-me {
  z-index: 8000;
}

.modalbox {
  position: absolute;
  height: 100%;
  top: -1em;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0;
  z-index: 5000;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  max-height: 100%;
  top: 0;
  left: 0;
  background: var(--wc-white);
  background: rgba(255, 255, 255, 0.95);
}

.overlay-close {
  width: 150px;
  height: 50px;
  position: absolute;
  right: 10px;
  top: 10px;
  border: 1px solid #000;
  font-size: 14px;
}

.overlay-data {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0s 0.5s;
}

.overlay-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s;
}

.inputbox {
  margin: 0px auto;
  max-width: 80%;
  display: table;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-right: -50%;
  transform: translate(-50%, -50%);
  color: #000;
}

@media only screen and (max-width: 798px) {
  #password-page-bg .modalbox .inputbox {
    top: 50%;
  }
}

.storefront-password-form label {
  font-size: 0.9em;
  margin: 0 0 1em 0;
  text-align: center;
}

.storefront-password-form .actions {
  display: inline-block;
}

.storefront-password-form #password {
  width: 100%;
}

#owner {
  font-size: 0.9em;
  margin-top: -1em;
  opacity: 0.8;
}

.pass-close a {
  color: #000 !important;
  padding: 0 !important;
  margin: 1em !important;
  position: inherit !important;
}

@media screen and (min-width: 320px) and (max-width: 440px) and (max-height: 667px) {
  .modalbox {
    display: block;
    width: 414px !important;
    max-width: 100%;
    text-align: center;
  }
  .pass-close {
    display: block;
    margin: 0.65em -0.15em 1em 0 !important;
  }
}
/* #Product Details
================================================== */
div.product-details {
  clear: both;
}
div.product-details .thumbnail {
  border-bottom: 0px;
}
div.product-details img {
  width: 100%;
}
div.product-details img.rich-image {
  max-width: auto;
  margin-bottom: 20px;
}
div.product-details .detail_title {
  line-height: initial;
  font-size: 42px;
  margin-bottom: 0.3em;
  font-family: Jost, sans-serif;
  font-weight: 600;
  text-transform: none;
  color: #1f2022;
  display: block;
  letter-spacing: 2px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 798px) {
  div.product-details .detail_title {
    font-size: 21px;
  }
}
div.product-details .featured_collections .featured-link--half a[href] img {
  box-shadow: #000 0em 0em 0em;
  transition: opacity 0.2s linear;
}
div.product-details .featured_collections .featured-link--half:hover a[href] img {
  opacity: 0.8;
}
div.product-details .featured-link--section {
  box-sizing: border-box;
  float: left;
  width: 100%;
  min-height: 100px;
  display: flex;
  flex-wrap: wrap;
}
div.product-details .featured-link--section:nth-child(odd) {
  flex-direction: row-reverse;
}
div.product-details .featured-link--section:nth-child(odd) .featured-link--half {
  float: right;
}
div.product-details .featured-link--half.featured-link--image {
  background-color: transparent;
  text-align: center;
}
div.product-details .featured-link--half {
  box-sizing: border-box;
  float: left;
  width: 50%;
  position: relative;
  text-align: center;
  display: table;
  flex: 1 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 480px) {
  div.product-details .featured-link--half {
    width: 100%;
    flex: 1 0 100%;
  }
}
div.product-details .featured-link--half .featured-link--wrap {
  width: 100%;
  flex: 0 0 auto;
}
div.product-details .featured-link--half img,
div.product-details .featured-link--half svg {
  display: block;
  margin: 0 auto;
  width: 100%;
  max-width: 100%;
}
@media only screen and (max-width: 480px) {
  div.product-details .featured-link--half img,
  div.product-details .featured-link--half svg {
    width: 100%;
    max-width: auto;
  }
}
div.product-details .featured-link--half .info {
  display: inline-block;
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}
div.product-details .featured-link--half .info.text-align--right {
  text-align: right;
}
div.product-details .featured-link--half .info.text-align--right .description:before {
  margin-right: 0;
}
div.product-details .featured-link--half .info.text-align--left {
  text-align: left;
}
div.product-details .featured-link--half .info.text-align--left .description:before {
  margin-left: 0;
}
@media only screen and (max-width: 480px) {
  div.product-details .featured-link--half .info {
    position: static;
    transform: translateY(0);
    padding: 2em 0;
  }
}
div.product-details .featured-link--half .collection_title {
  font-size: 2vw;
  line-height: initial;
  font-family: Jost, sans-serif;
  font-weight: 600;
  text-transform: none;
  color: #1f2022;
  display: block;
  margin-bottom: 0.3em;
  letter-spacing: 2px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media only screen and (max-width: 798px) {
  div.product-details .featured-link--half .collection_title {
    font-size: inherit;
  }
}
div.product-details .featured-link--half .collection_title.text-align--right {
  text-align: right;
}
div.product-details .featured-link--half .collection_title.text-align--right .description:before {
  margin-right: 0;
}
div.product-details .featured-link--half .collection_title.text-align--left {
  text-align: left;
}
div.product-details .featured-link--half .collection_title.text-align--left .description:before {
  margin-left: 0;
}
div.product-details .featured-link--half .description {
  position: relative;
  font-size: 1.6vw;
  line-height: 1.5;
  margin-bottom: 20px;
}
@media only screen and (max-width: 798px) {
  div.product-details .featured-link--half .description {
    font-size: 2vw;
  }
}
@media only screen and (max-width: 480px) {
  div.product-details .featured-link--half .description {
    font-size: inherit;
  }
}
@media only screen and (min-width: 1025px) {
  div.product-details .featured-link--half .description {
    font-size: inherit;
  }
}
div.product-details .featured-link--half .action_button {
  width: auto;
}
@media only screen and (max-width: 798px) {
  div.product-details .featured-link--half .action_button {
    padding: 7px 15px;
  }
}
div.product-details .featured_collections.across-2 .featured-link--section.featured-link--no-image {
  width: 100%;
}
div.product-details .featured_collections.across-2 .featured-link--section:nth-child(odd) .featured-link--half {
  float: left;
}
div.product-details .featured-link--section.featured-link--no-image > img {
  display: none;
}
div.product-details .featured-link--section.featured-link--no-image .featured-link--half {
  width: 100%;
}
div.product-details .featured-link--section.featured-link--no-image .info {
  position: static;
  transform: translateY(0);
  text-align: center;
  padding: 2em;
}
div.product-details .featured-link--section.featured-link--no-image .info.text-align--left {
  text-align: center;
}
div.product-details .featured-link--section.featured-link--no-image .info.text-align--right {
  text-align: center;
}
div.product-details .featured-link--section.featured-link--no-image .description,
div.product-details .featured-link--section.featured-link--no-image .collection_title {
  display: none;
}
div.product-details .featured_collections.across-2 {
  display: flex;
  flex-wrap: wrap;
}
div.product-details .featured_collections.across-2 .featured-link--image:nth-of-type(4n+3) {
  flex-direction: row-reverse;
}
@media only screen and (max-width: 798px) {
  div.product-details .featured_collections.across-2 .featured-link--image:nth-of-type(4n+3) {
    flex-direction: row;
  }
}
div.product-details .featured_collections.across-2 .featured-link--image:nth-of-type(4n+4) {
  flex-direction: row-reverse;
}
div.product-details .featured_collections.across-2 .featured-link--section.featured-link--no-image .featured-link--half {
  width: 100%;
}
div.product-details .featured_collections.across-2 .featured-link--section {
  width: 50%;
  flex-direction: row;
}
@media only screen and (max-width: 798px) {
  div.product-details .featured_collections.across-2 .featured-link--section {
    width: 100%;
  }
  div.product-details .featured_collections.across-2 .featured-link--section:nth-of-type(2n) {
    flex-direction: row-reverse;
  }
}
@media only screen and (max-width: 798px) {
  div.product-details .featured_collections.across-2 .featured-link--section .featured-link--half {
    width: 50%;
  }
}
@media only screen and (max-width: 480px) {
  div.product-details .featured_collections.across-2 .featured-link--section .featured-link--half {
    width: 100%;
  }
}
div.product-details .featured_collections.across-2 .featured-link--section .description {
  font-size: 1.2vw;
}
@media only screen and (max-width: 798px) {
  div.product-details .featured_collections.across-2 .featured-link--section .description {
    font-size: inherit;
  }
}
div.product-details .featured_collections.across-2 .featured-link--section .button {
  font-size: 1.2vw;
}
@media only screen and (max-width: 798px) {
  div.product-details .featured_collections.across-2 .featured-link--section .button {
    font-size: inherit;
  }
}
div.product-details .featured_collections.across-2 .featured-link--image:nth-of-type(2n+1) {
  clear: both;
}
div.product-details .featured_collections.across-2 .featured-link--image:nth-of-type(2n+2) .featured-link--half {
  float: left;
}
@media only screen and (max-width: 798px) {
  div.product-details .featured_collections.across-2 .featured-link--image:nth-of-type(2n+2) .featured-link--half {
    float: right;
  }
}
div.product-details .featured_collections.across-2 .featured-link--image:nth-of-type(3n+3) .featured-link--half {
  float: right;
}
@media only screen and (max-width: 798px) {
  div.product-details .featured_collections.across-2 .featured-link--image:nth-of-type(3n+3) .featured-link--half {
    float: left;
  }
}
div.product-details .featured_collections.across-2 .featured-link--image:nth-of-type(4n+4) .featured-link--half {
  float: right;
}

/* #Lazyloading Styles
================================================== */
img[data-sizes=auto].lazyloaded {
  height: auto;
}

img[data-sizes=auto],
img[data-sizes="100vw"] {
  display: block;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

/* Ensures that small images are not stretched larger */
.image__container {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.image-element__wrap {
  overflow: hidden;
  margin-left: auto;
  margin-right: auto;
  max-width: 100%;
}

.image-element__wrap img {
  height: auto;
}

.continue_shopping, .cart-notification__view {
  a {
    color: black;
    text-decoration: none;
    font-weight: 400;
  }
}

/* #Media Queries
================================================== */
/* Smaller than standard 1200 (devices and browsers) */
@media only screen and (max-width: 1199px) {
  .social_buttons a {
    padding: 0 2px;
  }
  .twitter {
    display: block;
  }
}
/* Tablet Portrait size to standard 960 (devices and browsers) */
@media only screen and (min-width: 799px) and (max-width: 959px) {
  .continue_shopping {
    display: block;
    margin-top: 15px;
  }
}
/* All Mobile Sizes (devices and browser) */
@media only screen and (max-width: 798px) {
  .currencies {
    padding-top: 4px;
  }
  .continue_shopping {
    display: block;
    padding: 15px 0;
  }
  .article_image {
    padding-bottom: 0;
  }
  #nav,
  #nav ul {
    text-align: center;
  }
  #mobile_nav {
    text-align: left;
  }
  .flex-control-paging {
    display: none;
  }
  .social_buttons a {
    padding: 0;
  }
  .quantity_label {
    display: inline;
  }
  .currencies {
    margin-left: auto;
    margin-right: auto;
  }
  .logo a {
    text-align: center;
    margin: 0 auto;
  }
  #mobile_nav {
    display: block !important;
    margin-top: 15px;
  }
  #nav {
    display: none;
  }h4.toggle span {
    cursor: pointer;
    touch-action: manipulation;
  }
  .toggle_list {
    display: none;
  }
  .thumbnail {
    margin-top: 1em;
  }
  .thumbnail a:hover img {
    opacity: 1;
  }
  .top_bar_search {
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 798px) and (max-width: 480px) {
  .cart_price {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 798px) {
  .mobile_left {
    text-align: left;
  }
  div.mobile_only {
    display: block;
  }
  .price_total,
  .remove_column,
  .cart__headings {
    display: none;
  }
  .action_button {
    width: 100%;
  }
  .mobile_right {
    text-align: right;
  }
  .quick_shop {
    display: none !important;
  }
  .cart_price {
    display: block;
  }
  .cart_description {
    display: none;
  }
  table tr th,
  table tr td {
    padding: 2px;
  }
  input.action_button {
    margin-bottom: 1em;
  }
  .multiple_product_images {
    display: none;
  }
  .footer input[type=text] {
    width: 100%;
  }
}
/* Mobile Portrait Size to Mobile Landscape Size (devices and browsers) */
@media only screen and (max-width: 479px) {
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  h2.home,
  h1.blog_title,
  .title a {
    font-size: 100%;
  }
  h1,
  h2,
  h2.home,
  h1.blog_title,
  .title a {
    padding: 0;
  }
  .inline_purchase {
    margin-left: 0;
  }
  .top-bar ul li {
    padding: 0 5px;
  }
  .breadcrumb {
    text-align: center;
  }
}
@media (min--moz-device-pixel-ratio: 2), (-o-min-device-pixel-ratio: 2/1), (-webkit-min-device-pixel-ratio: 2), (min-device-pixel-ratio: 2) {
  .social_link img {
    width: 30px;
    height: 30px;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
  }
}
@media screen and (min-device-pixel-ratio: 0) and (max-width: 767px) {
  select,
  textarea,
  input {
    font-size: 16px;
  }
}
@font-face {
  font-family: "responsive";
  src: url("responsive.eot?qskw3e");
  src: url("responsive.eot?qskw3e#iefix") format("embedded-opentype"), url("responsive.ttf?qskw3e") format("truetype"), url("responsive.woff?qskw3e") format("woff"), url("responsive.svg?qskw3e#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
[class^=icon-],
[class*=" icon-"],
.ss-icon {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "responsive" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1em;
  display: inline-block;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-bitcoin:before {
  content: "\e900";
}

.icon-cart:before {
  content: "\e901";
}

.icon-bag:before {
  content: "\e902";
}

.icon-check:before {
  content: "\e903";
}

.icon-down-arrow:before {
  content: "\e904";
}

.icon-mail:before {
  content: "\e905";
}

.icon-facebook:before {
  content: "\e906";
}

.icon-flickr:before {
  content: "\e907";
}

.icon-instagram:before {
  content: "\e909";
}

.flex-nav-prev.ss-icon a:before,
.fancybox-prev span:before,
.icon-left-arrow:before {
  content: "\e90a";
}

.icon-linkedin:before {
  content: "\e90b";
}

.icon-menu:before {
  content: "\e90c";
}

.icon-minus:before {
  content: "\e90d";
}

.icon-pinterest:before {
  content: "\e90e";
}

.icon-plus:before {
  content: "\e90f";
}

.flex-nav-next.ss-icon a:before,
.fancybox-next span:before,
.icon-right-arrow:before {
  content: "\e910";
}

.icon-search:before {
  content: "\e911";
}

.icon-snapchat:before {
  content: "\e912";
}

.icon-tumblr:before {
  content: "\e913";
}

.icon-twitter:before {
  content: "\e914";
}

.icon-up-arrow:before {
  content: "\e915";
}

.icon-vimeo:before {
  content: "\e916";
}

.fancybox-close:before,
.icon-close:before {
  content: "\e917";
}

.icon-youtube:before {
  content: "\e918";
}

.icon-twitter.share,
.icon-facebook.share,
.icon-pinterest.share,
.icon-mail.share {
  border: 0px;
}

.icon-twitter.share:before {
  vertical-align: middle;
  font-size: 20px;
  margin-right: 0.4em;
  color: #09AEEC;
}

.icon-facebook.share:before,
.icon-mail.share:before {
  vertical-align: middle;
  font-size: 20px;
  margin-right: 0.4em;
  color: #49659D;
}

.icon-pinterest.share:before {
  vertical-align: middle;
  font-size: 20px;
  margin-right: 0.4em;
  color: #CB1F2A;
}

.icon-down-arrow,
.icon-right-arrow,
.icon-left-arrow {
  font-size: 0.6em;
  vertical-align: middle;
  display: inline-block;
}

.icon-cart {
  font-size: 13px;
}

#menu .icon-down-arrow {
  padding-left: 0;
}

#menu .icon-right-arrow {
  padding-left: 0;
}

#nav ul li:not(.megaMenu-dropdown) a, #nav ul li:not(.megaMenu-dropdown) a:visited {
  flex-direction: column;
  align-items: flex-start;
}

#menu li:hover .submenu_list {
  background: var(--wc-cream);
  border: 1px solid #0b0b0b;
  border-radius: 0 0 10px 10px;
  border-top: none;
}

#menu ul li:first-child {
  border-bottom: 1px solid #0b0b0b;
}

#menu ul li a:hover {
  border: none;
}

.social_icons a {
  margin: 0 5px;
  font-size: 24px;
  color: #1f2022;
  transition: ease-in-out 0.3s all;
}
.social_icons a span {
  transition: ease-in-out 0.3s border-color;
}.social_icons a span {
    padding: 1px;
  }.social_icons a:hover {
  color: #1f2022;
}/* #Unit Pricing
================================================== */
.product-details__unit-price {
  margin-bottom: 0;
  flex: 1 0 100%;
}

.product-details__unit-price,
.cart__item-unit-price,
.order-details__unit-price {
  font-size: smaller;
}

.product-details__unit-price--hidden,
.cart__item-unit-price--hidden,
.order-details__unit-price--hidden {
  display: none;
}

/* #Surface Pick-up
================================================== */
.surface-pick-up {
  opacity: 1;
  transition: opacity 0.3s ease-in;
}
.surface-pick-up.surface-pick-up--loading {
  visibility: hidden;
  opacity: 0;
}

.surface-pick-up-embed {
  --surface-pick-up-embed-theme-success-color: #099E4D;
  --surface-pick-up-embed-theme-error-color: #DE3618;
  --surface-pick-up-embed-theme-paragraph-font-size: 16px;
  --surface-pick-up-embed-theme-paragraph-smaller-font-size: 14.0px;
  --surface-pick-up-embed-theme-body-font-weight-bold: 600;
  --surface-pick-up-embed-theme-body-text-color: #111111;
  --surface-pick-up-embed-theme-link-text-decoration: underline;
  --surface-pick-up-embed-row-gap: 10px;
  --surface-pick-up-embed-column-gap: 10px;
  margin-bottom: 50px;
}

.surface-pick-up-item {
  --surface-pick-up-item-theme-success-color: #099E4D;
  --surface-pick-up-item-theme-error-color: #DE3618;
  --surface-pick-up-item-theme-paragraph-font-size: 16px;
  --surface-pick-up-item-theme-paragraph-smaller-font-size: 14.0px;
  --surface-pick-up-item-theme-body-font-weight-bold: 600;
  --surface-pick-up-item-theme-body-text-color: #111111;
  --surface-pick-up-item-theme-border-color: rgba(11, 11, 11, 0.5);
  --surface-pick-up-item-theme-link-text-decoration: underline;
  --surface-pick-up-item-row-gap: 0.8rem;
  --surface-pick-up-item-column-gap: 5px;
  --surface-pick-up-item-gap: 22px;
}

.surface-pick-up__modal-header {
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(11, 11, 11, 0.5);
}

.surface-pick-up__modal-title {
  font-family: Jost, sans-serif;
  font-weight: 600;
  text-transform: none;
  line-height: 1.5;
  color: #1f2022;
  display: block;
  letter-spacing: 2px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  margin-bottom: 5px;
  padding: 0;
  text-align: left;
  border-top: none;
  border-bottom: none;
}

.surface-pick-up__modal-subtitle {
  font-size: 16px;
}

button.surface-pick-up-embed__modal-btn {
  font-family: Jost, sans-serif;
  font-size: 16px;
  font-weight: inherit;
  color: #111111;
  text-transform: none;
  letter-spacing: 0;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}
button.surface-pick-up-embed__modal-btn:hover {
  background: none;
  color: #111111;
}
button.surface-pick-up-embed__modal-btn.surface-pick-up--loading {
  visibility: hidden;
  opacity: 0;
}

.surface-pick-up-embed__in-stock-icon,
.surface-pick-up-embed__out-of-stock-icon {
  width: 0.85em;
  height: 0.85em;
  margin-top: 0.4em;
}

.surface-pick-up-item__pick-up-location {
  font-size: 16px;
  font-weight: bold;
  letter-spacing: initial;
}

.surface-pick-up-item__address-info {
  font-size: 0.85em;
  line-height: 1.5;
}

.surface-pick-up-item__in-stock-icon,
.surface-pick-up-item__out-of-stock-icon {
  width: 0.85em;
  height: 0.85em;
  margin-top: 0.4em;
}

.surface-pick-up-item__pick-up-distance {
  padding-left: 5rem;
}

.surface-pick-up-item:last-child {
  padding-bottom: calc(var(--surface-pick-up-item-gap) / 2);
}

h3.surface-pick-up-embed__location-availability,
h3.surface-pick-up-item__pick-up-location {
  font-family: Jost, sans-serif;
  font-size: 16px;
  letter-spacing: 0;
  border-bottom: none;
  padding-bottom: 0;
  text-transform: none;
  line-height: 1.8;
}

.surface-pick-up-item__header {
  align-items: center;
}

.fancybox-content .surface-pick-up-embed {
  margin-bottom: 0;
}
.fancybox-content .surface-pick-up-embed__in-stock-icon {
  margin-top: 0.7em;
}

/* #Complementary products
================================================== */
.complementary-products {
  --slide-item-outer-gap: 1.25rem;
  --slide-item-inner-gap: 1rem;
  --slide-item-padding: 0;
  --slide-item-border-thickness: 0;
  --slider-dot-size: 10px;
  --slider-dot-gap: 1rem;
  --slider-dot-color: #111111;
  --slider-active-dot-color: transparent;
}
.complementary-products__title {
  margin-bottom: 15px;
  padding: 0;
  border: none;
  font-size: 15px;
}
.complementary-products__container {
  padding-bottom: 12px;
}
.complementary-products .flickity-prev-next-button {
  opacity: 0;
  box-shadow: 0 0 0 1px rgba(127, 127, 127, 0), 0 2px 5px rgba(127, 127, 127, 0.35);
}
.complementary-products .flickity-prev-next-button.next .flickity-button-icon {
  transform: translateX(-5%);
}
.complementary-products .flickity-prev-next-button .flickity-button-icon {
  fill: #333;
  left: 30%;
  top: 25%;
  width: 50%;
  height: 50%;
}
@media only screen and (max-width: 1024px) {
  .complementary-products .flickity-prev-next-button {
    display: none;
  }
}
.complementary-products .flickity-page-dots {
  position: static;
  margin: 25px 0 10px;
}
.complementary-products .flickity-page-dots .dot {
  opacity: 1;
  width: 7px;
  height: 7px;
  border: 1px solid transparent;
  transition: all 0.2s ease-in-out;
}
.complementary-products .flickity-page-dots .dot.is-selected {
  border: 1px solid #111111;
  transform: scale(1.5);
}
.complementary-products:hover .flickity-prev-next-button {
  opacity: 1;
}

.complementary-product__image {
  display: flex;
  flex: 0 0 25%;
}
@media screen and (min-width: 799px) and (max-width: 1024px) {
  .complementary-product__image {
    flex-basis: 30%;
  }
}
@media screen and (min-width: 481px) and (max-width: 798px) {
  .complementary-product__image {
    flex-basis: 20%;
  }
}
.complementary-product__name {
  padding-bottom: 0;
  font-family: Jost, sans-serif;
  font-weight: 300;
  font-size: 16px;
  border-bottom: none;
  color: #111111;
  letter-spacing: normal;
  line-height: 1.8em;
  text-transform: none;
  transition: color 0.3s ease-out 0s;
}
.complementary-product__name:hover {
  color: #e09823;
}
.complementary-product__name a,
.complementary-product__name a:visited {
  color: inherit;
}
.complementary-product__price-wrapper {
  font-weight: bold;
}
.complementary-product--on-sale .complementary-product__price {
  color: #6a629c;
}
.complementary-product--on-sale .complementary-product__price-compare {
  text-decoration: line-through;
  color: #AE3333;
  font-style: italic;
  text-shadow: none;
  font-weight: normal;
}
.complementary-product__price-text {
  font-style: italic;
  font-size: 80%;
}
.complementary-product--on-sale .complementary-product__price-text--from {
  color: #6a629c;
}
.complementary-product__price-text--now {
  display: none;
}
.complementary-product__unit-price {
  font-size: smaller;
  font-weight: 300;
}
.complementary-product__link {
  margin-top: 8px;
  display: block;
}

/* #Faceted filtering
================================================== */
@media only screen and (min-width: 799px) {
  .sort_by {
    margin-bottom: 0;
  }
}

.collection-filters__container {
  display: none;
}
@media only screen and (min-width: 799px) {
  .collection-filters__container {
    display: block;
  }
}

.collection-filters-modal__wrapper {
  display: block;
}
@media only screen and (min-width: 799px) {
  .collection-filters-modal__wrapper {
    display: none;
  }
}

.collection-filters__container.fancybox-content {
  width: 100%;
}
.collection-filters__container.fancybox-content li {
  list-style: none;
}

.collection-filters__heading {
  margin-top: 0;
  margin-bottom: 8px;
}

.collection-filters__filter-range {
  display: flex;
  flex-wrap: wrap;
  column-gap: 8px;
}

.collection-filters__filter-range--from,
.collection-filters__filter-range--to {
  flex: 1 0 7rem;
}

.collection-filters__filter-range-label {
  font-weight: 400;
}

.collection-filters__filter-range-wrapper {
  position: relative;
}

.collection-filters__filter-range-currency {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
}

.collection-filters__filter-range-input[type=number] {
  padding-left: 1.25rem;
}
.collection-filters__filter-range-input::placeholder {
  color: currentColor;
  opacity: 0.6;
}

.collection-filters__filter-link {
  display: flex;
  align-items: center;
  color: #111111;
}
.collection-filters__filter-link[data-disabled] {
  cursor: default;
  opacity: 50%;
}
.collection-filters__filter-link[data-disabled]:hover {
  color: currentColor;
}

.collection-filters__filter-list-item-text {
  cursor: pointer;
  font-weight: 400;
  padding-bottom: 0;
  margin-left: 4px;
}
[data-disabled] .collection-filters__filter-list-item-text {
  cursor: default;
}

input[type=checkbox].collection-filters__filter-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  outline: 2px solid currentColor;
  outline-offset: -1px;
  -webkit-appearance: none;
          appearance: none;
  min-width: 13px;
  width: 13px;
  height: 13px;
}
[data-disabled] input[type=checkbox].collection-filters__filter-checkbox {
  cursor: default;
}

.collection-filters__filter-checkbox:checked:after {
  content: "✔";
  color: currentColor;
  background: #fbf3e4;
}

/* Active Filter Tags */
.collection-page__filters--active {
  display: block;
  padding-bottom: 18px;
}
.collection-page__empty .collection-page__filters--active {
  margin-bottom: 12px;
}

.search-page__filters--active {
  padding-bottom: 18px;
}

.active-filter-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 8px;
  align-items: center;
  height: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

a.active-filter-group__item {
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: nowrap;
  color: #111111;
  cursor: pointer;
  background-color: transparent;
}
a.active-filter-group__item::after {
  width: 11px;
  height: 11px;
  padding-bottom: 3px;
  line-height: 1;
  content: url('data:image/svg+xml,<svg width="10" height="10" viewBox="0 0 10 10" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M1 9L9 1M9 9L1 1" stroke="black" stroke-linecap="round" stroke-linejoin="round"/></svg>');
}

.active-filter-group__item-wrapper {
  display: inline-block;
  margin: 0;
  padding: 0 8px;
  vertical-align: text-bottom;
}

.active-filter-text {
  display: inline-block;
  vertical-align: middle;
  font-size: 16px;
}

.active-filter-group__clear-all {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.active-filter-group__item-wrapper-clear-all:after {
  position: relative;
  display: block;
  width: 100%;
  height: 1px;
  cursor: pointer;
  content: "";
  background-color: #e09823;
}

/* #Search
================================================== */
.search-form {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
}
.search-form.search-form--404, .search-form.search-form--search-template {
  margin-bottom: 2.5rem;
}

.site-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 100;
}
.site-overlay[data-animation] {
  display: block;
  transition: opacity 250ms;
}
.site-overlay[data-animation-state=open] {
  display: block;
  opacity: 1;
}

.search-form__results-container {
  display: none;
  position: absolute;
  z-index: 101;
  width: 100%;
  overflow-y: auto;
  max-height: var(--search-results-max-height, auto);
  box-sizing: border-box;
  background-color: #fbf3e4;
  padding: 20px;
  opacity: 0;
}
.search-form__results-container[data-animation] {
  display: block;
  transition: opacity 0.2s;
}
.search-form__results-container[data-animation-state=open] {
  display: block;
  opacity: 1;
}
.top-bar .search-form__results-container {
  width: 400px;
}
@media only screen and (max-width: 798px) {
  .top-bar .search-form__results-container {
    width: 100%;
  }
}
.search-form--overlay-enabled-false .search-form__results-container {
  border: 1px solid #dfdfdf;
  margin-top: -1px; /* Account for border overlap */
}

.search-form__results-container-loading-state {
  display: flex;
  justify-content: center;
  padding: 1rem 0;
}
[data-loading=false] .search-form__results-container-loading-state {
  display: none;
}

.search-form__results-container-loading-state-spinner path:first-child {
  opacity: 0.125;
}
.search-form__results-container-loading-state-spinner path:last-child {
  fill: #e1a541;
}
[data-loading=true] .search-form__results-container-loading-state-spinner path:last-child {
  transform-origin: center;
  animation: rotate 0.75s infinite linear;
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.search-form__input-wrapper {
  position: relative;
}

input.search-form__input {
  font-family: Jost, sans-serif;
  font-weight: 500;
  font-style: normal;
  height: 36px;
  margin-bottom: 0;
  text-transform: none;
  padding: 0 20px 0 40px;
}
input.search-form__input:focus {
  box-shadow: none;
  border-color: #dfdfdf;
}
.search-form--header input.search-form__input {
  padding-right: 40px;
}
body:not(.user-is-tabbing) input.search-form__input {
  outline: none;
}
.top-bar input.search-form__input {
  margin: 5px 0;
}
@media only screen and (max-width: 798px) {
  .top-bar input.search-form__input {
    font-size: 16px;
  }
}
@media only screen and (max-width: 798px) {
  input.search-form__input {
    height: 40px;
    font-size: 16px;
  }
}

.search-form__close-button,
.search-form__submit-button {
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  border: none;
  background: none;
  padding: 0;
  height: 100%;
  width: 40px;
  font-size: 16px;
  color: #111111;
}
.search-form__close-button:hover,
.search-form__submit-button:hover {
  background: transparent;
  color: #111111;
}

.search-form__close-button {
  display: none;
  right: 0;
}

.search-form__submit-button {
  display: flex;
  left: 0;
}

.search-results {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-bottom: 2rem;
}

.search-result h5 a {
  color: #1f2022;
}
@media only screen and (max-width: 798px) {
  .search-result h5 {
    margin-top: 1rem;
  }
}
.search-result p:last-child {
  margin-bottom: 0;
}

/* #Predictive search
================================================== */
.predictive-search {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

[data-loading=true] .predictive-search__header {
  display: none;
}

.predictive-search__heading {
  padding-bottom: 0.5rem;
  margin-bottom: 0.75rem;
  font-size: 12px;
  border-bottom: 1px solid #0b0b0b;
}

.predictive-search__no-results {
  text-align: center;
  padding-top: 0.625rem;
  margin: 0;
}

.predictive-search__main {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
[data-loading=true] .predictive-search__main {
  display: none;
}

.predictive-search ul li {
  list-style: none;
  padding: 0;
  line-height: normal;
}

.predictive-search__query-suggestions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
}

.predictive-search__query-suggestion-link span {
  font-weight: bold;
  color: inherit;
}
.predictive-search__query-suggestion-link mark {
  background: none;
  color: inherit;
}

.predictive-search__query-suggestion-link,
.predictive-search__page-suggestion-link,
.predictive-search__article-suggestion-link {
  display: block;
  color: #111111;
}
.predictive-search__query-suggestion-link:hover, .predictive-search__query-suggestion-link:focus, .predictive-search__query-suggestion-link:visited,
.predictive-search__page-suggestion-link:hover,
.predictive-search__page-suggestion-link:focus,
.predictive-search__page-suggestion-link:visited,
.predictive-search__article-suggestion-link:hover,
.predictive-search__article-suggestion-link:focus,
.predictive-search__article-suggestion-link:visited {
  color: #111111;
}

.predictive-search__product-suggestions,
.predictive-search__article-and-page-suggestions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 0;
}

.predictive-search__product-suggestion-link {
  display: flex;
  gap: 1rem;
  color: #111111;
}
.predictive-search__product-suggestion-link:visited {
  color: #111111;
}

.predictive-search__product-suggestion-image {
  flex-shrink: 0;
  width: 50px;
}

.predictive-search__product-suggestion-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: 100%;
  font-size: 14px;
}

[data-loading=true] .predictive-search__footer {
  display: none;
}

/* #Animate.css
================================================== */
/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */
.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.bounceIn, .animated.bounceOut, .animated.flipOutX, .animated.flipOutY {
  animation-duration: 0.75s;
}

@keyframes bounceIn {
  0%, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scaleX(1);
  }
}
.bounceIn {
  animation-name: bounceIn;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translate3d(0, -20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translate3d(-20px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInLeft {
  animation-name: fadeInLeft;
}

@keyframes fadeInRight {
  0% {
    opacity: 0;
    transform: translate3d(20px, 0, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInRight {
  animation-name: fadeInRight;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 20px, 0);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.fadeOut {
  animation-name: fadeOut;
}

@keyframes fadeOutUp {
  0% {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.fadeOutUp {
  animation-name: fadeOutUp;
}

@keyframes zoomOut {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.zoomOut {
  animation-name: zoomOut;
}

/* #Font-Face
================================================== */
/*  This is the proper syntax for an @font-face file.
    Upload your font files to Assets and then
    copy your FontName into code below and remove
    comment brackets */
/*  @font-face {
      font-family: 'FontName';
      src: url('FontName.eot');
      src: url('FontName.eot?iefix') format('eot'),
           url('FontName.woff') format('woff'),
           url('FontName.ttf') format('truetype'),
           url('FontName.svg#webfontZam02nTh') format('svg');
      font-weight: normal;
      font-style: normal; }
*/
/* #Custom Styles
================================================== */
.shopify-section--product-template:not(.shopify-section) {
  display: flex;
  flex-wrap: wrap;
}

.shopify-section {
  width: 100%;
}

.rating {
  display: flex;
  align-items: center;
}

.rating__star-wrapper {
  display: flex;
  margin-bottom: 3px;
}

.icon-star-background {
  transform: scaleX(var(--rating-scale, 0));
}

.icon-star-reference {
  position: absolute;
  left: -9999;
  width: 0;
  height: 0;
}

.rating__star {
  width: 20px;
  height: auto;
}

.rating__star-1 {
  --rating-scale: calc(var(--rating-value));
}

.rating__star-2 {
  --rating-scale: calc(var(--rating-value) - 1);
}

.rating__star-3 {
  --rating-scale: calc(var(--rating-value) - 2);
}

.rating__star-4 {
  --rating-scale: calc(var(--rating-value) - 3);
}

.rating__star-5 {
  --rating-scale: calc(var(--rating-value) - 4);
}

.rating__text {
  display: none;
}

.rating__count {
  margin: 0 0 0 5px;
}

@media (forced-colors: active) {
  .rating__star-wrapper {
    display: none;
  }
  .rating__text {
    display: block;
  }
}
.product-block {
  /* margin: 0.5rem 0; */
  @media(orientation: portrait) {
    margin: auto 10px;
  }
}
.product-block.product-block--first {
  margin-top: 0; /* Always remove the top margin from the first product block */
}

.hide-border {
  border-bottom: none;
}

.age-gate {
  z-index: 10001;
}

.age-gate__heading {
  font-family: Jost, sans-serif;
  font-weight: 600;
  text-transform: none;
  line-height: 1.5;
  color: #1f2022;
  display: block;
  letter-spacing: 2px;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 22px;
}

/* COLLECTION BADGE SECTION */
.collection-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 15px 0;
  border: 1px solid #0b0b0b;
  /* box-shadow: 0 2px 0 #0b0b0b; */
  border-radius: 14px;
  background: var(--wc-white);
  /* &.section {
    margin: 20px auto 20px auto;
  } */
}

.collection-badges .badge {
  padding: 2px 10px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: bold;
  border: 1px solid #0b0b0b;
  /* box-shadow: 0 2px 0 #0b0b0b; */
  margin-left: 10px;
  background: var(--wc-white);
}

/* COLLECTION DESCRIPTION SECTION */

  .collection-description {
    font-size: 16px;
    line-height: 1.6;
    padding: 10px 0;
    border: 1px solid #0b0b0b;
    /* box-shadow: 0 2px 0 #0b0b0b; */
    border-radius: 14px;
    background: var(--wc-white);
    margin: 20px auto 20px auto;
    p {
      margin: 20px 10px;
    }
  }

  .collection-description::first-letter {
    float: left;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
    margin-right: 0.5rem;
  }

/* FEATURE GRID (used on the About Us Page */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  .container {
    gap: 25px;
  }
}

.feature-top-header {
  margin: 0 !important;
  text-align: left !important;
  line-height: 1 !important;
}

.feature-body, .feature-top-header {
  padding: 0 15px 15px 15px !important;
}

.feature-body {
  padding-top: 0;
  text-align: left;
  text-align: center;
  h2 {
    margin: 0;
    padding: 0;
    font-family: var(--wc-font-display);
    text-transform: capitalize;
    font-size: 24px;
    font-weight: 500;
    line-height: 1.1;
  }
  p {
    font-family: var(--wc-font-serif);
    text-align: left;
    margin: 15px 0;
  }
}

.feature-grid .feature {
  flex: 1 1 calc(33.333% - 2rem);
  border: 1px solid #0b0b0b;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: var(--wc-cream);
  .action_button {
    margin-top: 20px;
    max-width: max-content;
    background: none;
  }
}

.feature-art {
  width: fit-content;
  max-height: 260px !important;
  object-fit: cover;
  border: 1px solid #0b0b0b;
  border-radius: 10px;
  margin: 15px auto;
}

@media (max-width: 798px) {
  .feature-grid .feature {
    flex: 1 1 100%;
  }
}

/* CONTACT PAGE */
.contact-us .container {
  align-items: flex-start;
  background: white;
  border: 1px solid #0b0b0b;
  /* box-shadow: 0 2px 0 #0b0b0b; */
  border-radius: 14px;
  flex-wrap: nowrap;
  gap: 10px;
  .section-header {
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 15px;
  }
  .rte {
    background: var(--wc-cream);
    border: 1px solid #0b0b0b;
    /* box-shadow: 0 2px 0 #0b0b0b; */
    border-radius: 14px;
    padding: 15px;
    margin-bottom: 20px;
    p {
      margin-bottom: 10px;
    }
    h3 {
        font-size: 19px;
    }
    ul {
      margin-left: 40px;
      margin-bottom: 0;
      line-height: 1;
      list-style: disc;
      @media(orientation:portrait) {
        margin-left: 20px;
      }
    }
    li {
      padding: 3px 0;
      text-indent: 0;
    }
    ul li {
      list-style-position: outside !important;
    }
  }
}

.contact-left,
.contact-right {
  padding: 15px;
}


/* Divider base */
.contact-divider {
  background: #0b0b0b;
}

/* Desktop: vertical divider between columns */
@media (min-width: 799px) {
  .contact-divider { display: block; }
  .contact-divider--between {
    width: 1px;
    flex: 0 0 1px;
    align-self: stretch;   /* full height of the container */
    margin: 0 12px;
  }
  .contact-divider--mobile-bottom { display: none; }
}

/* Mobile: stack and show top + bottom lines around the right column */
@media (max-width: 767px) {
  .contact-us .container { flex-wrap: wrap; }

  .contact-left,
  .contact-right {
    width: 100%;
    padding: 5px;
  }

  .contact-divider {
    width: 100%;
    height: 1px;
    margin: 16px 0;
  }

  /* keep DOM order but force stacking */
  .contact-left { order: 1; }
  .contact-divider--between { order: 2; }    /* top line above right column */
  .contact-right { order: 3; }
  .contact-divider--mobile-boßttom { order: 4; display: block; } /* bottom line */
}

/* Zepto Product Personalizer Override */
/* .pplr_preview_wrapper, .pplr_preview_final {
  border-radius: 14px !important;
}

.a_p_t, .pplrlabel {
  font-weight: bold !important;
  span {
    font-weight: normal !important;
  }
}
.pplrlabel {
  font-size: 17px;
}
.pplr-wrapper input {
  border-radius: 14px !important;
  border: 1px solid var(--wc-black) !important;
}

.pplr-drop-item {
  border: 2px solid var(--wc-black) !important;
  border-radius: 100px !important;
}

.pplr-drop-item:hover {
  background-color: #E1A743 !important;
} */

/* Blog Post/Article */
.article-template-wrapper .article-wrapper {
  background: white;
  border: 1px solid #0b0b0b;
  /* box-shadow: 0 2px 0 #0b0b0b; */
  border-radius: 14px;
  padding: 15px;
  p span {
    display: block;
    background: var(--wc-cream);
    border: 1px solid #0b0b0b;
    /* box-shadow: 0 2px 0 #0b0b0b; */
    border-radius: 14px;
    padding: .8rem;
    font-weight: 600;
  }
  .blog_meta span {
    border: 1px solid #0b0b0b;
    /* box-shadow: 0 2px 0 #0b0b0b; */
    border-radius: 14px;
    margin-right: 10px;
    display: inline;
    padding: 8px;
    a {
      color: black;
      font-weight: normal;
    }
  }
  h3 {
    font-size: 2rem;
  }
}
.article {
  .image-with-text__image-column {
    max-height: 400px;
    @media(max-width: 480px) {
      max-height: 260px;
    }
  }
}
.article-template-wrapper {
  .suggested-posts {
    margin-top: 40px;
    h3 {
      font-size: 2rem;
    }
  }
  .sidebar-block--recent_posts {
    background: white;
    border: 1px solid #0b0b0b;
    /* box-shadow: 0 2px 0 #0b0b0b; */
    border-radius: 14px;
    padding: 10px;
  }
  .sidebar-block--recent_posts {
    ul {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      gap: 5px;
    li {
      background: var(--wc-cream);
      border: 1px solid #0b0b0b;
      /* box-shadow: 0 2px 0 #0b0b0b; */
      border-radius: 14px;
      padding: 4px 8px;
      line-height: 1.3;
      }
    }
  }
}

/* Blog Page */
.blog {
  .article__imageContainer .image-element__wrap {
    max-height: 280px;
  }
}
.blog-articles {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: auto;
  border: 1px solid #0b0b0b;
  border-radius: 14px;
  overflow: hidden;
  background: white;
  margin-bottom: 20px;
  @media(max-width:480px){
    margin-right: 10px !important;
  }
  @media (min-width: 799px) {
    width: calc(50% - 22px);
  }
  .text-align-left, .article_title, .excerpt {
    padding: 0 15px;
  }
  .text-align-left {
    padding-top: 10px;
    font-size: 12px;
  }
  .article_title {
    margin-top: 10px;
    text-transform: capitalize;
    font-family: var(--wc-font-display);
    font-weight: bold;
  }
  .excerpt p {
    margin-bottom: 10px;
  }
}
.read-more {
  padding-top: 10px;
  font-family: var(--wc-font-body);
  font-weight: 500;
  display: flex;
  width: max-content;
  background: var(--wc-cream);
  border: 1px solid #0b0b0b;
  border-radius: 14px;
  margin-left: 15px;
  margin-top: 10px;
  padding: 6px;
  a {
    color: var(--wc-black);
  }
  .icon-right-arrow {
    padding-left: 2px !important;
  }
}
.shopify-section--blog-template,
.shopify-section--article-template
  .sidebar__content {
    h4 {
      font-family: var(--wc-font-heading);
      font-weight: 600;
      letter-spacing: 1px;
      font-size: 1.1rem;
      color: black;
      border-bottom: none;
      margin: 0;
      padding: 0;
      padding-bottom: 5px;
    }
    .sidebar-block--post_tags, .sidebar-block--text, .sidebar-block--newsletter {
      background: white;
      border: 1px solid #0b0b0b;
      /* box-shadow: 0 2px 0 #0b0b0b; */
      border-radius: 14px;
      padding: 10px;
    }
    .sidebar-block--text {
      p, ul {
        margin-bottom: 0;
        line-height: 1.3em;
      }
    }
    .sidebar-block {
      margin-bottom: 20px;
    }
    .sidebar-block--post_tags {
      ul {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 5px;
        li {
          background: var(--wc-cream);
          border: 1px solid #0b0b0b;
          /* box-shadow: 0 2px 0 #0b0b0b; */
          border-radius: 14px;
          padding: 1px 13px;
        }
      }
    }
}

/* ==========================================================================
   DEPRECATED — Legacy styles below
   ==========================================================================
   These styles are kept for backward compatibility with legacy boolean flags
   (show_product_dimensionsAndSpeciesOnly, show_jackWax_metafields, preview_mode).
   They will be removed in a future release once all templates use card_style/card_theme.
   New code should use .product-card BEM classes instead.
   ========================================================================== */

.dimensionsAndSpecies-container,
.jackWaxApplicationStepAndFinishType-container {
  display: flex;
  margin-top: 15px;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-weight: 500;
  font-size: 17px;
  p {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 500;
  }
  .dimensions {
    border: 2px solid #0b0b0b;
    border-radius: 25px;
    font-size: .9rem;
    /* padding: 1px 10px; */
    height: auto;
    justify-content: space-evenly;
    gap: 0;
  }
  .application_step {
    border: 2px solid #A13B24;
    border-radius: 15px;
    padding: 1px 10px;
  }
}

/* --- Dimensions & Species block --- */
.dimensionsAndSpecies-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-top: 14px;
  width: 100%;
  font-weight: 500;
  font-size: 17px;
}

/* species line below name/price */
.dimensionsAndSpecies-container .species {
  margin: 0;
  font-size: 1rem;
  line-height: 1.2;
  opacity: 0.95;
}

/* the two pills side-by-side */
.dimensionsAndSpecies-container .pill-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 6px;
  width: 100%;
}

/* --- split pill styling --- */
.dimensionsAndSpecies-container .pill {
  display: flex;
  align-items: center;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 0.95rem;
  line-height: 1;
  white-space: nowrap;
  background-clip: border-box;
}

/* halves of the pill */
.dimensionsAndSpecies-container .pill__label,
.dimensionsAndSpecies-container .pill__value {
  padding: 0 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  /* gap: 4px; */
  height: 32px;
  background-clip: padding-box;
}

/* left (label) side */
.dimensionsAndSpecies-container .pill__label {
  background: var(--wc-dark-brown);
  color: var(--wc-white);
  font-weight: 500;
  flex: 1;
  padding-left: 6px;
  background-clip: padding-box;
  border-top-left-radius: 15px;
  border-bottom-left-radius: 15px;
}

/* right (value) side */
.dimensionsAndSpecies-container .pill__value {
  background: rgba(0, 0, 0, 0.04);
  color: currentColor;
  font-weight: 300;
  position: relative;
  flex: 1.1;
  padding-right: 6px;
  background-clip: padding-box;
}

/* subtle divider line between halves */
/* .dimensionsAndSpecies-container .pill__value::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: currentColor;
  opacity: 0.25;
} */

/* labels ABOVE each pill (optional) */

.dimensionsAndSpecies-container .pill--thickness,
.dimensionsAndSpecies-container .pill--area {
  position: relative;
}

.dimensionsAndSpecies-container .pill--thickness::before,
.dimensionsAndSpecies-container .pill--area::before {
  position: absolute;
  left: 2px;
  bottom: 100%;
  margin-bottom: 6px;
  display: block;
  font-size: 0.85rem;
  line-height: 1;
  opacity: 0.75;
  letter-spacing: 0.02em;
  width: 100%;
  text-wrap: nowrap;
}
.dimensionsAndSpecies-container .pill--thickness::before { content: "Thickness"; }
.dimensionsAndSpecies-container .pill--area::before { content: "Cutting Area"; }


/* mobile: stack the pills */
@media (max-width: 520px) {
  .dimensionsAndSpecies-container .pill-row {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .dimensionsAndSpecies-container .pill--area {
    margin-top: 18px;
  }
}

/* WOODED STUDIO PAGE STYLING OVERRIDES */
.page-wooded-studio,
.page-wooded-designs,
.page-landing-studio {
  h1 {
    border-bottom: none;
    padding: 0;
    margin: 0 0 10px 0;
    font-family: espiritu, sans-serif;
    line-height: 1.1;
    text-transform: capitalize;
    font-size: clamp(2.5rem, 5vw, 4rem);
  }
  .section-header.with-lines {
    gap: 0;
  }
  .featured_text-title {
    border: 1px solid #1f2022;
    border-radius: 999px;
    padding: 10px 14px;
  }
  .section-header a {
    text-transform: capitalize;
    font-weight: normal;
    font-size: 1.6rem;
    @media(max-width: 480px) {
      font-size: 1.2rem;
      letter-spacing: normal;
    }
  }
  h2 {
    @media(max-width: 480px) {
      line-height: 1.2;
      margin-top: 10px;
    }
  }
  .title {
    font-size: 1.4rem;
    font-family: var(--wc-font-serif);
    font-weight: 600;
  }
  .price {
    font-size: 1.3rem;
  }
  .info {
    border-top: none;
    padding: 20px;
  }
  .info__text {
    min-height: 64px;
  }
  @media(max-width:480px) {
    .section-header.with-lines .featured_text-title {
      font-size: 1rem;
      padding: 10px;
    }
  }

  /*TOP OF THE BLOCK STYLING */
  #shopify-section-template--20478870487254__featured_collection_xmy4PQ
  #shopify-section-template--20478870683862__featured_collection_xmy4PQ {
    .thumbnail a {
      background: var(--wc-dark-brown) !important;
      color: var(--wc-cream) !important;
    }
    .dimensions {
      border-color: var(--wc-cream);
  }
}
}

/* ---------- Wooded Studio page — section spacing ---------- */
.page-wooded-studio .shopify-section:not(.shopify-section--divider),
.page-artisan-boards .shopify-section:not(.shopify-section--divider),
.page-landing-studio .shopify-section:not(.shopify-section--divider) {
  margin-bottom: var(--wc-space-section);
}

/* ---------- Wooded Studio page — featured-text pills ---------- */
/* Needs .shopify-section--rich-text to beat the section-type default (0,2,0 → 0,3,0) */
.page-wooded-studio .shopify-section--rich-text .featured_text-title,
.page-artisan-boards .shopify-section--rich-text .featured_text-title,
.page-landing-studio .shopify-section--rich-text .featured_text-title {
  background: var(--wc-cream);
  font-size: clamp(14px, 2.5vw, 20px);
  padding: 8px 14px;
}

/* ---------- Wooded Designs page — featured-text pills ---------- */
/* Matches Studio styling but with transparent background */
.page-wooded-designs .shopify-section--rich-text .featured_text-title {
  background: transparent;
  font-size: clamp(14px, 2.5vw, 20px);
  font-weight: var(--wc-weight-heading-light);
  padding: 8px 14px;
}

.page-wooded-designs .section-header.with-lines {
  gap: 0;
  margin-top: var(--wc-space-lg);
  margin-bottom: var(--wc-space-md);
}

/* ---------- Wooded Studio hero — subtitle pill (top-left badge) ---------- */
/* Ensure wrapper fills the text column (parent is display:flex) */
.page-wooded-studio .image-with-text__wrapper {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.page-wooded-studio .shopify-section--image-with-text h5 {
  align-self: flex-start !important;
  text-align: left !important;
  border-radius: var(--wc-radius-sm) !important;
}

/* ---------- Wooded Studio & Landing Studio — dimension pill fixes ---------- */
/* Shrink pill font slightly across all sub-collections */
.page-wooded-studio .dimensionsAndSpecies-container .pill__label,
.page-wooded-studio .dimensionsAndSpecies-container .pill__value,
.page-artisan-boards .dimensionsAndSpecies-container .pill__label,
.page-artisan-boards .dimensionsAndSpecies-container .pill__value,
.page-landing-studio .dimensionsAndSpecies-container .pill__label,
.page-landing-studio .dimensionsAndSpecies-container .pill__value {
  font-size: 0.8rem;
}

/* Ensure pill label is always readable */
.page-wooded-studio .dimensionsAndSpecies-container .pill__label,
.page-artisan-boards .dimensionsAndSpecies-container .pill__label,
.page-landing-studio .dimensionsAndSpecies-container .pill__label {
  background: var(--wc-warm-dark);
  color: var(--wc-cream);
}

/* Center pills horizontally with padding matching .info */
.page-wooded-studio .dimensionsAndSpecies-container,
.page-artisan-boards .dimensionsAndSpecies-container,
.page-landing-studio .dimensionsAndSpecies-container {
  padding: 0 20px 12px;
}

/* Clip children to pill shape so label bg follows the border-radius */
.page-wooded-studio .dimensionsAndSpecies-container .pill,
.page-artisan-boards .dimensionsAndSpecies-container .pill,
.page-landing-studio .dimensionsAndSpecies-container .pill {
  border-color: var(--wc-warm-border);
  overflow: hidden;
}

/* Remove individual border-radius on label — let parent overflow:hidden handle it */
.page-wooded-studio .dimensionsAndSpecies-container .pill__label,
.page-artisan-boards .dimensionsAndSpecies-container .pill__label,
.page-landing-studio .dimensionsAndSpecies-container .pill__label {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.page-wooded-studio .dimensionsAndSpecies-container .pill__value,
.page-artisan-boards .dimensionsAndSpecies-container .pill__value,
.page-landing-studio .dimensionsAndSpecies-container .pill__value {
  background: rgba(0, 0, 0, 0.04);
  color: var(--wc-muted-brown);
}
/* ToB dark-bg pill overrides are in the section's custom_css */

/* ---------- Wooded Studio & Landing Studio — text-grid trust icons ---------- */
.page-wooded-studio .text-grid__col h2,
.page-artisan-boards .text-grid__col h2,
.page-landing-studio .text-grid__col h2 {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
}
.page-wooded-studio .text-grid__col p,
.page-artisan-boards .text-grid__col p,
.page-landing-studio .text-grid__col p {
  font-size: clamp(0.9rem, 2vw, 1.05rem);
}

/* ---------- process-map — two-column layout ---------- */
.product .section-process .wrapper {
  max-width: 1100px;
  margin: 0 auto;
}

.section-process .process__body {
  display: flex;
  gap: var(--wc-space-xl);
  align-items: flex-start;
}

.section-process .process__column--left {
  flex: 0 0 30%;
  position: sticky;
  top: 100px;
}

.section-process .process__column--right {
  flex: 1;
}

@media (max-width: 798px) {
  .section-process .process__body {
    flex-direction: column;
    gap: var(--wc-space-md);
  }

  .section-process .process__column--left {
    flex: none;
    position: static;
  }
}

.submenu_list li p,
.menu-s {
  margin: 0 !important;
  font-size: 12px !important;
  text-transform: capitalize !important;
  font-weight: normal !important;
}

@media (max-width: 468px){
  .slicknav_item .slicknav_arrow {
    margin-left: -5px !important;
    font-size: 1.1rem;
  }
}

/* JACK WAX OVERRIDES */
.collection-jack-wax-collection,
.collection-wooded-wear {
  .featured_text-title {
    border: 1px solid #1f2022;
    border-radius: 10px;
    padding: 6px 20px;
    background: var(--wc-cream);
    @media(max-width: 480px) {
      font-size: 1.2rem !important;
      letter-spacing: normal;
      padding: 7px 11px;
    }
  }
  .info__text {
    min-height: auto;
  }
  .section-header.with-lines {
    gap: 0;
  }
  .featured_text {
    font-family: var(--wc-font-display);
    @media(max-width: 480px) {
      line-height: 1.2;
      margin: 15px 0;
    }
  }

  .jackwax-section,
  .woodedWear-section {
    text-align: center;
    padding-bottom: 20px;
  }

  .jackwax-logo,
  .woodedWear-logo {
    display: inline-block;
    background-color: #3a2b20;
    color: #d4902f;
    font-weight: 400;
    font-size: 32px;
    padding: 16px 30px;
    border-radius: 10px;
    font-family: espiritu, sans-serif;
    letter-spacing: normal;
  }

  .woodedWear-logo {
    background: var(--wc-cream);
    color: black;
    font-family: rinse, sans-serif;
    border: 1px solid rgba(0,0,0,.8);
  }

  .jackwax-heading,
  .woodedWear-heading {
    font-family: var(--wc-font-gothic);
    font-size: 35px;
    font-weight: 900;
    padding: 10px 0 5px 0;
    margin: 0;
  }

  .jackwax-subtext,
  .woodedWear-subtext {
    font-family: var(--wc-font-serif);
    font-size: 17px;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
  }
}

/* BLOG Page */
.blog {
  .featured_text-title {
    border: 1px solid #1f2022;
    border-radius: 10px;
    padding: 6px 20px;
    background: var(--wc-cream);
    @media(max-width: 480px) {
      font-size: 1.2rem !important;
      letter-spacing: normal;
      padding: 7px 11px;
    }
  }
  .info__text {
    min-height: auto;
  }
  .section-header.with-lines {
    gap: 0;
  }
  .featured_text {
    font-family: var(--wc-font-display);
    @media(max-width: 480px) {
      line-height: 1.2;
      margin: 15px 0;
    }
  }
  .pressPage-section {
    text-align: center;
    padding-bottom: 20px;
  }
  .pressPage-logo {
    background: white;
    color: black;
    font-family: rinse, sans-serif;
    border: 1px solid rgba(0,0,0,.8);
    display: inline-block;
    font-weight: 400;
    font-size: 32px;
    padding: 16px 30px;
    border-radius: 10px;
    letter-spacing: normal;
  }
  .pressPage-subtext {
    font-family: var(--wc-font-serif);
    font-size: 17px;
    line-height: 1.4;
    max-width: 700px;
    margin: 0 auto;
    padding-top: 15px;
  }
}

/* Slider container */
.featured-collection-slider-wrapper {
  position: relative;
  max-width: 100%;
  overflow: visible;
}

/* Swiper slide layout */
.featured-collection-slider-wrapper .swiper-slide {
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: stretch;
  height: auto;
  box-sizing: border-box;
}

/* Product cards inside Swiper */
.featured-collection-slider-wrapper .thumbnail,
.featured-collection-slider-wrapper .column {
  width: 100%;
  max-width: 95%;
  flex-direction: column;
  height: 100%;
  margin: 0 8px;
  box-sizing: border-box;
}

/* Make all cards equal height */
.featured-collection-slider-wrapper .info {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.featured-collection-slider-wrapper .swiper-pagination {
  margin-top: 12px;
  position: relative;
  text-align: center;
}

.featured-collection-slider-wrapper .product_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Navigation arrows */
.swiper-button-prev,
.swiper-button-next {
  color: #000 !important;
  pointer-events: auto !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-size: 35px !important;
}

.swiper-button-prev {
  left: -40px !important;
}

.swiper-button-next {
  right: -40px !important;
}

.swiper-pagination-bullet-active {
  background: #E1A541 !important;
}

@media (max-width: 967px) {
  .featured-collection-slider-wrapper .swiper {
    padding-left: 0;
    padding-right: 0;
  }

  .featured-collection-slider-wrapper .thumbnail {
    max-width: none;
    width: 100%;
  }

  .featured-collection-slider-wrapper .swiper-button-prev,
  .featured-collection-slider-wrapper .swiper-button-next {
    display: none !important;
  }

  /* .featured-collection-slider-wrapper .swiper-slide {
    width: 90% !important;
    margin-right: 3px !important;
  } */
}

/* Product Page Additional Overrides */
.product {
  .featured_text-title {
    font-family: var(--wc-font-display);
    font-size: clamp(14px, 2.2vw, 18px);
    font-weight: var(--wc-weight-heading);
    border: 1px solid #1f2022;
    border-radius: 999px;
    padding: 8px 18px;
    background: transparent;
  }
  .section-header.with-lines {
    gap: 0;
    margin-bottom: var(--wc-space-xs);
  }
  /* Section spacing */
  .shopify-section--rich-text {
    margin-top: var(--wc-space-lg);
  }
  .description {
    padding-bottom: 20px;
  }
  .atc-btn-container .text {
    font-family: var(--wc-font-body) !important;
    font-weight: 600 !important;
  }
}

/* Hide Extra Spacings */
@media(max-width: 480px) {
  #shopify-section-template--20181946433750__divider_efeh9g,
  #shopify-section-template--20181946433750__divider_eYGiQG,
  #shopify-section-template--20027077099734__divider_dCrPma,
  #shopify-section-template--20097214808278__divider_LPbRH9 {
    display: none;
  }
}

/* Landing Studio Page Overrides */
.page-landing-studio,
.page-landing-promo {
  .featured_text-title {
      border: 1px solid #1f2022;
      border-radius: 999px;
      padding: 10px 14px;
      background: var(--wc-cream);
  },
  .section-header.with-lines {
    gap: 0;
  }
  .dimensionsAndSpecies-container .pill-row p {
    padding-bottom: 0 !important; 
  }
  .dimensionsAndSpecies-container .pill__label {
    font-weight: 500 !important;
  }
  .dimensionsAndSpecies-container .pill__label,
  .dimensionsAndSpecies-container .pill__value {
    font-size: 1rem !important;
  }
  .featured-collection-slider-wrapper {
    .title {
      font-weight: 600;
      font-size: 1.4rem;
    }
    .price span {
      font-size: 1.4rem;
      font-family: var(--wc-font-body);
      font-weight: 600 !important;
      font: inherit;
    }
    .price {
      padding-bottom: 11px;
    }
    .metafield span {
      font-family: var(--wc-font-body);
      font-weight: 300;
      font-size: 1.1rem;
    }
  }
  @media (max-width: 780px) {
    .featured_text-title {
      font-size: 1rem !important;
      padding: 10px;
    }
    .featured-collection-slider-wrapper {
      .price {
        padding-bottom: 5px;
        .money {
          font-size: 1.4rem;
        }
      }
      .info {
        padding: 20px;
      }
    }
  }
}

.page-landing-promo .info span {
  font-family: var(--wc-font-serif);
  font-size: clamp(16px, 2.2vw, 20px);
  font-weight: normal;
}

/* Index Override */
.index .featured_text-title {
  font-size: var(--wc-text-display);
  align-items: center;
}

.index .section-header.with-lines {
  margin-top: var(--wc-space-md);
  margin-bottom: var(--wc-space-sm);
  gap: 0.75rem;
}

/* ---------- Blog (image hover) ---------- */
.article__imageContainer {
  overflow: hidden;
  max-height: 280px;
}
.article__imageContainer img {
  transition: ease-in-out 0.35s all;
}
.article__imageContainer img:hover,
.article__imageContainer img:focus {
  transform: scale(1.05);
}

/* ---------- Gallery ---------- */
.shopify-section--gallery .gallery__image {
  margin-bottom: 20px;
}
.shopify-section--gallery .is-width-wide .gallery__image {
  margin-bottom: 0;
}
.shopify-section--gallery .gallery__link {
  display: block;
}

/* ---------- Product page ---------- */
.product-container,
.product-details-section-wrapper {
  width: 100%;
}

.product_section .left a span,
.product_section .right a span {
  transition: ease-in-out 0.3s all;
}
.product_section .left a:hover span {
  display: inline-block;
  transform: translateX(-5px);
}
.product_section .right a:hover span {
  display: inline-block;
  transform: translateX(5px);
}

.description p {
  margin-bottom: 0;
  line-height: 1.3;
}

.product__price {
  margin-bottom: 0;
  span {
    font-weight: 600 !important;
  }
}

.product__price-container {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 9px;
}
.product__price-container.product__price-container--sold-out {
  opacity: 0.3;
}
.product__price-container + .product-details__unit-price {
  margin-bottom: 15px;
  margin-top: -15px;
}

.sold-out-text,
.product__price {
  font-size: 22px;
}

.sold-out-text {
  margin-left: 5px;
}

.atc-btn-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  .text {
    font-weight: 700 !important;
  }
}
.atc-btn-container.disabled {
  opacity: 0.3;
}
.no-js .atc-btn-container .add_to_cart.no-js--hidden {
  display: none;
}
.no-js .atc-btn-container noscript {
  width: 100%;
}

/* ============================================
   Section-Type Brand Defaults
   ============================================
   These rules style common section types with
   brand defaults so they look correct when added
   via the theme editor without needing custom_css.
   ============================================ */

/* ---------- featured-text ---------- */
/* Override h2.home base theme font (specificity 0,1,1) with 0,2,1 */
.shopify-section--rich-text h2.home {
  font-family: var(--wc-font-display);
}

/* Override .featured_text-title base theme font */
.shopify-section--rich-text .featured_text-title {
  font-family: var(--wc-font-display);
  font-size: var(--wc-text-display);
  font-weight: var(--wc-weight-display);
}

/* Override body/section font inheritance for paragraphs */
.shopify-section--rich-text .featured_text p,
.shopify-section--rich-text .regular_text p {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 0.5rem;
  font-family: var(--wc-font-body);
  font-weight: 400;
  font-style: normal;
  letter-spacing: 0.01rem;
}

/* Simpler fallback for direct p children */
.shopify-section--rich-text p {
  font-family: var(--wc-font-body);
}

/* Homepage slideshow spacing — tighten below dots on mobile */
@media only screen and (max-width: 798px) {
  .index .shopify-section--slideshow-with-text {
    margin-bottom: 4px;
  }
}

/* ---------- index (homepage layout) ---------- */
.index .shopify-section:not(.shopify-section--divider) {
  margin-bottom: var(--wc-space-section);
}

/* ---------- product page section spacing ---------- */
.product .shopify-section {
  margin-bottom: var(--wc-space-md);
}

/* Tighter spacing for featured-text headers on product pages */
.product .shopify-section--rich-text {
  margin-bottom: var(--wc-space-sm);
}

/* ---------- featured-collection (empty / sold-out state) ---------- */
.featured-collection__empty {
  padding: var(--wc-space-xl) var(--wc-space-md);
}
.featured-collection__empty-message {
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-body);
  color: #111111;
  max-width: 480px;
  margin-inline: auto;
  margin-bottom: var(--wc-space-lg);
  line-height: 1.6;
}
.featured-collection__empty-btn {
  background: none;
  border: var(--wc-border);
  padding: var(--wc-btn-padding);
  font-family: var(--wc-font-body);
  font-weight: var(--wc-weight-body-medium);
  color: var(--wc-black);
  transition: background 0.2s ease, color 0.2s ease;
}
.featured-collection__empty-btn:hover {
  background: var(--wc-black);
  color: var(--wc-white);
}

/* ---------- featured-collection (shared) ---------- */
/* Override h2.home base theme font (specificity 0,1,1) with 0,2,1 */
.shopify-section--featured-collection h2.home {
  font-family: var(--wc-font-heading);
  font-weight: var(--wc-weight-heading);
  font-size: var(--wc-text-section-title);
}

/* Product card text — serif for "hook" (title + price), body for supporting details */
.shopify-section--featured-collection .thumbnail .title,
.shopify-section--featured-collection .thumbnail .product-card__title,
.shopify-section--featured-collection .thumbnail .price,
.shopify-section--featured-collection .thumbnail .product-card__price {
  font-family: var(--wc-font-serif);
}

/* Supporting details use body font for clarity */
.shopify-section--featured-collection .thumbnail .product-card__species,
.shopify-section--featured-collection .thumbnail .product-card__pill-title,
.shopify-section--featured-collection .thumbnail .product-card__pill-label,
.shopify-section--featured-collection .thumbnail .product-card__pill-value {
  font-family: var(--wc-font-body);
}

.shopify-section--featured-collection .thumbnail .title {
  font-size: var(--wc-text-product-title);
  font-weight: 600;
}

/* Tighten title-price spacing */
.shopify-section--featured-collection .thumbnail .info__text,
.shopify-section--featured-collection .thumbnail .product-card__header {
  gap: 0;
}

.shopify-section--featured-collection .thumbnail .price,
.shopify-section--featured-collection .thumbnail .product-card__price {
  margin-top: 0;
}

.shopify-section--featured-collection .container {
  background: transparent;
  border: none;
  border-radius: 0;
}

.shopify-section--featured-collection .pill {
  border: var(--wc-border-light);
}

/* Legacy pill classes (kept for backward compatibility) */
.shopify-section--featured-collection .thumbnail .pill__label {
  background: var(--wc-warm-dark);
  color: var(--wc-cream);
  font-family: var(--wc-font-body);
}

.shopify-section--featured-collection .thumbnail .pill__value {
  color: var(--wc-muted-brown);
  font-family: var(--wc-font-body);
}

.featured-collection__view-all {
  width: 100%;
  padding: var(--wc-space-md) 0 var(--wc-space-xs);
  text-align: center;
}

.featured-collection__view-all .action_button {
  width: auto;
  display: inline-block;
  background: none;
  padding-inline: 56px;
}

/* ---------- featured-collection — preview mode ---------- */
.featured-collection--preview .thumbnail {
  background: #fff;
  border: var(--wc-border);
  border-radius: var(--wc-radius-md);
  box-shadow: none;
  overflow: hidden;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

.featured-collection--preview .thumbnail a {
  color: var(--wc-dark-brown) !important;
}

/* Landscape crop to match board photo orientation */
.featured-collection--preview .thumbnail .image__container,
.featured-collection--preview .thumbnail .product_image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.featured-collection--preview .thumbnail .product_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Tighter card info area */
.featured-collection--preview .thumbnail .info {
  padding: 0.4rem 0.6rem 0;
}

.featured-collection--preview .thumbnail .info__text {
  margin-bottom: 0.2rem;
}

.featured-collection--preview .thumbnail .title {
  font-size: 0.95rem;
  line-height: 1.25;
  margin-bottom: 0.15rem;
}

.featured-collection--preview .thumbnail .price {
  font-size: 0.95rem;
}

/* Compact subtitle line — species · thickness · dimensions */
.featured-collection--preview .compact-subtitle {
  font-family: var(--wc-font-serif);
  font-size: 0.8rem;
  color: var(--wc-muted-brown);
  margin: 0.15rem 0 0;
  padding: 0 0.6rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.featured-collection--preview .compact-subtitle .dot {
  opacity: 0.5;
}

/* ==========================================================================
   PRODUCT CARD 2.0 — BEM STRUCTURE
   ==========================================================================
   New unified product card system with card_style + card_theme modifiers.
   Replaces legacy dimensionsAndSpecies-container, preview mode, and page overrides.
   ========================================================================== */

/* ---------- Product Card Base ---------- */
.product-card {
  position: relative;
}

.product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.product-card__media {
  position: relative;
}

.product-card__image-wrapper {
  overflow: hidden;
}

.product-card__info {
  padding: var(--wc-space-md);
}

/* ---------- Product Card Header (Title + Price) ---------- */
.product-card__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.product-card__title {
  font-family: var(--wc-font-serif);
  font-size: var(--wc-text-product-title);
  font-weight: 600;
  line-height: 1.2;
  flex: 1 1 auto;
  min-width: 0;
}

.product-card__price {
  font-family: var(--wc-font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  flex-shrink: 0;
}

.product-card__price.sale .money {
  color: var(--wc-purple-light);
}

.product-card__price .was-price {
  text-decoration: line-through;
  color: #999;
  opacity: 0.7;
  font-weight: 400;
  margin-left: var(--wc-space-xs);
}

/* Sale pricing - sale price in purple, compare-at in red */
.product-card__price.sale > .money {
  color: #6a629c;
  font-weight: var(--wc-weight-body-medium, 500);
}

.product-card__price .was-price,
.product-card__price .was-price .money {
  color: #AE3333;
  text-decoration-color: #AE3333;
  opacity: 1;
}

/* ---------- Product Card Species ---------- */
.product-card__species {
  font-family: var(--wc-font-serif);
  font-size: 1rem;
  margin: 4px 0 0;
  line-height: 1.3;
}

.product-card__species .dot {
  opacity: 0.5;
  margin: 0 2px;
  position: static;
  top: auto;
  vertical-align: baseline;
}

/* ---------- Product Card Subtitle (board-compact) ---------- */
.product-card__subtitle {
  font-family: var(--wc-font-serif);
  font-size: 0.85rem;
  margin: var(--wc-space-xs) 0 0;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-card__subtitle .dot {
  opacity: 0.5;
}

/* ---------- Product Card Pills (board-full) ---------- */
.product-card__pills {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-top: var(--wc-space-sm);
  width: 100%;
}

.product-card__pill-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.product-card__pill-title {
  font-family: var(--wc-font-body);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0.01em;
  opacity: 0.9;
  padding-left: 4px;
}

.product-card__pill {
  display: flex;
  align-items: center;
  border: var(--wc-border-light);
  border-radius: var(--wc-radius-pill);
  overflow: hidden;
  font-size: 0.9rem;
  line-height: 1;
}

.product-card__pill-label,
.product-card__pill-value {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 6px 8px;
  height: 32px;
  font-family: var(--wc-font-body);
}

.product-card__pill-label {
  flex: 1;
  font-family: var(--wc-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  opacity: 0.85;
}

.product-card__pill-value {
  flex: 1.1;
  font-weight: 300;
}

/* ---------- Product Card Jack Wax Style ---------- */
.product-card__jackwax {
  display: flex;
  flex-direction: column;
  gap: var(--wc-space-sm);
  margin-top: var(--wc-space-sm);
}

.product-card__finish-type {
  font-family: var(--wc-font-serif);
  font-size: 0.95rem;
}

.product-card__application-step {
  display: inline-block;
  border: 2px solid #A13B24;
  border-radius: var(--wc-radius-lg);
  padding: 4px 14px;
  font-family: var(--wc-font-serif);
  font-size: 0.85rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 50%;
  box-sizing: border-box;
}

.product-card__price-step-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--wc-space-sm);
}

.product-card__price-step-row .product-card__price {
  margin: 0;
}

/* ---------- Product Card Banners ---------- */
.product-card__banners {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}

/* ==========================================================================
   CARD THEME MODIFIERS
   ========================================================================== */

/* ---------- Light Theme ---------- */
.product-card--light,
.featured-collection--light .product-card {
  background: var(--wc-white);
  border: var(--wc-border);
  border-radius: var(--wc-radius-md);
}

.product-card--light .product-card__link,
.featured-collection--light .product-card .product-card__link {
  color: var(--wc-dark-brown);
}

.product-card--light .product-card__pill-label,
.featured-collection--light .product-card .product-card__pill-label {
  background: var(--wc-warm-dark);
  color: var(--wc-cream);
  font-family: var(--wc-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.product-card--light .product-card__pill-value,
.featured-collection--light .product-card .product-card__pill-value {
  background: rgba(0, 0, 0, 0.04);
  color: var(--wc-muted-brown);
}

.product-card--light .product-card__subtitle,
.featured-collection--light .product-card .product-card__subtitle {
  color: var(--wc-muted-brown);
}

.product-card--light .product-card__pill-title,
.featured-collection--light .product-card .product-card__pill-title {
  color: var(--wc-muted-brown);
}

/* ---------- Dark Theme ---------- */
.product-card--dark,
.featured-collection--dark .product-card {
  background: var(--wc-dark-brown);
  border: 1px solid var(--wc-dark-brown);
  border-radius: var(--wc-radius-md);
}

.product-card--dark .product-card__link,
.featured-collection--dark .product-card .product-card__link {
  color: var(--wc-cream);
}

.product-card--dark .product-card__pill,
.featured-collection--dark .product-card .product-card__pill {
  border-color: var(--wc-cream);
}

.product-card--dark .product-card__pill-label,
.featured-collection--dark .product-card .product-card__pill-label {
  background: var(--wc-cream);
  color: var(--wc-dark-brown);
  font-family: var(--wc-font-body);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.product-card--dark .product-card__pill-value,
.featured-collection--dark .product-card .product-card__pill-value {
  background: rgba(255, 255, 255, 0.12);
  color: #e8e2d8;
}

.product-card--dark .product-card__subtitle,
.featured-collection--dark .product-card .product-card__subtitle {
  color: rgba(244, 234, 214, 0.8);
}

.product-card--dark .product-card__pill-title,
.featured-collection--dark .product-card .product-card__pill-title {
  color: rgba(244, 234, 214, 0.7);
}


.product-card--dark .product-card__species,
.featured-collection--dark .product-card .product-card__species {
  color: var(--wc-cream);
  opacity: 0.9;
}

/* ==========================================================================
   CARD STYLE MODIFIERS (Density)
   ========================================================================== */

/* ---------- Board Compact ---------- */
.product-card--board-compact,
.featured-collection--board-compact .product-card {
  overflow: hidden;
  margin-bottom: 1rem;
}

.product-card--board-compact .product-card__image-wrapper,
.featured-collection--board-compact .product-card .product-card__image-wrapper,
.product-card--board-compact .product_image,
.featured-collection--board-compact .product-card .product_image {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.product-card--board-compact .product_image img,
.featured-collection--board-compact .product-card .product_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card--board-compact .product-card__info,
.featured-collection--board-compact .product-card .product-card__info {
  padding: var(--wc-space-sm) var(--wc-space-md) var(--wc-space-md);
}

.product-card--board-compact .product-card__title,
.featured-collection--board-compact .product-card .product-card__title {
  font-size: 1rem;
}

.product-card--board-compact .product-card__price,
.featured-collection--board-compact .product-card .product-card__price {
  font-size: 0.95rem;
}

/* ---------- Board Full ---------- */
.product-card--board-full .product-card__info,
.featured-collection--board-full .product-card .product-card__info {
  padding: var(--wc-space-md) var(--wc-space-md) var(--wc-space-lg);
}

/* Accommodate pill labels above */
.product-card--board-full .product-card__pills,
.featured-collection--board-full .product-card .product-card__pills {
  margin-top: var(--wc-space-md);
}

.product-card--board-full .product-card__pill,
.featured-collection--board-full .product-card .product-card__pill {
  position: relative;
}

.product-card--board-full .product-card__pill--thickness::before,
.featured-collection--board-full .product-card .product-card__pill--thickness::before {
  content: "Thickness";
}

.product-card--board-full .product-card__pill--area::before,
.featured-collection--board-full .product-card .product-card__pill--area::before {
  content: "Cutting Area";
}

.product-card--board-full .product-card__pill::before,
.featured-collection--board-full .product-card .product-card__pill::before {
  position: absolute;
  left: 2px;
  bottom: 100%;
  margin-bottom: 6px;
  font-size: 0.8rem;
  line-height: 1;
  opacity: 0.7;
  letter-spacing: 0.02em;
  white-space: nowrap;
  font-family: var(--wc-font-body);
}

/* ---------- Jack Wax Style ---------- */
/* Override base theme .info flex properties */
.product-card--jackwax .product-card__info,
.featured-collection--jackwax .product-card .product-card__info,
.featured-collection--jackwax .thumbnail .info {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  min-height: 140px;
  padding: var(--wc-space-md) var(--wc-space-md) var(--wc-space-lg);
  overflow: hidden;
  box-sizing: border-box;
}

/* Reset header flex-basis for jackwax column layout */
.product-card--jackwax .product-card__header,
.featured-collection--jackwax .thumbnail .info__text {
  flex: 0 0 auto;
  width: 100%;
  max-width: 100%;
}

.product-card--jackwax .product-card__jackwax,
.featured-collection--jackwax .thumbnail .product-card__jackwax {
  flex: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  min-height: 0;
  box-sizing: border-box;
}

.product-card--jackwax .product-card__price-step-row,
.featured-collection--jackwax .thumbnail .product-card__price-step-row {
  margin-top: auto;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   RESPONSIVE ADJUSTMENTS
   ========================================================================== */

@media (max-width: 798px) {
  .product-card__pills {
    grid-template-columns: 1fr;
    gap: var(--wc-space-sm);
  }

  .product-card--board-full .product-card__pill--area,
  .featured-collection--board-full .product-card .product-card__pill--area {
    margin-top: 0;
  }

  .product-card--board-compact .product-card__info,
  .featured-collection--board-compact .product-card .product-card__info {
    padding: var(--wc-space-xs) var(--wc-space-sm) var(--wc-space-sm);
  }
}

/* ==========================================================================
   DEPRECATED STYLES — TO BE REMOVED IN PHASE 6
   The following styles are deprecated and will be removed after template migration.
   They are kept temporarily for backward compatibility with legacy boolean flags.
   ========================================================================== */

/* ---------- collection-list ---------- */
.shopify-section--list-collections h2,
.shopify-section--list-collections h2.home {
  font-family: var(--wc-font-heading);
  font-weight: var(--wc-weight-heading);
  font-style: normal;
  font-size: var(--wc-text-section-title);
}

.shopify-section--list-collections .info h4 {
  font-family: var(--wc-font-heading);
  font-weight: var(--wc-weight-heading);
  font-size: 1.2rem;
}

.shopify-section--list-collections .collection-wrapper {
  display: flex;
  flex-direction: column;
}

.shopify-section--list-collections .collection-wrapper > a {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.shopify-section--list-collections .collection-wrapper img {
  max-width: 270px;
  width: 100%;
  height: auto;
}

.shopify-section--list-collections .collection-wrapper .info {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  flex: 1;
  height: auto;
  overflow: visible;
}

.shopify-section--list-collections .collection-wrapper .info__text {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.shopify-section--list-collections .collection-wrapper .info__text .action_button {
  margin-top: auto;
}

/* ---------- text-grid ---------- */
.text-grid__col p {
  font-size: var(--wc-text-body);
  letter-spacing: 0.01rem;
}

/* ---------- newsletter ---------- */
.shopify-section--newsletter p {
  font-size: 1.2rem;
}

/* ---------- collection-template ---------- */
.shopify-section--collection-template h1,
.shopify-section--collection-template h1.collection_title {
  font-family: var(--wc-font-heading);
  font-weight: 800;
  font-style: normal;
  font-size: var(--wc-text-section-title);
}

.shopify-section--collection-template p,
.shopify-section--collection-template label,
.shopify-section--collection-template textarea,
.shopify-section--collection-template input,
.shopify-section--collection-template span {
  font-family: var(--wc-font-serif);
  font-weight: 300;
  font-style: normal;
}

/* ---------- product-template ---------- */
.shopify-section--product-template p,
.shopify-section--product-template label,
.shopify-section--product-template textarea,
.shopify-section--product-template input,
.shopify-section--product-template span,
.shopify-section--product-template button {
  font-family: var(--wc-font-serif);
  font-weight: 300;
  font-style: normal;
}

.shopify-section--product-template input {
  font-weight: 600;
}

/* ---------- product-recommendations ---------- */
.shopify-section--recommended-products h1,
.shopify-section--recommended-products h2,
.shopify-section--recommended-products h2.home {
  font-family: var(--wc-font-heading);
  font-weight: var(--wc-weight-heading);
  font-style: normal;
  font-size: var(--wc-text-section-title);
}

.shopify-section--recommended-products p,
.shopify-section--recommended-products label,
.shopify-section--recommended-products textarea,
.shopify-section--recommended-products input,
.shopify-section--recommended-products span,
.shopify-section--recommended-products button {
  font-family: var(--wc-font-serif);
  font-weight: 300;
  font-style: normal;
}

/* ---------- contact-template ---------- */
.page-contact .contact_form p,
.page-contact .contact_form label,
.page-contact .contact_form input,
.page-contact .contact_form textarea,
.shopify-section--page-contact-template p,
.shopify-section--page-contact-template label,
.shopify-section--page-contact-template input,
.shopify-section--page-contact-template textarea {
  font-family: var(--wc-font-serif);
  font-weight: 300;
  font-style: normal;
}

/* ---------- custom-html ---------- */
.shopify-section--custom-html .page-headline {
  font-family: var(--wc-font-display);
  font-weight: var(--wc-weight-display);
  font-style: normal;
  font-size: var(--wc-text-display);
  padding-top: 0.5rem;
  margin-bottom: 0.5rem;
  border-bottom: none;
}

.shopify-section--custom-html #ws-paragraph {
  font-family: var(--wc-font-body);
  font-weight: var(--wc-weight-body);
  font-style: normal;
  text-align: center;
  width: 95%;
  font-size: var(--wc-text-body-sm);
}

/* ---------- text-array ---------- */
.text-array__title {
  font-family: var(--wc-font-heading);
  font-size: 1.7rem;
  font-weight: var(--wc-weight-heading);
}

/* Text-array card headings - lighter on mobile */
@media only screen and (max-width: 798px) {
  .text-array__item h3,
  .text-array .text-array__item-title {
    font-size: clamp(18px, 5vw, 22px);
    font-weight: 700;
  }
}

/* ---------- featured-blog ---------- */
.shopify-section--blog-posts h2,
.shopify-section--blog-posts h2.home {
  font-family: var(--wc-font-heading);
  font-weight: 800;
  font-style: normal;
  font-size: 2rem;
  text-transform: none !important;
}

.shopify-section--blog-posts p,
.shopify-section--blog-posts a,
.shopify-section--blog-posts span,
.shopify-section--blog-posts label {
  font-family: var(--wc-font-serif);
  font-weight: 300;
  font-style: normal;
}

.shopify-section--blog-posts .sub_title a {
  font-size: 1rem;
  font-weight: 500;
  font-family: var(--wc-font-serif);
  font-style: normal;
  margin-bottom: 0;
}

.shopify-section--blog-posts .blog_meta span {
  font-size: 0.8rem;
}

/* ---------- announcement bar ---------- */
#announcement-text {
  font-family: var(--wc-font-serif);
}

/* ---------- footer ---------- */
.footer {
  font-family: var(--wc-font-body);
}

.footer h6 {
  font-family: var(--wc-font-heading);
  font-weight: var(--wc-weight-heading);
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: var(--wc-space-sm);
  line-height: 1.3;
}

.footer p,
.footer li,
.footer a,
.footer span {
  font-family: var(--wc-font-body);
  font-weight: var(--wc-weight-body);
  font-size: 0.9rem;
}

/* Contact info column — tighten line spacing for address lines */
.footer__content-page p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 2px;
}

/* Menu link items — consistent spacing */
.footer__menu.footer__menu--vertical ul li {
  line-height: 1.4;
  padding: 0 0 4px 0;
}

.footer__menu.footer__menu--vertical ul li a {
  font-size: 0.9rem;
}

/* Socials column — tighten spacing between social links */
.footer__socials p {
  font-size: 0.9rem;
  line-height: 1.4;
  margin-bottom: 2px;
}

.footer__socials a {
  font-weight: var(--wc-weight-body-medium);
}

/* Credits row */
.footer .credits,
.footer .credits a {
  font-family: var(--wc-font-body);
  font-size: 0.8rem;
}

/* ============================================
   Image with Text — Card Layout
   ============================================ */

/* ---------- outer wrapper ----------
   .section class (inherited from base theme) provides:
   max-width: 1200px; width: 95%; margin: 0 auto;
   We add border + radius on the inner .image-text-section. */
.image-text-section {
  border: var(--wc-border);
  border-radius: var(--wc-radius-lg);
  overflow: hidden;
}

/* ---------- grid container ---------- */
.image-text {
  display: grid;
  grid-template-columns: var(--it-image-ratio) 1fr;
}

.image-text--reversed {
  grid-template-columns: 1fr var(--it-image-ratio);
}

.image-text--reversed .image-text__image {
  order: 2;
}

/* ---------- image column ---------- */
.image-text__image {
  position: relative;
  overflow: hidden;
}

.image-text__image a {
  display: block;
  height: 100%;
}

.image-text__image .image-element__wrap {
  height: 100%;
  width: 100%;
}

.image-text__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.image-text__image .placeholder-svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- text column — 3-row grid ---------- */
.image-text__text {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--it-text-bg);
  padding: 24px 28px;
  text-align: var(--it-text-align);
}

/* ---------- badge ----------
   Rectangular pill matching featured-text badges:
   cream bg, display font, generous padding. */
.image-text-section .image-text__badge {
  font-family: var(--wc-font-body);
  font-weight: var(--wc-weight-body-bold);
  background: transparent;
  border: var(--wc-border);
  border-radius: var(--wc-radius-sm);
  color: var(--wc-black);
  width: fit-content;
  line-height: 1.2;
}

/* badge sizes */
.image-text__badge--small {
  font-size: clamp(11px, 1.8vw, 14px);
  padding: 4px 10px;
}

.image-text__badge--medium {
  font-size: clamp(12px, 2vw, 16px);
  padding: 5px 12px;
}

.image-text__badge--large {
  font-size: clamp(14px, 2.5vw, 20px);
  padding: 6px 14px;
}

/* badge vertical position — top row */
.image-text__badge--top-left,
.image-text__badge--top-center,
.image-text__badge--top-right {
  grid-row: 1;
  align-self: start;
  margin-bottom: var(--wc-space-sm);
}

/* badge vertical position — bottom row */
.image-text__badge--bottom-left,
.image-text__badge--bottom-right {
  grid-row: 3;
  align-self: end;
  margin-top: var(--wc-space-sm);
}

/* badge horizontal position */
.image-text__badge--top-left,
.image-text__badge--bottom-left {
  justify-self: start;
}

.image-text__badge--top-center {
  justify-self: center;
}

.image-text__badge--top-right,
.image-text__badge--bottom-right {
  justify-self: end;
}

/* ---------- content block ---------- */
.image-text__content {
  grid-row: 2;
  align-self: var(--it-vert-align);
}

/* ---------- heading ----------
   Extra specificity (.image-text-section) overrides
   base theme h2 rules that inject Jost/Fira Sans. */
.image-text-section .image-text__heading {
  font-family: var(--wc-font-display);
  font-weight: var(--wc-weight-display);
  font-size: var(--wc-text-card);
  color: var(--wc-black);
  line-height: 1.1;
  letter-spacing: normal;
  margin: 0;
  padding: 0 0 8px 0;
}

/* ---------- subheading ---------- */
.image-text-section .image-text__subheading {
  font-family: var(--wc-font-body);
  font-size: clamp(14px, 4vw, 20px);
  font-weight: var(--wc-weight-body-medium);
  color: var(--wc-body-text);
  margin: 0;
  padding: 0 0 12px 0;
}

/* ---------- body ---------- */
.image-text-section .image-text__body {
  font-family: var(--wc-font-serif);
  font-size: var(--wc-text-body-sm);
  font-weight: normal;
  line-height: 1.5;
  color: var(--wc-body-text);
}

.image-text__body p {
  margin: 0;
  padding-bottom: 8px;
}

.image-text__body p:last-child {
  padding-bottom: 0;
}

/* ---------- article meta ---------- */
.image-text__article-meta {
  margin-top: 10px;
  font-family: var(--wc-font-body);
  font-size: 13px;
  color: #666;
  line-height: 1.3;
}

/* ---------- CTA button ---------- */
.image-text__cta {
  margin-top: var(--wc-space-md);
}

/* ---------- promo banner ---------- */
.image-text__promo {
  background-color: var(--wc-promo-red);
  padding: 16px 28px;
  text-align: center;
}

.image-text__promo-text {
  font-family: var(--wc-font-serif);
  color: var(--wc-white);
  font-size: clamp(14px, 2vw, 18px);
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  padding: 0;
}

/* ---------- dark text backgrounds ---------- */
.image-text__text--dark .image-text__heading {
  color: var(--wc-white);
}

.image-text__text--dark .image-text__subheading {
  color: var(--wc-cream);
}

.image-text__text--dark .image-text__body {
  color: var(--wc-cream);
}

.image-text__text--dark .image-text__badge {
  color: var(--wc-cream);
  border-color: var(--wc-warm-border);
}

.image-text__text--dark .image-text__article-meta {
  color: var(--wc-warm-border);
}

/* ---------- mobile (≤798px) ---------- */
@media (max-width: 798px) {
  .image-text {
    grid-template-columns: 1fr;
  }

  .image-text--reversed {
    grid-template-columns: 1fr;
  }

  .image-text--reversed .image-text__image {
    order: 0;
  }

  .image-text__image {
    max-height: 300px;
  }

  .image-text__image .image-element__wrap {
    height: auto;
  }

  .image-text__image img {
    max-height: 300px;
  }

  .image-text__text {
    padding: 12px 10px;
  }

  .image-text-section .image-text__heading {
    padding: 0 0 6px 0;
  }

  .image-text__badge--medium {
    font-size: 0.85rem;
    padding: 5px 10px;
  }

  .image-text__promo {
    padding: 12px 16px;
  }

  .image-text__promo-text {
    font-size: clamp(13px, 3vw, 16px);
  }
}

/* ---------- desktop (≥799px) ---------- */
@media (min-width: 799px) {
  .image-text__text {
    padding: 24px 28px;
  }

  .image-text-section .image-text__heading {
    padding: 0 0 6px 0;
  }

  .image-text-section .image-text__subheading {
    padding: 0 0 10px 0;
  }

  .image-text__promo {
    padding: 18px 28px;
  }

  .image-text-section .image-text__body {
    font-size: 1.1rem;
    line-height: 1.5;
  }

  .image-text__body p {
    margin-top: 8px;
    padding-bottom: 0;
  }
}

/* ==========================================================================
   PRODUCT GALLERY HERO
   Full-width image gallery for stacked product page layout (Phase 2)
   ========================================================================== */

.gallery-hero {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: var(--wc-space-xl);
  overflow: hidden;
  box-sizing: border-box;
  /* Container frame */
  border: 1px solid #c8c1b6;
  border-radius: var(--wc-radius-md);
  background: #fff;
}

/* ---------- main image ---------- */

.gallery-hero__main {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background: transparent;
  overflow: hidden;
}

/* Override base theme opacity:0 from .product-gallery__main (Easify compat class) */
.gallery-hero__main.product-gallery__main {
  opacity: 1;
}

/* Easify/Konva live preview - scale canvas to fit container */
.gallery-hero__main .tpo_canvas_builder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
}

.gallery-hero__main .tpo_canvas_builder .konvajs-content {
  width: 100% !important;
  height: 100% !important;
}

.gallery-hero__main .tpo_canvas_builder .konvajs-content canvas {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
}

.gallery-hero__slide {
  display: none;
  width: 100%;
}

.gallery-hero__slide.is-active {
  display: block;
}

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

.gallery-hero__image-wrap {
  position: relative;
  width: 100%;
  max-width: 100%;
  aspect-ratio: var(--aspect-ratio, 1 / 1);
  overflow: hidden;
  background: transparent;
}

.gallery-hero__image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.gallery-hero__image.lazyload,
.gallery-hero__image.lazyloading {
  opacity: 0;
}

.gallery-hero__image.lazyloaded {
  opacity: 1;
}

/* video & model containers */
.gallery-hero__video,
.gallery-hero__model {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.gallery-hero__video video,
.gallery-hero__video iframe {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.gallery-hero__model model-viewer {
  width: 100%;
  height: 100%;
}

/* ---------- thumbnail strip ---------- */

.gallery-hero__thumbs {
  width: 100%;
  padding: var(--wc-space-md) 0;
  overflow: hidden;
}

/* Arrow nav - hidden on mobile, shown on desktop via JS */
.gallery-hero__nav {
  display: none;
}

/* Viewport wrapper - passthrough on mobile */
.gallery-hero__thumbs-viewport {
  display: contents;
}

.gallery-hero__thumbs-track {
  display: flex;
  gap: var(--wc-space-sm);
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--wc-border-color, #c8c1b6) transparent;
  padding: 4px;
  -webkit-overflow-scrolling: touch;
}

.gallery-hero__thumbs-track::-webkit-scrollbar {
  height: 6px;
}

.gallery-hero__thumbs-track::-webkit-scrollbar-track {
  background: transparent;
}

.gallery-hero__thumbs-track::-webkit-scrollbar-thumb {
  background: var(--wc-border-color, #c8c1b6);
  border-radius: 3px;
}

.gallery-hero__thumb {
  flex: 0 0 auto;
  position: relative;
  width: 72px;
  height: 72px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: var(--wc-radius-sm);
  background: #fff;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.gallery-hero__thumb:hover {
  border-color: var(--wc-border-color, #c8c1b6);
}

.gallery-hero__thumb.is-active {
  border-color: var(--wc-color-accent, #ab7d07);
}

.gallery-hero__thumb:focus {
  outline: none;
  border-color: var(--wc-color-accent, #ab7d07);
}

.gallery-hero__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* thumbnail badges (video/model icons) */
.gallery-hero__thumb-badge {
  position: absolute;
  bottom: 4px;
  right: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  color: #fff;
}

.gallery-hero__thumb-badge svg {
  width: 10px;
  height: 10px;
}

/* ---------- mobile (≤798px) ---------- */

@media (max-width: 798px) {
  .gallery-hero {
    padding: var(--wc-space-sm);
  }

  .gallery-hero__main {
    /* Cap height on mobile to prevent oversized images */
    max-height: 70vh;
  }

  .gallery-hero__image-wrap {
    max-height: 70vh;
  }

  .gallery-hero__image {
    object-fit: contain;
  }

  .gallery-hero__thumbs {
    padding: var(--wc-space-sm) var(--wc-space-md);
  }

  .gallery-hero__thumb {
    width: 60px;
    height: 60px;
  }
}

/* ---------- desktop (≥799px) ---------- */

@media (min-width: 799px) {
  .gallery-hero {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: var(--wc-space-lg);
    padding: var(--wc-space-xl);
  }

  .gallery-hero__main {
    flex: 1 1 auto;
    max-width: calc(100% - 170px);
    border-radius: var(--wc-radius-md);
    overflow: hidden;
  }

  .gallery-hero__thumbs {
    flex: 0 0 auto;
    width: 140px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  /* Arrow navigation buttons */
  .gallery-hero__nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 32px;
    background: var(--wc-cream, #f4ead6);
    border: 1px solid var(--wc-warm-border, #c8c1b6);
    border-radius: var(--wc-radius-sm);
    color: var(--wc-dark-brown, #1B140F);
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
  }

  .gallery-hero__nav:hover {
    background: var(--wc-dark-brown, #1B140F);
    color: var(--wc-cream, #f4ead6);
  }

  .gallery-hero__nav[hidden] {
    display: none;
  }

  /* Viewport with fade indicators */
  .gallery-hero__thumbs-viewport {
    display: block;
    position: relative;
    flex: 1 1 auto;
    overflow: hidden;
    max-height: 600px;
  }

  /* Fade indicators when content overflows */
  .gallery-hero__thumbs.has-overflow .gallery-hero__thumbs-viewport::before,
  .gallery-hero__thumbs.has-overflow .gallery-hero__thumbs-viewport::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 20px;
    pointer-events: none;
    z-index: 1;
  }

  .gallery-hero__thumbs.has-overflow .gallery-hero__thumbs-viewport::before {
    top: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.85) 0%, transparent 100%);
  }

  .gallery-hero__thumbs.has-overflow .gallery-hero__thumbs-viewport::after {
    bottom: 0;
    background: linear-gradient(to top, rgba(255,255,255,0.85) 0%, transparent 100%);
  }

  .gallery-hero__thumbs-track {
    flex-direction: column;
    overflow-x: visible;
    overflow-y: auto;
    max-height: 100%;
    gap: var(--wc-space-sm);
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .gallery-hero__thumbs-track::-webkit-scrollbar {
    display: none;
  }

  .gallery-hero__thumb {
    width: 132px;
    height: 132px;
  }

  .gallery-hero__thumb:hover {
    transform: scale(1.03);
  }
}


/* ==========================================================================
   PRODUCT INFO STACKED
   Product info section with two-column layout for specs/form (Phase 5)
   ========================================================================== */

.product-info {
  width: 100%;
  padding: var(--wc-space-lg) var(--wc-space-md);
  box-sizing: border-box;
}

/* ---------- header section (centered, narrower) ---------- */

.product-info__header-section {
  max-width: 1200px;
  margin: 0 auto var(--wc-space-lg) auto;
  padding: 0 var(--wc-space-xl);
  box-sizing: border-box;
}

.product-info__header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: var(--wc-space-sm) var(--wc-space-lg);
  margin-bottom: var(--wc-space-lg);
  padding-bottom: var(--wc-space-md);
  border-bottom: var(--wc-border);
}

.product-info__title {
  font-family: var(--wc-font-serif);
  font-size: clamp(28px, 5vw, 40px);
  font-weight: var(--wc-weight-body-medium);
  line-height: 1.2;
  color: var(--wc-black);
  margin: 0;
  flex: 1 1 auto;
  min-width: 200px;
}

.product-info__price {
  display: flex;
  align-items: baseline;
  gap: var(--wc-space-sm);
  flex-shrink: 0;
}

.product-info__current-price {
  font-family: var(--wc-font-body);
  font-size: clamp(22px, 4vw, 28px);
  font-weight: var(--wc-weight-heading);
  color: var(--wc-black);
}

.product-info__current-price--sale {
  color: var(--wc-purple-light);
}

.product-info__compare-price {
  font-family: var(--wc-font-body);
  font-size: clamp(16px, 3vw, 20px);
  font-weight: var(--wc-weight-body);
  color: var(--wc-muted-brown);
  text-decoration: line-through;
}

/* ---------- description ---------- */

.product-info__description {
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-body);
  line-height: 1.6;
  color: var(--wc-body-text);
}

.product-info__description p {
  margin: 0 0 var(--wc-space-md) 0;
}

.product-info__description p:last-child {
  margin-bottom: 0;
}

/* ---------- two-column section (form | specs) ---------- */

/* Two-column wrapper */
.product-info__two-col {
  display: flex;
  flex-direction: column;
  gap: var(--wc-space-lg);
  max-width: 1200px;
  margin: 0 auto var(--wc-space-xl) auto;
  padding: 0 var(--wc-space-md);
  box-sizing: border-box;
  width: 100%;
}

/* Form column (left on desktop) - Easify + Qty + ATC */
.product-info__two-col .product-info__form-col {
  flex: 1;
  min-width: 0; /* Prevent flex overflow */
  max-width: 100%;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: var(--wc-space-md);
}

/* Easify options - constrain within column */
.product-info__two-col .tpo_option-set-wrapper {
  max-width: 100%;
  box-sizing: border-box;
}

.product-info__two-col .tpo_option-container {
  max-width: 100%;
  box-sizing: border-box;
}

/* Specs column - prevent overflow */
.product-info__two-col .product-info__specs-col {
  min-width: 0; /* Prevent flex overflow */
}

/* Ensure form contents stack properly */
.product-info__two-col .product_form,
.product-info__two-col .product_form form {
  display: flex;
  flex-direction: column;
  gap: var(--wc-space-md);
}

/* Push purchase-details to end of form — Qty + Add to Cart inline */
.product-info__two-col .purchase-details {
  order: 100;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: var(--wc-space-sm);
  margin-top: var(--wc-space-md);
  width: 100%;
}

/* Quantity selector: fixed width, no centering */
.product-info__two-col .purchase-details .purchase-details__quantity {
  flex: 0 0 auto;
  margin: 0; /* Remove auto centering */
}

/* Buttons container: fill remaining space */
.product-info__two-col .purchase-details .purchase-details__buttons {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--wc-space-sm);
  margin-top: 0;
}

/* Add to Cart button matches quantity height */
.product-info__two-col .purchase-details .atc-btn-container .action_button.add_to_cart {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile: stack Qty above buttons */
@media (max-width: 480px) {
  .product-info__two-col .purchase-details {
    flex-direction: column;
    align-items: stretch;
  }

  .product-info__two-col .purchase-details .purchase-details__quantity {
    align-self: center;
    justify-content: center;
    margin-bottom: var(--wc-space-sm);
  }
}

/* Specs column (right on desktop) */
.product-info__two-col .product-info__specs-col {
  flex: 1;
}

.product-info__two-col .product-info__specs-col .product-specs {
  margin-bottom: 0;
  max-width: 100%;
  box-sizing: border-box;
}

/* Desktop: side-by-side layout */
@media (min-width: 799px) {
  .product-info__two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--wc-space-xl) var(--wc-space-2xl);
    align-items: start;
    padding: 0 var(--wc-space-xl);
  }

  .product-info__two-col .product-info__form-col {
    grid-column: 1;
  }

  .product-info__two-col .product-info__specs-col {
    grid-column: 2;
  }
}

/* Mobile: Specs first, then Form (with Easify) */
@media (max-width: 798px) {
  .product-info__two-col .product-info__specs-col {
    order: 0;
  }

  .product-info__two-col .product-info__form-col {
    order: 1;
  }
}

/* Legacy support - keep old classes working */
.product-info__columns {
  display: flex;
  flex-direction: column;
  gap: var(--wc-space-lg);
  max-width: 1200px;
  margin: 0 auto var(--wc-space-xl) auto;
  padding: 0 var(--wc-space-md);
  box-sizing: border-box;
}

.product-info__specs-col {
  flex: 1;
}

.product-info__specs-col .product-specs {
  margin-bottom: 0;
}

.product-info__form-col {
  flex: 1;
}

/* ---------- cross-sell section ---------- */

.product-info__crosssell {
  position: relative;
  max-width: calc(1200px - var(--wc-space-xl) * 2);
  margin: var(--wc-space-lg) auto var(--wc-space-xl) auto;
  padding: var(--wc-space-lg) var(--wc-space-lg) var(--wc-space-md);
  background: var(--wc-parchment);
  border: 1px solid var(--wc-warm-border);
  border-radius: var(--wc-radius-md);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

/* Recommendation badge */
.product-info__crosssell::before {
  content: "Recommended";
  position: absolute;
  top: 0;
  left: var(--wc-space-lg);
  transform: translateY(-50%);
  font-family: var(--wc-font-body);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wc-cream);
  background: var(--wc-warm-dark);
  padding: 4px 12px;
  border-radius: var(--wc-radius-pill);
}

.product-info__crosssell-heading {
  font-family: var(--wc-font-heading);
  font-size: 1.1rem;
  font-weight: var(--wc-weight-heading);
  color: var(--wc-black);
  text-align: left;
  margin: 0 0 var(--wc-space-xs) 0;
}

.product-info__crosssell-subheading {
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-body-sm);
  font-weight: var(--wc-weight-body);
  color: var(--wc-body-text);
  text-align: left;
  margin: 0 0 var(--wc-space-md) 0;
}

.product-info__crosssell-products {
  display: flex;
  flex-direction: column;
  gap: var(--wc-space-md);
}

/* ---------- trust signals container ---------- */

.product-info > .trust-signals {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- mobile (≤798px) ---------- */

@media (max-width: 798px) {
  .product-info {
    padding: var(--wc-space-lg) var(--wc-space-md);
  }

  .product-info__header {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--wc-space-xs);
  }

  .product-info__title {
    min-width: unset;
  }

  .product-info__columns {
    flex-direction: column;
  }

  .product-info__crosssell {
    padding: var(--wc-space-lg) var(--wc-space-md) var(--wc-space-md);
  }

  .product-info__crosssell::before {
    left: var(--wc-space-md);
  }
}

/* ---------- desktop (≥799px) ---------- */

@media (min-width: 799px) {
  .product-info {
    padding: var(--wc-space-lg) var(--wc-space-lg);
  }

  .product-info__columns {
    flex-direction: row;
    align-items: flex-start;
    gap: var(--wc-space-xl);
  }

  .product-info__specs-col {
    flex: 0 0 45%;
    min-width: 0;
  }

  .product-info__form-col {
    flex: 0 0 50%;
    min-width: 0;
  }
}


/* ==========================================================================
   PRODUCT STATUS BADGES
   Ready to Ship, One of a Kind badges (Phase 3)
   ========================================================================== */

.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--wc-space-sm);
  margin-bottom: var(--wc-space-lg);
}

.product-badges__badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--wc-font-serif);
  font-size: var(--wc-text-label);
  font-weight: var(--wc-weight-body-medium);
  color: var(--wc-black);
  background: var(--wc-cream);
  border: 1px solid var(--wc-warm-border);
  border-radius: var(--wc-radius-pill);
  padding: 6px 14px;
  white-space: nowrap;
}

.product-badges__icon {
  flex-shrink: 0;
}

.product-badges__badge--ready {
  color: #2d6a4f;
  background: #d8f3dc;
  border-color: #95d5b2;
}

.product-badges__badge--ready .product-badges__icon {
  color: #2d6a4f;
}

.product-badges__badge--unique {
  color: var(--wc-warm-dark);
  background: var(--wc-cream);
  border-color: var(--wc-warm-border);
}

.product-badges__badge--unique .product-badges__icon {
  color: var(--wc-gold);
}

.product-badges__badge--build-to-order {
  color: #92400e;
  background: #fef3c7;
  border-color: #fcd34d;
}

.product-badges__badge--build-to-order .product-badges__icon {
  color: #b45309;
}


/* ==========================================================================
   PRODUCT SPECS
   Specification display with expandable education drawers (Phase 3)
   ========================================================================== */

.product-specs {
  background: var(--wc-white);
  border: var(--wc-border);
  border-radius: var(--wc-radius-md);
  padding: var(--wc-space-lg);
  margin-bottom: var(--wc-space-xl);
}

.product-specs__heading {
  font-family: var(--wc-font-heading);
  font-size: 1.1rem;
  font-weight: var(--wc-weight-heading);
  color: var(--wc-black);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 var(--wc-space-md) 0;
}

.product-specs__list {
  margin: 0;
  padding: 0;
}

.product-specs__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--wc-space-sm) 0;
  border-bottom: 1px solid var(--wc-warm-border);
  min-width: 0;
}

.product-specs__row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-specs__row:first-child {
  padding-top: 0;
}

.product-specs__label {
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-body-sm);
  font-weight: var(--wc-weight-body-medium);
  color: var(--wc-muted-brown);
  flex-shrink: 0;
  margin-right: var(--wc-space-md);
}

.product-specs__value {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--wc-space-sm);
  text-align: right;
  margin: 0;
  min-width: 0;
  word-break: break-word;
}

.product-specs__dimension {
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-body-sm);
  font-weight: var(--wc-weight-body);
  color: var(--wc-black);
}

.product-specs__badge {
  font-family: var(--wc-font-body);
  font-size: 0.75rem;
  font-weight: var(--wc-weight-body-medium);
  color: var(--wc-cream);
  background: var(--wc-warm-dark);
  border-radius: var(--wc-radius-sm);
  padding: 2px 8px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

/* ---------- expandable specs ---------- */

.product-specs__row--expandable {
  margin: 0 calc(var(--wc-space-sm) * -1);
  padding: var(--wc-space-sm);
  border-radius: var(--wc-radius-sm);
  transition: background-color 0.15s ease;
}

.product-specs__row--expandable:hover {
  background-color: rgba(0, 0, 0, 0.035);
}

.product-specs__row--expandable .product-specs__value {
  flex-direction: column;
  align-items: flex-end;
  gap: 0;
}

.product-specs__details {
  width: 100%;
}

.product-specs__summary {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--wc-space-xs);
  cursor: pointer;
  list-style: none;
}

.product-specs__summary::-webkit-details-marker {
  display: none;
}

.product-specs__summary::marker {
  display: none;
}

/* Chevron icon */
.product-specs__chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--wc-muted-brown);
  transition: transform 0.2s ease, color 0.2s ease;
}

.product-specs__summary:hover .product-specs__chevron {
  color: var(--wc-gold);
}

.product-specs__details[open] .product-specs__chevron {
  transform: rotate(90deg);
  color: var(--wc-gold);
}

.product-specs__drawer {
  margin-top: var(--wc-space-md);
  padding: var(--wc-space-md);
  background: var(--wc-parchment);
  border-radius: var(--wc-radius-sm);
  text-align: left;
}

/* ---------- mobile (≤798px) ---------- */

@media (max-width: 798px) {
  .product-specs {
    padding: var(--wc-space-md);
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .product-info__specs-col {
    max-width: 100%;
    overflow-x: hidden;
  }

  .product-specs__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: var(--wc-space-xs) 0;
  }

  .product-specs__value {
    text-align: left;
    justify-content: flex-start;
  }

  .product-specs__row--expandable {
    margin: 0 calc(var(--wc-space-sm) * -1);
    padding: var(--wc-space-sm);
  }

  .product-specs__row--expandable .product-specs__value {
    align-items: flex-start;
  }

  .product-specs__summary {
    justify-content: flex-start;
  }
}


/* ==========================================================================
   EDUCATION CONTENT
   Expandable drawer content for species and grain education (Phase 3)
   ========================================================================== */

.education-content {
  margin-bottom: var(--wc-space-md);
}

.education-content:last-child {
  margin-bottom: 0;
}

.education-content__title {
  font-family: var(--wc-font-heading);
  font-size: 1rem;
  font-weight: var(--wc-weight-heading-light);
  color: var(--wc-black);
  margin: 0 0 var(--wc-space-xs) 0;
}

.education-content__body {
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-body-sm);
  font-weight: var(--wc-weight-body);
  line-height: 1.5;
  color: var(--wc-body-text);
  margin: 0;
}

.education-content__body p {
  margin: 0 0 var(--wc-space-sm) 0;
}

.education-content__body p:last-child {
  margin-bottom: 0;
}


/* ==========================================================================
   TRUST SIGNALS
   Value propositions below Add to Cart (Phase 3)
   ========================================================================== */

.trust-signals {
  margin-top: var(--wc-space-lg);
  padding: var(--wc-space-md);
  background: var(--wc-white);
  border: var(--wc-border-light);
  border-radius: var(--wc-radius-md);
}

.trust-signals__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: var(--wc-space-sm);
}

.trust-signals__item {
  display: flex;
  align-items: flex-start;
  gap: var(--wc-space-sm);
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-body-sm);
  font-weight: var(--wc-weight-body);
  line-height: 1.4;
  color: var(--wc-body-text);
}

.trust-signals__icon {
  flex-shrink: 0;
  color: #2d6a4f;
  margin-top: 2px;
}


/* ==========================================================================
   PRODUCT FORM OVERRIDES (Stacked Layout)
   Quantity selector and Easify options styling for product-info context
   ========================================================================== */

/* ---------- quantity selector ---------- */

.product-info__two-col .purchase-details__quantity,
.product-info__form-col .purchase-details__quantity,
.product-info__form .purchase-details__quantity {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  width: auto !important; /* Override base theme width: 100% */
  border: var(--wc-border-light);
  border-radius: var(--wc-radius-sm);
  overflow: hidden;
  height: 44px;
  margin: 0 auto var(--wc-space-md) auto; /* Center it */
}

.product-info__form-col .purchase-details__quantity input.quantity,
.product-info__form .purchase-details__quantity input.quantity {
  width: 50px;
  height: 100%;
  border: none;
  border-left: var(--wc-border-light);
  border-right: var(--wc-border-light);
  text-align: center;
  font-family: var(--wc-font-body);
  font-size: 1rem;
  font-weight: var(--wc-weight-body-medium);
  color: var(--wc-black);
  background: var(--wc-white);
  -moz-appearance: textfield;
}

.product-info__form-col .purchase-details__quantity input.quantity::-webkit-inner-spin-button,
.product-info__form-col .purchase-details__quantity input.quantity::-webkit-outer-spin-button,
.product-info__form .purchase-details__quantity input.quantity::-webkit-inner-spin-button,
.product-info__form .purchase-details__quantity input.quantity::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-info__form-col .purchase-details__quantity .product-plus,
.product-info__form-col .purchase-details__quantity .product-minus,
.product-info__form .purchase-details__quantity .product-plus,
.product-info__form .purchase-details__quantity .product-minus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 100%;
  background: var(--wc-white);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.product-info__form-col .purchase-details__quantity .product-plus:hover,
.product-info__form-col .purchase-details__quantity .product-minus:hover,
.product-info__form .purchase-details__quantity .product-plus:hover,
.product-info__form .purchase-details__quantity .product-minus:hover {
  background: var(--wc-parchment);
}

/* ---------- Add to Cart button ---------- */

.product-info__form-col .purchase-details__buttons {
  margin-top: var(--wc-space-md);
}

.product-info__form-col .action_button {
  width: 100%;
  padding: var(--wc-space-md) var(--wc-space-lg);
  font-family: var(--wc-font-body);
  font-size: 1rem;
  font-weight: var(--wc-weight-body-medium);
  border-radius: var(--wc-radius-sm);
}

/* ATC button - gold bg with dark text for warmth + contrast */
.product-info__form-col .action_button.action_button--secondary {
  background-color: #e1a541;
  border-color: #e1a541;
  color: var(--wc-dark-brown);
}

.product-info__form-col .action_button.action_button--secondary:hover {
  background-color: #c08d2e;
  border-color: #c08d2e;
}

/* ---------- Easify options styling ---------- */

.product-info__form-col .easify-container,
.product-info__form-col [class*="easify"],
.product-info__form .easify-container,
.product-info__form [class*="easify"] {
  font-family: var(--wc-font-body) !important;
}

.product-info__form-col .easify-option-wrapper,
.product-info__form-col .easify-wrapper,
.product-info__form .easify-option-wrapper,
.product-info__form .easify-wrapper {
  border: var(--wc-border-light) !important;
  border-radius: var(--wc-radius-md) !important;
  padding: var(--wc-space-md) !important;
  margin-bottom: var(--wc-space-md) !important;
  background: var(--wc-white) !important;
}

.product-info__form-col .easify-option-label,
.product-info__form-col .easify-label,
.product-info__form .easify-option-label,
.product-info__form .easify-label {
  font-family: var(--wc-font-body) !important;
  font-size: var(--wc-text-body-sm) !important;
  font-weight: var(--wc-weight-body-medium) !important;
  color: var(--wc-muted-brown) !important;
  text-transform: none !important;
  letter-spacing: normal !important;
  margin-bottom: var(--wc-space-xs) !important;
}

.product-info__form-col .easify-option-title,
.product-info__form-col .easify-title,
.product-info__form .easify-option-title,
.product-info__form .easify-title {
  font-family: var(--wc-font-heading) !important;
  font-size: 1rem !important;
  font-weight: var(--wc-weight-heading-light) !important;
  color: var(--wc-black) !important;
  margin-bottom: var(--wc-space-sm) !important;
}

.product-info__form-col .easify-input,
.product-info__form-col .easify-textarea,
.product-info__form-col .easify-select,
.product-info__form .easify-input,
.product-info__form .easify-textarea,
.product-info__form .easify-select {
  font-family: var(--wc-font-body) !important;
  font-size: var(--wc-text-body-sm) !important;
  border: var(--wc-border-light) !important;
  border-radius: var(--wc-radius-sm) !important;
  padding: var(--wc-space-sm) var(--wc-space-md) !important;
  background: var(--wc-white) !important;
}

.product-info__form-col .easify-input:focus,
.product-info__form-col .easify-textarea:focus,
.product-info__form-col .easify-select:focus,
.product-info__form .easify-input:focus,
.product-info__form .easify-textarea:focus,
.product-info__form .easify-select:focus {
  outline: none !important;
  border-color: var(--wc-gold) !important;
}

.product-info__form .easify-checkbox-label,
.product-info__form .easify-radio-label {
  font-family: var(--wc-font-body) !important;
  font-size: var(--wc-text-body-sm) !important;
  font-weight: var(--wc-weight-body) !important;
  color: var(--wc-body-text) !important;
}

.product-info__form .easify-price,
.product-info__form .easify-option-price {
  font-family: var(--wc-font-body) !important;
  font-weight: var(--wc-weight-body-medium) !important;
  color: var(--wc-muted-brown) !important;
}


/* ==========================================================================
   WHY WOODED
   Brand story + values section for product pages
   ========================================================================== */

.why-wooded {
  max-width: 1200px;
  margin: 0 auto var(--wc-space-lg);
  padding: var(--wc-space-md);
  background: var(--wc-parchment);
  border-radius: var(--wc-radius-md);
}


.why-wooded__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--wc-space-xl);
  align-items: start;
}

.why-wooded__story {
  padding-right: var(--wc-space-md);
}

.why-wooded__prose {
  font-family: var(--wc-font-serif);
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 400;
  line-height: 1.55;
  color: var(--wc-body-text);
  margin: 0;
}

.why-wooded__values {
  display: flex;
  flex-direction: column;
  gap: var(--wc-space-md);
}

.why-wooded__value {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-left: var(--wc-space-md);
  border-left: 2px solid var(--wc-warm-border);
}

.why-wooded__value-title {
  font-family: var(--wc-font-heading);
  font-size: 0.9rem;
  font-weight: var(--wc-weight-heading);
  color: var(--wc-black);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.why-wooded__value-desc {
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-body-sm);
  font-weight: var(--wc-weight-body);
  line-height: 1.5;
  color: var(--wc-body-text);
}

/* Mobile: stack layout */
@media (max-width: 798px) {
  .why-wooded {
    margin: 0 var(--wc-space-md) var(--wc-space-lg);
    padding: var(--wc-space-md);
  }

  .why-wooded__content {
    grid-template-columns: 1fr;
    gap: var(--wc-space-lg);
  }

  .why-wooded__story {
    padding-right: 0;
  }

  .why-wooded__prose {
    font-size: 1rem;
  }
}


/* ==========================================================================
   CROSS-SELL CARE (Jack Wax)
   Horizontal care product card for board product pages (Phase 4)
   ========================================================================== */

.crosssell-care {
  margin-top: var(--wc-space-section);
  padding: 0 var(--wc-space-md);
}

.crosssell-care__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: var(--wc-space-lg);
  background: var(--wc-parchment);
  border-radius: var(--wc-radius-md);
}

.crosssell-care__heading {
  font-family: var(--wc-font-heading);
  font-size: 1.25rem;
  font-weight: var(--wc-weight-heading);
  color: var(--wc-black);
  margin: 0 0 var(--wc-space-xs) 0;
}

.crosssell-care__subheading {
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-body-sm);
  font-weight: var(--wc-weight-body);
  color: var(--wc-body-text);
  margin: 0 0 var(--wc-space-md) 0;
}

.crosssell-care__products {
  display: flex;
  flex-direction: column;
  gap: var(--wc-space-md);
}

.crosssell-care__link {
  display: inline-block;
  margin-top: var(--wc-space-md);
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-body-sm);
  font-weight: var(--wc-weight-body-medium);
  color: var(--wc-gold);
  text-decoration: none;
}

.crosssell-care__link:hover {
  color: var(--wc-gold-light);
  text-decoration: underline;
}

/* ---------- Cross-sell Card ---------- */

.crosssell-care-card {
  display: flex;
  align-items: center;
  gap: var(--wc-space-md);
  padding: var(--wc-space-md);
  background: #fff;
  border-radius: var(--wc-radius-md);
  border: var(--wc-border-light);
}

.crosssell-care-card__image-link {
  flex-shrink: 0;
}

.crosssell-care-card__image {
  width: 80px;
  height: 80px;
  border-radius: var(--wc-radius-sm);
  overflow: hidden;
  background: #f5f5f5;
}

.crosssell-care-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.crosssell-care-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.crosssell-care-card__placeholder .placeholder-svg {
  width: 60%;
  height: 60%;
  fill: #ccc;
}

.crosssell-care-card__content {
  flex: 1;
  min-width: 0;
}

.crosssell-care-card__header {
  margin-bottom: var(--wc-space-xs);
}

.crosssell-care-card__title-link {
  text-decoration: none;
  color: inherit;
}

.crosssell-care-card__title-link:hover .crosssell-care-card__title {
  color: var(--wc-gold);
}

.crosssell-care-card__title {
  font-family: var(--wc-font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--wc-dark-brown);
  margin: 0;
  line-height: 1.3;
}

.crosssell-care-card__price {
  font-family: var(--wc-font-body);
  font-size: 0.95rem;
  font-weight: var(--wc-weight-body-medium);
  color: var(--wc-dark-brown);
  white-space: nowrap;
}

.crosssell-care-card__finish-type {
  font-family: var(--wc-font-serif);
  font-size: 0.85rem;
  color: var(--wc-muted-brown);
  margin-bottom: var(--wc-space-xs);
}

.crosssell-care-card__description {
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-body-sm);
  font-weight: var(--wc-weight-body);
  line-height: 1.5;
  color: var(--wc-body-text);
  margin: 0;
  /* Clamp to 2 lines */
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.crosssell-care-card__action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: var(--wc-space-sm);
}

.crosssell-care-card__form {
  margin: 0;
}

.crosssell-care-card__add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: var(--wc-space-sm) var(--wc-space-md);
  background: var(--wc-purple);
  color: #fff;
  border: none;
  border-radius: var(--wc-radius-sm);
  font-family: var(--wc-font-body);
  font-size: 0.9rem;
  font-weight: var(--wc-weight-body-medium);
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.crosssell-care-card__add-btn:hover {
  background: var(--wc-purple-light);
}

.crosssell-care-card__add-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.crosssell-care-card__add-icon {
  font-size: 1.1rem;
  line-height: 1;
}

.crosssell-care-card__sold-out {
  font-family: var(--wc-font-body);
  font-size: 0.85rem;
  color: var(--wc-muted-brown);
}

/* Mobile adjustments */
@media (max-width: 480px) {
  .crosssell-care-card {
    flex-wrap: wrap;
  }

  .crosssell-care-card__image {
    width: 70px;
    height: 70px;
  }

  .crosssell-care-card__content {
    flex: 1 1 calc(100% - 90px);
  }

  .crosssell-care-card__description {
    display: none;
  }

  .crosssell-care-card__action {
    width: 100%;
    margin-top: var(--wc-space-sm);
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .crosssell-care-card__add-btn {
    width: auto;
  }
}


/* ==========================================================================
   PRODUCT PAGE RECOMMENDATIONS
   "You May Also Like" section styling for product pages (Phase 4)
   ========================================================================== */

.shopify-section--recommended-products {
  margin-top: 0;
  padding: 0 var(--wc-space-md);
}

.shopify-section--recommended-products .container {
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.shopify-section--recommended-products .recommended-title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-section-title);
  font-weight: var(--wc-weight-heading);
  color: var(--wc-black);
  text-align: center;
  margin: 0 0 var(--wc-space-lg) 0;
}

/* Product cards in recommendations - use compact board style */
.shopify-section--recommended-products .thumbnail {
  margin-bottom: var(--wc-space-md);
}

.shopify-section--recommended-products .thumbnail .product_image {
  border-radius: var(--wc-radius-md);
  overflow: hidden;
}

/* Mobile: full-width stacked cards */
@media (max-width: 799px) {
  .shopify-section--recommended-products .thumbnail {
    width: calc(100% - 20px);
  }
}


/* ==========================================================================
   EDUCATION BLOCKS
   Expandable cards for species, grain, craft, and size info (Phase 5)
   ========================================================================== */

.education-blocks {
  padding: var(--wc-space-section) var(--wc-space-md);
}

.education-blocks__container {
  max-width: 1000px;
  margin: 0 auto;
}

.education-blocks__title {
  font-family: var(--wc-font-heading);
  font-size: var(--wc-text-section-title);
  font-weight: var(--wc-weight-heading);
  color: var(--wc-black);
  text-align: center;
  margin: 0 0 var(--wc-space-lg) 0;
}

.education-blocks__grid {
  display: grid;
  gap: var(--wc-space-md);
}

.education-blocks__grid--2 {
  grid-template-columns: repeat(2, 1fr);
}

.education-blocks__grid--3 {
  grid-template-columns: repeat(3, 1fr);
}

.education-blocks__grid--4 {
  grid-template-columns: repeat(4, 1fr);
}

/* ---------- individual block ---------- */

.education-block {
  background: var(--wc-white);
  border: var(--wc-border-light);
  border-radius: var(--wc-radius-md);
  overflow: hidden;
}

.education-block__details {
  width: 100%;
}

.education-block__summary {
  display: flex;
  flex-direction: column;
  padding: var(--wc-space-md);
  cursor: pointer;
  list-style: none;
}

.education-block__summary::-webkit-details-marker {
  display: none;
}

.education-block__summary::marker {
  display: none;
}

.education-block__heading {
  font-family: var(--wc-font-heading);
  font-size: 1rem;
  font-weight: var(--wc-weight-heading);
  color: var(--wc-black);
  margin: 0 0 var(--wc-space-xs) 0;
  line-height: 1.3;
  word-wrap: break-word;
}

.education-block__teaser {
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-body-sm);
  font-weight: var(--wc-weight-body);
  line-height: 1.4;
  color: var(--wc-body-text);
  margin: 0 0 var(--wc-space-sm) 0;
}

.education-block__toggle {
  display: inline-flex;
  align-items: center;
  gap: var(--wc-space-xs);
  font-family: var(--wc-font-body);
  font-size: 0.85rem;
  font-weight: var(--wc-weight-body-medium);
  color: var(--wc-gold);
  transition: color 0.2s ease;
}

.education-block__summary:hover .education-block__toggle {
  color: var(--wc-gold-light);
}

.education-block__toggle-icon {
  transition: transform 0.2s ease;
}

.education-block__details[open] .education-block__toggle-icon {
  transform: rotate(180deg);
}

.education-block__content {
  padding: 0 var(--wc-space-md) var(--wc-space-md) var(--wc-space-md);
  font-family: var(--wc-font-body);
  font-size: var(--wc-text-body-sm);
  line-height: 1.5;
  color: var(--wc-body-text);
  border-top: 1px solid var(--wc-warm-border);
  margin-top: var(--wc-space-sm);
  padding-top: var(--wc-space-md);
}

.education-block__content p {
  margin: 0 0 var(--wc-space-sm) 0;
}

.education-block__content p:last-child {
  margin-bottom: 0;
}

.education-block__additional {
  margin-top: var(--wc-space-sm);
  font-size: 0.85rem;
  color: var(--wc-muted-brown);
}

/* ---------- mobile (≤798px) ---------- */

@media (max-width: 798px) {
  .education-blocks__grid--2,
  .education-blocks__grid--3,
  .education-blocks__grid--4 {
    grid-template-columns: 1fr;
  }
}

/* ---------- tablet (799px - 1024px) ---------- */

@media (min-width: 799px) and (max-width: 1024px) {
  .education-blocks__grid--3,
  .education-blocks__grid--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ---------- image-text section — text-only variant ---------- */
.image-text--no-image {
  display: block;
}

.image-text--no-image .image-text__text {
  max-width: 100%;
  margin: 0;
  padding: var(--wc-space-xl) var(--wc-space-lg);
}

.image-text--no-image .image-text__content {
  max-width: 800px;
  margin: 0 auto;
}

/* ==========================================================================
   WEAR PRODUCT TEMPLATE
   Minimal styling for apparel product pages
   ========================================================================== */

.wear-brand-message {
  text-align: center;
  padding: var(--wc-space-lg) var(--wc-space-md);
  max-width: 400px;
  margin: 0 auto;
}

.wear-brand-message p {
  font-family: var(--wc-font-serif);
  font-size: var(--wc-text-body);
  font-style: italic;
  color: var(--wc-muted-brown);
  margin: 0;
}