/* Color custom properties */

:root,
.color-background-1 {
  --color-foreground: var(--color-base-text);
  --color-background: var(--color-base-background-1);
  --gradient-background: var(--gradient-base-background-1);
}

.color-background-2 {
  --color-background: var(--color-base-background-2);
  --gradient-background: var(--gradient-base-background-2);
}

.color-inverse {
  --color-foreground: var(--color-base-background-1);
  --color-background: var(--color-base-text);
  --gradient-background: rgb(var(--color-base-text));
}

.color-accent-1 {
  --color-foreground: var(--color-base-solid-button-labels);
  --color-background: var(--color-base-accent-1);
  --gradient-background: var(--gradient-base-accent-1);
}

.color-accent-2 {
  --color-foreground: var(--color-base-solid-button-labels);
  --color-background: var(--color-base-accent-2);
  --gradient-background: var(--gradient-base-accent-2);
}

.color-foreground-outline-button {
  --color-foreground: var(--color-base-outline-button-labels);
}

.color-foreground-accent-1 {
  --color-foreground: var(--color-base-accent-1);
}

.color-foreground-accent-2 {
  --color-foreground: var(--color-base-accent-2);
}

:root,
.color-background-1 {
  --color-link: var(--color-base-outline-button-labels);
  --alpha-link: 0.85;
}

.color-background-2,
.color-inverse,
.color-accent-1,
.color-accent-2 {
  --color-link: var(--color-foreground);
  --alpha-link: 0.7;
}

:root,
.color-background-1 {
  --color-button: var(--color-base-accent-1);
  --color-button-text: var(--color-base-solid-button-labels);
  --alpha-button-background: 1;
  --alpha-button-border: 1;
}

.color-background-2,
.color-inverse,
.color-accent-1,
.color-accent-2 {
  --color-button: var(--color-foreground);
  --color-button-text: var(--color-background);
}

.button--secondary {
  --color-button: var(--color-base-outline-button-labels);
  --color-button-text: var(--color-base-outline-button-labels);
  --alpha-button-background: 0;
}

.color-background-2 .button--secondary,
.color-inverse .button--secondary,
.color-accent-1 .button--secondary,
.color-accent-2 .button--secondary {
  --color-button: var(--color-foreground);
  --color-button-text: var(--color-foreground);
}

.button--tertiary {
  --color-button: var(--color-base-outline-button-labels);
  --color-button-text: var(--color-base-outline-button-labels);
  --alpha-button-background: 0;
  --alpha-button-border: 0.2;
}

.color-background-2 .button--tertiary,
.color-inverse .button--tertiary,
.color-accent-1 .button--tertiary,
.color-accent-2 .button--tertiary {
  --color-button: var(--color-foreground);
  --color-button-text: var(--color-foreground);
}

:root,
.color-background-1 {
  --color-badge-background: var(--color-background);
  --color-badge-border: var(--color-foreground);
  --alpha-badge-border: 0.1;
}

.color-background-2,
.color-inverse,
.color-accent-1,
.color-accent-2 {
  --color-badge-background: var(--color-background);
  --color-badge-border: var(--color-background);
  --alpha-badge-border: 1;
}

:root,
.color-background-1,
.color-background-2 {
  --color-card-hover: var(--color-base-text);
}

.color-inverse {
  --color-card-hover: var(--color-base-background-1);
}

.color-accent-1,
.color-accent-2 {
  --color-card-hover: var(--color-base-solid-button-labels);
}

:root,
.color-icon-text {
  --color-icon: rgb(var(--color-base-text));
}

.color-icon-accent-1 {
  --color-icon: rgb(var(--color-base-accent-1));
}

.color-icon-accent-2 {
  --color-icon: rgb(var(--color-base-accent-2));
}

.color-icon-outline-button {
  --color-icon: rgb(var(--color-base-outline-button-labels));
}

.color-light-text {
  color: rgba(var(--color-base-text), 0.6);
}

/* base */

.no-js:not(html) {
  display: none !important;
}

html.no-js .no-js:not(html) {
  display: block !important;
}

.no-js-inline {
  display: none !important;
}

html.no-js .no-js-inline {
  display: inline-block !important;
}

html.no-js .no-js-hidden {
  display: none !important;
}

.page-width {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.page-width-desktop {
  padding: 0;
  margin: 0 auto;
}

@media screen and (min-width: 750px) {
  .page-width {
    padding: 0 5rem;
  }

  .page-width--narrow {
    padding: 0 9rem;
  }

  .page-width-desktop {
    padding: 0;
  }
}

@media screen and (min-width: 990px) {
  .page-width--narrow {
    max-width: 72.6rem;
    padding: 0;
  }

  .page-width-desktop {
    max-width: var(--page-width);
    padding: 0 5rem;
  }
}

.element-margin {
  margin-top: 5rem;
}

.spaced-section {
  margin-top: 5rem;
}

.spaced-section:last-child {
  margin-bottom: 5rem;
}

.spaced-section--full-width + .spaced-section--full-width {
  margin-top: 0;
}

.spaced-section--full-width:first-child {
  margin-top: 0;
}

.spaced-section--full-width:last-child {
  margin-bottom: 0;
}

.mt-0{
  margin-top: 0 !important;
}

.mt-1{
  margin-top: 0.5rem !important;
}

.mt-2{
  margin-top: 1rem !important;
}

.mt-3{
  margin-top: 1.5rem !important;
}

.mt-4{
  margin-top: 2rem !important;
}

.mb-0{
  margin-bottom: 0 !important;
}

.mb-1{
  margin-bottom: 0.5rem !important;
}

.mb-2{
  margin-bottom: 1rem !important;
}

.mb-3{
  margin-bottom: 1.5rem !important;
}

.mb-4{
  margin-bottom: 2rem !important;
}

.ml-1 {
  margin-left: 0.5rem !important;
}

.ml-2 {
  margin-left: 1rem !important;
}

.p-2{
  padding: 1rem !important;
}

.p-3{
  padding: 2rem !important;
}

.pt-0{
  padding-top: 0 !important;
}

.pb-0{
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.py-1 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.lh-2{
  line-height: 1.2 !important;
}

.gap-x-2 {
  column-gap: 1rem;
}

.gap-y-1 {
  row-gap: 0.5rem;
}

.gap-y-2 {
  row-gap: 1rem;
}

body,
.color-background-1,
.color-background-2,
.color-inverse,
.color-accent-1,
.color-accent-2 {
  color: rgba(var(--color-foreground), 0.75);
  background-color: rgb(var(--color-background));
}

.background-secondary {
  background-color: rgba(var(--color-foreground), 0.04);
  padding: 4rem 0 5rem;
}

@media screen and (min-width: 750px) {
  .background-secondary {
    padding: 6rem 0 5rem;
  }
}

.grid-auto-flow {
  display: grid;
  grid-auto-flow: column;
}

.page-margin,
.challenge__container {
  margin: 7rem auto;
}

.rte-width {
  max-width: 82rem;
  margin: 0 auto 2rem;
}

.rte, img{
  max-width: 100%;
}

.list-unstyled {
  margin: 0;
  padding: 0;
  list-style: none;
}

.hidden, .hide {
  display: none !important;
}

.transparent {
  opacity: 0 !important;
}

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

.visually-hidden--inline {
  margin: 0;
  height: 1em;
}

.overflow-hidden {
  overflow: hidden;
}

.overflow-auto {
  overflow: auto;
}

.skip-to-content-link:focus {
  z-index: 9999;
  position: inherit;
  overflow: auto;
  width: auto;
  height: auto;
  clip: auto;
}

.full-width-link {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
}

h1,
h2,
h3,
h4,
h5,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: 0.06rem;
  color: rgb(var(--color-foreground));
  line-height: 1.3;
}

.h0 {
  font-size: 4rem;
}

@media only screen and (min-width: 750px) {
  .h0 {
    font-size: 5.2rem;
  }
}

h1,
.h1 {
  font-size: 3rem;
}

@media only screen and (min-width: 750px) {
  h1,
  .h1 {
    font-size: 4rem;
  }
}

h2,
.h2 {
  font-size: 2rem;
}

@media only screen and (min-width: 750px) {
  h2,
  .h2 {
    font-size: 2.4rem;
  }
}

h3,
.h3 {
  font-size: 1.7rem;
}

@media only screen and (min-width: 750px) {
  h3,
  .h3 {
    font-size: 1.8rem;
  }
}

h4,
.h4 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-size: 1.5rem;
}

h5,
.h5 {
  font-size: 1.2rem;
}

@media only screen and (min-width: 750px) {
  h5,
  .h5 {
    font-size: 1.3rem;
  }
}

h6,
.h6 {
  color: rgba(var(--color-foreground), 0.75);
  margin-block-start: 1.67em;
  margin-block-end: 1.67em;
}

blockquote {
  font-style: italic;
  color: rgba(var(--color-foreground), 0.75);
  border-left: 0.2rem solid rgba(var(--color-foreground), 0.2);
  padding-left: 1rem;
}

@media screen and (min-width: 750px) {
  blockquote {
    padding-left: 1.5rem;
  }
}

.caption {
  font-size: 1rem;
  letter-spacing: 0.07rem;
  line-height: 1.7;
}

@media screen and (min-width: 750px) {
  .caption {
    font-size: 1.2rem;
  }
}

.caption-with-letter-spacing {
  font-size: 1rem;
  letter-spacing: 0.13rem;
  line-height: 1.2;
  text-transform: uppercase;
}

.caption-large,
.customer .field input,
.customer select,
.field__input,
.form__label,
.select__select {
  font-size: 1.3rem;
  line-height: 1.5;
  letter-spacing: 0.04rem;
}

.color-foreground {
  color: rgb(var(--color-foreground));
}

table:not([class]) {
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 1.4rem;
  border-style: hidden;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.2);
  /* draws the table border  */
}

table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
}

.hidden {
  display: none !important;
}

@media screen and (max-width: 749px) {
  .small-hide {
    display: none !important;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .medium-hide {
    display: none !important;
  }
}

@media screen and (min-width: 990px) {
  .large-up-hide {
    display: none !important;
  }
}

.center {
  text-align: center;
}

.right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}

.light {
  opacity: 0.7;
}

a:empty,
ul:empty,
dl:empty,
div:empty,
section:empty,
article:empty,
p:empty,
h1:empty,
h2:empty,
h3:empty,
h4:empty,
h5:empty,
h6:empty {
  display: none;
}

.link,
.customer a {
  cursor: pointer;
  display: inline-block;
  border: none;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 0.3rem;
  color: rgb(var(--color-link));
  background-color: transparent;
  font-size: 1.4rem;
  font-family: inherit;
}

.customer a.h3 {
  font-size: 1.8rem;
}

.link--text {
  color: rgb(var(--color-foreground));
}

.link--text:hover {
  color: rgba(var(--color-foreground), 0.75);
}

.link-with-icon {
  display: inline-flex;
  font-size: 1.4rem;
  font-weight: 600;
  letter-spacing: 0.1rem;
  text-decoration: none;
  margin-bottom: 3.5rem;
  white-space: nowrap;
}

.link-with-icon .icon {
  width: 1.5rem;
  margin-left: 1rem;
}

.circle-divider::after {
  content: '\2022';
  margin: 0 1.3rem 0 1.5rem;
}

.circle-divider:last-of-type::after {
  display: none;
}

hr {
  border: none;
  height: 0.1rem;
  background-color: rgba(var(--color-foreground), 0.2);
  display: block;
  margin: 5rem 0;
}

@media screen and (min-width: 750px) {
  hr {
    margin: 7rem 0;
  }
}

.full-unstyled-link {
  text-decoration: none;
  color: currentColor;
  display: block;
}

.placeholder {
  background-color: rgba(var(--color-foreground), 0.04);
  color: rgba(var(--color-foreground), 0.55);
  fill: rgba(var(--color-foreground), 0.55);
}

details > * {
  box-sizing: border-box;
}

.break {
  word-break: break-word;
}

.visibility-hidden {
  visibility: hidden;
}

@media (prefers-reduced-motion) {
  .motion-reduce {
    transition: none !important;
  }
}

:root {
  --duration-short: 100ms;
  --duration-default: 200ms;
  --duration-long: 500ms;
}

.underlined-link,
.customer a {
  color: rgba(var(--color-link), var(--alpha-link));
  text-underline-offset: 0.3rem;
  text-decoration-thickness: 0.1rem;
  transition: text-decoration-thickness ease 100ms;
}

.underlined-link:hover,
.customer a:hover {
  color: rgb(var(--color-link));
  text-decoration-thickness: 0.2rem;
}

.icon-arrow {
  width: 1.5rem;
}

/* arrow animation */
.animate-arrow .icon-arrow path {
  transform: translateX(-0.25rem);
  transition: transform var(--duration-short) ease;
}

.animate-arrow:hover .icon-arrow path {
  transform: translateX(-0.05rem);
}

/* base-details-summary */
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

summary .icon-caret {
  position: absolute;
  height: 0.6rem;
  right: 1.5rem;
  top: calc(50% - 0.2rem);
}

summary::-webkit-details-marker {
  display: none;
}

.disclosure-has-popup {
  position: relative;
}

.disclosure-has-popup[open] > summary::before {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: block;
  cursor: default;
  content: ' ';
  background: transparent;
}

.disclosure-has-popup > summary::before {
  display: none;
}

.disclosure-has-popup[open] > summary + * {
  z-index: 100;
}

@media screen and (min-width: 750px) {
  .disclosure-has-popup[open] > summary + * {
    z-index: 2;
  }
}

/* base-focus */
/*
  Focus ring - default (with offset)
*/

*:focus {
  outline: 0;
  box-shadow: none;
}

*:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

/* Fallback - for browsers that don't support :focus-visible, a fallback is set for :focus */
.focused, .no-js *:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 0.3rem;
  box-shadow: 0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

/* Negate the fallback side-effect for browsers that support :focus-visible */
.no-js *:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}


/*
  Focus ring - inset
*/

.focus-inset:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}

.focused.focus-inset, .no-js .focus-inset:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: -0.2rem;
  box-shadow: 0 0 0.2rem 0 rgba(var(--color-foreground), 0.3);
}

.no-js .focus-inset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/*
  Focus ring - none
*/

/* Dangerous for a11y - Use with care */
.focus-none {
  box-shadow: none !important;
  outline: 0 !important;
}

.focus-offset:focus-visible {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)),
    0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}

.focus-offset.focused, .no-js .focus-offset:focus {
  outline: 0.2rem solid rgba(var(--color-foreground), 0.5);
  outline-offset: 1rem;
  box-shadow: 0 0 0 1rem rgb(var(--color-background)),
    0 0 0.2rem 1.2rem rgba(var(--color-foreground), 0.3);
}

.no-js .focus-offset:focus:not(:focus-visible) {
  outline: 0;
  box-shadow: none;
}

/* component-title */
.title,
.title-wrapper-with-link {
  margin: 3rem 0 2rem;
}

.title-wrapper-with-link .title {
  margin: 0;
}

.title-wrapper {
  margin-bottom: 3rem;
}

.title-wrapper-with-link {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin: 4rem 0 3rem;
  flex-wrap: wrap;
}

.title--primary {
  margin: 4rem 0;
}

.title-wrapper--self-padded-tablet-down,
.title-wrapper--self-padded-mobile {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media screen and (min-width: 750px) {
  .title-wrapper--self-padded-mobile {
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 990px) {
  .title,
  .title-wrapper-with-link {
    margin: 5rem 0 3rem;
  }

  .title--primary {
    margin: 2rem 0;
  }

  .title-wrapper-with-link {
    align-items: center;
  }

  .title-wrapper-with-link .title {
    margin-bottom: 0;
  }

  .title-wrapper--self-padded-tablet-down {
    padding-left: 0;
    padding-right: 0;
  }
}

.title-wrapper-with-link .link-with-icon {
  margin: 0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.title-wrapper-with-link .link-with-icon svg {
  width: 1.5rem;
}

.title-wrapper-with-link a {
  color: rgb(var(--color-link));
  margin-top: 0;
  flex-shrink: 0;
}

@media screen and (min-width: 990px) {
  .title-wrapper-with-link.title-wrapper-with-link--no-heading {
    display: none;
  }
}

.subtitle {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: 0.05rem;
  color: rgba(var(--color-foreground), 0.7);
}

/* component-grid */
.grid {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  margin-left: -1rem;
  padding: 0;
  list-style: none;
}

@media screen and (min-width: 750px) {
  .grid {
    margin-left: -3rem;
  }
}

.grid__item {
  padding-left: 1rem;
  padding-bottom: 1rem;
  width: calc(25% - 1rem * 3 / 4);
  max-width: 50%;
  flex-grow: 1;
  flex-shrink: 0;
}

.slider--tablet.grid--peek .grid__item.slider__slide,
.grid__item.slider__slide{
  margin-top: 2rem;
}

@media screen and (min-width: 750px) {
  .grid__item {
    padding-left: 3rem;
    padding-bottom: 3rem;
    width: calc(25% - 3rem * 3 / 4);
    max-width: 50%;
  }
}

.grid--gapless .grid__item {
  padding-left: 0;
  padding-bottom: 0;
}

@media screen and (max-width: 749px) {
  .grid__item.slider__slide--full-width {
    width: 100%;
    max-width: none;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .grid--one-third-max.grid--3-col-tablet .grid__item {
    max-width: 33.33%;
  }
}

@media screen and (min-width: 990px) {
  .grid--quarter-max.grid--5-col-desktop .grid__item {
    max-width: 20%;
  }
  
  .grid--quarter-max.grid--4-col-desktop .grid__item {
    max-width: 25%;
  }
}

.grid--1-col .grid__item {
  max-width: 100%;
  width: 100%;
}

.grid--3-col .grid__item {
  width: calc(33.33% - 0.5rem * 2 / 3);
}

@media screen and (min-width: 750px) {
  .grid--3-col .grid__item {
    width: calc(33.33% - 1rem * 2 / 3);
  }
}

.grid--2-col .grid__item {
  width: calc(50% - 0.5rem / 2);
}

@media screen and (min-width: 750px) {
  .grid--2-col .grid__item {
    width: calc(50% - 1rem / 2);
  }

  .grid--4-col-tablet .grid__item {
    width: calc(25% - 1rem * 3 / 4);
  }

  .grid--3-col-tablet .grid__item {
    width: calc(33.33% - 1rem * 2 / 3);
  }

  .grid--2-col-tablet .grid__item {
    width: calc(50% - 1rem / 2);
  }
}

@media screen and (min-width: 990px) {
  .grid--5-col-desktop .grid__item {
    width: calc(20% - 1rem * 3 / 4);
  }

  .grid--4-col-desktop .grid__item {
    width: calc(25% - 1rem * 3 / 4);
  }

  .grid--3-col-desktop .grid__item {
    width: calc(33.33% - 1rem * 2 / 3);
  }

  .grid--2-col-desktop .grid__item {
    width: calc(50% - 1rem / 2);
  }

  .grid--1-col-desktop .grid__item {
    width: 100%;
  }
}

.grid__item--vertical-align {
  align-self: center;
}

.grid__item--full-width {
  flex: 0 0 100%;
  max-width: 100%;
}

@media screen and (max-width: 749px) {
  .grid--peek.slider--mobile {
    margin: 0;
    width: 100%;
  }

  .grid--peek.slider--mobile .grid__item {
    box-sizing: content-box;
    margin: 0;
  }

  .grid--peek .grid__item {
    width: calc(50% - 3.75rem / 2);
  }

  .grid--peek .grid__item:first-of-type {
    padding-left: 1.5rem;
  }

  .grid--peek .grid__item:last-of-type {
    padding-right: 1.5rem;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .slider--tablet.grid--peek .grid__item {
    width: calc(25% - 4rem * 3 / 4);
  }

  .slider--tablet.grid--peek.grid--3-col-tablet .grid__item {
    width: calc(33.33% - 4rem * 2 / 3);
  }

  .slider--tablet.grid--peek.grid--2-col-tablet .grid__item {
    width: calc(50% - 4rem / 2);
  }

  .slider--tablet.grid--peek .grid__item:first-of-type {
    padding-left: 1.5rem;
  }

  .slider--tablet.grid--peek .grid__item:last-of-type {
    padding-right: 1.5rem;
  }
}

@media screen and (max-width: 989px) {
  .slider--tablet.grid--peek {
    margin: 0;
    width: 100%;
  }

  .slider--tablet.grid--peek .grid__item {
    box-sizing: content-box;
    margin: 0;
  }
}

/* component-media */
.media {
  display: block;
  background-color: rgba(var(--color-foreground), 0.1);
  position: relative;
  overflow: hidden;
}

.media--transparent {
  background-color: transparent;
}

.media > *:not(.zoom, .deferred-media__poster-button),
.media model-viewer {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}

.media > img {
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.media--square {
  padding-bottom: 100%;
}

.media--portrait {
  padding-bottom: 125%;
}

.media--landscape {
  padding-bottom: 66.6%;
}

.media--cropped {
  padding-bottom: 56%;
}

.media--16-9 {
  padding-bottom: 56.25%;
}

.media--circle {
  padding-bottom: 100%;
  border-radius: 50%;
}

.product-card-wrapper .card--product .media.media--circle > img ,
.media--circle > img {
  border-radius: 50%;
}

.media.media--hover-effect > img + img {
  opacity: 0;
}

@media screen and (min-width: 990px) {
  .media--cropped {
    padding-bottom: 63%;
  }
}

deferred-media {
  display: block;
}

/* component-button */
/* Button - default */

.button,
.btn,
.challenge__button,
.customer button {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font: inherit;
  padding: 0.9rem 3rem 1.1rem;
  text-decoration: none;
  border: 0;
  border-radius: 4rem;
  background-color: rgba(var(--color-button), var(--alpha-button-background));
  box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border));
  color: rgb(var(--color-button-text));
  min-width: 12rem;
  min-height: 4rem;
  transition: box-shadow var(--duration-short) ease;
  -webkit-appearance: none;
  appearance: none;
}

a{
  color: rgba(var(--color-button), var(--alpha-button-background));
}

.button:focus-visible {
  box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)),
    0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.button:focus {
  box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)),
    0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}

.button:focus:not(:focus-visible) {
  box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border));
}

.button,
.btn,
.button-label,
.challenge__button,
.customer button {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: 1.2;
}

.button--tertiary {
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  min-width: 9rem;
  min-height: 3.5rem;
}

.button--small {
  padding: 1.2rem 2.6rem;
  min-width: 10rem;
  min-height: unset;
}

/* Button - hover */

.button:not([disabled]):hover,
.challenge__button:hover,
.customer button:hover {
  box-shadow: 0 0 0 0.2rem rgba(var(--color-button), var(--alpha-button-border));
}

/* Button - other */

.button:disabled,
.button[aria-disabled='true'],
.button.disabled,
.customer button:disabled,
.customer button[aria-disabled='true'],
.customer button.disabled {
  cursor: not-allowed;
  opacity: 0.5;
}

.button--full-width {
  display: flex;
  width: 100%;
}

.btn.loading,
.btn.btn--loading,
.button.loading {
  color: transparent;
  pointer-events: none;
}

.btn.loading:after,
.btn.btn--loading:after,
.button.loading:after {
  animation: loading var(--duration-long) infinite linear;
  border: 0.5rem solid rgba(var(--color-button-text), 0.4);
  border-left: 0.5rem solid rgb(var(--color-button-text));
  border-radius: 100%;
  box-sizing: content-box;
  content: '';
  display: block;
  height: 2rem;
  position: absolute;
  width: 2rem;
}

@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Button - social share */

.share-button {
  display: block;
  position: relative;
}

.share-button details {
  width: fit-content;
}

.share-button__button {
  font-size: 1.4rem;
  display: flex;
  min-height: 2.4rem;
  align-items: center;
  color: rgba(var(--color-link), var(--alpha-link));
  margin-left: 0;
  padding-left: 0;
}

.share-button_copy-wrapper{
  display: flex;
  width: 100%;
  background: rgba(0,0,0,0.05);
  margin: 5px;
}

.social-sharing-icons {
  margin: 8px 8px 0;
}

.social-sharing-icons .sharing-icons-label{
  line-height: 1;
  margin-bottom: 8px;
  text-align: left;
}

.social-sharing-icons .share-icon-button{
  text-decoration: none;
  color: var(--color-base-text);
  margin: 0 5px;
}

.social-sharing-icons .share-icon-button svg{
  width: 2.5rem;
  height: 2.5rem;
}

.share-button__button:hover,
details[open] > .share-button__button {
  color: rgb(var(--color-link));
}

details[open] > .share-button__fallback {
  animation: animateMenuOpen var(--duration-default) ease;
}

.share-button__button:hover {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.share-button__button,
.share-button__fallback button {
  cursor: pointer;
  background-color: transparent;
  border: none;
}

.share-button__button .icon-share {
  margin-right: 1rem;
}

.share-button__fallback {
  background: rgb(var(--color-background));
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: absolute;
  top: 3rem;
  left: 0.1rem;
  z-index: 6;
  width: 100%;
  min-width: 31rem;
  max-width: 50rem;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.55);
}

.share-button__fallback button {
  width: 4.4rem;
  height: 4.4rem;
  padding: 0;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.share-button__fallback button:hover {
  color: rgba(var(--color-foreground), 0.75);
}

.share-button__fallback button:hover svg {
  transform: scale(1.07);
}

.share-button__close:not(.hidden) + .share-button__copy {
  display: none;
}

.share-button__close,
.share-button__copy {
  background-color: transparent;
  color: rgb(var(--color-foreground));
}

.share-button__fallback .field__input {
  box-shadow: none;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}

.share-button__fallback .icon {
  width: 1.5rem;
  height: 1.5rem;
}

.share-button__message:not(:empty) {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: 0;
  padding: 0.8rem 0 0.8rem 1.5rem;
}

.share-button__message:not(:empty):not(.hidden) ~ * {
  display: none;
}

/* component-form */
.field__input,
.select__select,
.customer .field input,
.customer select {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 3.5rem;
  color: rgb(var(--color-foreground));
  font-size: 1.5rem;
  width: 100%;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 1), inset 0 2px 3px rgba(0,0,0,0.05);
  height: 4rem;
  box-sizing: border-box;
  transition: box-shadow var(--duration-short) ease;
}

.field__input.no-float-label{
  padding: 1.2rem 2rem !important;
}

.field__input:disabled,
.select__select:disabled,
.customer .field input:disabled,
.customer select:disabled {
  color: rgba(var(--color-foreground),0.6);
  background: rgba(0,0,0,0.06);
}

textarea{
  display: block;
  width: 100%;
  min-height: 100px;
  -webkit-appearance: none;
  appearance: none;
  resize: none;
  background-color: transparent;
  border: 0;
  border-radius: 10px;
  color: rgb(var(--color-foreground));
  font-size: 1.6rem;
  width: 100%;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.55);
  min-height: 4.5rem;
  box-sizing: border-box;
  transition: box-shadow var(--duration-short) ease;
  padding: 1.5rem;
}

.select__select {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  font-size: 1.2rem;
  color: rgba(var(--color-foreground), 0.75);
}

.field__input:hover,
.select__select:hover,
.customer .field input:hover,
.customer select:hover,
.localization-form__select:hover {
  box-shadow: 0 0 0 0.2rem rgba(var(--color-foreground), 0.55);
}

.field__input:focus,
.select__select:focus,
.customer .field input:focus,
.customer select:focus,
.localization-form__select:focus {
  box-shadow: 0 0 0 0.2rem rgba(var(--color-foreground), 0.75);
  outline: transparent;
}

.text-area,
.select {
  display: inline-block;
  position: relative;
  width: 100%;
}

/* Select */

.select .icon-caret,
.customer select + svg {
  height: 0.6rem;
  pointer-events: none;
  position: absolute;
  top: calc(50% - 0.2rem);
  right: 1.5rem;
}

.select__select,
.customer select {
  cursor: pointer;
  line-height: 1.6;
  padding: 0 4rem 0 2rem;
}

/* Field */

.field {
  position: relative;
  width: 100%;
  display: flex;
}

.field-group .field__input:first-child{
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.field-group .button:last-child{
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.customer .field {
  display: block;
}

.field--with-error {
  flex-wrap: wrap;
}

.field__input,
.customer .field input {
  flex-grow: 1;
  text-align: left;
  padding: 1.2rem 2rem;
}

.field__label,
.customer .field label {
  font-size: 1.5rem;
  left: 2rem;
  top: 1rem;
  margin-bottom: 0;
  pointer-events: none;
  position: absolute;
  transition: top var(--duration-short) ease,
    font-size var(--duration-short) ease;
  color: rgba(var(--color-foreground), 0.55);
  letter-spacing: 0.1rem;
  line-height: 1.5;
}

.field__input:focus ~ .field__label,
.field__input:not(:placeholder-shown) ~ .field__label,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:focus ~ label,
.customer .field input:not(:placeholder-shown) ~ label,
.customer .field input:-webkit-autofill ~ label ,
.customer .field.on_focus label,
.field__input.on_focus ~ .field__label {
  font-size: 0.9rem;
  top: 0.3em;
  letter-spacing: 0.04rem;
}

.customer .field.on_focus select{
  padding-top: 1.4rem;
}

.field__input:focus,
.field__input:not(:placeholder-shown),
.field__input:-webkit-autofill,
.customer .field input:focus,
.customer .field input:not(:placeholder-shown),
.customer .field input:-webkit-autofill {
  padding: 2.2rem 2rem 0.8rem;
}

.field__input::-webkit-search-cancel-button,
.customer .field input::-webkit-search-cancel-button {
  display: none;
}

.field__input::placeholder,
.customer .field input::placeholder {
  opacity: 0;
}

.field__button {
  align-items: center;
  background-color: transparent;
  border: 0;
  color: currentColor;
  cursor: pointer;
  display: flex;
  height: 3.9rem;
  justify-content: center;
  overflow: hidden;
  padding: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 6.4rem;
}

.field__button > svg {
  height: 2.2rem;
  width: 2.2rem;
}

.field__input:-webkit-autofill ~ .field__button,
.field__input:-webkit-autofill ~ .field__label,
.customer .field input:-webkit-autofill ~ label {
  color: rgb(0, 0, 0);
}

/* Text area */

.text-area {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  padding: 1.2rem;
  min-height: 10rem;
  resize: none;
}

.text-area--resize-vertical {
  resize: vertical;
}

input[type='checkbox'] {
  display: inline-block;
  width: auto;
  margin-right: 0.5rem;
}

/* Form global */

.form__label {
  display: block;
  width: 100%;
  margin-bottom: 0.6rem;
}

.form__message {
  align-items: center;
  display: flex;
  font-size: 1.4rem;
  line-height: 1;
  margin-top: 1rem;
}

.form__message--large {
  font-size: 1.5rem;
}

.customer .field .form__message {
  font-size: 1.4rem;
  text-align: left;
}

.form__message .icon,
.customer .form__message svg {
  flex-shrink: 0;
  height: 1.3rem;
  margin-right: 0.5rem;
  width: 1.3rem;
}

.form__message--large .icon,
.customer .form__message svg {
  height: 1.5rem;
  width: 1.5rem;
  margin-right: 1rem;
}

.customer .field .form__message svg {
  align-self: start;
}

.form-status {
  margin: 0;
  font-size: 1.5rem;
}

.form-status-list {
  padding: 0;
  margin: 2rem 0 4rem;
}

.form-status-list li {
  list-style-position: inside;
}

.form-status-list .link::first-letter {
  text-transform: capitalize;
}

/* component-quantity */
.quantity {
  border: 0.1rem solid rgba(var(--color-base-text), 0.08);
  border-radius: 4em;
  position: relative;
  height: 4.4rem;
  width: 14rem;
  display: flex;
}

.quantity__input {
  color: currentColor;
  font-size: 1.4rem;
  font-weight: 500;
  opacity: 0.85;
  text-align: center;
  background-color: transparent;
  border: 0;
  padding: 0 0.5rem;
  width: 100%;
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
}

.quantity__input:disabled {
  color: rgba(var(--color-foreground),0.6);
  background: rgba(0,0,0,0.06);
}

.quantity__button {
  min-height: 4.4rem;
  min-width: 4.4rem;
  width: 4.4rem;
  flex-shrink: 0;
  font-size: 1.8rem;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
  padding: 0;
}

.quantity__button svg {
  width: 1rem;
  pointer-events: none;
}

.quantity__input:-webkit-autofill,
.quantity__input:-webkit-autofill:hover,
.quantity__input:-webkit-autofill:active {
  box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
  -webkit-box-shadow: 0 0 0 10rem rgb(var(--color-background)) inset !important;
}

.quantity__input::-webkit-outer-spin-button,
.quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.quantity__input[type='number'] {
  -moz-appearance: textfield;
}

/* component-modal */
.modal__toggle {
  list-style-type: none;
}

.no-js details[open] .modal__toggle {
  position: absolute;
  z-index: 2;
}

.modal__toggle-close {
  display: none;
}

.no-js details[open] svg.modal__toggle-close {
  display: flex;
  z-index: 1;
  height: 1.7rem;
  width: 1.7rem;
}

.modal__toggle-open {
  display: flex;
}

.no-js details[open] .modal__toggle-open {
  display: none;
}

.no-js .modal__close-button.link {
  display: none;
}

.modal__close-button.link {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0rem;
  height: 4.4rem;
  width: 4.4rem;
  background-color: transparent;
}

.modal__close-button .icon {
  width: 1.7rem;
  height: 1.7rem;
}

.modal__content {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgb(var(--color-background));
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.media-modal {
  cursor: zoom-out;
}

.media-modal .deferred-media {
  cursor: initial;
}

/* component-cart-count-bubble */
.cart-count-bubble:empty {
  display: none;
}

.cart-count-bubble {
  position: absolute;
  background-color: rgb(var(--color-button));
  color: rgb(var(--color-button-text));
  height: 1.7rem;
  min-width: 1.7rem;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.9rem;
  top: 0.5rem;
  right: 0.5rem;
  line-height: 1.1;
}

/* section-announcement-bar */
#section-announcement-bar {
  z-index: 4;
}

.announcement-bar {
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  color: rgb(var(--color-foreground));
}

.announcement-bar__link {
  display: block;
  width: 100%;
  padding: 1rem 2rem;
  text-decoration: none;
}

.announcement-bar__link:hover {
  color: rgb(var(--color-foreground));
  background-color: rgba(var(--color-card-hover), 0.06);
}

.announcement-bar__link .icon-arrow {
  display: inline-block;
  pointer-events: none;
  margin-left: 0.8rem;
  vertical-align: middle;
  margin-bottom: 0.2rem;
}

.announcement-bar__link .announcement-bar__message {
  padding: 0;
}

.announcement-bar__message {
  text-align: center;
  padding: 1rem 2rem;
  margin: 0;
  letter-spacing: 0.1rem;
}

/* section-header */

/* section-header */
#easystore-section-header {
  z-index: 10;
}

.easystore-section-header-sticky {
  position: sticky;
  top: 0;
}

.easystore-section-header-hidden {
  transform: translateY(-100%);
}

#easystore-section-header.animate {
  transition: transform 0.15s ease-out;
}

/* Main Header Layout */
.header-wrapper {
  display: block;
  position: relative;
  background-color: rgb(var(--color-background));
  z-index: 3;
}

.section-header-sticky {
  position: sticky;
  top: 0;
}

.header-wrapper--border-bottom {
/*   border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08); */
}

.header {
  display: grid;
  grid-template-areas: 
    'left-icon heading icons'
    'search search search';
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.header .search-modal__form{
  width: 100%;
  max-width: 100%;
}

@media screen and (min-width: 990px) {
  .header {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .header--top-left {
    grid-template-areas:
      'heading search icons'
      'navigation navigation navigation';
    grid-template-columns: 1fr auto;
  }

  .header--middle-left {
    grid-template-areas: 
      'heading search icons'
      'navigation navigation navigation';
    grid-template-columns: auto 1fr auto;
    column-gap: 2rem;
  }

  .header--top-center {
    grid-template-areas:
      'navigation heading icons';
  }

  .header--middle-left .header__inline-menu {
    min-width: 45rem;
  }

  .header:not(.header--middle-left) .header__inline-menu {
/*     margin-top: 1.05rem; */
  }

  .header .search-modal__form{
    max-width: 45rem;
  }
}

.header *[tabindex='-1']:focus {
  outline: none;
}

.header__heading {
  margin: 0;
  line-height: 0;
}

.header > .header__heading-link {
  line-height: 0;
}

.header__heading,
.header__heading-link {
  grid-area: heading;
  justify-self: center;
}

.header__heading-link {
  display: inline-block;
  padding: 0.2rem;
  text-decoration: none;
  word-break: break-word;
}

.header__heading-link:hover .h2 {
  color: rgb(var(--color-foreground));
}

.header__heading-link .h2 {
  line-height: 1;
  color: rgba(var(--color-foreground), 0.75);
}

.header__heading-logo {
  height: auto;
  width: var(--logo-width);
  max-width: 100%;
}

@media screen and (min-width: 990px) {
  .header__heading-link {
    margin-left: -0.75rem;
  }

  .header__heading,
  .header__heading-link {
    justify-self: start;
  }

  .header--top-center .header__heading-link,
  .header--top-center .header__heading {
    justify-self: center;
  }
}

/* Header icons */
.header__icons {
  display: flex;
  grid-area: icons;
  justify-self: end;
}

.header__icon:not(.header__icon--summary),
.header__icon span {
  display: flex;
  align-items: center;
  justify-content: center;
}

.header__icon span {
  height: 100%;
}

.header__icon::after {
  content: none;
}

.header__icon:hover .icon,
.modal__close-button:hover .icon {
  transform: scale(1.07);
}

.header__icon .icon {
  height: 2rem;
  width: 2rem;
  fill: none;
  vertical-align: middle;
}

.header__icon, 
.header__icon--menu, 
.header__icon--cart .icon{
  height: 4.4rem;
  width: 4.4rem;
}

.header__icons .header__icon{
  text-decoration: none;
}

.header__link-label{
  margin-left: 1rem;
  text-decoration: none;
}

.header__icon--cart {
  position: relative;
}

@media screen and (max-width: 989px) {
  menu-drawer ~ .header__icons .header__icon--account {
    display: none;
  }
  .header__icon{
    height: 4.4rem;
    width: 4.4rem;
  }
  .header__icons .header__icon{
    margin-left: 0;
    margin-right: -1.2rem;
  }
  .cart-count-bubble{
    top: 0.5rem;
  }
}

/* Search */
menu-drawer + .header__search {
  display: none;
}

.header > .header__left-icon {
  grid-area: left-icon;
  display: flex;
  justify-self: start;
}

.header:not(.header--has-menu) * > .header__search {
  display: none;
}

.header__search {
  display: inline-flex;
  line-height: 0;
}

.header--top-center > .header__search {
  display: none;
}

.header--top-center * > .header__search {
  display: inline-flex;
}

@media screen and (min-width: 990px) {
  .header:not(.header--top-center) * > .header__search,
  .header--top-center > .header__search {
    display: inline-flex;
  }

  .header:not(.header--top-center) > .header__search,
  .header--top-center * > .header__search {
    /* display: none; */
  }
}

.no-js .predictive-search {
  display: none;
}

details[open] > .search-modal {
  opacity: 1;
  animation: animateMenuOpen var(--duration-default) ease;
}

details[open] .modal-overlay {
  display: block;
}

details[open] .modal-overlay::after {
  position: absolute;
  content: '';
  background-color: rgb(var(--color-foreground), 0.5);
  top: 100%;
  left: 0;
  right: 0;
  height: 100vh;
}

.no-js details[open] > .header__icon--search {
  top: 1rem;
  right: 0.5rem;
}

.search-modal {
  opacity: 0;
  border-bottom: 0.1rem solid rgba(var(--color-foreground), 0.08);
  height: 100%;
}

.search-modal__content {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0 5rem 0 1rem;
  line-height: 1.8;
}

.search-modal__form {
  width: 100%;
}

.search-modal__close-button {
  position: absolute;
  right: 0.3rem;
}

@media screen and (min-width: 750px) {
  .search-modal__close-button {
    right: 1rem;
  }

  .search-modal__content {
    padding: 0 6rem;
  }
}

@media screen and (min-width: 990px) {
  .search-modal__form {
    max-width: 47.8rem;
  }

  .search-modal__close-button {
    position: initial;
    margin-left: 0.5rem;
  }
}

/* Header menu drawer */
.header__icon--menu .icon {
  display: block;
  position: absolute;
  opacity: 1;
  transform: scale(1);
  transition: transform 150ms ease, opacity 150ms ease;
}

details:not([open]) > .header__icon--menu .icon-close,
details[open] > .header__icon--menu .icon-hamburger {
  visibility: hidden;
  opacity: 0;
  transform: scale(0.8);
}

.js details[open]:not(.menu-opening) > .header__icon--menu .icon-close {
  visibility: hidden;
}

.js details[open]:not(.menu-opening) > .header__icon--menu .icon-hamburger {
  visibility: visible;
  opacity: 1;
  transform: scale(1.07);
}

.header__inline-menu details[open] > .header__submenu {
  opacity: 1;
  transform: translateY(0);
  animation: animateMenuOpen var(--duration-default) ease;
}

/* Header menu */
.header__inline-menu {
  margin-left: -1.2rem;
  grid-area: navigation;
  display: none;
}

.header__search-input {
  grid-area: search;
}

.header--top-center .header__inline-menu,
.header--top-center .header__heading-link {
  margin-left: 0;
}

@media screen and (min-width: 990px) {
  .header__inline-menu {
    display: block;
    margin: 0.5rem 0;
  }

  .header--top-center .header__inline-menu {
    justify-self: left;
  }

  .header--top-center .header__inline-menu > .list-menu--inline {
    justify-content: center;
  }

  .header--middle-left .header__inline-menu {
    margin-left: 0;
  }
}

.header__menu {
  padding: 0 1rem;
}

.header__menu-item {
  padding: 1.2rem;
  text-decoration: none;
  color: rgba(var(--color-foreground), 0.75);
}

.header__menu-item a {
  color: currentColor;
  text-decoration: none;
}

.header__menu-item:hover {
  color: rgb(var(--color-foreground));
}

.header__menu-item span {
  transition: text-decoration var(--duration-short) ease;
}

.header__menu-item:hover span {
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.header__active-menu-item {
  transition: text-decoration-thickness var(--duration-short) ease;
  color: rgb(var(--color-foreground));
  text-decoration: underline;
  text-underline-offset: 0.3rem;
}

.header__menu-item:hover .header__active-menu-item {
  text-decoration-thickness: 0.2rem;
}

.header__submenu {
  transition: opacity var(--duration-default) ease,
    transform var(--duration-default) ease;
}

.header__submenu.list-menu {
  padding: 2rem 0;
}

.header__submenu .header__submenu {
  position: absolute;
  top: calc(-0.5rem - 1px);
  left: 100%;
  width: 100%;
  padding: 0.5rem 0;
}

.header__submenu .header__menu-item:after {
  right: 2rem;
}

.header__submenu .header__menu-item {
  padding: 0.95rem 3.5rem 0.95rem 2rem;
}

.header__submenu .header__submenu .header__menu-item {
  padding-left: 3rem;
}

.header__menu-item .icon-caret {
  right: 0.8rem;
}

.header__submenu .icon-caret {
  right: 2rem;
}

details-disclosure > details {
  position: relative;
}

@keyframes animateMenuOpen {
  0% {
    opacity: 0;
    transform: translateY(-1.5rem);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.overflow-hidden-mobile,
.overflow-hidden-tablet {
  overflow: hidden;
}

@media screen and (min-width: 750px) {
  .overflow-hidden-mobile {
    overflow: auto;
  }
}

@media screen and (min-width: 990px) {
  .overflow-hidden-tablet {
    overflow: auto;
  }
}

.badge {
  border-radius: 5px;
  display: inline-block;
  font-size: 1.4rem;
  letter-spacing: 0.1rem;
  line-height: 1;
  padding: 0.6rem 1.3rem;
  text-align: center;
  background-color: rgb(var(--color-badge-background));
  border-color: rgba(var(--color-badge-border), var(--alpha-badge-border));
  color: rgb(var(--color-foreground));
  word-break: break-word;
  box-sizing: content-box;
  box-shadow: 0 6px 15px rgba(0,0,0,0.2);
}

.badge.addToClassList{
  background-color: rgba(var(--color-button), var(--alpha-button-background));
  border-color: none;
  color: rgb(var(--color-button-text));
}

.badge.badge-ribbon {
  text-orientation: mixed;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  padding: 1rem 0.7rem;
  position: relative;
  border: none;
  border-radius: 0;
}

.badge.badge-ribbon::after{
  border-color: rgb(var(--color-badge-background)) rgb(var(--color-badge-background)) transparent;
  border-radius: 3px;
  border-style: solid;
  border-width: 5px 1em;
  bottom: -8px;
  content: "";
  height: 0;
  left: 0;
  right: 0;
  position: absolute;
}

.badge.badge-circle {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.6rem;
  width: 2.5em;
  height: 2.5em;
  border-radius: 3em;
  box-shadow: 0px 0px 10px -2px rgba(0,0,0,0.1);
}

.badge.badge-circle .icon {
  width: 1.3em;
  height: 1.3em;
}

@media screen and (max-width: 749px) {
  .badge.badge-circle {
    width: 1.6em;
    height: 1.6em;
  }
}

.gradient {
  background: var(--color-background);
  background: var(--gradient-background);
  background-attachment: fixed;
}

.select:before, .select:after {
  border-right: 2px solid;
  content: '';
  display: block;
  height: 0.7rem;
  position: absolute;
  transform: rotate(45deg);
  top: calc(50% - 0.3rem);
  right: 1.6rem;
  width: 0;
  border-radius: 1rem;
}

.select:after {
  transform: rotate(-45deg);
  right: 2rem;
}

.text-right{
  text-align: right;
}

.text-left{
  text-align: left;
}

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

.splide {
  position: relative;
}

.splide .splide__arrow{
  background: rgba(var(--color-button), 0.9);
  width: 3em;
  height: 3em;
}
.splide .splide__arrow svg{
  fill: rgb(var(--color-button-text));
}

.splide .splide__arrow:disabled{
  display: none !important;
}

.splide .splide__pagination__page.is-active{
  background: rgba(var(--color-button), 0.7);
  transform: scale(1.3);
  border: none;
  box-shadow: none;
}

.splide .splide__pagination__page{
  background-color: #fff;
  box-shadow: 0 0 1px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}

.splide_pagination-bottom{
  margin-bottom: 10rem;
}
.splide_pagination-bottom .splide__pagination{
  bottom: -4rem;
}

.splide-index-count{
  position: absolute;
  bottom: 20px;
  right: 20px;
  line-height: 1;
  color: #fff;
  background: rgba(0,0,0,0.5);
  padding: 5px 8px;
  border-radius: 50px;
  letter-spacing: 3px;
  font-size: 12px;
}


@media screen and (max-width: 749px) {
  .splide .splide__arrow {
    display: none;
  }
}

.d-flex{
  display: flex;
}

.flex-wrap{
  flex-wrap: wrap;
}

.flex-justify-center{
  justify-content: center;
}

.flex-space-between{
  justify-content: space-between;
}

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

.flex-shrink-0{
  flex-shrink: 0;
}

.rotate-90{
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

select.currency-picker{
  height: 3.5rem;
}

.note {
  margin: 1.5rem 0;
  padding: 1rem 1.5rem;
  background: rgba(0,0,0,0.05);
}

.note.form-success {
  background: rgba(145, 245, 150 ,0.3);
}

.note.errors {
  background: rgba(245, 185, 145, 0.3);
  padding-left: 3rem;
}

.svg-icon {
  width: 1.2em;
  height: 1.4em;
  vertical-align: middle;
  fill: currentcolor;
  margin-top: -0.2em;
}

.collection .title-wrapper-with-link--no-heading{
  justify-content: flex-end;
}

img{
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}

.table-wrapper{
	overflow: auto;
}

.table-wrapper table{
    min-width: 100%;
    width: auto !important;
}

.justify-center{
	justify-content: center;
}

/* ==== Flex table ==== */
.flex-table{
	border: 0.01rem solid rgba(var(--color-foreground), 0.08);
	display:flex;
	flex-direction: column;
}

.flex-table-tr{
	padding: 2.2rem;
}

.flex-table-tr:not(:last-child){
	border-bottom: 0.01rem solid rgba(var(--color-foreground), 0.08);
}

.bbh-site-shell,
.bbh-site-footer {
  --bbh-shell-paper: #fffdf9;
  --bbh-shell-ink: #2a211f;
  --bbh-shell-muted: #746965;
  --bbh-shell-wine: #6f2941;
  --bbh-shell-wine-deep: #351923;
  --bbh-shell-champagne: #d9c5a7;
  --bbh-shell-bronze: #a47c46;
  --bbh-shell-line: rgba(72, 48, 43, 0.15);
  --bbh-shell-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --bbh-shell-sans: "DM Sans", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  box-sizing: border-box;
  font-family: var(--bbh-shell-sans);
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.5;
}

.bbh-site-shell *,
.bbh-site-shell *::before,
.bbh-site-shell *::after,
.bbh-site-footer *,
.bbh-site-footer *::before,
.bbh-site-footer *::after {
  box-sizing: border-box;
}

.bbh-preview-note {
  align-items: center;
  background: var(--bbh-shell-ink);
  color: rgba(255, 253, 249, 0.72);
  display: flex;
  font-size: 11px;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 29px;
  padding: 6px 18px;
  text-align: center;
}

.bbh-preview-note[hidden] {
  display: none;
}

.bbh-preview-note strong {
  color: var(--bbh-shell-paper);
  font-weight: 600;
}

.bbh-announcement {
  align-items: center;
  background: var(--bbh-shell-wine-deep);
  color: var(--bbh-shell-paper);
  display: flex;
  font-size: 12px;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 38px;
  padding: 8px 24px;
  position: relative;
}

.bbh-announcement p {
  margin: 0;
}

.bbh-announcement a {
  color: inherit;
  opacity: 0.66;
  position: absolute;
  right: 28px;
  text-decoration: none;
}

.bbh-site-header {
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--bbh-shell-line);
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(14px);
}

.bbh-site-header__inner {
  align-items: center;
  display: grid;
  grid-template-columns: auto 1fr auto;
  margin: 0 auto;
  max-width: 1360px;
  min-height: 76px;
  padding: 0 36px;
  position: relative;
}

.bbh-site-brand {
  display: inline-flex;
  flex-direction: column;
  justify-self: start;
  line-height: 1;
  text-decoration: none;
}

.bbh-site-brand > span,
.bbh-site-footer__brand > span {
  color: var(--bbh-shell-wine-deep);
  font-family: var(--bbh-shell-serif);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.bbh-site-brand small {
  color: var(--bbh-shell-muted);
  font-size: 7px;
  letter-spacing: 0.21em;
  margin-top: 5px;
}

.bbh-desktop-nav {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: center;
}

.bbh-desktop-nav a {
  color: var(--bbh-shell-ink);
  font-size: 14px;
  position: relative;
  text-decoration: none;
}

.bbh-desktop-nav a::after {
  background: var(--bbh-shell-wine);
  bottom: -8px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

.bbh-desktop-nav a:hover::after,
.bbh-desktop-nav a:focus-visible::after {
  transform: scaleX(1);
}

.bbh-header-actions {
  align-items: center;
  display: flex;
  gap: 4px;
  justify-self: end;
}

.bbh-icon-button {
  align-items: center;
  background: transparent;
  border: 0;
  color: var(--bbh-shell-ink);
  cursor: pointer;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  list-style: none;
  padding: 0;
  position: relative;
  text-decoration: none;
  width: 42px;
}

.bbh-icon-button::-webkit-details-marker {
  display: none;
}

.bbh-icon-button svg {
  fill: none;
  height: 21px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
  width: 21px;
}

.bbh-bag-count {
  align-items: center;
  background: var(--bbh-shell-wine);
  border-radius: 50%;
  color: var(--bbh-shell-paper);
  display: inline-flex;
  font-size: 9px;
  height: 17px;
  justify-content: center;
  position: absolute;
  right: 1px;
  top: 2px;
  width: 17px;
}

.bbh-mobile-menu {
  display: none;
}

.bbh-site-footer {
  background: var(--bbh-shell-ink);
  color: var(--bbh-shell-paper);
  padding: 78px max(48px, calc((100vw - 1264px) / 2)) 24px;
}

.bbh-site-footer__top {
  display: grid;
  gap: 50px;
  grid-template-columns: 1.8fr repeat(3, 0.6fr);
  margin: 0 auto;
  max-width: 1264px;
}

.bbh-site-footer__brand > span {
  color: var(--bbh-shell-paper);
  font-size: 40px;
}

.bbh-site-footer__brand p {
  color: rgba(255, 253, 249, 0.55);
  font-size: 12px;
  margin: 12px 0 0;
}

.bbh-site-footer nav {
  display: flex;
  flex-direction: column;
}

.bbh-site-footer nav h2 {
  color: var(--bbh-shell-paper);
  font-family: var(--bbh-shell-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: none;
}

.bbh-site-footer nav a {
  color: rgba(255, 253, 249, 0.62);
  font-size: 12px;
  margin-bottom: 10px;
  text-decoration: none;
}

.bbh-site-footer__bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.12);
  color: rgba(255, 253, 249, 0.42);
  display: flex;
  font-size: 9px;
  justify-content: space-between;
  margin: 65px auto 0;
  max-width: 1264px;
  padding-top: 22px;
}

.bbh-site-footer__bottom a {
  color: inherit;
  text-decoration: none;
}

.bbh-footer-preview-only {
  display: none;
}

html.bbh-is-theme-preview .bbh-footer-preview-only {
  display: inline;
}

html.bbh-is-theme-preview .bbh-footer-live-only {
  display: none;
}

body.overflow-hidden .novochat.easystore-chat-button,
body.overflow-hidden .easystore-chat-button,
body.overflow-hidden .easystore-widget-window,
body.overflow-hidden .novochat-iframe {
  opacity: 0 !important;
  pointer-events: none !important;
  visibility: hidden !important;
}

@media (max-width: 760px) {
  .bbh-preview-note {
    font-size: 9px;
  }

  .bbh-announcement {
    min-height: 35px;
  }

  .bbh-announcement a {
    display: none;
  }

  .bbh-site-header__inner {
    grid-template-columns: 48px 1fr auto;
    min-height: 66px;
    padding: 0 10px;
  }

  .bbh-mobile-menu {
    display: block;
  }

  .bbh-mobile-menu__panel {
    background: var(--bbh-shell-paper);
    border-top: 1px solid var(--bbh-shell-line);
    display: grid;
    left: 0;
    padding: 12px 20px 20px;
    position: absolute;
    right: 0;
    top: 100%;
    z-index: 40;
  }

  .bbh-mobile-menu:not([open]) .bbh-mobile-menu__panel {
    display: none;
  }

  .bbh-mobile-menu__panel a {
    border-bottom: 1px solid var(--bbh-shell-line);
    color: var(--bbh-shell-ink);
    font-family: var(--bbh-shell-serif);
    font-size: 23px;
    padding: 13px 2px;
    text-decoration: none;
  }

  .bbh-site-brand {
    justify-self: center;
  }

  .bbh-site-brand > span {
    font-size: 25px;
  }

  .bbh-site-brand small,
  .bbh-desktop-nav,
  .bbh-account-button {
    display: none;
  }

  .bbh-header-actions {
    gap: 0;
  }

  .bbh-header-actions .bbh-icon-button {
    height: 42px;
    width: 38px;
  }

  .bbh-site-footer {
    padding: 62px 20px 24px;
  }

  .bbh-site-footer__top {
    grid-template-columns: 1.2fr 1fr;
  }

  .bbh-site-footer__brand {
    grid-column: 1 / -1;
    margin-bottom: 12px;
  }

  .bbh-site-footer__brand > span {
    font-size: 36px;
  }

  .bbh-site-footer__top nav:last-child {
    grid-column: 1 / -1;
  }

  .bbh-site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bbh-site-shell *,
  .bbh-site-shell *::before,
  .bbh-site-shell *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* EasyStore renders My Vouchers as a platform app rather than a customer
   Liquid template. This route-only layer aligns its generated surface with the
   BellaBloom Account system without assuming or replacing platform actions. */
body:is(#vouchers, .bb-vouchers-route) #MainContent {
  --bb-customer-gold: #9a6a2f;
  --bb-customer-bronze: #5a3e24;
  --bb-customer-dark: #3a2a21;
  --bb-customer-ivory: #fffdf9;
  --bb-customer-soft: #fbf8f2;
  --bb-customer-champagne: #efe6d8;
  --bb-customer-ink: #2c2925;
  --bb-customer-muted: #716a61;
  --bb-customer-line: #d8ccbc;
  background: radial-gradient(circle at 13% 0, rgba(154, 106, 47, 0.11), transparent 26rem), var(--bb-customer-soft);
  color: var(--bb-customer-ink);
  padding: clamp(44px, 6vw, 72px) 20px clamp(60px, 8vw, 92px);
}

body:is(#vouchers, .bb-vouchers-route).bb-vouchers-shell-ready #MainContent {
  align-items: start;
  display: grid;
  gap: 24px;
  grid-template-areas:
    "voucher-header voucher-header"
    "voucher-sidebar voucher-main";
  grid-template-columns: 252px minmax(0, 964px);
  justify-content: center;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-header {
  align-items: end;
  display: grid;
  gap: 24px;
  grid-area: voucher-header;
  grid-template-columns: minmax(0, 1fr) auto;
  width: 100%;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-eyebrow {
  color: var(--bb-customer-gold);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  margin: 0 0 8px;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-header h1 {
  color: var(--bb-customer-bronze);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3.8rem, 4.2vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-intro {
  color: var(--bb-customer-muted);
  font-size: 1.45rem;
  line-height: 1.55;
  margin: 12px 0 0;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-overview {
  align-items: center;
  border: 1px solid rgba(154, 106, 47, 0.42);
  border-radius: 999px;
  color: var(--bb-customer-bronze);
  display: inline-flex;
  font-size: 1.25rem;
  font-weight: 650;
  gap: 8px;
  min-height: 44px;
  padding: 9px 17px;
  text-decoration: none;
  white-space: nowrap;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-overview:hover {
  background: var(--bb-customer-champagne);
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-sidebar {
  grid-area: voucher-sidebar;
  position: sticky;
  top: 132px;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-sidebar .account-navigation__list {
  background: var(--bb-customer-ivory);
  border: 1px solid var(--bb-customer-line);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin: 0;
  padding: 8px;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-sidebar .navigation-item {
  align-items: center;
  border: 0;
  border-radius: 10px;
  color: var(--bb-customer-ink);
  display: grid;
  gap: 11px;
  grid-template-columns: 24px minmax(0, 1fr) 16px;
  margin: 0;
  min-height: 48px;
  padding: 10px 11px;
  text-align: left;
  text-decoration: none;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-sidebar .navigation-item:hover {
  background: var(--bb-customer-soft);
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-sidebar .navigation-item.is-active {
  background: var(--bb-customer-bronze);
  color: var(--bb-customer-ivory);
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-sidebar :is(.navigation-icon, .chevron) {
  align-items: center;
  color: currentColor;
  display: flex;
  position: static;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-sidebar .navigation-icon svg {
  height: 20px;
  width: 20px;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-sidebar .navigation-title {
  color: currentColor;
  display: block;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.25;
  min-width: 0;
  overflow: visible;
  overflow-wrap: anywhere;
  -webkit-box-orient: initial;
  -webkit-line-clamp: unset;
  white-space: normal;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-sidebar .chevron {
  font-size: 1.8rem;
  justify-content: center;
  opacity: 0.48;
}

@media (min-width: 990px) {
  body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-sidebar {
    max-width: 252px;
    min-width: 252px;
    width: 252px;
  }

  body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-overview {
    display: none;
  }
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-root {
  background: var(--bb-customer-ivory);
  border: 1px solid var(--bb-customer-line);
  border-radius: 18px;
  box-shadow: 0 20px 54px rgba(58, 42, 33, 0.08);
  margin: 0 auto;
  max-width: 1240px;
  padding: clamp(28px, 5vw, 54px);
}

body:is(#vouchers, .bb-vouchers-route).bb-vouchers-shell-ready #MainContent .bb-customer-vouchers-root {
  grid-area: voucher-main;
  margin: 0;
  max-width: none;
  min-width: 0;
  width: 100%;
}

body:is(#vouchers, .bb-vouchers-route).bb-vouchers-shell-ready #MainContent :is(
  .bb-customer-vouchers-native-title,
  .bb-customer-vouchers-native-back
) {
  display: none !important;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-root h1,
body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-root > h2:first-of-type {
  color: var(--bb-customer-bronze);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 4.2vw, 5rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 0;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-root > a:first-of-type {
  align-items: center;
  display: inline-flex;
  min-height: 44px;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-root :is([role="tablist"], .nav-tabs, .tabs) {
  border-color: var(--bb-customer-line);
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-root :is([role="tab"], .nav-tabs a, .tabs a) {
  color: var(--bb-customer-muted);
  min-height: 44px;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-root :is([role="tab"][aria-selected="true"], .nav-tabs .active, .tabs .active) {
  color: var(--bb-customer-bronze);
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-root :is(.card, .card-box, [class*="voucher-card"], [class*="coupon-card"]) {
  background: var(--bb-customer-soft);
  border: 1px solid var(--bb-customer-line);
  border-radius: 14px;
  box-shadow: none;
}

body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-root :is(a, button):focus-visible {
  outline: 2px solid var(--bb-customer-gold);
  outline-offset: 3px;
}

@media (max-width: 989px) {
  body:is(#vouchers, .bb-vouchers-route).bb-vouchers-shell-ready #MainContent {
    display: block;
  }

  body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-header {
    margin: 0 auto 24px;
    max-width: 964px;
  }

  body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-sidebar {
    display: none;
  }

  body:is(#vouchers, .bb-vouchers-route).bb-vouchers-shell-ready #MainContent .bb-customer-vouchers-root {
    margin: 0 auto;
    max-width: 964px;
  }
}

@media (max-width: 749px) {
  body:is(#vouchers, .bb-vouchers-route) #MainContent {
    padding: 28px 12px 58px;
  }

  body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-root {
    border-radius: 14px;
    padding: 24px 18px;
  }

  body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-header {
    align-items: start;
    gap: 12px;
    grid-template-columns: minmax(0, 1fr) auto;
    margin-bottom: 20px;
  }

  body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-header h1 {
    font-size: 3.15rem;
    line-height: 1.02;
  }

  body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-intro {
    font-size: 1.25rem;
    line-height: 1.5;
    max-width: 28rem;
  }

  body:is(#vouchers, .bb-vouchers-route) #MainContent .bb-customer-vouchers-overview {
    align-self: start;
    font-size: 1.1rem;
    padding: 8px 11px;
  }
}


/* BellaBloom public route and component hardening — 2026-08-08 */
.bbc-product-card .bbc-product-card__information > .card-information__wrapper:first-child {
  display: flex;
  flex: 1;
  flex-direction: column;
  height: 100%;
  min-width: 0;
}

.bbc-product-card--numbered .bbc-product-card__title,
.bbc-product-card .bbc-product-card__title--numbered {
  min-height: 0;
}

.bbp-standard-page {
  margin: 0 auto;
  max-width: 960px;
}

.bbp-standard-page__header {
  border-bottom: 1px solid var(--bbp-line);
  margin-bottom: clamp(30px, 5vw, 48px);
  padding-bottom: clamp(24px, 4vw, 38px);
}

.bbp-standard-page__header .bbp-eyebrow {
  color: var(--bbp-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 14px;
}

.bbp-standard-page__header h1 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: clamp(46px, 7vw, 76px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.95;
  margin: 0;
}

.bbp-standard-page__content {
  max-width: 820px;
}

.bbp-standard-page__empty {
  background: linear-gradient(145deg, #fffdf9, #f5eee6);
  border: 1px solid var(--bbp-line);
  border-radius: 24px;
  margin: 0 auto;
  max-width: 820px;
  padding: clamp(28px, 5vw, 52px);
}

.bbp-standard-page__empty h2 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1;
  margin: 0 0 14px;
}

.bbp-standard-page__empty p {
  color: var(--bbp-muted);
  line-height: 1.7;
  margin: 0;
  max-width: 620px;
}

.bbp-button--outline {
  background: transparent;
  border-color: var(--bbp-line);
  color: var(--bbp-wine-deep);
}

.bbp-button--outline:hover {
  background: var(--bbp-cream);
  border-color: var(--bbp-gold);
}

.template-store-locator #MainContent {
  padding: 0;
}

.bbp-locator {
  background:
    radial-gradient(circle at 8% 8%, rgba(154, 106, 47, 0.1), transparent 25rem),
    var(--bbp-paper);
  color: var(--bbp-ink);
  font-family: var(--bbp-sans);
  padding: clamp(48px, 7vw, 88px) 24px clamp(72px, 9vw, 112px);
}

.bbp-locator,
.bbp-locator * {
  box-sizing: border-box;
}

.bbp-locator__inner {
  margin: 0 auto;
}

.bbp-locator__hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 253, 249, 0.13), transparent 18rem),
    linear-gradient(135deg, #3a2a21 0%, #5a3e24 64%, #76552d 100%);
  border-radius: 28px;
  color: var(--bbp-paper);
  padding: clamp(34px, 6vw, 72px);
}

.bbp-locator__hero .bbp-eyebrow {
  color: #d7b97c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 15px;
}

.bbp-locator__hero h1 {
  color: var(--bbp-paper);
  font-family: var(--bbp-serif);
  font-size: clamp(48px, 8vw, 86px);
  font-weight: 600;
  letter-spacing: -0.05em;
  line-height: 0.92;
  margin: 0;
  max-width: 760px;
}

.bbp-locator__hero > p:not(.bbp-eyebrow) {
  color: rgba(255, 253, 249, 0.78);
  font-size: 16px;
  line-height: 1.7;
  margin: 22px 0 28px;
  max-width: 650px;
}

.bbp-locator__locations {
  margin-top: clamp(48px, 7vw, 78px);
}

.bbp-locator__locations > header {
  margin-bottom: 28px;
}

.bbp-locator__locations > header .bbp-eyebrow {
  color: var(--bbp-gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  margin: 0 0 10px;
}

.bbp-locator__locations > header h2,
.bbp-locator__empty h2 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: clamp(36px, 6vw, 58px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
}

.bbp-locator__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.bbp-locator-card,
.bbp-locator__empty {
  background: #fffdf9;
  border: 1px solid var(--bbp-line);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(58, 42, 33, 0.07);
  height: 100%;
  padding: clamp(24px, 4vw, 36px);
}

.bbp-locator-card h3 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.05;
  margin: 0 0 18px;
}

.bbp-locator-card address {
  color: var(--bbp-muted);
  font-style: normal;
  line-height: 1.65;
  margin: 0;
}

.bbp-locator-card__contact {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 18px;
}

.bbp-locator-card__contact a,
.bbp-locator-card__directions {
  color: var(--bbp-wine-deep);
  font-weight: 650;
}

.bbp-locator-card__directions {
  display: inline-flex;
  gap: 7px;
  margin-top: 22px;
  text-decoration: none;
}

.bbp-locator__empty {
  margin-top: 44px;
}

.bbp-locator__empty p {
  color: var(--bbp-muted);
  line-height: 1.7;
}

.bbp-not-found .search-history-dropdown .dropdown-item {
  appearance: none;
  background: var(--bbp-paper);
  border: 0;
  color: var(--bbp-ink);
  cursor: pointer;
  display: block;
  font: inherit;
  padding: 11px 14px;
  text-align: left;
  width: 100%;
}

.bbp-not-found .search-history-dropdown .dropdown-item:hover,
.bbp-not-found .search-history-dropdown .dropdown-item:focus-visible {
  background: var(--bbp-cream);
}

@media (max-width: 749px) {
  .bbp-standard-page__header h1 {
    font-size: clamp(42px, 14vw, 60px);
  }

  .bbp-locator {
    padding-left: 16px;
    padding-right: 16px;
  }

  .bbp-locator__hero {
    border-radius: 22px;
  }

  .bbp-locator__grid {
    grid-template-columns: 1fr;
  }
}
/* BellaBloom legal pages: one consistent shell for every EasyStore policy route. */
.bbp-legal-page {
  background:
    radial-gradient(circle at 8% 6%, rgba(154, 106, 47, 0.1), transparent 25rem),
    #fffdf9;
  color: #2c2925;
  padding: clamp(44px, 6vw, 84px) 20px clamp(68px, 8vw, 112px);
}

.bbp-legal-page__inner {
  margin: 0 auto;
  max-width: 1180px;
}

.bbp-legal-page__header {
  max-width: 760px;
}

.bbp-legal-page__eyebrow {
  color: #76552d;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.4;
  margin: 0 0 12px;
  text-transform: uppercase;
}

.bbp-legal-page__header h1 {
  color: #3a2a21;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 6vw, 78px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}

.bbp-legal-page__header > p:last-child {
  color: #716a61;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  margin: 18px 0 0;
}

.bbp-legal-page__nav {
  border-bottom: 1px solid #d8ccbc;
  display: flex;
  gap: 8px;
  margin: clamp(30px, 4vw, 46px) 0 26px;
  overflow-x: auto;
  padding: 0 0 14px;
  scrollbar-width: thin;
}

.bbp-legal-page__nav a {
  border: 1px solid #d8ccbc;
  border-radius: 999px;
  color: #5a3e24;
  flex: 0 0 auto;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  padding: 12px 17px;
  text-decoration: none;
}

.bbp-legal-page__nav a[aria-current="page"],
.bbp-legal-page__nav a:hover {
  background: #efe6d8;
  border-color: #9a6a2f;
  color: #3a2a21;
}

.bbp-legal-page__nav a:focus-visible,
.bbp-legal-page__help a:focus-visible {
  outline: 3px solid #9a6a2f;
  outline-offset: 3px;
}

.bbp-legal-page__content {
  background: #fff;
  border: 1px solid #ded3c4;
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(58, 42, 33, 0.08);
  color: #5e5851;
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  padding: clamp(30px, 5vw, 64px);
}

.bbp-legal-page__content > :first-child,
.bbp-legal-page__content > :first-child > :first-child {
  margin-top: 0;
}

.bbp-legal-page__content > :last-child,
.bbp-legal-page__content > :last-child > :last-child {
  margin-bottom: 0;
}

.bbp-legal-page__content [data-bbp-legal-cms-title] {
  display: none;
}

.bbp-legal-page__content h2,
.bbp-legal-page__content h3,
.bbp-legal-page__content h4 {
  color: #3a2a21;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.bbp-legal-page__content h2 {
  border-top: 1px solid #e6ddd1;
  font-size: clamp(30px, 3.8vw, 42px);
  margin: 44px 0 16px;
  padding-top: 38px;
}

.bbp-legal-page__content h2:first-child,
.bbp-legal-page__content h1 + h2 {
  border-top: 0;
  margin-top: 0;
  padding-top: 0;
}

.bbp-legal-page__content h3 {
  font-size: clamp(24px, 3vw, 30px);
  margin: 30px 0 12px;
}

.bbp-legal-page__content p,
.bbp-legal-page__content ul,
.bbp-legal-page__content ol {
  margin-bottom: 18px;
  margin-top: 0;
}

.bbp-legal-page__content li + li {
  margin-top: 9px;
}

.bbp-legal-page__content a {
  color: #76552d;
  font-weight: 650;
  text-decoration-color: rgba(118, 85, 45, 0.45);
  text-underline-offset: 0.18em;
}

.bbp-legal-page__content table {
  border-collapse: collapse;
  display: block;
  margin: 24px 0;
  max-width: 100%;
  overflow-x: auto;
  width: 100%;
}

.bbp-legal-page__content th,
.bbp-legal-page__content td {
  border: 1px solid #ded3c4;
  min-width: 150px;
  padding: 13px 15px;
  text-align: left;
  vertical-align: top;
}

.bbp-legal-page__content th {
  background: #f5eee6;
  color: #3a2a21;
}

.bbp-legal-page__help {
  align-items: center;
  background: linear-gradient(135deg, #3a2a21 0%, #5a3e24 100%);
  border-radius: 24px;
  color: #fffdf9;
  display: flex;
  gap: 32px;
  justify-content: space-between;
  margin-top: 24px;
  padding: clamp(26px, 4vw, 42px);
}

.bbp-legal-page__help h2 {
  color: #fffdf9;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1.05;
  margin: 0;
}

.bbp-legal-page__help p:not(.bbp-legal-page__eyebrow) {
  color: rgba(255, 253, 249, 0.78);
  font-family: "DM Sans", Arial, sans-serif;
  margin: 10px 0 0;
  max-width: 650px;
}

.bbp-legal-page__help .bbp-legal-page__eyebrow {
  color: #d7b97c;
}

.bbp-legal-page__help .bbp-button {
  flex: 0 0 auto;
  min-height: 48px;
  white-space: nowrap;
}

@media (max-width: 749px) {
  .bbp-legal-page {
    padding: 36px 16px 72px;
  }

  .bbp-legal-page__header h1 {
    font-size: clamp(44px, 14vw, 60px);
  }

  .bbp-legal-page__header > p:last-child {
    font-size: 15px;
  }

  .bbp-legal-page__nav {
    margin-top: 28px;
    margin-right: -16px;
    padding-right: 16px;
  }

  .bbp-legal-page__content {
    border-radius: 18px;
    font-size: 15px;
    padding: 26px 20px 32px;
  }

  .bbp-legal-page__content h2 {
    margin-top: 36px;
    padding-top: 32px;
  }

  .bbp-legal-page__help {
    align-items: flex-start;
    border-radius: 18px;
    flex-direction: column;
    gap: 22px;
  }

  .bbp-legal-page__help .bbp-button {
    justify-content: center;
    width: 100%;
  }
}

/* BellaBloom 2026-08-08 refinement: practical Visit Us journey. */
.bbp-page-hero--visit {
  margin-bottom: 0;
  min-height: 350px;
  padding-bottom: clamp(66px, 7vw, 88px);
  padding-top: clamp(62px, 7vw, 88px);
}

.bbp-visit-plan,
.bbp-visit-experience,
.bbp-visit-prep {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
}

.bbp-visit-plan {
  background: var(--bbp-paper);
  border: 1px solid var(--bbp-line);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(58, 42, 33, 0.1);
  margin-bottom: clamp(58px, 7vw, 78px);
  margin-top: -32px;
  padding: clamp(28px, 4vw, 44px);
  position: relative;
  z-index: 2;
}

.bbp-visit-section-heading {
  margin-bottom: 26px;
  max-width: 760px;
}

.bbp-visit-section-heading h2,
.bbp-visit-prep h2 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: clamp(38px, 4.6vw, 54px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}

.bbp-visit-section-heading > p:last-child,
.bbp-visit-prep > div:first-child > p:last-child {
  color: var(--bbp-muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 14px 0 0;
  max-width: 660px;
}

.bbp-page--visit .bbp-visit-plan__content .bellabloom-info-container {
  max-width: none !important;
}

.bbp-page--visit .bbp-visit-plan__content .info-content {
  gap: 16px !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr) !important;
}

.bbp-page--visit .bbp-visit-plan__content .info-card {
  background: var(--bbp-soft, #fbf8f2) !important;
  border-color: var(--bbp-line) !important;
  border-radius: 18px !important;
  box-shadow: none !important;
  min-height: 0;
  padding: 30px !important;
}

.bbp-page--visit .bbp-visit-plan__content .icon-label {
  color: var(--bbp-gold) !important;
  margin-bottom: 17px !important;
}

.bbp-page--visit .bbp-visit-plan__content .address-text {
  font-size: clamp(24px, 2.8vw, 31px) !important;
  margin-bottom: 20px !important;
}

.bbp-page--visit .bbp-visit-plan__content .contact-links a {
  color: var(--bbp-wine-deep) !important;
  font-weight: 700;
  text-underline-offset: 4px;
}

.bbp-page--visit .bbp-visit-plan__content .hours-item {
  min-height: 52px;
}

.bbp-page--visit .bbp-visit-plan__content .hours-note {
  color: var(--bbp-muted) !important;
  letter-spacing: 0.08em !important;
}

.bbp-visit-experience {
  margin-bottom: clamp(58px, 7vw, 78px);
}

.bbp-visit-benefits {
  gap: 16px;
  margin: 0;
  max-width: none;
}

.bbp-visit-benefits article,
.bbp-visit-benefits article:last-child {
  background: var(--bbp-cream);
  border: 1px solid var(--bbp-line);
  border-radius: 18px;
  min-height: 205px;
  padding: 28px;
}

.bbp-visit-benefits span {
  align-items: center;
  background: var(--bbp-blush);
  border: 1px solid rgba(154, 106, 47, 0.28);
  border-radius: 50%;
  color: var(--bbp-gold);
  display: inline-flex;
  font-size: 10px;
  font-weight: 700;
  height: 42px;
  justify-content: center;
  letter-spacing: 0.05em;
  width: 42px;
}

.bbp-visit-benefits h3 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 20px 0 9px;
}

.bbp-visit-prep {
  align-items: center;
  background: linear-gradient(135deg, var(--bbp-cream), var(--bbp-blush));
  border: 1px solid var(--bbp-line);
  border-radius: 22px;
  display: grid;
  gap: 34px;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: clamp(28px, 4vw, 44px);
}

.bbp-visit-prep h2 {
  font-size: clamp(34px, 4vw, 48px);
  max-width: 690px;
}

.bbp-visit-prep__actions {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 190px;
}

.bbp-visit-prep__secondary {
  border-color: var(--bbp-line);
  color: var(--bbp-wine-deep);
}

.bbp-visit-plan a:focus-visible,
.bbp-visit-prep a:focus-visible {
  outline: 2px solid var(--bbp-gold);
  outline-offset: 3px;
}

/* Bloom Rewards: surface the useful numbers and tiers; collapse only edge terms. */
.bbp-rewards-overview,
.bbp-rewards-tier-section {
  margin-bottom: clamp(44px, 6vw, 68px);
}

.bbp-rewards-tier-section {
  scroll-margin-top: 126px;
}

.bbp-rewards-tier-section .bbp-rewards-tier-compare {
  margin-bottom: 16px;
  scroll-margin-top: 0;
}

.bbp-rewards-tier-section .bbp-rewards-tier-grid {
  margin: 0;
}

.bbp-rewards-conditions-list {
  color: var(--bbp-muted);
  font-size: 12px;
  line-height: 1.7;
  margin: 0;
  padding: 22px 8px 30px 22px;
}

@media (max-width: 749px) {
  .bbp-page-hero--visit {
    min-height: 0;
    padding-bottom: 62px;
    padding-top: 48px;
  }

  .bbp-visit-plan {
    border-radius: 20px;
    margin-bottom: 48px;
    margin-top: -24px;
    padding: 24px 18px;
  }

  .bbp-visit-section-heading {
    margin-bottom: 22px;
  }

  .bbp-visit-section-heading h2,
  .bbp-visit-prep h2 {
    font-size: clamp(34px, 10.5vw, 44px);
  }

  .bbp-page--visit .bbp-visit-plan__content .info-card {
    padding: 24px 20px !important;
  }

  .bbp-visit-experience {
    margin-bottom: 48px;
  }

  .bbp-visit-benefits {
    gap: 12px;
  }

  .bbp-visit-benefits article,
  .bbp-visit-benefits article:last-child {
    border: 1px solid var(--bbp-line);
    min-height: 0;
    padding: 24px 20px;
  }

  .bbp-visit-prep {
    gap: 25px;
    grid-template-columns: 1fr;
    padding: 27px 22px;
  }

  .bbp-visit-prep__actions {
    min-width: 0;
  }

  .bbp-rewards-overview,
  .bbp-rewards-tier-section {
    margin-bottom: 45px;
  }
}

/* Shared premium shell used by every native EasyStore page. */
.bbh-global-announcement,
#easystore-section-header.bbh-global-shell,
.bbh-global-footer {
  --bbh-shell-paper: #fffdf9;
  --bbh-shell-ink: #2a211f;
  --bbh-shell-muted: #746965;
  --bbh-shell-wine: #6f2941;
  --bbh-shell-wine-deep: #351923;
  --bbh-shell-champagne: #d9c5a7;
  --bbh-shell-bronze: #a47c46;
  --bbh-shell-line: rgba(72, 48, 43, 0.15);
  --bbh-shell-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --bbh-shell-sans: "DM Sans", "Avenir Next", Avenir, "Segoe UI", sans-serif;
  box-sizing: border-box;
  font-family: var(--bbh-shell-sans);
  letter-spacing: 0;
  line-height: 1.5;
}

.bbh-global-announcement *,
#easystore-section-header.bbh-global-shell *,
.bbh-global-footer *,
.bbh-global-announcement *::before,
#easystore-section-header.bbh-global-shell *::before,
.bbh-global-footer *::before,
.bbh-global-announcement *::after,
#easystore-section-header.bbh-global-shell *::after,
.bbh-global-footer *::after {
  box-sizing: border-box;
}

.bbh-global-preview-note {
  align-items: center;
  background: var(--bbh-shell-ink, #2a211f);
  color: rgba(255, 253, 249, 0.72);
  display: flex;
  font-family: var(--bbh-shell-sans, "DM Sans", sans-serif);
  font-size: 11px;
  gap: 8px;
  justify-content: center;
  letter-spacing: 0.04em;
  min-height: 29px;
  padding: 6px 18px;
  text-align: center;
}

.bbh-global-preview-note[hidden] {
  display: none;
}

.bbh-global-preview-note strong {
  color: #fffdf9;
  font-weight: 600;
}

/* The premium shell replaces EasyStore's separate announcement app. */
slider-announcement-bar-app#announcement-bar {
  display: none !important;
}

body {
  display: flex;
  flex-direction: column;
}

#MainContent {
  flex: 1 0 auto;
  width: 100%;
}

.bbh-global-announcement {
  align-items: center;
  background: var(--bbh-shell-champagne);
  color: var(--bbh-shell-ink);
  display: flex;
  font-size: 12px;
  justify-content: center;
  min-height: 38px;
  padding: 8px 28px;
  position: relative;
  z-index: 8;
}

.bbh-global-announcement p {
  margin: 0;
}

.bbh-global-announcement a {
  color: inherit;
  font-size: 11px;
  opacity: 0.78;
  position: absolute;
  right: 28px;
  text-decoration: none;
}

.bbh-global-announcement a:hover,
.bbh-global-announcement a:focus-visible {
  opacity: 1;
  text-decoration: underline;
  text-underline-offset: 3px;
}

#easystore-section-header.bbh-global-shell {
  background: rgba(255, 253, 249, 0.96);
  position: sticky;
  top: 0 !important;
  transform: none !important;
  width: 100%;
  z-index: 50;
}

#easystore-section-header.bbh-global-shell .bbh-global-header-wrap,
#easystore-section-header.bbh-global-shell.easystore-section-header-sticky .bbh-global-header-wrap {
  background: rgba(255, 253, 249, 0.96);
  border-bottom: 1px solid var(--bbh-shell-line);
  box-shadow: none;
  color: var(--bbh-shell-ink);
  position: relative;
}

#easystore-section-header.bbh-global-shell > .bbh-global-header-wrap {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

#easystore-section-header.bbh-global-shell .bbh-global-header {
  align-items: center;
  display: grid;
  grid-template-areas: "heading navigation icons";
  grid-template-columns: minmax(190px, 1fr) auto minmax(190px, 1fr);
  margin: 0 auto;
  max-width: 1360px;
  min-height: 76px;
  padding: 0 36px;
  position: relative;
  width: 100%;
}

#easystore-section-header .bbh-skip-link {
  background: var(--bbh-shell-paper);
  border: 1px solid var(--bbh-shell-wine);
  border-radius: 999px;
  color: var(--bbh-shell-wine-deep);
  font-size: 13px;
  left: 18px;
  padding: 9px 15px;
  position: absolute;
  top: 10px;
  transform: translateY(-160%);
  transition: transform 150ms ease;
  z-index: 100;
}

#easystore-section-header .bbh-skip-link:focus {
  transform: translateY(0);
}

#easystore-section-header .bbh-global-brand {
  align-items: flex-start;
  color: var(--bbh-shell-wine-deep);
  display: inline-flex;
  flex-direction: column;
  grid-area: heading;
  justify-self: start;
  line-height: 1;
  text-decoration: none;
}

#easystore-section-header .bbh-global-brand span {
  font-family: var(--bbh-shell-serif);
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

#easystore-section-header .bbh-global-brand small {
  color: var(--bbh-shell-muted);
  font-family: var(--bbh-shell-sans);
  font-size: 7px;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-top: 5px;
}

#easystore-section-header .header__heading-link,
#easystore-section-header .header__heading,
#easystore-section-header .header__inline-menu {
  display: none !important;
}

#easystore-section-header .bbh-global-nav {
  align-items: center;
  display: flex;
  gap: 31px;
  grid-area: navigation;
  justify-content: center;
}

#easystore-section-header .bbh-global-nav a {
  color: var(--bbh-shell-ink);
  font-size: 13px;
  font-weight: 500;
  position: relative;
  text-decoration: none;
}

#easystore-section-header .bbh-global-nav a::after {
  background: var(--bbh-shell-wine);
  bottom: -10px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
  width: 100%;
}

#easystore-section-header .bbh-global-nav a:hover::after,
#easystore-section-header .bbh-global-nav a:focus-visible::after {
  transform: scaleX(1);
}

#easystore-section-header .header__icons {
  align-items: center;
  display: flex;
  gap: 0;
  grid-area: icons;
  justify-self: end;
}

#easystore-section-header .header__left-icon {
  grid-area: left-icon;
}

#easystore-section-header .header__icon,
#easystore-section-header .header__icon--menu {
  align-items: center;
  color: var(--bbh-shell-ink);
  display: inline-flex;
  height: 44px;
  justify-content: center;
  margin: 0;
  padding: 0;
  text-decoration: none;
  width: 44px;
}

#easystore-section-header .header__icon .icon {
  color: currentColor;
  height: 20px;
  width: 20px;
}

#easystore-section-header .header__icon--cart .icon {
  height: 42px;
  width: 42px;
}

#easystore-section-header .header__icon:focus-visible,
#easystore-section-header .bbh-global-nav a:focus-visible,
#easystore-section-header .bbh-global-brand:focus-visible,
.bbh-global-footer a:focus-visible {
  border-radius: 4px;
  outline: 2px solid var(--bbh-shell-wine);
  outline-offset: 4px;
}

#easystore-section-header .cart-count-bubble {
  background: var(--bbh-shell-wine);
  color: var(--bbh-shell-paper);
  right: 1px;
  top: 1px;
}

#easystore-section-header .search-modal {
  background: var(--bbh-shell-paper);
  border-bottom: 1px solid var(--bbh-shell-line);
  color: var(--bbh-shell-ink);
}

#easystore-section-header .search-modal__content {
  background: var(--bbh-shell-paper);
}

#easystore-section-header .search-modal .field__input {
  background: #ffffff;
  border-color: rgba(72, 48, 43, 0.25);
  border-radius: 999px;
  color: var(--bbh-shell-ink);
}

#easystore-section-header .search-modal .field__input:focus {
  border-color: var(--bbh-shell-wine);
  box-shadow: 0 0 0 1px var(--bbh-shell-wine);
}

#easystore-section-header .search-modal .dropdown {
  border-color: rgba(72, 48, 43, 0.2);
  border-radius: 0 0 16px 16px;
}

#easystore-section-header .header__submenu.list-menu--disclosure {
  background: var(--bbh-shell-paper);
  border: 1px solid var(--bbh-shell-line);
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(53, 25, 35, 0.12);
  color: var(--bbh-shell-ink);
  min-width: 190px;
  overflow: hidden;
  padding: 8px 0;
}

#easystore-section-header .header__submenu .header__menu-item {
  color: var(--bbh-shell-ink);
  font-size: 13px;
  padding: 10px 18px;
}

#easystore-section-header .header__submenu .header__menu-item:hover,
#easystore-section-header .header__submenu .header__menu-item:focus-visible {
  background: #f8f0ec;
}

#easystore-section-header .bbh-account-actions {
  align-items: center;
  display: flex;
  flex: 0 0 44px;
  height: 44px;
  position: relative;
  width: 44px;
}

#easystore-section-header .bbh-account-actions .bbh-account-link {
  align-items: center;
  display: flex;
  flex: 0 0 44px;
  height: 44px;
  justify-content: center;
  padding: 0;
  width: 44px;
}

#easystore-section-header .bbh-account-actions .bbh-account-menu {
  left: auto;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  right: 0;
  top: calc(100% - 1px);
  transform: translateY(-6px);
  visibility: hidden;
}

#easystore-section-header .bbh-account-actions .bbh-account-menu .header__menu-item {
  min-height: 44px;
}

#easystore-section-header .bbh-account-actions:is(:hover, :focus-within, .is-open):not(.is-escape-closed) .bbh-account-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

#easystore-section-header .referral-notification {
  border-color: var(--bbh-shell-line);
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(53, 25, 35, 0.14);
  color: var(--bbh-shell-ink);
}

#easystore-section-header cart-notification .cart-notification {
  background: var(--bbh-shell-paper);
  border-color: var(--bbh-shell-line);
  border-radius: 0 0 0 16px;
  box-shadow: 0 18px 45px rgba(53, 25, 35, 0.12);
  color: var(--bbh-shell-ink);
}

#easystore-section-header .bbh-global-mobile-nav {
  display: none;
}

.bbh-global-footer.footer {
  background: var(--bbh-shell-ink);
  color: var(--bbh-shell-paper);
  padding: 74px 0 0;
}

.bbh-global-footer .footer__content-top {
  margin: 0 auto;
  max-width: 1360px;
  padding: 0 48px;
}

.bbh-global-footer .bbh-global-footer__grid {
  align-items: start;
  display: grid;
  gap: 38px 58px;
  grid-template-columns: 1.55fr repeat(3, minmax(130px, 0.7fr));
  margin: 0;
}

.bbh-global-footer .bbh-global-footer__grid > .grid__item {
  margin: 0;
  max-width: none;
  padding: 0;
  width: auto;
}

.bbh-global-footer__brand {
  order: 1;
}

.bbh-global-footer__brand a {
  color: var(--bbh-shell-paper);
  font-family: var(--bbh-shell-serif);
  font-size: 43px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  text-decoration: none;
}

.bbh-global-footer__brand p {
  color: rgba(255, 253, 249, 0.56);
  font-size: 12px;
  margin: 13px 0 0;
}

.bbh-global-footer__block--quick_link {
  order: 2;
}

.bbh-global-footer__help {
  order: 3;
}

.bbh-global-footer__block--follow_us {
  order: 4;
}

.bbh-global-footer__block--payment_accept {
  border-top: 1px solid rgba(255, 253, 249, 0.11);
  grid-column: 1 / -1;
  order: 5;
  padding-top: 24px !important;
}

.bbh-global-footer__block--about_us,
.bbh-global-footer__block--image,
.bbh-global-footer__block--shopping_app {
  grid-column: 1 / -1;
  order: 6;
}

.bbh-global-footer .footer-block__heading {
  color: var(--bbh-shell-paper);
  font-family: var(--bbh-shell-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0 0 18px;
  text-transform: uppercase;
}

.bbh-global-footer .footer-block__details-content {
  margin: 0;
}

.bbh-global-footer .footer-block__details-content li {
  margin: 0;
}

.bbh-global-footer .footer-block__details-content .list-menu__item--link,
.bbh-global-footer .footer-block__details-content a,
.bbh-global-footer .link--text {
  color: rgba(255, 253, 249, 0.64);
  font-size: 12px;
  line-height: 1.45;
  padding: 0 0 11px;
  text-decoration: none;
}

.bbh-global-footer .footer-block__details-content a:hover,
.bbh-global-footer .footer-block__details-content a:focus-visible {
  color: var(--bbh-shell-paper);
}

.bbh-global-footer .footer__list-social {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.bbh-global-footer .list-social__link {
  align-items: center;
  border: 1px solid rgba(255, 253, 249, 0.18);
  border-radius: 50%;
  display: inline-flex;
  height: 36px;
  justify-content: center;
  padding: 0;
  transition: background 160ms ease, border-color 160ms ease;
  width: 36px;
}

.bbh-global-footer .list-social__link:hover,
.bbh-global-footer .list-social__link:focus-visible {
  background: rgba(255, 253, 249, 0.1);
  border-color: rgba(255, 253, 249, 0.44);
}

.bbh-global-footer .list-social__link .icon {
  height: 15px;
  width: 15px;
}

.bbh-global-footer .footer__payment {
  align-items: center;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.bbh-global-footer .list-payment {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0;
  padding: 0;
}

.bbh-global-footer .list-payment__item {
  margin: 0;
}

.bbh-global-footer .footer__content-bottom {
  border-top: 1px solid rgba(255, 253, 249, 0.11);
  margin-top: 34px;
  padding: 21px 0 24px;
}

.bbh-global-footer .footer__content-bottom-wrapper {
  margin: 0 auto;
  max-width: 1360px;
  padding: 0 48px;
}

.bbh-global-footer .footer__column--info {
  align-items: center;
  color: rgba(255, 253, 249, 0.45);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  font-size: 10px;
  gap: 10px 22px;
  justify-content: space-between;
  width: 100%;
}

.bbh-global-footer .footer__copyright {
  color: inherit;
  margin: 0;
}

.bbh-global-footer .footer__copyright a {
  color: inherit;
  text-decoration: none;
}

.bbh-global-footer .disclosure {
  margin: 0;
}

.bbh-global-footer .currency-picker {
  background: transparent;
  border-color: rgba(255, 253, 249, 0.22);
  color: var(--bbh-shell-paper);
}

@media (max-width: 1180px) and (min-width: 990px) {
  #easystore-section-header.bbh-global-shell .bbh-global-header {
    grid-template-columns: minmax(170px, 1fr) auto minmax(150px, 1fr);
    padding-left: 24px;
    padding-right: 24px;
  }

  #easystore-section-header .bbh-global-nav {
    gap: 20px;
  }
}

@media (min-width: 990px) {
  #easystore-section-header .header__left-icon {
    display: none !important;
  }

  #easystore-section-header .bbh-global-nav {
    display: flex;
  }
}

@media (max-width: 989px) {
  .bbh-global-announcement {
    min-height: 35px;
    padding: 8px 16px;
  }

  .bbh-global-announcement a {
    display: none;
  }

  #easystore-section-header.bbh-global-shell .bbh-global-header {
    grid-template-areas: "left-icon heading icons";
    grid-template-columns: 88px minmax(0, 1fr) 88px;
    min-height: 66px;
    padding: 0 10px;
  }

  #easystore-section-header .bbh-global-brand {
    align-items: center;
    justify-self: center;
  }

  #easystore-section-header .bbh-global-brand span {
    font-size: 27px;
  }

  #easystore-section-header .bbh-global-brand small,
  #easystore-section-header .bbh-global-nav {
    display: none;
  }

  #easystore-section-header .header__left-icon {
    display: flex;
    justify-self: start;
    width: 88px;
  }

  #easystore-section-header .header__icons {
    gap: 0;
    justify-content: flex-end;
    width: 88px;
  }

  #easystore-section-header .header__icons .header__icon {
    margin: 0;
  }

  #easystore-section-header .bbh-global-mobile-nav {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
    padding: 38px 26px 30px;
  }

  #easystore-section-header .bbh-global-mobile-nav__eyebrow {
    color: var(--bbh-shell-wine);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.17em;
    margin: 0 0 16px;
    text-transform: uppercase;
  }

  #easystore-section-header .bbh-global-mobile-nav a {
    border-bottom: 1px solid var(--bbh-shell-line);
    color: var(--bbh-shell-wine-deep);
    font-family: var(--bbh-shell-serif);
    font-size: clamp(24px, 7vw, 31px);
    font-weight: 600;
    padding: 13px 2px;
    text-decoration: none;
  }

  #easystore-section-header .bbh-global-mobile-nav a:focus-visible {
    outline: 2px solid var(--bbh-shell-wine);
    outline-offset: 4px;
  }

  #easystore-section-header .menu-drawer {
    background: var(--bbh-shell-paper);
    border-color: var(--bbh-shell-line);
    color: var(--bbh-shell-ink);
    max-width: 420px;
  }

  #easystore-section-header .menu-drawer__navigation-container {
    background: var(--bbh-shell-paper);
    display: flex;
    flex-direction: column;
  }

  #easystore-section-header .menu-drawer__navigation {
    display: none;
  }

  #easystore-section-header .menu-drawer__utility-links {
    background: #f8f0ec;
    border-top: 1px solid var(--bbh-shell-line);
    color: var(--bbh-shell-ink);
    padding: 18px 26px;
  }

  #easystore-section-header .menu-drawer__account,
  #easystore-section-header .menu-drawer .link--text {
    color: var(--bbh-shell-ink);
  }

  #easystore-section-header .search-modal__content {
    padding-left: 18px;
    padding-right: 54px;
  }

  #easystore-section-header cart-notification .cart-notification {
    border-radius: 0 0 16px 16px;
  }

  .bbh-global-footer.footer {
    padding-top: 58px;
  }

  .bbh-global-footer .footer__content-top,
  .bbh-global-footer .footer__content-bottom-wrapper {
    padding-left: 24px;
    padding-right: 24px;
  }

  .bbh-global-footer .bbh-global-footer__grid {
    gap: 38px 28px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bbh-global-footer__brand {
    grid-column: 1 / -1;
  }

  .bbh-global-footer__block--follow_us {
    grid-column: 1 / -1;
  }

  .bbh-global-footer__brand a {
    font-size: 38px;
  }

  .bbh-global-footer .footer__column--info {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  #easystore-section-header.bbh-global-shell .bbh-global-header {
    grid-template-columns: 88px minmax(0, 1fr) 88px;
    padding-left: 6px;
    padding-right: 6px;
  }

  #easystore-section-header .bbh-global-brand span {
    font-size: 25px;
  }

  #easystore-section-header .header__icon,
  #easystore-section-header .header__icon--menu {
    height: 44px;
    width: 44px;
  }

  #easystore-section-header .header__icon--cart .icon {
    height: 40px;
    width: 40px;
  }

  .bbh-global-footer .bbh-global-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

[data-bbc-discovery-search-suggestions][data-bbc-discovery-active] .dropdown-item[role="option"] {
  min-height: 44px;
  white-space: normal;
}

@media (prefers-reduced-motion: reduce) {
  .bbh-global-announcement *,
  #easystore-section-header.bbh-global-shell *,
  .bbh-global-footer * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.bbc-commerce,
.bbc-product-card {
  --bbc-cream: #f5eee6;
  --bbc-paper: #fffdf9;
  --bbc-paper-warm: #fbf6f0;
  --bbc-ink: #2a211f;
  --bbc-muted: #746965;
  --bbc-wine: #6f2941;
  --bbc-wine-deep: #351923;
  --bbc-rose: #b9677e;
  --bbc-rose-soft: #ead2d9;
  --bbc-gold: #c69b6d;
  --bbc-line: rgba(72, 48, 43, 0.15);
  --bbc-display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --bbc-sans: var(--font-body-family, "DM Sans", "Avenir Next", Avenir, "Segoe UI", sans-serif);
  color: var(--bbc-ink);
  font-family: var(--bbc-sans);
  letter-spacing: 0;
}

.bbc-commerce,
.bbc-commerce *,
.bbc-commerce *::before,
.bbc-commerce *::after,
.bbc-product-card,
.bbc-product-card *,
.bbc-product-card *::before,
.bbc-product-card *::after {
  box-sizing: border-box;
}

.bbc-commerce h1,
.bbc-commerce h2,
.bbc-commerce h3 {
  color: var(--bbc-wine-deep);
  font-family: var(--bbc-display);
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.035em;
  text-transform: none;
}

.bbc-commerce a:focus-visible,
.bbc-commerce button:focus-visible,
.bbc-product-card a:focus-visible {
  outline: 3px solid var(--bbc-gold);
  outline-offset: 3px;
}

.bbc-eyebrow {
  color: var(--bbc-wine);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.2em;
  line-height: 1.4;
  margin: 0 0 14px;
}

.bbc-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  display: inline-flex;
  font-family: var(--bbc-sans);
  font-size: 14px;
  font-weight: 650;
  justify-content: center;
  min-height: 48px;
  padding: 12px 23px;
  text-align: center;
  text-decoration: none;
  transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.bbc-button:hover {
  transform: translateY(-1px);
}

.bbc-button--primary {
  background: var(--bbc-wine);
  box-shadow: 0 12px 26px rgba(58, 42, 33, 0.16);
  color: var(--bbc-paper) !important;
}

.bbc-button--primary:hover {
  background: var(--bbc-wine-deep);
}

.bbc-button--secondary {
  background: transparent;
  border-color: rgba(53, 25, 35, 0.26);
  color: var(--bbc-wine-deep) !important;
}

/* Collection */

.bbc-collection {
  background: var(--bbc-paper);
  min-height: 70vh;
}

.bbc-collection-hero {
  background:
    radial-gradient(circle at 82% 10%, rgba(234, 210, 217, 0.58), transparent 31%),
    var(--bbc-cream);
  border-bottom: 1px solid var(--bbc-line);
}

.bbc-collection-hero__inner {
  padding-bottom: 44px;
  padding-top: 44px;
}

.bbc-collection-hero__copy {
  max-width: 760px;
}

.bbc-collection-hero .collection-hero__title {
  color: var(--bbc-wine-deep);
  font-size: clamp(48px, 6vw, 72px);
  line-height: 0.98;
  margin: 0;
}

.bbc-collection-hero__description {
  color: var(--bbc-ink);
  font-size: 15px;
  line-height: 1.7;
  margin: 20px 0 0;
  max-width: 630px;
}

.bbc-collection-hero__description > :first-child {
  margin-top: 0;
}

.bbc-collection-hero__description > :last-child {
  margin-bottom: 0;
}

.bbc-collection-hero__actions {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 27px;
}

.bbc-collection-hero__microcopy {
  color: var(--bbc-muted);
  font-size: 11px;
}

.bbc-collection-hero .top-wrapper-section:not(:empty) {
  margin-top: 28px;
}

.bbc-collection-grid {
  padding: 32px 0 72px;
}

.bbc-collection__body {
  align-items: flex-start;
}

.bbc-collection__toolbar {
  align-items: center;
  background: var(--bbc-paper);
  border-bottom: 1px solid var(--bbc-line);
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  padding: 8px 0 18px;
  position: relative;
  width: 100%;
  z-index: 8;
}

.bbc-collection__toolbar > .collection-filters {
  margin-bottom: 0;
}

.bbc-collection__count {
  color: var(--bbc-muted);
  display: flex;
  flex-direction: column;
  font-size: 12px;
  line-height: 1.3;
}

.bbc-collection__count .bbc-eyebrow {
  margin-bottom: 5px;
}

.bbc-filter-toggle {
  margin: 0;
  position: static;
}

.bbc-filter-toggle__button {
  align-items: center;
  background: var(--bbc-paper);
  border: 1px solid rgba(53, 25, 35, 0.22);
  border-radius: 999px;
  color: var(--bbc-wine-deep);
  display: inline-flex;
  font-family: var(--bbc-sans);
  font-size: 13px;
  font-weight: 650;
  gap: 8px;
  min-height: 44px;
  padding: 9px 16px;
}

.bbc-filter-toggle__button svg {
  height: 18px;
  width: 18px;
}

.bbc-collection .bbc-filter-container {
  flex: 0 0 calc(24% - 26px);
  margin-right: 26px;
  width: calc(24% - 26px);
}

.bbc-collection .bbc-filter {
  background: var(--bbc-paper);
  color: var(--bbc-ink);
  max-width: none;
  scrollbar-color: var(--bbc-rose-soft) transparent;
}

.bbc-filter__header {
  border-bottom: 1px solid var(--bbc-line);
  padding: 0 0 16px;
}

.bbc-filter__header strong {
  color: var(--bbc-wine-deep);
  font-family: var(--bbc-display);
  font-size: 25px;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.bbc-filter__reset,
.bbc-filter__close {
  background: transparent;
  border: 0;
  color: var(--bbc-wine);
  cursor: pointer;
  font: inherit;
  padding: 4px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.bbc-filter__close {
  align-items: center;
  border: 1px solid var(--bbc-line);
  border-radius: 50%;
  display: inline-flex;
  height: 42px;
  justify-content: center;
  text-decoration: none;
  width: 42px;
}

.bbc-filter__close svg {
  height: 16px;
  width: 16px;
}

.bbc-filter .filter-collapsible,
.bbc-filter .filter-boolean-row {
  border-color: var(--bbc-line);
}

.bbc-filter .filter-collapsible > summary h4,
.bbc-filter .filter-boolean-row h4 {
  color: var(--bbc-ink);
  font-family: var(--bbc-sans);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
}

.bbc-filter .filter-collapsible-content {
  color: var(--bbc-muted);
  font-size: 13px;
  line-height: 2.05;
}

.bbc-filter input[type="checkbox"],
.bbc-filter input[type="radio"] {
  accent-color: var(--bbc-wine);
}

.bbc-filter .price-range-input-wrap {
  background: var(--bbc-paper-warm);
  border-color: var(--bbc-line);
  border-radius: 8px;
  min-height: 42px;
}

.bbc-filter__mobile-footer {
  background: linear-gradient(180deg, rgba(255, 253, 249, 0), var(--bbc-paper) 22%);
  bottom: 0;
  left: 0;
  padding: 30px 24px 18px;
  position: sticky;
  right: 0;
}

.bbc-filter__mobile-footer .bbc-button {
  width: 100%;
}

.bbc-collection #main-collection-product-grid {
  margin-bottom: 0;
  margin-left: -18px;
  width: 100%;
}

@media screen and (min-width: 990px) {
  .bbc-collection .bbc-collection__body--with-filters #main-collection-product-grid {
    width: 76%;
  }
}

.bbc-product-grid > .grid__item {
  padding-bottom: 40px;
  padding-left: 18px;
}

.bbc-collection__empty {
  background: var(--bbc-paper-warm);
  border: 1px solid var(--bbc-line);
  border-radius: 16px;
  list-style: none;
  padding: 48px 24px;
  text-align: center;
  width: 100%;
}

.bbc-collection__empty p {
  color: var(--bbc-muted);
  margin: 0 0 20px;
}

.bbc-pagination {
  align-items: center;
  display: flex;
  justify-content: center;
  padding-top: 18px;
  width: 100%;
}

.bbc-load-more {
  min-width: min(100%, 260px);
}

.bbc-load-more.is-loading {
  cursor: wait;
  opacity: 0.72;
  pointer-events: none;
}

/* Product cards */

.bbc-product-card {
  background: transparent;
  border-radius: 0;
  color: var(--bbc-ink);
}

.bbc-product-card > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
}

.bbc-product-card .card--product {
  background: var(--bbc-cream);
  border: 1px solid rgba(72, 48, 43, 0.08);
  border-radius: 14px;
  overflow: hidden;
}

.bbc-product-card .card--product .media {
  border-radius: 0;
}

.bbc-product-card .card--product .media img {
  transition: transform 450ms cubic-bezier(0.2, 0.7, 0.2, 1);
}

.bbc-product-card > a:hover .card--product .media img {
  transform: scale(1.025);
}

.bbc-product-card .card__badge.card__badge-top-left {
  left: 12px;
  top: 12px;
}

.bbc-product-card .badge-ribbon {
  background: var(--bbc-wine-deep);
  border: 0;
  border-radius: 999px;
  color: var(--bbc-paper);
  font-size: 9px;
  font-weight: 650;
  letter-spacing: 0.12em;
  padding: 7px 11px;
  text-transform: uppercase;
}

.bbc-product-card .card__badge.card__badge-top-right {
  right: 12px;
  top: 12px;
}

.bbc-product-card .badge-circle.addToClassList {
  align-items: center;
  background: var(--bbc-wine-deep);
  border: 0;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(53, 25, 35, 0.2);
  color: var(--bbc-paper);
  display: flex;
  height: 42px;
  justify-content: center;
  margin: 0;
  width: 42px;
}

.bbc-product-card .badge-circle.addToClassList svg {
  height: 17px;
  width: 17px;
}

.bbc-product-card--sold-out .badge-circle.addToClassList {
  display: none !important;
}

.bbc-product-card .bbc-product-card__information {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 16px 2px 0;
}

.bbc-product-card__eyebrow {
  color: var(--bbc-wine);
  display: block;
  font-size: 8px;
  font-weight: 650;
  letter-spacing: 0.16em;
  line-height: 1.4;
  margin-bottom: 7px;
}

.bbc-product-card .bbc-product-card__title {
  color: var(--bbc-wine-deep);
  display: -webkit-box;
  font-family: var(--bbc-display);
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.025em;
  line-height: 1.05;
  min-height: 2.1em;
  overflow: hidden;
  padding: 0;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.bbc-product-card__purchase {
  align-items: flex-end;
  border-top: 1px solid var(--bbc-line);
  display: flex;
  gap: 10px;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 12px;
}

.bbc-product-card__purchase .price {
  color: var(--bbc-ink);
  font-size: 12px;
  font-weight: 650;
  margin: 0;
}

.bbc-product-card__view {
  color: var(--bbc-wine);
  flex: 0 0 auto;
  font-size: 11px;
  font-weight: 650;
  white-space: nowrap;
}

.bbc-product-card__view span {
  display: inline-block;
  margin-left: 4px;
  transition: transform 180ms ease;
}

.bbc-product-card > a:hover .bbc-product-card__view span {
  transform: translateX(4px);
}

.bbc-product-card__variants {
  margin-top: 10px;
}

/* Standalone sorting */

.bbc-sort {
  padding: 0;
}

.bbc-sort .collection-filters__field {
  gap: 10px;
}

.bbc-sort .collection-filters__label {
  color: var(--bbc-muted);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.11em;
  margin: 0;
  text-transform: uppercase;
}

.bbc-sort .collection-filters__sort {
  background: var(--bbc-paper);
  border: 1px solid var(--bbc-line);
  border-radius: 999px;
  color: var(--bbc-ink);
  min-height: 42px;
  padding: 8px 34px 8px 14px;
}

/* Product page */

.bbc-product {
  background: var(--bbc-paper);
  margin-top: 0;
  padding-bottom: 84px;
  padding-top: 24px;
}

.bbc-breadcrumb {
  align-items: center;
  color: var(--bbc-muted);
  display: flex;
  font-size: 11px;
  gap: 8px;
  margin: 0 0 24px;
  min-width: 0;
}

.bbc-breadcrumb a {
  color: var(--bbc-wine);
  text-decoration: none;
}

.bbc-breadcrumb [aria-current="page"] {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bbc-product__layout {
  --bbc-product-column-gap: 32px;
  --bbc-product-column-half-gap: 16px;
  align-items: flex-start;
  column-gap: var(--bbc-product-column-gap);
  margin-left: 0;
}

.bbc-product__layout > .grid__item {
  padding-left: 0;
}

.bbc-product__gallery {
  background: var(--bbc-cream);
  border: 1px solid rgba(72, 48, 43, 0.09);
  border-radius: 20px;
  overflow: hidden;
  padding: 18px;
}

.bbc-product__gallery .product__media-list {
  margin-bottom: 0;
}

.bbc-product__gallery .product__media-item {
  background: var(--bbc-cream);
  min-height: 480px;
}

.bbc-product__gallery .product__media-item img {
  cursor: zoom-in;
  object-fit: contain;
}

.bbc-product__gallery .slider-buttons {
  background: rgba(255, 253, 249, 0.82);
  border: 1px solid var(--bbc-line);
  border-radius: 999px;
  margin: 14px auto 0;
  max-width: 170px;
}

.bbc-product .product__info-container--sticky {
  top: calc(var(--header-bottom-position, 76px) + 24px);
}

.bbc-product__purchase-panel {
  background:
    linear-gradient(145deg, rgba(255, 253, 249, 0.94), rgba(245, 238, 230, 0.92)) !important;
  border: 1px solid var(--bbc-line);
  border-radius: 20px;
  box-shadow: 0 22px 50px rgba(53, 25, 35, 0.07);
  padding: 34px !important;
}

.bbc-product .product__title {
  color: var(--bbc-wine-deep);
  font-size: clamp(40px, 4.2vw, 58px);
  line-height: 0.98;
  margin: 5px 0 16px;
}

.bbc-product__price {
  border-bottom: 1px solid var(--bbc-line);
  margin-bottom: 20px;
  padding-bottom: 18px;
}

.bbc-product__price .price {
  color: var(--bbc-ink);
  font-size: 20px;
  font-weight: 650;
}

.bbc-order-inclusions {
  background: transparent;
  border-bottom: 1px solid var(--bbc-line);
  border-top: 1px solid var(--bbc-line);
  margin-top: 18px;
  padding: 20px 0 18px;
}

.bbc-order-inclusions__shipping {
  align-items: center;
  border-bottom: 1px solid var(--bbc-line);
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 18px;
}

.bbc-order-inclusions__shipping svg {
  color: var(--bbc-wine);
  fill: none;
  flex: 0 0 28px;
  height: 28px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.4;
  width: 28px;
}

.bbc-order-inclusions__shipping > span {
  display: grid;
  gap: 2px;
}

.bbc-order-inclusions__shipping strong {
  color: var(--bbc-ink);
  font-size: 12px;
  font-weight: 650;
}

.bbc-order-inclusions__shipping small {
  color: var(--bbc-muted);
  font-size: 11px;
}

.bbc-order-inclusions__copy {
  min-width: 0;
  padding: 5px 6px 5px 0;
}

.bbc-order-inclusions__set {
  align-items: stretch;
  background: transparent;
  border: 0;
  border-radius: 0;
  display: grid;
  gap: 18px;
  grid-template-columns: minmax(132px, 0.82fr) minmax(0, 1.18fr);
  overflow: visible;
  padding: 0;
}

.bbc-order-inclusions__eyebrow {
  color: var(--bbc-wine);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 10px;
}

.bbc-order-inclusions h2 {
  color: var(--bbc-wine-deep);
  font-size: 25px;
  line-height: 1.06;
  margin: 0;
}

.bbc-order-inclusions__intro {
  color: var(--bbc-muted);
  font-size: 10.5px;
  line-height: 1.5;
  margin: 8px 0 12px;
}

.bbc-order-inclusions__list {
  display: grid;
  gap: 8px;
  grid-template-columns: minmax(0, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.bbc-order-inclusions__list li {
  align-items: baseline;
  color: var(--bbc-ink);
  display: flex;
  font-size: 10.5px;
  gap: 7px;
  line-height: 1.35;
}

.bbc-order-inclusions__list li > span {
  color: var(--bbc-wine);
  flex: 0 0 auto;
  font-size: 12px;
}

.bbc-order-inclusions__list strong {
  font-weight: 650;
}

.bbc-order-inclusions__list small {
  color: var(--bbc-muted);
  display: inline;
  font-size: 9px;
  font-weight: 500;
  margin-left: 3px;
}

.bbc-product .product-form__input .form__label {
  color: var(--bbc-ink);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.bbc-product .product-form__input input[type="radio"] + label {
  background: var(--bbc-paper);
  border: 1px solid var(--bbc-line);
  border-radius: 999px;
  color: var(--bbc-ink);
  min-height: 45px;
  padding: 12px 18px;
}

.bbc-product .product-form__input input[type="radio"]:checked + label {
  background: var(--bbc-wine-deep);
  border-color: var(--bbc-wine-deep);
  color: var(--bbc-paper);
}

.bbc-product .product-form__quantity {
  align-items: flex-end;
  flex-direction: column;
  margin-bottom: 14px;
  width: max-content;
}

.bbc-product .product-form__quantity .form__label {
  align-self: flex-start;
}

.bbc-product .quantity {
  background: var(--bbc-paper);
  border: 1px solid var(--bbc-line);
  border-radius: 999px;
  min-height: 46px;
}

.bbc-product .product-form__submit {
  background: var(--bbc-wine);
  border: 1px solid var(--bbc-wine);
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(58, 42, 33, 0.18);
  color: var(--bbc-paper);
  font-size: 14px;
  font-weight: 650;
  min-height: 54px;
}

.bbc-product .product-form__submit:hover {
  background: var(--bbc-wine-deep);
  border-color: var(--bbc-wine-deep);
}

.bbc-product .product-form__submit[disabled] {
  background: var(--bbc-muted);
  border-color: var(--bbc-muted);
  box-shadow: none;
}

.bbc-purchase-assurance {
  color: var(--bbc-muted);
  display: grid;
  font-size: 10px;
  gap: 7px;
  grid-template-columns: repeat(3, 1fr);
  line-height: 1.35;
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  text-align: center;
}

.bbc-purchase-assurance li {
  border-right: 1px solid var(--bbc-line);
  padding: 0 8px;
}

.bbc-purchase-assurance li:last-child {
  border-right: 0;
}

.bbc-product .social-sharing {
  color: var(--bbc-muted);
}

.bbc-product__story {
  background: var(--bbc-paper);
  border-top: 1px solid var(--bbc-line);
  margin-top: 30px;
  padding: 34px 4px 0;
}

.bbc-product__story h2 {
  font-size: 36px;
  line-height: 1;
  margin: 0 0 20px;
}

.bbc-product__story .product__description {
  color: var(--bbc-muted);
  font-size: 14px;
  line-height: 1.8;
  margin: 0;
}

.bbc-related-products {
  border-top: 1px solid var(--bbc-line);
  margin-top: 0;
  padding-bottom: 84px;
  padding-top: 68px;
}

/* Cart */

.bbc-cart {
  background: var(--bbc-paper);
  margin-top: 0;
  min-height: 70vh;
  padding: 44px 0 78px;
}

.bbc-cart__intro {
  color: var(--bbc-muted);
  margin-bottom: 14px;
}

.bbc-cart__intro p:last-child {
  font-size: 12px;
  margin: 0;
}

.bbc-cart .cart__contents {
  margin-top: 0;
}

.bbc-cart .title-wrapper-with-link {
  align-items: flex-end;
  border-bottom: 1px solid var(--bbc-line);
  margin-bottom: 28px;
  padding-bottom: 20px;
}

.bbc-cart .title--primary {
  color: var(--bbc-wine-deep);
  font-size: clamp(44px, 5vw, 64px);
  line-height: 1;
  margin: 0;
}

.bbc-cart .underlined-link {
  color: var(--bbc-wine);
  font-size: 12px;
  font-weight: 650;
  text-underline-offset: 4px;
}

.bbc-cart .cart-items thead th {
  color: var(--bbc-muted);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.bbc-cart .cart-item > td {
  border-bottom: 1px solid var(--bbc-line);
  padding-bottom: 28px;
  padding-top: 28px;
}

.bbc-cart .cart-item__media {
  width: 116px;
}

.bbc-cart .cart-item__image {
  background: var(--bbc-cream);
  border: 1px solid rgba(72, 48, 43, 0.08);
  border-radius: 12px;
}

.bbc-cart .cart-item__name {
  color: var(--bbc-wine-deep);
  font-family: var(--bbc-display);
  font-size: 23px;
  font-weight: 500;
  line-height: 1.05;
  text-decoration: none;
}

.bbc-cart .cart-item__name:hover {
  color: var(--bbc-wine);
  text-decoration: none;
}

.bbc-cart-item__inspired {
  color: var(--bbc-muted);
  display: block;
  font-family: var(--bbc-sans);
  font-size: 11px;
  line-height: 1.45;
  margin-top: 6px;
  max-width: 34rem;
}

.bbc-cart-item__inspired > span:first-child {
  color: var(--bbc-wine);
  font-weight: 650;
}

.bbc-cart .product-option {
  color: var(--bbc-muted);
  font-size: 12px;
}

.bbc-cart .quantity {
  background: var(--bbc-paper-warm);
  border: 1px solid var(--bbc-line);
  border-radius: 999px;
}

.bbc-cart .cart-item__price-wrapper .price {
  color: var(--bbc-ink);
  font-size: 14px;
  font-weight: 650;
}

.bbc-cart .cart-action-icon .button {
  color: var(--bbc-wine);
}

.bbc-cart .cart__footer {
  background: var(--bbc-paper-warm);
  border: 1px solid var(--bbc-line);
  border-radius: 18px;
  padding: 28px;
}

.bbc-cart .cart__footer > div,
.bbc-cart .cart__blocks {
  width: 100%;
}

.bbc-cart .voucher-toggle,
.bbc-cart discount-input .field {
  background: var(--bbc-paper);
  border: 1px solid var(--bbc-line);
  border-radius: 12px;
}

.bbc-cart .voucher-toggle {
  appearance: none;
  color: inherit;
  font: inherit;
  min-height: 4.4rem;
  text-align: left;
  width: 100%;
}

.bbc-cart .totals {
  align-items: center;
}

.bbc-cart .totals__subtotal {
  color: var(--bbc-ink);
  font-family: var(--bbc-sans);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0;
}

.bbc-cart .totals__subtotal-value {
  color: var(--bbc-wine-deep);
  font-family: var(--bbc-display);
  font-size: 27px;
  font-weight: 600;
}

.bbc-cart .tax-note {
  color: var(--bbc-muted);
  font-size: 10px;
  margin: 10px 0 18px;
}

.bbc-cart-benefits-wrap {
  margin-top: 22px;
}

.bbc-cart-benefits {
  align-items: center;
  background:
    radial-gradient(circle at 5% 0%, rgba(154, 106, 47, 0.12), transparent 19rem),
    linear-gradient(145deg, var(--bbc-paper), var(--bbc-blush));
  border: 1px solid rgba(154, 106, 47, 0.22);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(58, 42, 33, 0.06);
  display: grid;
  gap: 24px;
  grid-template-columns: 112px minmax(0, 1fr) minmax(300px, 0.78fr);
  padding: 18px;
}

.bbc-cart-benefits__media {
  border: 1px solid rgba(154, 106, 47, 0.18);
  border-radius: 14px;
  overflow: hidden;
}

.bbc-cart-benefits__media img {
  aspect-ratio: 1;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.bbc-cart-benefits__copy {
  min-width: 0;
}

.bbc-cart-benefits__eyebrow {
  color: var(--bbc-wine);
  font-size: 8px;
  font-weight: 750;
  letter-spacing: 0.14em;
  margin: 0 0 5px;
}

.bbc-cart-benefits__copy h2 {
  color: var(--bbc-wine-deep);
  font-size: 25px;
  line-height: 1;
  margin: 0 0 7px;
}

.bbc-cart-benefits__intro {
  color: var(--bbc-muted);
  font-size: 11.5px;
  line-height: 1.5;
  margin: 0 0 11px;
  max-width: 58ch;
}

.bbc-cart-benefits__list {
  color: var(--bbc-ink);
  display: flex;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 650;
  gap: 7px 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.bbc-cart-benefits__list li {
  align-items: center;
  display: inline-flex;
  gap: 5px;
}

.bbc-cart-benefits__list li > span:first-child {
  color: var(--bbc-wine);
}

.bbc-cart-benefits__assurance {
  border-left: 1px solid rgba(154, 106, 47, 0.22);
  display: grid;
  gap: 10px;
  min-width: 0;
  padding-left: 24px;
}

.bbc-cart-benefits__assurance-item {
  align-items: center;
  display: grid;
  gap: 11px;
  grid-template-columns: 38px minmax(0, 1fr);
  min-height: 52px;
}

.bbc-cart-benefits__assurance-icon {
  align-items: center;
  background: rgba(154, 106, 47, 0.1);
  border: 1px solid rgba(154, 106, 47, 0.2);
  border-radius: 50%;
  color: var(--bbc-wine);
  display: inline-flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.bbc-cart-benefits__assurance-icon svg {
  fill: none;
  height: 19px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
  width: 19px;
}

.bbc-cart-benefits__assurance-item strong,
.bbc-cart-benefits__assurance-item small {
  display: block;
}

.bbc-cart-benefits__assurance-item strong {
  color: var(--bbc-ink);
  font-size: 11.5px;
  line-height: 1.3;
}

.bbc-cart-benefits__assurance-item small {
  color: var(--bbc-muted);
  font-size: 10.5px;
  line-height: 1.45;
  margin-top: 3px;
}

.bbc-cart .cart__checkout-button {
  background: var(--bbc-wine);
  border: 1px solid var(--bbc-wine);
  border-radius: 999px;
  box-shadow: 0 13px 26px rgba(63, 72, 55, 0.2);
  color: var(--bbc-paper);
  font-size: 14px;
  font-weight: 650;
  max-width: none;
  min-height: 54px;
}

.bbc-cart .cart__checkout-button:hover {
  background: var(--bbc-wine-deep);
  border-color: var(--bbc-wine-deep);
}

.bbc-cart .cart__warnings {
  background: var(--bbc-cream);
  border: 1px solid var(--bbc-line);
  border-radius: 20px;
  margin: 22px 0 42px;
  padding: 52px 22px;
}

.bbc-cart--empty {
  min-height: auto;
  padding-bottom: 44px;
}

.bbc-cart .cart__empty-text {
  color: var(--bbc-wine-deep);
  font-family: var(--bbc-display);
  font-size: 42px;
  font-weight: 400;
}

.bbc-cart .cart__warnings .button {
  background: var(--bbc-wine);
  border-radius: 999px;
  color: var(--bbc-paper);
  min-height: 50px;
}

.bbc-vouchers-modal {
  background: var(--bbc-paper);
  border-radius: 18px;
  color: var(--bbc-ink);
}

.bbc-vouchers-modal .vouchers-modal__heading {
  color: var(--bbc-wine-deep);
  font-family: var(--bbc-display);
  font-size: 30px;
}

/* Search */

.bbc-search {
  background: var(--bbc-paper);
  margin-top: 0;
  min-height: 70vh;
  padding: 58px 0 84px;
}

.bbc-search--no-results {
  min-height: auto;
  padding-bottom: 52px;
}

.bbc-search__header {
  margin: 0 auto;
  max-width: 780px;
}

.bbc-search__header h1 {
  font-size: clamp(46px, 6vw, 72px);
  line-height: 0.98;
  margin: 0;
}

.bbc-search__header > p:last-child {
  color: var(--bbc-muted);
  font-size: 14px;
  margin: 18px auto 0;
  max-width: 620px;
}

.bbc-search .template-search__search {
  margin-top: 30px;
  max-width: 690px;
}

.bbc-search .template-search__search .search {
  margin-top: 0;
}

.bbc-search .template-search__search .field {
  background: var(--bbc-paper-warm);
  border: 1px solid var(--bbc-line);
  border-radius: 999px;
  min-height: 58px;
}

.bbc-search .search__input.field__input {
  background: transparent;
  border: 0;
  border-radius: 999px;
  box-shadow: none;
  color: var(--bbc-ink);
  min-height: 58px;
  padding-left: 22px;
}

.bbc-search .search__button {
  color: var(--bbc-wine);
  min-height: 56px;
  width: 56px;
}

.bbc-search .dropdown {
  background: var(--bbc-paper);
  border-color: var(--bbc-line);
  border-radius: 0 0 16px 16px;
  color: var(--bbc-ink);
}

.bbc-search__discovery {
  align-items: center;
  background:
    radial-gradient(circle at 90% 5%, rgba(185, 103, 126, 0.28), transparent 34%),
    var(--bbc-wine-deep);
  border-radius: 20px;
  color: var(--bbc-paper);
  display: grid;
  gap: 36px;
  grid-template-columns: 1fr auto;
  margin-top: 64px;
  padding: 38px 42px;
}

.bbc-search__discovery .bbc-eyebrow {
  color: var(--bbc-gold);
}

.bbc-search__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.bbc-search__chips a {
  border: 1px solid rgba(255, 253, 249, 0.26);
  border-radius: 999px;
  color: var(--bbc-paper);
  font-size: 12px;
  padding: 9px 14px;
  text-decoration: none;
}

.bbc-search__chips a:hover {
  background: rgba(255, 253, 249, 0.1);
}

.bbc-search__quiz {
  align-items: flex-end;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bbc-search__quiz > span {
  color: rgba(255, 253, 249, 0.7);
  font-size: 11px;
}

.bbc-search__quiz .bbc-button {
  background: var(--bbc-paper);
  box-shadow: none;
  color: var(--bbc-wine-deep) !important;
}

.bbc-search__no-results {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 34px;
}

.bbc-search__results-heading {
  align-items: flex-end;
  border-bottom: 1px solid var(--bbc-line);
  display: flex;
  justify-content: space-between;
  margin: 66px 0 30px;
  padding-bottom: 15px;
}

.bbc-search__results-heading .bbc-eyebrow {
  margin-bottom: 0;
}

.bbc-search__results-heading span {
  color: var(--bbc-muted);
  font-size: 11px;
}

.bbc-search .template-search__results {
  margin-top: 0;
}

@media screen and (min-width: 1440px) {
  .bbc-cart--filled .cart__contents {
    align-items: start;
    display: grid;
    gap: 46px;
    grid-template-columns: minmax(0, 1fr) 380px;
    margin-left: auto;
    margin-right: auto;
    max-width: var(--page-width);
    padding-left: 5rem;
    padding-right: 5rem;
    width: 100%;
  }

  .bbc-cart .cart__contents > cart-items {
    grid-column: 1;
    margin: 0;
    max-width: none;
    min-width: 0;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
  }

  .bbc-cart .cart__contents > #main-cart-footer {
    grid-column: 2;
    margin: 0;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0;
    position: sticky;
    top: calc(var(--header-bottom-position, 76px) + 24px);
    width: 100%;
  }

  .bbc-cart .cart__footer {
    display: block;
  }

  .bbc-cart .cart__ctas {
    display: block;
  }
}

@media screen and (min-width: 990px) and (max-width: 1180px) {
  .bbc-product {
    padding-top: 14px;
  }

  .bbc-breadcrumb {
    margin-bottom: 16px;
  }

  .bbc-product__layout {
    --bbc-product-column-gap: 20px;
    --bbc-product-column-half-gap: 10px;
    margin-left: 0;
  }

  .bbc-product__layout > .grid__item,
  .bbc-product .product__info-wrapper {
    padding-left: 0 !important;
  }

  .bbc-product__gallery {
    padding: 12px;
  }

  .bbc-product__gallery .product__media-item {
    min-height: 440px;
  }

  .bbc-product__purchase-panel {
    padding: 26px !important;
  }

  .bbc-product .product__title {
    font-size: clamp(36px, 4.4vw, 50px);
    margin-bottom: 13px;
  }

  .bbc-product__price {
    margin-bottom: 16px;
    padding-bottom: 14px;
  }
}

@media screen and (max-width: 989px) {
  .bbc-collection__toolbar {
    background: rgba(255, 253, 249, 0.97);
    position: sticky;
    scroll-margin-top: var(--header-bottom-position, 76px);
    top: var(--header-bottom-position, 76px);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }

  .bbc-collection .bbc-filter-container {
    flex: 0 0 100%;
    margin: 0;
    width: 100%;
  }

  .bbc-collection #main-collection-product-grid {
    margin-left: -16px;
    width: 100%;
  }

  .bbc-product-grid > .grid__item {
    padding-left: 16px;
  }

  .bbc-product__layout {
    column-gap: 0;
    margin-left: 0;
    row-gap: 24px;
  }

  .bbc-product__layout > .grid__item {
    max-width: 100%;
    padding-left: 0;
    width: 100%;
  }

  .bbc-product .product__info-wrapper {
    padding-left: 0 !important;
  }

  .bbc-product .product__info-container--sticky {
    position: static !important;
    top: auto;
  }

  .bbc-product__media,
  .bbc-product__info {
    max-width: 100%;
    width: 100%;
  }

  .bbc-product__gallery {
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    width: 100%;
  }

  .bbc-product__gallery .product__media-item {
    min-height: min(56vw, 520px);
  }

  .bbc-product__purchase-panel {
    padding: 30px !important;
  }

  .bbc-product .product__title {
    font-size: clamp(40px, 7vw, 54px);
  }

  .bbc-cart-benefits {
    align-items: start;
    grid-template-columns: 104px minmax(0, 1fr);
  }

  .bbc-cart-benefits__assurance {
    border-left: 0;
    border-top: 1px solid rgba(154, 106, 47, 0.22);
    gap: 16px;
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 0;
    padding-top: 16px;
  }
}

@media screen and (min-width: 750px) and (max-width: 989px) {
  .bbc-product__gallery .slider.slider--mobile {
    flex-wrap: nowrap;
    margin-bottom: 1rem;
    margin-left: 0;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    width: 100%;
    -webkit-overflow-scrolling: touch;
  }

  .bbc-product__gallery .slider.slider--mobile .slider__slide {
    flex: 0 0 100%;
    margin: 0;
    max-width: 100%;
    padding: 0;
    width: 100%;
  }

  .bbc-product__gallery .slider--mobile + .slider-buttons {
    display: flex;
  }
}

@media screen and (max-width: 749px) {
  html.bbc-filter-open {
    overflow: hidden;
  }

  .bbc-collection-hero__inner {
    padding-bottom: 32px;
    padding-top: 32px;
  }

  .bbc-collection-hero .collection-hero__title {
    font-size: clamp(44px, 14vw, 58px);
  }

  .bbc-collection-hero__description {
    font-size: 14px;
  }

  .bbc-collection-hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bbc-collection-hero__actions .bbc-button {
    width: 100%;
  }

  .bbc-collection-hero__microcopy {
    text-align: center;
  }

  .bbc-collection-grid {
    padding: 18px 0 52px;
  }

  .bbc-collection__toolbar {
    margin-bottom: 22px;
    padding: 8px 0 12px;
    scroll-margin-top: var(--header-bottom-position, 58px);
    top: var(--header-bottom-position, 58px);
  }

  .bbc-collection__count {
    max-width: 48%;
  }

  .bbc-filter-toggle__button {
    min-height: 42px;
    padding: 8px 13px;
  }

  .bbc-collection .bbc-filter {
    background: var(--bbc-paper);
    max-width: min(420px, 100vw);
    padding: 20px 22px 0;
    width: 100%;
  }

  .bbc-filter__header {
    padding-bottom: 14px;
  }

  .bbc-filter__header strong {
    font-size: 28px;
  }

  .bbc-product-grid {
    margin-left: -10px !important;
  }

  .bbc-product-grid > .grid__item {
    padding-bottom: 30px;
    padding-left: 10px;
  }

  .bbc-product-card .card--product {
    border-radius: 11px;
  }

  .bbc-product-card .bbc-product-card__information {
    flex: 0 0 auto;
    padding-top: 12px;
  }

  .bbc-product-card > a {
    height: auto;
  }

  .bbc-product-card__eyebrow {
    font-size: 7px;
    letter-spacing: 0.11em;
  }

  .bbc-product-card .bbc-product-card__title {
    font-size: clamp(18px, 5.2vw, 23px);
  }

  .bbc-product-card__purchase {
    align-items: flex-start;
    flex-direction: column;
    gap: 5px;
    margin-top: 10px;
    padding-top: 9px;
  }

  .bbc-product-card__purchase .price,
  .bbc-product-card__view {
    font-size: 10px;
  }

  .bbc-product-card .badge-circle.addToClassList {
    height: 38px;
    width: 38px;
  }

  .bbc-sort .collection-filters__label {
    display: none;
  }

  .bbc-sort .collection-filters__sort {
    max-width: 170px;
  }

  .bbc-product {
    padding-bottom: 58px;
    padding-top: 16px;
  }

  .bbc-breadcrumb {
    margin-bottom: 12px;
  }

  .bbc-product__layout {
    margin-left: 0;
  }

  .bbc-product__layout > .grid__item {
    padding-left: 0;
  }

  .bbc-product__gallery {
    border-radius: 14px;
    margin: 0;
    padding: 0;
  }

  .bbc-product__gallery .product__media-item {
    min-height: 340px;
  }

  .bbc-product__gallery .slider-component {
    margin: 0;
  }

  .bbc-product__gallery .product__media-list {
    margin: 0;
    width: 100%;
  }

  .bbc-product__info {
    margin-top: 0;
  }

  .bbc-product__purchase-panel {
    border-radius: 16px;
    padding: 25px 20px !important;
  }

  .bbc-product .product__title {
    font-size: clamp(38px, 12vw, 50px);
  }

  .bbc-order-inclusions__set {
    gap: 0;
    grid-template-columns: minmax(0, 1fr);
    padding: 0;
  }

  .bbc-order-inclusions__copy {
    padding: 16px 0 0;
  }

  .bbc-order-inclusions h2 {
    font-size: 28px;
  }

  .bbc-order-inclusions__intro {
    font-size: 11px;
  }

  .bbc-order-inclusions__list li {
    font-size: 11.5px;
  }

  .bbc-purchase-assurance {
    font-size: 9px;
  }

  .bbc-purchase-assurance li {
    padding: 0 5px;
  }

  .bbc-product__story {
    padding-top: 28px;
  }

  .bbc-product__story h2 {
    font-size: 32px;
  }

  .bbc-cart {
    padding: 32px 0 50px;
  }

  .bbc-cart .title-wrapper-with-link {
    align-items: flex-start;
    gap: 12px;
  }

  .bbc-cart .title--primary {
    font-size: 46px;
  }

  .bbc-cart .cart-items thead {
    display: none;
  }

  .bbc-cart .cart-item {
    gap: 12px;
    grid-template-columns: 92px minmax(0, 1fr) auto;
    margin-bottom: 24px;
  }

  .bbc-cart .cart-item > td {
    border-bottom: 0;
    padding: 0;
  }

  .bbc-cart .cart-item__media {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 92px;
  }

  .bbc-cart .cart-item__details {
    grid-column: 2;
    grid-row: 1;
  }

  .bbc-cart .cart-item__totals {
    grid-column: 3;
    grid-row: 1;
  }

  .bbc-cart .cart-item__quantity {
    grid-column: 2 / 4;
    grid-row: 2;
  }

  .bbc-cart .cart-item__name {
    font-size: 20px;
  }

  .bbc-cart .cart__footer {
    border-radius: 15px;
    padding: 22px 18px;
  }

  .bbc-cart-benefits-wrap {
    margin-top: 18px;
  }

  .bbc-cart-benefits {
    gap: 14px;
    grid-template-columns: 78px minmax(0, 1fr);
    padding: 14px;
  }

  .bbc-cart-benefits__copy h2 {
    font-size: 22px;
  }

  .bbc-cart-benefits__intro {
    font-size: 10.5px;
  }

  .bbc-cart-benefits__list {
    display: grid;
    gap: 6px;
  }

  .bbc-cart-benefits__assurance {
    gap: 10px;
    grid-template-columns: 1fr;
  }

  .bbc-cart-benefits__assurance-item {
    min-height: 48px;
  }

  .bbc-search {
    padding: 38px 0 54px;
  }

  .bbc-search__header h1 {
    font-size: clamp(44px, 13vw, 58px);
  }

  .bbc-search .template-search__search {
    margin-top: 25px;
  }

  .bbc-search__discovery {
    align-items: stretch;
    gap: 30px;
    grid-template-columns: 1fr;
    margin-top: 45px;
    padding: 30px 22px;
  }

  .bbc-search__quiz {
    align-items: stretch;
  }

  .bbc-search__quiz .bbc-button {
    width: 100%;
  }

  .bbc-search__results-heading {
    margin-top: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bbc-commerce *,
  .bbc-product-card * {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

:root {
  --bbp-paper: #fffdf9;
  --bbp-cream: #f8f1ea;
  --bbp-blush: #f3e4e6;
  --bbp-ink: #2a211f;
  --bbp-muted: #766a66;
  --bbp-wine: #6f2941;
  --bbp-wine-deep: #351923;
  --bbp-gold: #b7895b;
  --bbp-line: rgba(72, 48, 43, 0.15);
  --bbp-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --bbp-sans: "DM Sans", "Avenir Next", Avenir, "Segoe UI", sans-serif;
}

body {
  background: var(--bbp-paper);
  color: var(--bbp-ink);
}

body:not(.template-index) #MainContent {
  min-height: 54vh;
}

.bbp-page,
.bbp-page *,
.bbp-not-found,
.bbp-not-found *,
.template-store-locator #MainContent,
[class*="template-customers"] #MainContent {
  box-sizing: border-box;
}

.bbp-page {
  background:
    radial-gradient(circle at 8% 8%, rgba(183, 137, 91, 0.08), transparent 24rem),
    var(--bbp-paper);
  font-family: var(--bbp-sans);
  letter-spacing: 0;
  padding: 0 24px 100px;
}

.bbp-page__content {
  color: var(--bbp-ink);
  margin: 0 auto;
  max-width: 1100px;
}

.bbp-page__content a {
  color: var(--bbp-wine);
}

.bbp-page__content h1,
.bbp-page__content h2,
.bbp-page__content h3,
.bbp-page__content h4 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-weight: 600;
  letter-spacing: -0.025em;
}

.bbp-page__content h1 {
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.96;
}

.bbp-page__content h2 {
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.02;
}

.bbp-page__content h3 {
  font-size: clamp(22px, 3vw, 28px);
}

.bbp-page__content p,
.bbp-page__content li {
  color: var(--bbp-muted);
  line-height: 1.72;
}

.bbp-page__content table {
  background: var(--bbp-paper);
  border-collapse: collapse;
  width: 100%;
}

.bbp-page__content th {
  background: var(--bbp-cream);
  color: var(--bbp-wine-deep);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bbp-page__content th,
.bbp-page__content td {
  border-bottom: 1px solid var(--bbp-line);
  padding: 15px 17px;
  text-align: left;
}

.bbp-page-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 253, 249, 0.13), transparent 18rem),
    linear-gradient(135deg, var(--bbp-wine-deep), #5a3e24 58%, #76552d);
  border-radius: 0 0 30px 30px;
  color: var(--bbp-paper);
  margin: 0 auto 42px;
  max-width: 1280px;
  min-height: 410px;
  padding: clamp(72px, 9vw, 118px) clamp(28px, 8vw, 108px);
  position: relative;
  overflow: hidden;
}

.bbp-page-hero::after {
  border: 1px solid rgba(255, 253, 249, 0.15);
  border-radius: 50%;
  content: "";
  height: 310px;
  position: absolute;
  right: -86px;
  top: -92px;
  width: 310px;
}

.bbp-eyebrow {
  color: #d8af84;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.19em;
  margin: 0 0 19px;
}

.bbp-page-hero h1 {
  color: var(--bbp-paper);
  font-family: var(--bbp-serif);
  font-size: clamp(48px, 7vw, 82px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0 0 23px;
  max-width: 760px;
}

.bbp-page-hero > p:not(.bbp-eyebrow) {
  color: rgba(255, 253, 249, 0.78);
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
  max-width: 640px;
}

.bbp-button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin-top: 29px;
}

.bbp-button {
  align-items: center;
  border: 1px solid transparent;
  border-radius: 999px;
  display: inline-flex;
  font-size: 13px;
  font-weight: 600;
  justify-content: center;
  min-height: 48px;
  padding: 12px 23px;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease;
}

.bbp-button:hover {
  transform: translateY(-1px);
}

.bbp-button--paper {
  background: var(--bbp-paper);
  color: var(--bbp-wine-deep);
}

.bbp-button--outline-light {
  border-color: rgba(255, 253, 249, 0.38);
  color: var(--bbp-paper);
}

.bbp-button--wine {
  background: var(--bbp-wine);
  color: var(--bbp-paper);
}

.bbp-visit-benefits {
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, 1fr);
  margin: -12px auto 70px;
  max-width: 1100px;
}

.bbp-visit-benefits article {
  border-left: 1px solid var(--bbp-line);
  min-height: 150px;
  padding: 28px 34px;
}

.bbp-visit-benefits article:last-child {
  border-right: 1px solid var(--bbp-line);
}

.bbp-visit-benefits span {
  color: var(--bbp-gold);
  font-size: 10px;
  letter-spacing: 0.13em;
}

.bbp-visit-benefits h2 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: 25px;
  letter-spacing: -0.02em;
  margin: 12px 0 7px;
}

.bbp-visit-benefits p {
  color: var(--bbp-muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

/* Visit Us: retain the EasyStore-managed address and hours, but present them
   inside the shared BellaBloom system. */
.bbp-page--visit .bellabloom-info-container {
  color: var(--bbp-ink) !important;
  font-family: var(--bbp-sans) !important;
  margin: 0 auto !important;
  max-width: 960px !important;
  padding: 0 !important;
}

.bbp-page--visit .info-header {
  display: none !important;
}

.bbp-page--visit .info-content {
  border: 0 !important;
  display: grid !important;
  gap: 18px !important;
  grid-template-columns: repeat(2, 1fr) !important;
  padding: 0 !important;
}

.bbp-page--visit .info-card {
  background: #fff !important;
  border: 1px solid var(--bbp-line) !important;
  border-radius: 22px !important;
  box-shadow: 0 18px 50px rgba(53, 25, 35, 0.06) !important;
  max-width: none !important;
  min-height: 270px;
  padding: 38px !important;
  text-align: left !important;
}

.bbp-page--visit .icon-label {
  color: var(--bbp-gold) !important;
  font-size: 10px !important;
  font-weight: 600 !important;
  letter-spacing: 0.16em !important;
}

.bbp-page--visit .address-text {
  color: var(--bbp-wine-deep) !important;
  font-family: var(--bbp-serif) !important;
  font-size: 27px !important;
  line-height: 1.25 !important;
}

.bbp-page--visit .contact-links a {
  border-bottom-color: var(--bbp-wine) !important;
  color: var(--bbp-wine) !important;
}

.bbp-page--visit .hours-item {
  border-bottom-color: var(--bbp-line) !important;
  color: var(--bbp-muted);
  padding: 10px 0 15px !important;
}

.bbp-page--visit .hours-item strong {
  color: var(--bbp-wine-deep);
}

/* Bloom Rewards: concise theme-owned guidance with live EasyStore feature
   gating and a collapsed CMS-managed programme-details slot. */
.bbp-page-hero--rewards {
  min-height: 390px;
  padding-right: clamp(360px, 34vw, 450px);
}

.bbp-page-hero--rewards-unavailable {
  min-height: 320px;
  padding-right: clamp(26px, 7vw, 90px);
}

.bbp-page-hero--rewards h1 {
  font-size: clamp(48px, 5.4vw, 72px);
  max-width: 700px;
}

.bbp-rewards-hero-facts {
  background: rgba(255, 253, 249, 0.08);
  border: 1px solid rgba(255, 253, 249, 0.16);
  border-radius: 22px;
  display: grid;
  list-style: none;
  margin: 0;
  padding: 8px 24px;
  position: absolute;
  right: clamp(28px, 6vw, 78px);
  top: 50%;
  transform: translateY(-50%);
  width: clamp(280px, 24vw, 330px);
  z-index: 1;
}

.bbp-rewards-hero-facts li {
  align-items: baseline;
  border-bottom: 1px solid rgba(255, 253, 249, 0.13);
  display: block;
  padding: 17px 0;
}

.bbp-rewards-hero-facts li:last-child {
  border-bottom: 0;
}

.bbp-rewards-hero-facts strong {
  color: var(--bbp-paper);
  display: block;
  font-family: var(--bbp-serif);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.bbp-rewards-hero-facts span {
  color: rgba(255, 253, 249, 0.68);
  display: block;
  font-size: 11px;
  line-height: 1.4;
  margin-top: 5px;
}

.bbp-rewards-content {
  margin: 0 auto;
  max-width: 1160px;
}

.bbp-rewards-section {
  padding: 72px 0;
}

.bbp-rewards-section + .bbp-rewards-section {
  border-top: 1px solid var(--bbp-line);
}

.bbp-rewards-section__heading {
  margin-bottom: 34px;
  max-width: 760px;
}

.bbp-rewards-section__heading--split {
  align-items: end;
  display: grid;
  gap: 40px;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  max-width: none;
}

.bbp-rewards-section__eyebrow {
  color: var(--bbp-wine);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  margin: 0 0 13px;
}

.bbp-rewards-section h2 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: clamp(38px, 5vw, 56px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}

.bbp-rewards-section__heading--split > p {
  color: var(--bbp-muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0 0 3px;
}

.bbp-rewards-steps {
  counter-reset: bbp-rewards-step;
  display: grid;
  gap: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.bbp-rewards-steps li {
  border-left: 1px solid var(--bbp-line);
  display: grid;
  gap: 18px;
  grid-template-columns: 38px minmax(0, 1fr);
  min-height: 150px;
  padding: 6px 30px 6px 28px;
}

.bbp-rewards-steps li:last-child {
  border-right: 1px solid var(--bbp-line);
}

.bbp-rewards-step__number {
  align-items: center;
  background: var(--bbp-blush);
  border-radius: 50%;
  color: var(--bbp-wine);
  display: flex;
  font-size: 10px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  letter-spacing: 0.08em;
  width: 34px;
}

.bbp-rewards-steps h3 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.05;
  margin: 2px 0 10px;
}

.bbp-rewards-steps p {
  color: var(--bbp-muted);
  font-size: 13px;
  line-height: 1.65;
  margin: 0;
}

.bbp-rewards-tiers {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bbp-rewards-tier {
  background: #fff;
  border: 1px solid var(--bbp-line);
  border-radius: 20px;
  min-width: 0;
  padding: 30px;
}

.bbp-rewards-tier--silver {
  background: linear-gradient(145deg, #fff, #f2f0ed);
}

.bbp-rewards-tier--gold {
  background: linear-gradient(145deg, #fffaf2, #f1e3cf);
  border-color: rgba(183, 137, 91, 0.34);
}

.bbp-rewards-tier__label {
  color: var(--bbp-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.45;
  margin: 0 0 25px;
  min-height: 27px;
}

.bbp-rewards-tier h3 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: 31px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 18px;
}

.bbp-rewards-tier__rate {
  align-items: baseline;
  display: flex;
  gap: 10px;
  margin: 0 0 25px;
}

.bbp-rewards-tier__rate strong {
  color: var(--bbp-wine);
  font-family: var(--bbp-serif);
  font-size: 58px;
  font-weight: 600;
  line-height: 0.8;
}

.bbp-rewards-tier__rate span {
  color: var(--bbp-muted);
  font-size: 11px;
  line-height: 1.35;
  max-width: 90px;
}

.bbp-rewards-tier dl,
.bbp-rewards-rules {
  margin: 0;
}

.bbp-rewards-tier dl div {
  border-top: 1px solid var(--bbp-line);
  display: flex;
  gap: 18px;
  justify-content: space-between;
  padding: 13px 0 0;
}

.bbp-rewards-tier dl div + div {
  margin-top: 13px;
}

.bbp-rewards-tier dt,
.bbp-rewards-tier dd {
  font-size: 11px;
  line-height: 1.45;
  margin: 0;
}

.bbp-rewards-tier dt {
  color: var(--bbp-muted);
}

.bbp-rewards-tier dd {
  color: var(--bbp-ink);
  font-weight: 600;
  text-align: right;
}

.bbp-rewards-tier-note {
  color: var(--bbp-muted);
  font-size: 12px;
  line-height: 1.65;
  margin: 19px 2px 0;
}

.bbp-rewards-tier-note strong {
  color: var(--bbp-ink);
}

.bbp-rewards-redemption {
  background: var(--bbp-cream);
  border-radius: 24px;
  display: grid;
  gap: clamp(40px, 7vw, 90px);
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  padding: clamp(34px, 6vw, 68px);
}

.bbp-rewards-redemption__intro > p:last-child {
  color: var(--bbp-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 25px 0 0;
}

.bbp-rewards-redemption__intro strong {
  color: var(--bbp-wine-deep);
}

.bbp-rewards-membership-action {
  align-self: center;
}

.bbp-rewards-membership-action p {
  color: var(--bbp-muted);
  font-size: 14px;
  line-height: 1.7;
  margin: 0 0 22px;
  max-width: 440px;
}

.bbp-rewards-rules {
  display: grid;
  gap: 0 34px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.bbp-rewards-rules div {
  border-top: 1px solid var(--bbp-line);
  padding: 18px 0 20px;
}

.bbp-rewards-rules dt {
  color: var(--bbp-ink);
  font-size: 12px;
  font-weight: 700;
  margin: 0 0 6px;
}

.bbp-rewards-rules dd {
  color: var(--bbp-muted);
  font-size: 11px;
  line-height: 1.55;
  margin: 0;
}

.bbp-rewards-terms {
  border-bottom: 1px solid var(--bbp-line);
  margin-top: 22px;
}

.bbp-rewards-terms > summary {
  align-items: center;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  list-style: none;
  min-height: 76px;
  padding: 8px 2px;
}

.bbp-rewards-terms > summary::-webkit-details-marker {
  display: none;
}

.bbp-rewards-terms > summary strong,
.bbp-rewards-terms > summary small {
  display: block;
}

.bbp-rewards-terms > summary strong {
  color: var(--bbp-ink);
  font-size: 13px;
  margin-bottom: 4px;
}

.bbp-rewards-terms > summary small {
  color: var(--bbp-muted);
  font-size: 11px;
}

.bbp-rewards-terms__icon {
  border: 1px solid var(--bbp-line);
  border-radius: 50%;
  height: 34px;
  margin-left: 20px;
  position: relative;
  width: 34px;
}

.bbp-rewards-terms__icon::before,
.bbp-rewards-terms__icon::after {
  background: var(--bbp-wine);
  content: "";
  height: 1px;
  left: 10px;
  position: absolute;
  top: 16px;
  width: 12px;
}

.bbp-rewards-terms__icon::after {
  transform: rotate(90deg);
  transition: transform 160ms ease;
}

.bbp-rewards-terms[open] > summary .bbp-rewards-terms__icon::after {
  transform: rotate(0);
}

.bbp-rewards-terms > summary:focus-visible {
  border-radius: 8px;
  outline: 2px solid var(--bbp-wine);
  outline-offset: 3px;
}

.bbp-rewards-terms__content {
  color: var(--bbp-muted);
  font-size: 12px;
  line-height: 1.7;
  max-width: 820px;
  padding: 0 2px 23px;
}

.bbp-rewards-terms__content ul {
  margin: 0;
  padding-left: 18px;
}

.bbp-rewards-terms__content li + li {
  margin-top: 7px;
}

/* Store locator */
.template-store-locator #MainContent {
  background: var(--bbp-paper);
  font-family: var(--bbp-sans);
  padding: 0;
}

.template-store-locator .store-locator-heading {
  margin-bottom: 28px;
  max-width: 1120px;
}

.template-store-locator .store-locator-heading h1 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: clamp(46px, 7vw, 76px);
  letter-spacing: -0.04em;
  line-height: 0.95;
  margin-bottom: 20px;
}

.template-store-locator .store-locator-section {
  max-width: 1120px;
}

.template-store-locator .store-selector-item {
  background: #fff;
  border: 1px solid var(--bbp-line);
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(53, 25, 35, 0.06);
  padding: 34px;
}

.template-store-locator .store-selector-item strong {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: 28px;
}

.template-store-locator .store-selector-item .button {
  background: var(--bbp-wine);
  border-radius: 999px;
  color: #fff;
}

/* Customer account, login and registration */
[class*="template-customers"] #MainContent {
  background:
    radial-gradient(circle at 15% 5%, rgba(183, 137, 91, 0.12), transparent 24rem),
    var(--bbp-paper);
  font-family: var(--bbp-sans);
  padding: clamp(44px, 6vw, 76px) 20px;
}

[class*="template-customers"] .customer {
  background: #fff;
  border: 1px solid var(--bbp-line);
  border-radius: 24px;
  box-shadow: 0 22px 60px rgba(53, 25, 35, 0.07);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(28px, 5vw, 55px);
}

[class*="template-customers"] .customer h1,
[class*="template-customers"] .customer h2 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  letter-spacing: -0.03em;
}

[class*="template-customers"] .customer h1 {
  font-size: clamp(40px, 6vw, 60px);
}

[class*="template-customers"] .customer input,
[class*="template-customers"] .customer select {
  background: var(--bbp-paper);
  border-color: var(--bbp-line);
  border-radius: 12px;
}

[class*="template-customers"] .customer button,
[class*="template-customers"] .customer .button {
  background: var(--bbp-wine);
  border-radius: 999px;
  color: #fff;
}

[class*="template-customers"] .customer .card-box,
[class*="template-customers"] .customer .order-card__wrapper {
  border-color: var(--bbp-line);
  border-radius: 16px;
}

/* Blog, article and collection index */
.template-blog .main-blog,
.template-article .article-template,
.template-list-collections #MainContent {
  font-family: var(--bbp-sans);
}

.template-blog .title--primary,
.template-article .article-template__title,
.template-list-collections .section-header__title {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: clamp(44px, 7vw, 72px);
  letter-spacing: -0.04em;
  line-height: 0.96;
}

.template-blog .article-card,
.template-list-collections .grid__item {
  border-radius: 18px;
  overflow: hidden;
}

.template-blog .article-card__title {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
}

.bbp-collection-index {
  font-family: var(--bbp-sans);
  padding-bottom: 100px;
  padding-top: clamp(64px, 8vw, 108px);
}

.bbp-collection-index__header {
  margin-bottom: 54px;
  max-width: 760px;
}

.bbp-collection-index__header h1 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.92;
  margin: 0 0 22px;
}

.bbp-collection-index__header > p:not(.bbp-eyebrow) {
  color: var(--bbp-muted);
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
  max-width: 620px;
}

.bbp-collection-index__header > a {
  border-bottom: 1px solid var(--bbp-wine);
  color: var(--bbp-wine);
  display: inline-block;
  font-weight: 600;
  margin-top: 13px;
  padding-bottom: 3px;
  text-decoration: none;
}

.bbp-collection-index__grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(3, 1fr);
  list-style: none;
  margin: 0;
  padding: 0;
}

.bbp-collection-tile {
  background: #fff;
  border: 1px solid var(--bbp-line);
  border-radius: 18px;
  color: var(--bbp-ink);
  display: block;
  overflow: hidden;
  text-decoration: none;
}

.bbp-collection-tile__media {
  background: var(--bbp-cream);
  display: block;
  overflow: hidden;
  position: relative;
}

.bbp-collection-tile__media::before {
  content: "";
  display: block;
  padding-bottom: 72%;
}

.bbp-collection-tile__media img,
.bbp-collection-tile__placeholder {
  height: 100%;
  inset: 0;
  object-fit: cover;
  position: absolute;
  transition: transform 320ms ease;
  width: 100%;
}

.bbp-collection-tile__placeholder {
  background:
    radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.78), transparent 22%),
    linear-gradient(135deg, var(--bbp-blush), var(--bbp-cream));
}

.bbp-collection-tile:hover .bbp-collection-tile__media img {
  transform: scale(1.025);
}

.bbp-collection-tile__copy {
  display: grid;
  padding: 22px;
}

.bbp-collection-tile__copy strong {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: 27px;
  letter-spacing: -0.02em;
}

.bbp-collection-tile__copy small {
  color: var(--bbp-muted);
  font-size: 11px;
  margin-top: 4px;
}

.bbp-collection-tile__copy em {
  color: var(--bbp-wine);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  margin-top: 18px;
}

.template-article .article-template__hero-container {
  border-radius: 24px;
  overflow: hidden;
}

.template-article .article-template__content {
  color: var(--bbp-muted);
  font-family: var(--bbp-sans);
  font-size: 17px;
  line-height: 1.8;
}

/* 404 */
.bbp-not-found {
  align-items: center;
  background:
    radial-gradient(circle at 50% 10%, rgba(183, 137, 91, 0.13), transparent 26rem),
    var(--bbp-paper);
  display: flex;
  flex-direction: column;
  font-family: var(--bbp-sans);
  min-height: 560px;
  padding: 90px 24px;
  text-align: center;
}

.bbp-not-found__eyebrow {
  color: var(--bbp-gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
}

.bbp-not-found h1 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: clamp(54px, 9vw, 96px);
  letter-spacing: -0.05em;
  line-height: 0.9;
  margin: 18px 0 20px;
}

.bbp-not-found > p {
  color: var(--bbp-muted);
  font-size: 16px;
  margin: 0;
  max-width: 570px;
}

.bbp-not-found__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 28px;
}

.bbp-not-found__actions a {
  border: 1px solid var(--bbp-wine);
  border-radius: 999px;
  color: var(--bbp-wine);
  font-weight: 600;
  min-width: 150px;
  padding: 12px 22px;
  text-decoration: none;
}

.bbp-not-found__actions a:first-child {
  background: var(--bbp-wine);
  color: #fff;
}

.bbp-not-found__search {
  margin-top: 32px;
  max-width: 520px;
  width: 100%;
}

@media (min-width: 750px) and (max-width: 989px) {
  .bbp-page-hero--rewards {
    min-height: 0;
    padding-right: clamp(48px, 8vw, 76px);
  }

  .bbp-rewards-hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 32px;
    padding: 0 8px;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
  }

  .bbp-rewards-hero-facts li {
    border-bottom: 0;
    border-right: 1px solid rgba(255, 253, 249, 0.13);
    display: block;
    padding: 16px 14px;
  }

  .bbp-rewards-hero-facts li:last-child {
    border-right: 0;
  }

  .bbp-rewards-hero-facts strong,
  .bbp-rewards-hero-facts span {
    display: block;
  }

  .bbp-rewards-hero-facts span {
    margin-top: 5px;
  }
}

@media (max-width: 749px) {
  .bbp-page {
    padding: 0 14px 68px;
  }

  .bbp-page-hero {
    border-radius: 0 0 22px 22px;
    margin-bottom: 28px;
    min-height: 430px;
    padding: 68px 25px 52px;
  }

  .bbp-page-hero h1 {
    font-size: clamp(46px, 14vw, 66px);
  }

  .bbp-button-row,
  .bbp-button {
    width: 100%;
  }

  .bbp-visit-benefits {
    grid-template-columns: 1fr;
    margin-bottom: 48px;
  }

  .bbp-visit-benefits article {
    border-bottom: 1px solid var(--bbp-line);
    border-left: 0;
    min-height: 0;
    padding: 24px 17px;
  }

  .bbp-visit-benefits article:last-child {
    border-bottom: 0;
    border-right: 0;
  }

  .bbp-page--visit .info-content {
    grid-template-columns: 1fr !important;
  }

  .bbp-page--visit .info-card {
    min-height: 0;
    padding: 28px 23px !important;
    text-align: left !important;
  }

  .bbp-page--visit .hours-item {
    align-items: flex-start !important;
    flex-direction: column !important;
    gap: 4px !important;
  }

  .bbp-page-hero--rewards {
    min-height: 0;
    padding: 56px 25px 26px;
  }

  .bbp-page-hero--rewards h1 {
    font-size: clamp(43px, 12.5vw, 58px);
  }

  .bbp-rewards-hero-facts {
    margin-top: 30px;
    padding: 5px 17px;
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    width: 100%;
  }

  .bbp-rewards-hero-facts li {
    padding: 14px 0;
  }

  .bbp-rewards-hero-facts strong {
    font-size: 24px;
  }

  .bbp-rewards-section {
    padding: 50px 0;
  }

  .bbp-rewards-section__heading {
    margin-bottom: 27px;
  }

  .bbp-rewards-section__heading--split,
  .bbp-rewards-redemption {
    grid-template-columns: 1fr;
  }

  .bbp-rewards-section__heading--split {
    gap: 18px;
  }

  .bbp-rewards-section h2 {
    font-size: clamp(36px, 11vw, 48px);
  }

  .bbp-rewards-steps,
  .bbp-rewards-tiers {
    grid-template-columns: 1fr;
  }

  .bbp-rewards-steps li {
    border-bottom: 1px solid var(--bbp-line);
    border-left: 0;
    min-height: 0;
    padding: 20px 0 24px;
  }

  .bbp-rewards-steps li:first-child {
    border-top: 1px solid var(--bbp-line);
  }

  .bbp-rewards-steps li:last-child {
    border-right: 0;
  }

  .bbp-rewards-tier {
    padding: 26px 23px;
  }

  .bbp-rewards-tier__label {
    margin-bottom: 18px;
    min-height: 0;
  }

  .bbp-rewards-redemption {
    gap: 32px;
    padding: 30px 23px;
  }

  .bbp-rewards-rules {
    grid-template-columns: 1fr;
  }

  .bbp-collection-index {
    padding-top: 58px;
  }

  .bbp-collection-index__grid {
    gap: 12px;
    grid-template-columns: repeat(2, 1fr);
  }

  .bbp-collection-tile__copy {
    padding: 16px;
  }

  .bbp-collection-tile__copy strong {
    font-size: 21px;
  }

  .bbp-page__content .table-wrapper,
  .bbp-page__content .bb-table-wrap {
    overflow-x: auto;
  }

  [class*="template-customers"] #MainContent {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: calc(100vh - 160px);
    padding: 32px 12px;
  }

  [class*="template-customers"] .customer {
    margin-bottom: 0;
    margin-top: 0;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bbp-button {
    transition: none;
  }
}


/* BellaBloom compact social and payment area */
@media (min-width: 990px) {
  .bbh-global-footer__block--follow_us {
    grid-column: 4;
    grid-row: 1;
  }
  .bbh-global-footer__block--payment_accept {
    border-top: 0;
    grid-column: 4;
    grid-row: 1;
    margin-top: 86px !important;
    padding-top: 0 !important;
  }
}
.bbh-global-footer .list-social__link {
  box-sizing: border-box;
  line-height: 0;
  position: relative;
}
.bbh-global-footer .list-social__link .icon,
.bbh-global-footer .list-social__link svg {
  display: block;
  flex: 0 0 15px;
  height: 15px;
  margin: auto;
  position: static;
  transform: none;
  width: 15px;
}
.bbh-global-footer__block--payment_accept .footer-block__heading {
  margin-bottom: 11px;
}
.bbh-global-footer__block--payment_accept .footer__payment {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
  width: 100%;
}
.bbh-global-footer__payment-options {
  display: grid;
  gap: 9px;
  width: 100%;
}
.bbh-global-footer__block--payment_accept .list-payment {
  gap: 6px;
}
.bbh-global-footer__payment-types {
  color: rgba(255, 253, 249, 0.67);
  font-size: 10.5px;
  line-height: 1.45;
  margin: 0;
}
.bbh-global-footer__payment-note {
  align-items: center;
  border-top: 1px solid rgba(255, 253, 249, 0.11);
  color: rgba(255, 253, 249, 0.4);
  display: flex;
  font-size: 9px;
  flex-wrap: wrap;
  gap: 5px 7px;
  line-height: 1.45;
  margin: 10px 0 0;
  padding-top: 8px;
  width: 100%;
}
.bbh-global-footer__payment-provider-label {
  color: inherit;
}
.bbh-global-footer__payment-provider-logo {
  display: block;
  height: auto;
  max-height: 18px;
  max-width: 64px;
  opacity: 0.66;
  width: auto;
}
.bbh-global-footer__payment-provider-name {
  color: rgba(255, 253, 249, 0.58);
  font-weight: 650;
}
@media (max-width: 989px) {
  .bbh-global-footer__block--payment_accept {
    border-top: 1px solid rgba(255, 253, 249, 0.11);
    grid-column: 1 / -1;
    grid-row: auto;
    padding-top: 24px !important;
  }
}


/* Keep the accessibility link hidden until keyboard focus */
#easystore-section-header .bbh-skip-link {
  opacity: 0;
  pointer-events: none;
}
#easystore-section-header .bbh-skip-link:focus {
  opacity: 1;
  pointer-events: auto;
}


/* BellaBloom filled-cart spacing */
.bbc-cart--filled {
  min-height: auto;
  padding-bottom: 56px;
}
@media (max-width: 749px) {
  .bbc-cart--filled {
    padding-bottom: 44px;
  }
}


/* BellaBloom post-publish polish 2026-08-01 */
#easystore-section-header .bbh-global-brand img {
  display: block;
  filter: brightness(0) saturate(100%) invert(49%) sepia(99%) saturate(211%) hue-rotate(355deg) brightness(85%) contrast(101%);
  height: auto;
  width: 180px;
}

.bbh-global-footer__brand a {
  display: inline-block;
  line-height: 0;
}

.bbh-global-footer__brand a img {
  display: block;
  filter: brightness(0) saturate(100%) invert(49%) sepia(99%) saturate(211%) hue-rotate(355deg) brightness(85%) contrast(101%);
  height: auto;
  width: 190px;
}

.bbh-global-footer .list-social__link {
  height: 40px;
  width: 40px;
}

.bbh-global-footer .list-social__link svg.bbh-social-icon {
  display: block;
  flex: 0 0 auto;
  height: 18px;
  margin: 0;
  position: static;
  transform: none;
  width: 18px;
}

.bbh-global-footer .list-social__link svg.bbh-social-icon--facebook {
  height: 17px;
  width: 17px;
}

@media (max-width: 989px) {
  #easystore-section-header .header__left-icon.header__icons {
    justify-content: flex-start;
  }

  #easystore-section-header .bbh-global-brand img {
    width: 132px;
  }
}

@media (max-width: 749px) {
  .bbh-global-footer.footer {
    padding-top: 48px;
  }

  .bbh-global-footer .bbh-global-footer__grid {
    display: grid;
    gap: 0;
    grid-template-columns: minmax(0, 1fr);
  }

  .bbh-global-footer__brand {
    grid-column: 1;
    margin: 0 0 32px;
    order: 1;
  }

  .bbh-global-footer__brand a img {
    width: 180px;
  }

  .bbh-global-footer__brand p {
    font-size: 13px;
    line-height: 1.55;
    margin-top: 14px;
  }

  .bbh-global-footer__block--follow_us {
    grid-column: 1;
    margin: 0 0 30px;
    order: 2;
  }

  .bbh-global-footer__block--payment_accept {
    border-top: 1px solid rgba(255, 253, 249, 0.13);
    grid-column: 1;
    margin: 0 0 34px;
    order: 3;
    padding-top: 26px !important;
  }

  .bbh-global-footer__block--quick_link {
    grid-column: 1;
    margin: 0 0 30px;
    order: 4;
  }

  .bbh-global-footer__help {
    grid-column: 1;
    margin: 0;
    order: 5;
  }

  .bbh-global-footer .footer-block__heading {
    margin-bottom: 15px;
  }

  .bbh-global-footer .footer-block__details-content .list-menu__item--link,
  .bbh-global-footer .footer-block__details-content a,
  .bbh-global-footer .link--text {
    font-size: 13px;
    line-height: 1.5;
    padding-bottom: 12px;
  }

  .bbh-global-footer__payment-types {
    font-size: 11.5px;
  }

  .bbh-global-footer__payment-note {
    font-size: 10px;
    margin-top: 12px;
    padding-top: 10px;
  }

  .bbh-global-footer .footer__content-bottom {
    margin-top: 38px;
  }

  .bbc-product__media .product__media-wrapper .slider-component {
    margin-left: 0;
    margin-right: 0;
  }

  .bbc-product__media .product__media-list {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }

  .bbc-product__media .product__media-list .product__media-item {
    width: 100%;
  }

  .bbc-product__media .slider.product__media-list .product__media-item:first-of-type {
    padding-left: 0;
  }

  html.bbc-buybar-visible .novochat.easystore-chat-button,
  html.bbc-buybar-visible .easystore-chat-button {
    bottom: calc(79px + env(safe-area-inset-bottom)) !important;
    z-index: 2147482500 !important;
  }
}

@media (min-width: 750px) {
  .bbc-cart .cart-items {
    border-collapse: collapse !important;
  }

  .bbc-cart .cart-item {
    border-bottom: 1px solid var(--bbc-line);
  }

  .bbc-cart .cart-item > td {
    border-bottom: 0 !important;
  }
}


/* BellaBloom gallery centering refinement 2026-08-01 */
@media (max-width: 749px) {
  #easystore-section-header .header__left-icon.header__icons .header__icon--menu {
    margin-left: 6px !important;
  }

  .bbc-product__media .bbc-product__gallery {
    margin-left: 0;
    margin-right: 0;
  }

  .bbc-product__media .slider-component {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
  }
}

/* BellaBloom: keep the live-chat launcher accessible without covering key commerce copy. */
@media screen and (max-width: 989px) {
  .easystore-chat-button {
    align-items: center !important;
    box-sizing: border-box !important;
    height: 52px !important;
    justify-content: center !important;
    line-height: 0 !important;
    min-height: 52px !important;
    min-width: 52px !important;
    padding: 0 !important;
    right: max(10px, env(safe-area-inset-right)) !important;
    width: 52px !important;
  }

  .easystore-chat-button > * {
    margin: auto !important;
  }
}

@media screen and (max-width: 749px) {
  .easystore-chat-button {
    height: 48px !important;
    min-height: 48px !important;
    min-width: 48px !important;
    right: max(8px, env(safe-area-inset-right)) !important;
    width: 48px !important;
  }

}

/* BellaBloom 2026-08-05: mobile footer spacing and alignment. */
@media screen and (max-width: 749px) {
  .bbh-global-footer .bbh-global-footer__grid > .bbh-global-footer__brand {
    margin-bottom: 32px;
  }

  .bbh-global-footer .bbh-global-footer__grid > .bbh-global-footer__block--follow_us {
    margin-bottom: 30px;
  }

  .bbh-global-footer .footer__list-social .list-social__link {
    align-items: center;
    display: flex;
    justify-content: center;
    line-height: 0;
    padding: 0 !important;
  }

  .bbh-global-footer .footer__list-social .list-social__link svg.bbh-social-icon {
    display: block;
    flex: 0 0 auto;
    margin: 0 !important;
  }

  .bbh-global-footer .bbh-global-footer__grid > .bbh-global-footer__block--payment_accept {
    margin-bottom: 32px !important;
  }

  .bbh-global-footer .bbh-global-footer__grid > .bbh-global-footer__block--quick_link {
    margin-bottom: 34px !important;
  }

  .bbh-global-footer .bbh-global-footer__grid > .bbh-global-footer__help {
    margin-bottom: 0 !important;
  }

  .bbh-global-footer__block--quick_link .footer-block__heading,
  .bbh-global-footer__help .footer-block__heading {
    color: rgba(255, 253, 249, 0.56);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.2em;
    margin-bottom: 18px;
  }

  .bbh-global-footer .footer__column--info {
    align-items: center;
    flex-direction: column;
    gap: 10px;
    justify-content: center;
    padding-left: 0;
    padding-right: 0;
    text-align: center;
    width: 100%;
  }

  .bbh-global-footer .footer__column--info .footer__copyright,
  .bbh-global-footer .footer__column--info .copyright__content {
    display: block;
    text-align: center;
    width: 100%;
  }
}

/* BellaBloom 2026-08-05: center footer social icons at every viewport. */
.bbh-global-footer .footer__list-social .list-social__link {
  line-height: 0;
  padding: 0;
}


/* BellaBloom 2026-08-07: account menu, rewards and footer refinement. */
#easystore-section-header .bbh-account-actions.is-escape-closed .bbh-account-menu {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  visibility: hidden;
}

#easystore-section-header .header__icon--account summary {
  cursor: pointer;
  list-style: none;
}

#easystore-section-header .header__icon--account summary::-webkit-details-marker {
  display: none;
}

.bbp-rewards-sign-in {
  color: rgba(255, 253, 249, 0.82);
  font-size: 13px;
  line-height: 1.5;
  margin: 13px 0 0;
}

.bbp-rewards-sign-in a {
  color: #fffdf9;
  font-weight: 700;
  text-underline-offset: 3px;
}

#rewards-tiers {
  scroll-margin-top: 126px;
}

.bbh-global-footer__brand p {
  color: rgba(255, 253, 249, 0.76);
  font-size: 13px;
}

.bbh-global-footer .footer-block__heading {
  font-size: 11px;
}

.bbh-global-footer .footer-block__details-content .list-menu__item--link,
.bbh-global-footer .footer-block__details-content a,
.bbh-global-footer .link--text {
  color: rgba(255, 253, 249, 0.78);
  font-size: 13px;
}

.bbh-global-footer .footer__column--info {
  color: rgba(255, 253, 249, 0.68);
  font-size: 11.5px;
  padding-right: 92px;
}

@media (max-width: 749px) {
  .bbh-global-footer__brand a img {
    width: 150px;
  }

  .bbh-global-footer__brand p {
    font-size: 13px;
  }

  .bbh-global-footer__block--quick_link .footer-block__heading,
  .bbh-global-footer__help .footer-block__heading {
    color: rgba(255, 253, 249, 0.76);
    font-size: 11px;
  }

  .bbh-global-footer .footer__content-bottom {
    padding-bottom: calc(92px + env(safe-area-inset-bottom));
  }

  .bbh-global-footer .footer__column--info {
    color: rgba(255, 253, 249, 0.7);
    font-size: 11.5px;
    line-height: 1.65;
    padding-right: 0;
  }
}

/* BellaBloom 2026-08-07: simplified Bloom Rewards journey. */
.bbp-page--rewards {
  padding-top: clamp(22px, 3.6vw, 48px);
}

.bbp-rewards-simple-hero,
.bbp-rewards-simple-content {
  margin-left: auto;
  margin-right: auto;
  max-width: 1160px;
}

.bbp-rewards-simple-hero {
  background:
    radial-gradient(circle at 88% 16%, rgba(255, 253, 249, 0.14), transparent 19rem),
    linear-gradient(135deg, var(--bbp-wine-deep), #5a3e24 58%, #76552d);
  border-radius: 26px;
  color: var(--bbp-paper);
  margin-bottom: clamp(32px, 5vw, 58px);
  overflow: hidden;
  padding: clamp(38px, 5.8vw, 68px);
  position: relative;
}

.bbp-rewards-simple-hero::after {
  border: 1px solid rgba(255, 253, 249, 0.12);
  border-radius: 50%;
  content: "";
  height: 280px;
  pointer-events: none;
  position: absolute;
  right: -92px;
  top: -112px;
  width: 280px;
}

.bbp-rewards-simple-eyebrow {
  color: #d8af84;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.19em;
  margin: 0 0 15px;
}

.bbp-rewards-simple-hero h1 {
  color: var(--bbp-paper);
  font-family: var(--bbp-serif);
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 0.94;
  margin: 0 0 19px;
  max-width: 760px;
  position: relative;
  z-index: 1;
}

.bbp-rewards-simple-hero > p:not(.bbp-rewards-simple-eyebrow):not(.bbp-rewards-simple-sign-in) {
  color: rgba(255, 253, 249, 0.8);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
  max-width: 670px;
  position: relative;
  z-index: 1;
}

.bbp-rewards-simple-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 25px;
  position: relative;
  z-index: 1;
}

.bbp-rewards-simple-sign-in {
  color: rgba(255, 253, 249, 0.72);
  font-size: 12px;
  line-height: 1.5;
  margin: 14px 0 0;
  position: relative;
  z-index: 1;
}

.bbp-rewards-simple-sign-in a {
  color: var(--bbp-paper);
  font-weight: 700;
  text-underline-offset: 3px;
}

.bbp-rewards-live {
  align-items: center;
  background: linear-gradient(135deg, #fff, var(--bbp-cream));
  border: 1px solid var(--bbp-line);
  border-radius: 22px;
  display: grid;
  gap: 28px;
  grid-template-columns: minmax(210px, 0.78fr) minmax(0, 1.22fr) auto;
  margin: 0 0 clamp(44px, 6vw, 68px);
  padding: clamp(25px, 3.4vw, 38px);
}

.bbp-rewards-live__balance h2 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: clamp(36px, 3.8vw, 46px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.94;
  margin: 0 0 9px;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

.bbp-rewards-live__balance > span {
  color: var(--bbp-muted);
  display: block;
  font-size: 12px;
}

.bbp-rewards-live__facts {
  display: grid;
  gap: 18px 28px;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  margin: 0;
}

.bbp-rewards-live__facts > div {
  border-left: 1px solid var(--bbp-line);
  padding-left: 24px;
}

.bbp-rewards-live__facts dt,
.bbp-rewards-live__facts dd {
  margin: 0;
}

.bbp-rewards-live__facts dt {
  color: var(--bbp-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 7px;
  text-transform: uppercase;
}

.bbp-rewards-live__facts dd {
  color: var(--bbp-ink);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.25;
}

.bbp-rewards-live__facts small {
  color: var(--bbp-muted);
  display: block;
  font-size: 11px;
  line-height: 1.45;
  margin-top: 4px;
}

.bbp-rewards-live__button {
  grid-column: 3;
  white-space: nowrap;
}

.bbp-rewards-simple-heading {
  margin-bottom: 23px;
}

.bbp-rewards-simple-heading h2,
.bbp-rewards-tier-compare h2 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: clamp(38px, 4.8vw, 52px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 0.98;
  margin: 0;
}

.bbp-rewards-simple-steps {
  margin-bottom: clamp(44px, 6vw, 68px);
}

.bbp-rewards-simple-steps ol {
  border-bottom: 1px solid var(--bbp-line);
  border-top: 1px solid var(--bbp-line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.bbp-rewards-simple-steps li {
  display: grid;
  gap: 15px;
  grid-template-columns: 34px minmax(0, 1fr);
  min-width: 0;
  padding: 26px 28px;
}

.bbp-rewards-simple-steps li + li {
  border-left: 1px solid var(--bbp-line);
}

.bbp-rewards-simple-steps li > span {
  align-items: center;
  background: var(--bbp-blush);
  border-radius: 50%;
  color: var(--bbp-wine);
  display: flex;
  font-size: 9px;
  font-weight: 700;
  height: 34px;
  justify-content: center;
  letter-spacing: 0.06em;
  width: 34px;
}

.bbp-rewards-simple-steps h3 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: 27px;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 2px 0 8px;
}

.bbp-rewards-simple-steps p,
.bbp-rewards-tier-compare > div:first-child > p:last-child {
  color: var(--bbp-muted);
  font-size: 13px;
  line-height: 1.62;
  margin: 0;
}

.bbp-rewards-tier-compare {
  align-items: center;
  background: var(--bbp-cream);
  border-radius: 22px;
  display: grid;
  gap: 36px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin-bottom: 30px;
  padding: clamp(28px, 4vw, 44px);
  scroll-margin-top: 126px;
}

.bbp-rewards-tier-compare > div:first-child > p:last-child {
  margin-top: 16px;
  max-width: 650px;
}

.bbp-rewards-tier-compare__action {
  align-items: center;
  display: flex;
  gap: 18px;
}

.bbp-rewards-tier-compare__action > p {
  border-right: 1px solid var(--bbp-line);
  margin: 0;
  min-width: 150px;
  padding-right: 18px;
}

.bbp-rewards-tier-compare__action span,
.bbp-rewards-tier-compare__action strong,
.bbp-rewards-tier-compare__action small {
  display: block;
}

.bbp-rewards-tier-compare__action span {
  color: var(--bbp-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.bbp-rewards-tier-compare__action strong {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: 26px;
  line-height: 1.05;
  margin-top: 6px;
}

.bbp-rewards-tier-compare__action small {
  color: var(--bbp-muted);
  font-size: 11px;
  margin-top: 4px;
}

.bbp-rewards-simple-terms {
  margin-bottom: 8px;
}

.bbp-rewards-simple-terms .bbp-rewards-terms {
  margin-top: 0;
}

.bbp-rewards-simple-terms .bbp-rewards-terms__content {
  max-width: none;
  padding: 0 0 34px;
}

.bbp-rewards-details {
  border-top: 1px solid var(--bbp-line);
  color: var(--bbp-ink);
  padding-top: 32px;
}

.bbp-rewards-details__heading,
.bbp-rewards-details__section > header {
  margin-bottom: 20px;
}

.bbp-rewards-details__heading h2,
.bbp-rewards-details__section h2 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: clamp(31px, 3.3vw, 42px);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1;
  margin: 0;
}

.bbp-rewards-value-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.bbp-rewards-value-grid article,
.bbp-rewards-tier-grid article {
  background: var(--bbp-cream);
  border: 1px solid var(--bbp-line);
  border-radius: 16px;
  min-width: 0;
  padding: 20px;
}

.bbp-rewards-value-grid article > span,
.bbp-rewards-tier-grid article > span {
  color: var(--bbp-muted);
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.bbp-rewards-value-grid article > strong,
.bbp-rewards-tier-grid article > strong {
  color: var(--bbp-wine-deep);
  display: block;
  font-size: 17px;
  line-height: 1.25;
}

.bbp-rewards-value-grid article > p,
.bbp-rewards-tier-grid article > p {
  color: var(--bbp-muted);
  font-size: 11px;
  line-height: 1.55;
  margin: 8px 0 0;
}

.bbp-rewards-example {
  align-items: center;
  background: var(--bbp-blush);
  border-radius: 14px;
  display: grid;
  gap: 9px 26px;
  grid-template-columns: auto repeat(2, minmax(0, 1fr));
  margin-top: 12px;
  padding: 15px 18px;
}

.bbp-rewards-example strong {
  color: var(--bbp-wine-deep);
  font-size: 11px;
  white-space: nowrap;
}

.bbp-rewards-example span {
  border-left: 1px solid rgba(154, 106, 47, 0.2);
  color: var(--bbp-ink);
  font-size: 11px;
  line-height: 1.5;
  padding-left: 26px;
}

.bbp-rewards-details__section {
  margin-top: 38px;
}

.bbp-rewards-tier-grid {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.bbp-rewards-tier-grid article:nth-child(2) {
  background: linear-gradient(145deg, #fff, #f2f0ed);
}

.bbp-rewards-tier-grid article:nth-child(3) {
  background: linear-gradient(145deg, #fffaf0, #f3e3c8);
}

.bbp-rewards-tier-grid h3 {
  color: var(--bbp-wine-deep);
  font-family: var(--bbp-serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.025em;
  line-height: 1;
  margin: 0 0 12px;
}

.bbp-rewards-redeem-steps {
  border-bottom: 1px solid var(--bbp-line);
  border-top: 1px solid var(--bbp-line);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  margin: 0;
  padding: 0;
}

.bbp-rewards-redeem-steps li {
  align-items: start;
  display: grid;
  gap: 12px;
  grid-template-columns: 27px minmax(0, 1fr);
  padding: 19px 20px;
}

.bbp-rewards-redeem-steps li + li {
  border-left: 1px solid var(--bbp-line);
}

.bbp-rewards-redeem-steps li > span {
  align-items: center;
  background: var(--bbp-wine);
  border-radius: 50%;
  color: var(--bbp-paper);
  display: flex;
  font-size: 9px;
  height: 27px;
  justify-content: center;
  width: 27px;
}

.bbp-rewards-redeem-steps p {
  color: var(--bbp-muted);
  font-size: 11px;
  line-height: 1.55;
  margin: 2px 0 0;
}

.bbp-rewards-redeem-steps strong {
  color: var(--bbp-ink);
}

.bbp-rewards-conditions {
  border-bottom: 1px solid var(--bbp-line);
  border-top: 1px solid var(--bbp-line);
  margin-top: 28px;
}

.bbp-rewards-conditions > summary {
  color: var(--bbp-wine-deep);
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  list-style-position: inside;
  padding: 17px 2px;
}

.bbp-rewards-conditions > summary:focus-visible {
  border-radius: 6px;
  outline: 2px solid var(--bbp-wine);
  outline-offset: 3px;
}

.bbp-rewards-conditions ul {
  color: var(--bbp-muted);
  font-size: 11px;
  line-height: 1.65;
  margin: 0;
  padding: 0 2px 19px 20px;
}

.bbp-rewards-conditions li + li {
  margin-top: 6px;
}

.bbp-rewards-simple-hero a:focus-visible,
.bbp-rewards-live a:focus-visible,
.bbp-rewards-tier-compare a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 3px;
}

@media (max-width: 989px) {
  .bbp-rewards-live {
    grid-template-columns: minmax(210px, 0.7fr) minmax(0, 1.3fr);
  }

  .bbp-rewards-live__button {
    grid-column: 1 / -1;
    justify-self: start;
  }

  .bbp-rewards-simple-steps li {
    padding-left: 20px;
    padding-right: 20px;
  }

  .bbp-rewards-tier-compare {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .bbp-rewards-tier-compare__action {
    justify-content: space-between;
  }

  .bbp-rewards-value-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .bbp-rewards-example {
    grid-template-columns: auto 1fr;
  }

  .bbp-rewards-example span:last-child {
    grid-column: 2;
  }
}

@media (max-width: 749px) {
  .bbp-page--rewards {
    padding-top: 14px;
  }

  .bbp-rewards-simple-hero {
    border-radius: 20px;
    margin-bottom: 34px;
    padding: 36px 23px;
  }

  .bbp-rewards-simple-hero::after {
    height: 190px;
    right: -78px;
    top: -82px;
    width: 190px;
  }

  .bbp-rewards-simple-hero h1 {
    font-size: clamp(43px, 13vw, 56px);
    max-width: 320px;
  }

  .bbp-rewards-simple-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .bbp-rewards-live {
    gap: 23px;
    grid-template-columns: 1fr;
    margin-bottom: 45px;
    padding: 25px 22px;
  }

  .bbp-rewards-live__facts {
    gap: 18px;
    grid-template-columns: 1fr;
  }

  .bbp-rewards-live__facts > div {
    border-left: 0;
    border-top: 1px solid var(--bbp-line);
    padding-left: 0;
    padding-top: 18px;
  }

  .bbp-rewards-live__button {
    justify-self: stretch;
  }

  .bbp-rewards-simple-heading {
    margin-bottom: 18px;
  }

  .bbp-rewards-simple-heading h2,
  .bbp-rewards-tier-compare h2 {
    font-size: clamp(36px, 11vw, 47px);
  }

  .bbp-rewards-simple-steps {
    margin-bottom: 45px;
  }

  .bbp-rewards-simple-steps ol {
    grid-template-columns: 1fr;
  }

  .bbp-rewards-simple-steps li {
    padding: 22px 0;
  }

  .bbp-rewards-simple-steps li + li {
    border-left: 0;
    border-top: 1px solid var(--bbp-line);
  }

  .bbp-rewards-tier-compare {
    gap: 25px;
    margin-bottom: 23px;
    padding: 27px 22px;
  }

  .bbp-rewards-tier-compare__action {
    align-items: stretch;
    flex-direction: column;
  }

  .bbp-rewards-tier-compare__action > p {
    border-bottom: 1px solid var(--bbp-line);
    border-right: 0;
    padding-bottom: 18px;
    padding-right: 0;
  }

  .bbp-rewards-simple-terms .bbp-rewards-terms > summary {
    min-height: 72px;
  }

  .bbp-rewards-simple-terms .bbp-rewards-terms__content {
    padding-bottom: 24px;
  }

  .bbp-rewards-details {
    padding-top: 25px;
  }

  .bbp-rewards-details__heading h2,
  .bbp-rewards-details__section h2 {
    font-size: clamp(31px, 9vw, 39px);
  }

  .bbp-rewards-value-grid,
  .bbp-rewards-tier-grid,
  .bbp-rewards-redeem-steps {
    grid-template-columns: 1fr;
  }

  .bbp-rewards-value-grid article,
  .bbp-rewards-tier-grid article {
    padding: 18px;
  }

  .bbp-rewards-example {
    align-items: start;
    gap: 7px;
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .bbp-rewards-example span,
  .bbp-rewards-example span:last-child {
    border-left: 0;
    grid-column: auto;
    padding-left: 0;
  }

  .bbp-rewards-details__section {
    margin-top: 33px;
  }

  .bbp-rewards-redeem-steps li {
    padding: 17px 0;
  }

  .bbp-rewards-redeem-steps li + li {
    border-left: 0;
    border-top: 1px solid var(--bbp-line);
  }
}

/*
 * BellaBloom Burnished Gold sitewide system — 2026-08-08
 * This final cascade deliberately centralises the brand palette and lets each
 * template own its outer spacing instead of stacking EasyStore defaults.
 */
:root {
  --bbp-paper: #fffdf9;
  --bbp-cream: #f5eee6;
  --bbp-blush: #efe6d8;
  --bbp-ink: #2c2925;
  --bbp-muted: #716a61;
  --bbp-wine: #76552d;
  --bbp-wine-deep: #5a3e24;
  --bbp-gold: #9a6a2f;
  --bbp-line: #d8ccbc;
  --bbp-olive: #56604b;
  --bbp-olive-dark: #3f4837;
  --bbp-footer: #3a2a21;
}

.bbh-site-shell,
.bbh-site-footer,
.bbh-global-announcement,
#easystore-section-header.bbh-global-shell,
.bbh-global-footer {
  --bbh-shell-paper: #fffdf9;
  --bbh-shell-ink: #2c2925;
  --bbh-shell-muted: #716a61;
  --bbh-shell-wine: #9a6a2f;
  --bbh-shell-wine-deep: #5a3e24;
  --bbh-shell-champagne: #efe6d8;
  --bbh-shell-bronze: #9a6a2f;
  --bbh-shell-line: #d8ccbc;
}

.bbc-commerce,
.bbc-product-card {
  --bbc-cream: #f5eee6;
  --bbc-paper: #fffdf9;
  --bbc-paper-warm: #fbf8f2;
  --bbc-ink: #2c2925;
  --bbc-muted: #716a61;
  --bbc-wine: #76552d;
  --bbc-wine-deep: #5a3e24;
  --bbc-rose: #9a6a2f;
  --bbc-rose-soft: #efe6d8;
  --bbc-gold: #9a6a2f;
  --bbc-line: #d8ccbc;
  --bbc-olive: #56604b;
  --bbc-olive-dark: #3f4837;
}

body {
  background: #fffdf9;
  color: #2c2925;
}

/* Shared shell */
.bbh-global-preview-note,
.bbh-preview-note {
  background: #2c2925;
}

.bbh-global-announcement,
.bbh-announcement {
  background: #2c2925;
  color: #fffdf9;
}

.bbh-global-announcement a,
.bbh-announcement a {
  color: #fffdf9;
  opacity: 0.82;
}

#easystore-section-header.bbh-global-shell,
#easystore-section-header.bbh-global-shell .bbh-global-header-wrap,
#easystore-section-header.bbh-global-shell.easystore-section-header-sticky .bbh-global-header-wrap {
  background: rgba(255, 253, 249, 0.97);
}

#easystore-section-header .bbh-global-brand img {
  filter: brightness(0) saturate(100%) invert(69%) sepia(11%) saturate(1548%) hue-rotate(353deg) brightness(56%) contrast(130%);
}

#easystore-section-header .header__submenu.list-menu--disclosure,
#easystore-section-header .referral-notification,
#easystore-section-header cart-notification .cart-notification {
  box-shadow: 0 18px 45px rgba(58, 42, 33, 0.14);
}

#easystore-section-header .header__submenu .header__menu-item:hover,
#easystore-section-header .header__submenu .header__menu-item:focus-visible,
#easystore-section-header .menu-drawer__utility-links {
  background: #f5eee6;
}

#easystore-section-header .header__icon:focus-visible,
#easystore-section-header .bbh-global-nav a:focus-visible,
#easystore-section-header .bbh-global-brand:focus-visible,
.bbh-global-footer a:focus-visible {
  outline-color: #9a6a2f;
}

/* Footer: dark warm bronze, with no EasyStore-generated 5rem gap. */
.bbh-global-footer.footer {
  background: #3a2a21;
  color: #fffdf9;
  margin-top: 0;
}

.bbh-global-footer__brand a img {
  filter: brightness(0) saturate(100%) invert(68%) sepia(66%) saturate(191%) hue-rotate(2deg) brightness(91%) contrast(111%);
}

.bbh-global-footer .footer-block__heading {
  color: #fffdf9;
}

.bbh-global-footer .footer-block__details-content .list-menu__item--link,
.bbh-global-footer .footer-block__details-content a,
.bbh-global-footer .link--text,
.bbh-global-footer__brand p {
  color: rgba(255, 253, 249, 0.78);
}

.bbh-global-footer .footer__column--info {
  color: rgba(255, 253, 249, 0.7);
}

.bbh-global-footer .footer__content-bottom,
.bbh-global-footer__block--payment_accept {
  border-color: rgba(239, 230, 216, 0.18);
}

.bbh-global-footer .list-social__link {
  border-color: rgba(239, 230, 216, 0.3);
  color: #fffdf9;
}

.bbh-global-footer .list-social__link:hover,
.bbh-global-footer .list-social__link:focus-visible {
  background: rgba(154, 106, 47, 0.24);
  border-color: #d7b97c;
}

/* Commerce: gold details, bronze structure, olive conversion controls. */
.bbc-collection-hero {
  background:
    radial-gradient(circle at 82% 10%, rgba(239, 230, 216, 0.82), transparent 31%),
    #f5eee6;
}

.bbc-button--primary,
.bbc-product .product-form__submit,
.bbc-cart .cart__checkout-button,
.bbc-cart .cart__warnings .button {
  background: #56604b;
  border-color: #56604b;
  box-shadow: 0 12px 28px rgba(63, 72, 55, 0.2);
  color: #fffdf9 !important;
}

.bbc-button--primary:hover,
.bbc-product .product-form__submit:hover,
.bbc-cart .cart__checkout-button:hover,
.bbc-cart .cart__warnings .button:hover {
  background: #3f4837;
  border-color: #3f4837;
}

.bbc-button--secondary,
.bbc-filter-toggle__button {
  border-color: #d8ccbc;
  color: #5a3e24 !important;
}

.bbc-product-card .badge-ribbon,
.bbc-product-card .badge-circle.addToClassList {
  background: #5a3e24;
}

.bbc-product-card .badge-circle.addToClassList {
  box-shadow: 0 8px 20px rgba(58, 42, 33, 0.2);
}

.bbc-product__purchase-panel {
  background: linear-gradient(145deg, rgba(255, 253, 249, 0.98), rgba(245, 238, 230, 0.94)) !important;
  box-shadow: 0 22px 50px rgba(58, 42, 33, 0.08);
}

.bbc-search__discovery {
  background:
    radial-gradient(circle at 90% 5%, rgba(154, 106, 47, 0.3), transparent 34%),
    linear-gradient(135deg, #3a2a21, #5a3e24);
}

.bbc-search__discovery .bbc-eyebrow {
  color: #d7b97c;
}

.bbc-search__quiz .bbc-button {
  background: #fffdf9;
  color: #5a3e24 !important;
}

.bbc-filter input[type="checkbox"],
.bbc-filter input[type="radio"] {
  accent-color: #56604b;
}

/* Standard, rewards, visit, locator, blog, article, collection index and 404. */
.bbp-page {
  background:
    radial-gradient(circle at 8% 8%, rgba(154, 106, 47, 0.09), transparent 24rem),
    #fffdf9;
}

.bbp-page-hero,
.bbp-rewards-simple-hero {
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 253, 249, 0.14), transparent 18rem),
    linear-gradient(135deg, #3a2a21 0%, #5a3e24 62%, #76552d 100%);
}

.bbp-rewards-simple-eyebrow,
.bbp-page-hero .bbp-eyebrow {
  color: #d7b97c;
}

.bbp-button--wine,
.template-store-locator .store-selector-item .button,
[class*="template-customers"] .customer button,
[class*="template-customers"] .customer .button,
.bbp-not-found__actions a:first-child {
  background: #56604b;
  border-color: #56604b;
  color: #fffdf9;
}

.bbp-button--wine:hover,
.template-store-locator .store-selector-item .button:hover,
[class*="template-customers"] .customer button:hover,
[class*="template-customers"] .customer .button:hover,
.bbp-not-found__actions a:first-child:hover {
  background: #3f4837;
  border-color: #3f4837;
}

.bbp-rewards-simple-steps li > span,
.bbp-rewards-example {
  background: #efe6d8;
}

.bbp-rewards-redeem-steps li > span {
  background: #5a3e24;
}

.bbp-rewards-tier-grid article:nth-child(3) {
  background: linear-gradient(145deg, #fffdf9, #efe6d8);
}

.template-store-locator #MainContent {
  background:
    radial-gradient(circle at 10% 5%, rgba(154, 106, 47, 0.1), transparent 25rem),
    #fffdf9;
}

.template-store-locator .store-selector-item {
  box-shadow: 0 18px 50px rgba(58, 42, 33, 0.07);
}

.bbp-not-found {
  background:
    radial-gradient(circle at 50% 10%, rgba(154, 106, 47, 0.14), transparent 26rem),
    #fffdf9;
}

/* EasyStore spacing ownership: reset only template roots. */
.bbc-product.spaced-section,
.bbc-cart.spaced-section,
.bbc-search.spaced-section,
.template-blog .main-blog,
.template-article .article-template,
.template-404 .product-section.spaced-section {
  margin-top: 0;
}

[class*="template-customers"] .customer {
  margin-bottom: 0;
  margin-top: 0;
}

.template-store-locator .store-locator-heading h1,
.bbp-page--standard .bbp-page__content > h1:first-child,
.template-blog .title--primary,
.template-article .article-template__title {
  margin-top: 0;
}

.template-blog .main-blog {
  padding-bottom: clamp(68px, 7vw, 96px);
  padding-top: clamp(56px, 6vw, 84px);
}

.template-article .article-template {
  padding-bottom: clamp(68px, 7vw, 96px);
  padding-top: clamp(48px, 6vw, 80px);
}

.bbp-page--standard {
  padding-top: clamp(48px, 6vw, 76px);
}

/* Native controls and dormant editor sections inherit the same brand language. */
.button:not(.bbc-button):not(.bbh-button):focus-visible,
.field__input:focus-visible,
summary:focus-visible,
a:focus-visible {
  outline-color: #9a6a2f;
}

.color-accent-1,
.button--primary:not(.bbc-button):not(.bbh-button) {
  --color-base-accent-1: 86, 96, 75;
  --color-base-accent-2: 86, 96, 75;
}

@media (max-width: 749px) {
  .template-blog .main-blog,
  .template-article .article-template {
    padding-bottom: 64px;
    padding-top: 44px;
  }

  .bbp-page--standard {
    padding-top: 38px;
  }

  .bbh-global-footer.footer {
    padding-top: 48px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bbc-commerce *,
  .bbc-product-card *,
  .bbp-page *,
  .bbh-global-announcement *,
  #easystore-section-header.bbh-global-shell *,
  .bbh-global-footer * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
