@import url('https://fonts.googleapis.com/css?family=Poppins:300,300i,400,400i,500,500i,600,600i,700,700i,800,800i&display=swap');

body {
  --ella-plugin-asset-ready: 1;
  --duration-default: 350ms;
  --duration-long: 500ms;
  --page-content-distance: 64px;
  --sidebar-content-distance: 40px;
  font-family: var(--ella-font-family, Inter, Arial, sans-serif);
  color: #171717;
}

.ella-header {
  position: relative;
  z-index: 30;
  background: #fff;
}

header.ella-header .ella-header-main {
  padding: 0;
}

.ella-container,
.ella-header .container-fluid {
  max-width: 1480px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.ella-announcement {
  background: var(--ella-announcement-bg, #111);
  color: var(--ella-announcement-color, #fff);
  font-size: 13px;
  letter-spacing: 0;
  text-align: center;
  padding: 9px 0;
}

.ella-header-top {
  border-bottom: 1px solid #ececec;
  font-size: 13px;
  color: #555;
}

header.ella-header .ella-header-main > .container-fluid {
  min-height: 82px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr) 210px;
  align-items: center;
  justify-content: normal;
  gap: 24px;
}

.ella-logo img,
.ella-header-mobile img {
  max-height: 46px;
}

.ella-menu {
  display: flex;
  justify-content: center;
  min-width: 0;
}

.ella-menu > .navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 82px;
  margin: 0;
}

.ella-menu > .navbar-nav > .nav-item {
  display: flex;
  align-items: center;
  min-height: 82px;
}

.ella-menu > .navbar-nav > .nav-item > .nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 82px;
  padding: 0 14px;
  color: #171717;
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
}

.ella-menu .dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  display: block;
  border: 0;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 10px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  pointer-events: none;
}

.ella-menu .nav-item:hover > .dropdown-menu,
.ella-menu .nav-item:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.ella-menu .dropdown-menu .card {
  border: 0;
  border-radius: 0;
}

.ella-header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-height: 82px;
}

.ella-header-actions .navbar-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  min-height: 82px;
  margin: 0;
}

.ella-header-actions .nav-item {
  display: flex;
  align-items: center;
  height: 40px;
  position: relative;
}

.ella-header-actions .nav-item.dropdown {
  height: 40px;
}

.ella-header-actions .nav-link,
.ella-header-actions .header__icon,
.ella-icon-button {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #171717;
  border: 0;
  background: transparent;
  font-size: 20px;
}

header.ella-header .header__icon,
header.ella-header .header__icon:hover,
header.ella-header .header__icon:focus,
header.ella-header .header__icon:focus-visible,
header.ella-header .header__icon *,
header.ella-header .header__icon *:hover,
header.ella-header .header__icon *:focus {
  text-decoration: none !important;
  border-bottom: 0 !important;
}

header.ella-header .header__icon::before,
header.ella-header .header__icon::after {
  display: none !important;
  content: none !important;
}

header.ella-header .header__icon .icon,
header.ella-header .header__icon .ella-header-svg-icon {
  transform: scale(1);
  transform-origin: center center;
  transition: transform .15s ease, opacity .15s ease;
}

header.ella-header .header__icon:hover .icon,
header.ella-header .header__icon:hover .ella-header-svg-icon {
  transform: scale(1.15);
}

header.ella-header .ella-header-actions .header__icon,
header.ella-header .ella-header-actions .header__icon:hover,
header.ella-header .ella-header-actions .header__icon:focus,
header.ella-header .ella-header-actions .ella-header-action-group > .nav-item,
header.ella-header .ella-header-actions .cart-text,
header.ella-header .ella-header-actions .cart-count-bubble,
header.ella-header .ella-header-actions .wishlist-count-bubble,
header.ella-header .ella-header-actions .header__link--account,
header.ella-header .ella-header-actions .header__link--account:hover,
header.ella-header .ella-header-actions .header__link--account:focus {
  text-decoration-line: none !important;
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

header.ella-header .ella-header-actions .dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  left: auto;
  display: block;
  min-width: 170px;
  border: 0;
  border-radius: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
  pointer-events: none;
}

header.ella-header .ella-header-actions .nav-item.dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  height: 12px;
  display: none;
}

header.ella-header .ella-header-actions .nav-item:hover > .dropdown-menu,
header.ella-header .ella-header-actions .nav-item:focus-within > .dropdown-menu,
header.ella-header .ella-header-actions .nav-item.is-open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

header.ella-header .ella-header-actions .nav-item.dropdown:hover::after,
header.ella-header .ella-header-actions .nav-item.dropdown:focus-within::after,
header.ella-header .ella-header-actions .nav-item.dropdown.is-open::after {
  display: block;
}

.ella-header-mobile {
  border-bottom: 1px solid #efefef;
  background: #fff;
}

.ella-header-mobile .mobile-content {
  min-height: 64px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 0 14px;
}

.ella-header-mobile .left,
.ella-header-mobile .right {
  display: flex;
  gap: 4px;
}

.ella-header-mobile .right {
  justify-content: flex-end;
}

.ella-section {
  overflow: hidden;
}

.ella-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 24px;
}

.ella-section-heading.centered {
  justify-content: center;
  text-align: center;
}

.ella-section-heading h2,
.ella-story-content h2,
.ella-newsletter-panel h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  letter-spacing: 0;
}

.ella-section-heading a {
  color: #171717;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ella-link-button,
.ella-show-more,
.ella-newsletter-form button,
.ella-card-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border: 1px solid var(--ella-primary, #111);
  background: var(--ella-primary, #111);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
}

.ella-image-grid,
.ella-product-grid,
.ella-instagram-grid {
  display: grid;
  grid-template-columns: repeat(var(--ella-desktop-columns, 4), minmax(0, 1fr));
  gap: 18px;
}

.ella-instagram-grid {
  --ella-desktop-columns: 8;
}

.ella-instagram .ella-section-heading.centered {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.ella-instagram .ella-section-heading.centered p {
  margin: 0;
}

.ella-instagram .ella-section-heading.centered .subtext-brand {
  margin: 0;
}

.ella-image-tile,
.ella-instagram-item {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  overflow: hidden;
  color: #fff;
  background: #eee;
  aspect-ratio: 1 / 1;
  cursor: pointer;
}

.ella-image-tile img,
.ella-instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.ella-image-tile:hover img,
.ella-instagram-item:hover img {
  transform: scale(1.04);
}

body.ella-instagram-modal-open {
  overflow: hidden;
}

.ella-instagram-modal-root {
  position: fixed;
  inset: 0;
  z-index: 1090;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 40px;
}

.ella-instagram-modal-root.is-open {
  display: flex;
}

.ella-instagram-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .72);
}

.ella-instagram-modal {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, 42%) minmax(0, 1fr);
  width: min(1180px, calc(100vw - 80px));
  height: min(760px, calc(100vh - 80px));
  max-height: calc(100vh - 80px);
  background: #fff;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .32);
}

.ella-instagram-modal__close {
  position: absolute;
  top: -42px;
  right: -4px;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 34px;
  font-weight: 300;
  line-height: 34px;
}

.ella-instagram-modal__media {
  min-width: 0;
  min-height: 0;
  background: #050505;
}

.ella-instagram-modal__media video,
.ella-instagram-modal__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ella-instagram-modal__panel {
  display: flex;
  min-width: 0;
  min-height: 0;
  flex-direction: column;
  padding: 22px 26px 18px;
  overflow: auto;
  color: #232323;
}

.ella-instagram-modal__header {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 18px;
  border-bottom: 1px solid #ececec;
}

.ella-instagram-modal__avatar {
  display: inline-flex;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}

.ella-instagram-modal__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ella-instagram-modal__header strong {
  display: block;
  color: #232323;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.ella-instagram-modal__title {
  display: block;
  margin-top: 4px;
  color: #777;
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.ella-instagram-modal__products {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(118px, 138px));
  justify-content: start;
  gap: 16px 12px;
  flex: 0 0 auto;
  padding: 18px 0 14px;
}

.ella-instagram-modal__product {
  min-width: 0;
}

.ella-instagram-modal__product .ella-product-card {
  height: auto;
  text-align: center;
}

.ella-instagram-modal__product .ella-product-card__media,
.ella-instagram-modal__product .ella-product-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background: #fafafa;
}

.ella-instagram-modal__product .ella-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ella-instagram-modal__product .ella-product-card__body {
  display: block;
  padding-top: 8px;
  text-align: center;
}

.ella-instagram-modal__product .ella-product-card__name {
  display: -webkit-box;
  height: 34px;
  min-height: 0;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #232323;
  font-size: 11px;
  font-weight: 400;
  line-height: 17px;
}

.ella-instagram-modal__product .ella-product-card__price {
  margin: 2px 0 8px;
  color: #232323;
  font-size: 11px;
  font-weight: 700;
  line-height: 16px;
}

.ella-instagram-modal__product .reviews-card-rating,
.ella-instagram-modal__product .ella-product-card__swatches {
  display: none;
}

.ella-instagram-modal__product .ella-card-wishlist {
  top: 7px;
  right: 7px;
  width: 20px;
  height: 20px;
  background: transparent;
  color: #111;
  opacity: 0;
  box-shadow: none;
  transition: opacity .18s ease;
}

.ella-instagram-modal__product .ella-product-card:hover .ella-card-wishlist,
.ella-instagram-modal__product .ella-product-card:focus-within .ella-card-wishlist {
  opacity: 1;
}

.ella-instagram-modal__product .ella-card-wishlist i {
  font-size: 16px;
}

.ella-instagram-modal__product .ella-product-card__media > .ella-card-cart {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 34px;
  margin: 0;
  border: 1px solid #111;
  background: #fff;
  color: #232323;
  font-size: 10px;
  font-weight: 700;
  line-height: 14px;
  text-transform: uppercase;
  letter-spacing: 0;
  z-index: 4;
}

.ella-instagram-modal__product .ella-product-card:hover .ella-product-card__media > .ella-card-cart,
.ella-instagram-modal__product .ella-product-card:focus-within .ella-product-card__media > .ella-card-cart {
  display: flex;
}

.ella-instagram-modal__product .ella-product-card.is-options-open > .ella-product-card__media > .ella-card-select-options {
  display: none;
}

.ella-instagram-modal__content {
  flex: 0 0 auto;
  padding: 16px 0;
  border-top: 1px solid #ececec;
  color: #444;
  font-size: 13px;
  line-height: 1.7;
}

.ella-instagram-modal__content > :first-child {
  margin-top: 0;
}

.ella-instagram-modal__content > :last-child {
  margin-bottom: 0;
}

.ella-instagram-modal__content img,
.ella-instagram-modal__content video {
  max-width: 100%;
  height: auto;
}

.ella-instagram-modal__date {
  padding-top: 12px;
  border-top: 1px solid #ececec;
  color: #777;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
}

.ella-image-tile span {
  position: absolute;
  left: 18px;
  bottom: 18px;
  right: 18px;
  font-size: 20px;
  font-weight: 700;
  text-shadow: 0 1px 8px rgba(0,0,0,.35);
}

.ella-product-grid__item.is-hidden {
  display: none;
}

.ella-product-card {
  height: 100%;
}

.ella-product-card__media {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.ella-product-card__image {
  display: block;
  background: #f5f5f5;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.ella-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.ella-product-card:hover img {
  transform: scale(1.03);
}

.ella-card-wishlist {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
}

.ella-product-card__body {
  padding-top: 12px;
  display: grid;
  gap: 8px;
}

.ella-product-card__name {
  color: #171717;
  font-weight: 600;
  line-height: 1.35;
  text-decoration: none;
}

.ella-product-card__price {
  font-weight: 700;
}

.reviews-card-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 20px;
  font-size: 13px;
  line-height: 1;
  color: #666;
}

.reviews-card-rating__stars {
  display: inline-flex;
  gap: 1px;
  color: #c8c8c8;
}

.reviews-card-rating__stars .is-active {
  color: #f2b01e;
}

.reviews-card-rating__meta {
  font-size: 12px;
  line-height: 1;
}

.ella-product-card__swatches {
  display: flex;
  gap: 6px;
}

.ella-product-card__swatches span {
  width: 16px;
  height: 16px;
  border: 1px solid #ddd;
  border-radius: 50%;
}

.ella-card-cart {
  width: 100%;
  margin-top: 4px;
  gap: 8px;
}

.ella-card-select-options {
  background: #fff;
  color: var(--ella-primary, #111);
}

.ella-card-cart.is-disabled,
.ella-card-cart:disabled {
  cursor: not-allowed;
  opacity: .5;
}

.ella-card-cart__spinner {
  display: none;
  width: 14px;
  height: 14px;
  border: 2px solid currentColor;
  border-right-color: transparent;
  border-radius: 50%;
  animation: ella-spin .7s linear infinite;
}

.ella-card-cart.is-loading {
  position: relative;
  font-size: 0 !important;
  transition: none;
}

.ella-product-card__media > .ella-card-cart.is-loading,
.ella-collection .ella-product-card__media > .ella-card-cart.is-loading {
  display: flex;
}

.ella-card-cart.is-loading:disabled {
  cursor: default;
  opacity: 1;
}

.ella-card-cart.is-loading .ella-card-cart__text,
.ella-card-cart.is-loading .ella-card-cart__spinner {
  opacity: 0;
  visibility: hidden;
}

.ella-card-cart.is-loading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 46%;
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid #f6f6f6;
  border-top-color: var(--spinner-top-color, #fc0);
  border-right-color: var(--spinner-right-color, #4dd4c6);
  border-bottom-color: var(--spinner-bottom-color, #f00);
  border-left-color: var(--spinner-left-color, #f6f6f6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: ella-card-spin 1.4s linear infinite;
}

@keyframes ella-spin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes ella-card-spin {
  0% {
    transform: translateY(-50%) rotate(0);
  }

  to {
    transform: translateY(-50%) rotate(360deg);
  }
}

.ella-show-more-wrap {
  margin-top: 28px;
  text-align: center;
}

.ella-story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
  gap: 48px;
  align-items: center;
}

.ella-story-media img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.ella-story-content {
  display: grid;
  gap: 18px;
}

.ella-story-content p,
.ella-newsletter-panel p,
.ella-footer-newsletter p {
  color: #555;
  line-height: 1.7;
}

.ella-review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.ella-review-card {
  border: 1px solid #eee;
  padding: 24px;
  background: #fff;
}

.ella-review-stars {
  color: #111;
  margin-bottom: 12px;
}

.ella-reviews {
  padding-top: 42px;
  padding-bottom: 42px;
  background: #fff;
}

.ella-reviews .ella-container {
  max-width: 1080px;
}

.ella-reviews .be-review-masonry {
  --be-review-columns: 4;
  --be-review-gap: 14px;
}

.ella-home .ella-reviews .ella-container {
  max-width: 1170px;
}

.ella-home .ella-reviews .be-review-masonry__heading {
  position: relative;
  display: block;
  width: 100%;
  margin: 0 0 30px;
  text-align: center;
}

.ella-home .ella-reviews .be-review-masonry__title.title {
  position: relative;
  display: block;
  width: 100%;
  margin: 1px 0 5px;
  padding: 0;
  color: #232323;
  background: transparent;
  font-family: Poppins;
  font-size: 25px;
  font-weight: 700;
  font-style: normal;
  line-height: 25px;
  letter-spacing: 1.25px;
  text-align: center;
  text-transform: uppercase;
}

.ella-home .ella-reviews .be-review-masonry__title.title::before {
  content: "";
  display: none;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background: #c7c7c7;
}

.ella-home .ella-reviews .be-review-masonry__title.title .text {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 420px;
  max-width: calc(100% - 40px);
  padding: 0 20px;
  background: #fff;
}

@media (max-width: 991.98px) {
  .ella-reviews .be-review-masonry {
    --be-review-columns: 3;
  }

  .ella-home .ella-reviews .be-review-masonry__heading {
    width: 100%;
    margin: 0 0 30px;
  }

  .ella-home .ella-reviews .be-review-masonry__title.title {
    font-size: 18px;
    line-height: 25px;
    letter-spacing: .9px;
  }

  .ella-home .ella-reviews .be-review-masonry__title.title .text {
    width: auto;
    max-width: calc(100% - 40px);
  }
}

@media (max-width: 767.98px) {
  .ella-reviews .be-review-masonry {
    --be-review-columns: 2;
  }
}

.ella-newsletter-panel {
  background: var(--ella-secondary, #f4efe8);
  padding: 36px;
  display: grid;
  gap: 18px;
  align-items: center;
}

.ella-newsletter-panel {
  text-align: center;
  justify-items: center;
}

.ella-newsletter-form {
  display: flex;
  flex-wrap: wrap;
  width: min(100%, 520px);
}

.ella-newsletter-form input {
  flex: 1;
  min-width: 0;
  min-height: 44px;
  border: 1px solid #111;
  padding: 0 14px;
}

.newsletter-form__message {
  display: block;
  width: 100%;
  margin: 10px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #555;
}

.newsletter-form__message[hidden] {
  display: none !important;
}

.newsletter-form__message.is-loading {
  color: #777;
}

.newsletter-form__message.is-success {
  color: #428445;
}

.newsletter-form__message.is-error {
  color: #eb001b;
}

.ella-newsletter-form .newsletter-form__message {
  flex: 0 0 100%;
  text-align: center;
}

.ella-newsletter-form button:disabled,
.footer.footer-1 .footer-block__newsletter .newsletter-form__button:disabled {
  opacity: .65;
  cursor: not-allowed;
}

/* Beaueye source footer. Mirrors doc/index.html footer footer-1 markup. */
.wrapper-footer {
  background: #232323;
}

.footer.footer-1 {
  --footer-heading-font-family: Poppins, Arial, sans-serif;
  --footer-heading-font-size: 15px;
  --footer-heading-font-weight: 600;
  --footer-heading-line-height: 22px;
  --footer-heading-letter-spacing: .05em;
  --footer-heading-text-transform: uppercase;
  --footer-link-font-family: Poppins, Arial, sans-serif;
  --footer-link-font-size: 12px;
  --footer-link-font-weight: 400;
  --footer-link-line-height: 28px;
  --footer-link-letter-spacing: .02em;
  --footer-link-text-transform: capitalize;
  margin-top: 0;
  background: #232323;
  color: #cfcfcf;
  font-family: Poppins, Arial, sans-serif;
}

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

.footer.footer-1 a {
  color: inherit;
  text-decoration: none;
}

.footer.footer-1 .container,
.footer.footer-1 .container-1170 {
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.footer.footer-1 .footer__content-top {
  padding: 35px 0 40px;
  overflow: hidden;
  background: #232323;
}

.footer.footer-1 .halo-row {
  font-size: 0;
  letter-spacing: 0;
  margin-left: -15px;
  margin-right: -15px;
}

.footer.footer-1 .footer-block__item {
  display: inline-block;
  vertical-align: top;
  width: var(--block-custom-width);
  margin-bottom: var(--block-margin-bottom);
  padding-left: 15px;
  padding-right: 15px;
}

.footer.footer-1 .footer-block__heading {
  display: block;
  position: relative;
  margin: 0 0 12px;
  color: #fff;
  font-family: var(--footer-heading-font-family);
  font-size: var(--footer-heading-font-size);
  font-weight: var(--footer-heading-font-weight);
  line-height: var(--footer-heading-line-height);
  letter-spacing: var(--footer-heading-letter-spacing);
  text-transform: var(--footer-heading-text-transform);
}

.footer.footer-1 .footer-block__list ul,
.footer.footer-1 .list-social,
.footer.footer-1 .list-payment {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer.footer-1 .footer-block__column .list-menu__item--link,
.footer.footer-1 .footer-block__newsletter .footer-block__subheading,
.footer.footer-1 .footer__content-bottom .footer-block__bottom .footer__copyright {
  color: #cfcfcf;
  font-family: var(--footer-link-font-family);
  font-size: var(--footer-link-font-size);
  font-weight: var(--footer-link-font-weight);
  line-height: var(--footer-link-line-height);
  letter-spacing: var(--footer-link-letter-spacing);
  text-transform: var(--footer-link-text-transform);
}

.footer.footer-1 .footer-block__newsletter .footer-block__subheading {
  max-width: 420px;
  margin: 0 0 10px;
  color: #cfcfcf;
  text-transform: none;
}

.footer.footer-1 .footer-block__newsletter .footer-block__subheading p {
  margin: 0;
  color: #cfcfcf;
  font-size: var(--footer-link-font-size);
  font-weight: var(--footer-link-font-weight);
  line-height: calc(var(--footer-link-line-height) - 10px);
  letter-spacing: var(--footer-link-letter-spacing);
}

.footer.footer-1 .footer-block__newsletter {
  margin-bottom: 45px;
  padding-bottom: 0;
}

.footer.footer-1 .footer-block__newsletter .item {
  font-size: 0;
  letter-spacing: 0;
  margin-left: -15px;
  margin-right: -15px;
}

.footer.footer-1 .footer-block__newsletter-item {
  display: inline-block;
  width: 50%;
  padding-left: 15px;
  padding-right: 15px;
  vertical-align: top;
}

.footer.footer-1 .footer-block__newsletter .footer-block__newsletter-form {
  width: 100%;
  max-width: 420px;
  margin: 0;
  padding: 0 15px;
  background: transparent;
}

.footer.footer-1 .footer__newsletter,
.footer.footer-1 .footer-block__newsletter .footer__newsletter.ella-footer-newsletter-form {
  display: block;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: transparent;
}

.footer.footer-1 .newsletter-form__field-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: nowrap;
  overflow: hidden;
}

.footer.footer-1 .field {
  flex: 1 1 auto;
  min-width: 0;
  margin-right: 10px;
}

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

.footer.footer-1 .footer-block__newsletter .field__input {
  display: block;
  width: 100%;
  height: 45px;
  min-height: 45px;
  padding: 0 15px;
  border: 1px solid #d3d3d3;
  border-radius: 0;
  background: #232323;
  color: #cfcfcf;
  font-size: var(--footer-link-font-size);
  line-height: 45px;
  outline: 0;
}

.footer.footer-1 .footer-block__newsletter .field__input::placeholder {
  color: #cfcfcf;
  font-size: var(--footer-link-font-size);
  opacity: 1;
}

.footer.footer-1 .footer-block__newsletter .newsletter-form__button {
  display: inline-flex;
  flex: 0 0 var(--button-width, 150px);
  align-items: center;
  justify-content: center;
  width: var(--button-width, 150px);
  height: 45px;
  min-height: 45px;
  margin: 0;
  padding: 0 15px;
  border: 1px solid #fff;
  border-radius: 0;
  background: #fff;
  color: #232323;
  fill: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 43px;
  text-align: center;
  text-transform: uppercase;
}

.footer.footer-1 .footer-block__newsletter .newsletter-form__button:hover {
  border-color: #000;
  background: #000;
  color: #fff;
}

.footer.footer-1 .footer-block__newsletter .newsletter-form__message {
  margin-top: 10px;
  color: #cfcfcf;
  font-size: var(--footer-link-font-size);
  line-height: 1.4;
  text-align: left;
}

.footer.footer-1 .footer-block__newsletter .newsletter-form__message.is-loading {
  color: #cfcfcf;
}

.footer.footer-1 .footer-block__newsletter .newsletter-form__message.is-success {
  color: #8ac68a;
}

.footer.footer-1 .footer-block__newsletter .newsletter-form__message.is-error {
  color: #ff8f8f;
}

.footer.footer-1 .footer-block__list-social {
  margin-top: var(--margin-top);
}

.footer.footer-1 .footer-block__list-social .list-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-left: 0;
}

.footer.footer-1 .footer-block__list-social .list-social__item {
  margin-right: 15px;
  margin-bottom: 15px;
}

.footer.footer-1 .footer-block__list-social .list-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 12px;
  border: 1px solid #fff;
  border-radius: 50%;
  background: #fff;
  color: #282828 !important;
  line-height: 1;
}

.footer.footer-1 .footer-block__list-social .list-social__link img,
.footer.footer-1 .footer-block__list-social .list-social__link svg {
  display: block;
  width: 12px !important;
  height: 12px !important;
}

.footer.footer-1 .footer__content-bottom {
  padding: 20px 0 40px;
  border-top: 1px solid #282828;
  background: #232323;
}

.footer.footer-1 .footer__content-bottom .footer-block__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 23px;
}

.footer.footer-1 .footer__copyright {
  padding-right: 15px;
}

.footer.footer-1 .copyright__content {
  color: #cfcfcf;
}

.footer.footer-1 .copyright__content p {
  margin: 0;
  color: #cfcfcf;
  font-size: var(--font-size, 12px);
  font-weight: 400;
  line-height: 2.5em;
}

.footer.footer-1 .copyright__content a {
  color: inherit;
  text-transform: initial;
}

.footer.footer-1 .copyright__content a:hover {
  text-decoration: underline;
  text-underline-offset: .3rem;
}

.footer.footer-1 .footer__column--info {
  text-align: right;
}

.footer.footer-1 .footer-block__list-payment {
  margin-top: var(--margin-top);
}

.footer.footer-1 .footer-block__list-payment ul {
  padding: 0;
}

.footer.footer-1 .list-payment {
  font-size: 0;
  letter-spacing: 0;
}

.footer.footer-1 .list-payment__item {
  display: inline-block;
  margin: 5px 0 5px 15px;
  vertical-align: top;
}

.footer.footer-1 .list-payment__item .icon {
  display: block;
  width: auto;
  height: 32px;
  fill: currentColor;
  stroke: transparent;
}

.footer.footer-1 .list-payment__item img.icon {
  width: auto;
  max-width: none;
  height: 32px;
}

.footer.footer-1 .list-payment__item:last-child {
  margin-right: 0;
}

@media (max-width: 1199.98px) {
  .footer.footer-1 .container,
  .footer.footer-1 .container-1170 {
    max-width: none;
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .footer.footer-1 .column-5 .footer-block__item {
    width: 25%;
  }

  .footer.footer-1 .column-5 .footer-block__item.footer-block__newsletter {
    width: 100%;
    margin-top: 40px;
  }
}

@media (max-width: 767.98px) {
  .footer.footer-1 .footer__content-top {
    padding-bottom: 40px;
  }

  .footer.footer-1 .halo-row {
    margin-left: 0;
    margin-right: 0;
  }

  .footer.footer-1 .footer-block__item,
  .footer.footer-1 .footer-block__item.footer-block__newsletter {
    display: block;
    width: 100% !important;
    margin-bottom: 30px;
    padding-left: 0;
    padding-right: 0;
  }

  .footer.footer-1 .footer-block__link_list {
    margin-bottom: 0;
  }

  .footer.footer-1 .footer-block__mobile .footer-block__heading {
    margin-bottom: 0;
    padding-bottom: 13px;
    border-bottom: 1px solid #fff;
    pointer-events: auto;
  }

  .footer.footer-1 .footer-block__mobile .footer-block__heading::before,
  .footer.footer-1 .footer-block__mobile .footer-block__heading::after {
    content: "";
    position: absolute;
    top: calc(50% - 6.5px);
    z-index: 2;
    background-color: #fff;
    transition: transform .18s ease;
  }

  .footer.footer-1 .footer-block__mobile .footer-block__heading::before {
    right: 5px;
    width: 2px;
    height: 12px;
    transform: translateY(-50%) rotate(0);
  }

  .footer.footer-1 .footer-block__mobile .footer-block__heading::after {
    right: 0;
    width: 12px;
    height: 2px;
    transform: translateY(-50%) rotate(0);
  }

  .footer.footer-1 .footer-block__mobile .footer-block__heading.is-clicked::before {
    transform: translateY(-50%) rotate(90deg);
  }

  .footer.footer-1 .footer-block__mobile .footer-block__heading.is-clicked::after {
    transform: translateY(-50%) rotate(180deg);
  }

  .footer.footer-1 .footer-block__mobile .footer-block__list {
    display: none;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .footer.footer-1 .footer-block__mobile .footer-block__heading.is-clicked + .footer-block__list {
    display: block;
  }

  .footer.footer-1 .footer-block__newsletter .item {
    margin-left: 0;
    margin-right: 0;
  }

  .footer.footer-1 .footer-block__newsletter-item,
  .footer.footer-1 .footer-block__newsletter .footer-block__newsletter-form {
    display: block;
    width: 100%;
    max-width: none;
    padding-left: 0;
    padding-right: 0;
  }

  .footer.footer-1 .footer-block__newsletter .footer-block__subheading {
    max-width: none;
    margin-bottom: 7px !important;
  }

  .footer.footer-1 .newsletter-form__field-wrapper {
    display: flex;
  }

  .footer.footer-1 .footer__content-bottom .footer-block__bottom {
    display: block;
    text-align: center;
  }

  .footer.footer-1 .footer__copyright {
    padding: 0;
  }

  .footer.footer-1 .footer__column--info {
    margin-top: 20px;
    text-align: center;
  }

  .footer.footer-1 .list-payment {
    margin-top: 20px;
    padding: 0;
    text-align: center;
  }
}


.ella-back-to-top {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 42px;
  height: 42px;
  border: 0;
  background: #fff;
  color: #111;
  box-shadow: 0 6px 20px rgba(0,0,0,.18);
  z-index: 20;
}

.ella-collection-hero {
  width: 100%;
  background: #f3f3f3;
}

.ella-collection-hero img {
  width: 100%;
  max-height: 360px;
  object-fit: cover;
  display: block;
}

.ella-collection-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
  text-align: center;
}

.ella-collection-breadcrumb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #777;
  font-size: 13px;
}

.ella-collection-breadcrumb a {
  color: #555;
  text-decoration: none;
}

.ella-collection-heading h1 {
  margin: 0;
  font-size: 38px;
  font-weight: 700;
}

.ella-collection-description {
  max-width: 760px;
  margin: 0 auto;
  color: #555;
  line-height: 1.7;
}

.ella-collection-featured,
.ella-collection-recently {
  margin-bottom: 44px;
}

.ella-collection-shell {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.ella-collection-sidebar {
  position: sticky;
  top: 110px;
}

.ella-collection-filter {
  display: grid;
  gap: 22px;
}

.ella-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ella-filter-head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
}

.ella-filter-head a,
.ella-active-filters a {
  color: #555;
  font-size: 13px;
}

.ella-filter-group {
  margin: 0;
  padding: 0 0 18px;
  border: 0;
  border-bottom: 1px solid #eee;
}

.ella-filter-group legend {
  float: none;
  width: auto;
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
}

.ella-filter-options {
  display: grid;
  gap: 10px;
}

.ella-filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 28px;
  margin: 0;
  color: #333;
  cursor: pointer;
}

.ella-filter-option input {
  width: 16px;
  height: 16px;
}

.ella-filter-option.is-active {
  font-weight: 700;
}

.ella-filter-swatch {
  width: 16px;
  height: 16px;
  border: 1px solid #ddd;
  border-radius: 50%;
}

.ella-filter-price {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ella-filter-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ella-collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
}

.ella-filter-toggle {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid #ddd;
  background: #fff;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ella-collection-count {
  color: #666;
  font-size: 14px;
}

.ella-sort-form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.ella-sort-form label {
  color: #555;
  white-space: nowrap;
}

.ella-sort-form .form-select {
  width: 190px;
}

.ella-active-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.ella-active-filters span {
  padding: 6px 10px;
  background: #f4f4f4;
  font-size: 13px;
}

.ella-cart-success-modal {
  position: fixed;
  inset: 0;
  z-index: 1090;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.ella-cart-success-modal.is-open {
  display: flex;
}

.ella-cart-success-modal-open {
  overflow: hidden;
}

.ella-cart-success-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .48);
}

.ella-cart-success-modal__dialog {
  position: relative;
  width: min(720px, 100%);
  padding: 30px 46px 44px;
  border: 1px solid #cfcfcf;
  background: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .24);
}

.ella-cart-success-modal__close {
  position: absolute;
  top: -1px;
  right: -1px;
  width: 46px;
  height: 46px;
  border: 0;
  background: #000;
  color: #fff;
  font-size: 28px;
  font-weight: 300;
  line-height: 46px;
}

.ella-cart-success-modal__product {
  display: grid;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  margin-bottom: 28px;
}

.ella-cart-success-modal__image {
  display: block;
  width: 104px;
  aspect-ratio: 1;
  overflow: hidden;
  background: #f7f7f7;
}

.ella-cart-success-modal__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ella-cart-success-modal__copy {
  min-width: 0;
  padding-top: 20px;
}

.ella-cart-success-modal__name {
  display: block;
  overflow-wrap: anywhere;
  color: #232323;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.25;
  text-decoration: none;
}

.ella-cart-success-modal__copy p {
  margin: 20px 0 0;
  color: #969696;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.25;
}

.ella-cart-success-modal__actions {
  display: grid;
  gap: 22px;
  margin-left: 132px;
}

.ella-cart-success-modal__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 12px 22px;
  border-radius: 0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.15;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
}

.ella-cart-success-modal__button--outline {
  border: 2px solid #bdbdbd;
  background: #fff;
  color: #171717;
}

.ella-cart-success-modal__button--outline:hover,
.ella-cart-success-modal__button--outline:focus {
  border-color: #171717;
  color: #171717;
}

.ella-cart-success-modal__button--checkout {
  border: 2px solid #f0443e;
  background: #f0443e;
  color: #fff;
}

.ella-cart-success-modal__button--checkout:hover,
.ella-cart-success-modal__button--checkout:focus {
  border-color: #d9302b;
  background: #d9302b;
  color: #fff;
}

.ella-collection-products {
  --ella-mobile-columns: 2;
}

.ella-collection-empty {
  grid-column: 1 / -1;
}

.ella-collection-pagination {
  margin-top: 32px;
}

.ella-filter-drawer .offcanvas-body {
  padding-top: 0;
}

.ella-menu .nav-link.is-active,
.ella-mobile-menu .nav-link.is-active {
  color: var(--ella-primary, #111);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.ella-product-detail {
  padding-top: 22px;
  padding-bottom: 44px;
}

.ella-product-top {
  display: grid;
  grid-template-columns: minmax(0, 730fr) minmax(360px, 440fr);
  gap: 0;
  align-items: start;
  position: relative;
}

.ella-product-gallery {
  position: sticky;
  top: 30px;
  align-self: start;
  min-width: 0;
  padding-right: 60px;
}

.ella-product-media {
  display: grid;
  gap: 20px;
}

.ella-product-main-image {
  background: #f5f5f5;
  overflow: hidden;
}

.ella-product-main-image .product-img {
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ella-product-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ella-product-thumbs {
  position: relative;
  width: 100%;
  padding: 0;
  background: #fff;
  overflow: hidden;
}

.ella-product-thumbs::before,
.ella-product-thumbs::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35px;
  background: #fff;
  z-index: 2;
  pointer-events: none;
}

.ella-product-thumbs::before {
  left: 0;
}

.ella-product-thumbs::after {
  right: 0;
}

.ella-product-thumbs .swiper-slide {
  width: calc((100% - 70px) / 3) !important;
  padding: 0 10px;
  border: 0;
  background: transparent;
  cursor: pointer;
  box-sizing: border-box;
}

.ella-product-thumbs a {
  position: relative;
  width: 100%;
  display: block;
  overflow: hidden;
}

.ella-product-thumbs a::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 148%;
}

.ella-product-thumbs img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  display: block;
  max-width: none;
  object-fit: contain;
  opacity: .3;
  transform: translate(-50%, -50%);
  transition: opacity .2s ease;
}

.ella-product-thumbs .swiper-slide.active img {
  opacity: 1;
}

.ella-product-thumbs a:focus-visible {
  outline: 1px solid #111;
  outline-offset: 2px;
}

.ella-product-thumbs .swiper-button-prev,
.ella-product-thumbs .swiper-button-next {
  width: 30px;
  height: 30px;
  top: 50%;
  margin-top: 0;
  padding: 4px;
  border: 0;
  border-radius: 0;
  background: none;
  color: #000;
  box-shadow: none;
  transform: translateY(-50%);
  z-index: 3;
}

.ella-product-thumbs .swiper-button-prev {
  left: 0;
}

.ella-product-thumbs .swiper-button-next {
  right: 0;
}

.ella-product-thumbs .swiper-button-prev::after,
.ella-product-thumbs .swiper-button-next::after {
  content: none;
  display: none;
}

.ella-product-thumbs .swiper-button-prev svg,
.ella-product-thumbs .swiper-button-next svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.ella-product-thumbs .swiper-button-prev svg {
  transform: rotate(180deg);
}

.ella-product-summary {
  position: sticky;
  top: 30px;
  align-self: start;
  min-width: 0;
}

.ella-product-title-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
}

.ella-product-title {
  margin: 0 0 8px;
  color: #232323;
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: capitalize;
}

body.page-product.ella-product-page .product-info .ella-product-title.product-name {
  font-size: 20px;
  line-height: 30px;
  font-weight: 600;
}

.ella-product-sold.productView-soldProduct {
  display: inline-block;
  margin: 0 0 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #232323;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
}

.ella-product-sold i {
  display: inline-block;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  color: currentColor;
  font-size: 18px;
  line-height: 18px;
  text-align: center;
  vertical-align: -4px;
}

.ella-product-sold__text {
  vertical-align: middle;
}

.ella-product-atmosphere {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  margin: 14px 0 16px;
  padding: 8px 12px;
  border: 1px solid #f4d8d5;
  border-radius: 4px;
  background: #fff7f5;
  color: #e65a4f;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
}

.ella-product-atmosphere i {
  font-size: 20px;
  line-height: 1;
}

.ella-product-viewing-banner {
  margin: 0 0 22px;
}

.ella-product-viewing-banner img {
  display: block;
  max-width: 100%;
  height: auto;
}

.ella-product-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 20px 0;
}

.ella-product-price .new-price {
  font-size: 32px;
  font-weight: 700;
}

.ella-product-price .old-price {
  color: #777;
  text-decoration: line-through;
}

.ella-product-meta {
  display: grid;
  gap: 8px;
  margin-bottom: 22px;
  color: #555;
}

.ella-product-meta span {
  color: #777;
}

.ella-product-options {
  display: grid;
  gap: 18px;
  margin-bottom: 22px;
}

.ella-product-options p {
  margin: 0 0 10px;
  font-weight: 700;
}

.ella-product-options .variable-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ella-product-options .variable-info > div {
  min-width: 46px;
  min-height: 42px;
  border: 1px solid #ddd;
  background: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  cursor: pointer;
}

.ella-product-options .variable-info > div.selected {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
}

.ella-product-options .variable-info > div.disabled {
  opacity: .35;
  pointer-events: none;
}

.ella-product-options .is-v-image {
  padding: 2px;
}

.ella-product-options .is-v-image img {
  width: 38px;
  height: 38px;
  object-fit: cover;
}

.ella-product-promo-card {
  display: grid;
  margin-bottom: 20px;
  border: 0;
  border-radius: 0;
  background: #fff;
  overflow: visible;
}

.ella-product-promo-row {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
}

.ella-product-promo-row + .ella-product-promo-row {
  border-top: 1px solid #eeeeee;
}

.ella-product-promo-row__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  color: #6d6d6d;
  font-size: 22px;
  line-height: 1;
}

.ella-product-promo-row__content {
  min-width: 0;
}

.ella-product-promo-row__title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  color: #232323;
  font-size: 14px;
  line-height: 20px;
}

.ella-product-promo-row__title strong {
  font-weight: 700;
}

.ella-product-promo-row__help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border: 1px solid #b8b8b8;
  border-radius: 50%;
  color: #777;
  background: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0;
}

.ella-product-promo-row__help:hover,
.ella-product-promo-row__help:focus {
  border-color: #555;
  color: #333;
  outline: 0;
}

.ella-product-promo-row p {
  margin: 3px 0 0;
  color: #555;
  font-size: 13px;
  line-height: 19px;
}

.ella-product-promo-row__modal-content {
  display: none;
}

.ella-product-promo-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.ella-product-promo-modal[hidden] {
  display: none;
}

.ella-product-promo-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .42);
}

.ella-product-promo-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(560px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  padding: 28px 30px 30px;
  background: #fff;
  color: #232323;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
  outline: 0;
}

.ella-product-promo-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.ella-product-promo-modal__title {
  margin: 0 34px 18px 0;
  color: #111;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 700;
}

.ella-product-promo-modal__content {
  color: #444;
  font-size: 14px;
  line-height: 1.7;
}

.ella-product-promo-modal__content > :first-child {
  margin-top: 0;
}

.ella-product-promo-modal__content > :last-child {
  margin-bottom: 0;
}

.ella-product-quantity {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.ella-product-quantity label {
  font-weight: 700;
}

.ella-product-quantity .quantity-wrap {
  width: 150px;
}

.ella-product-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px 48px;
  gap: 10px;
  align-items: center;
}

.ella-product-add-cart,
.ella-dark-button {
  min-height: 48px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-weight: 700;
}

.ella-product-add-cart:hover,
.ella-dark-button:hover {
  background: #333;
  color: #fff;
}

.ella-product-wishlist,
.ella-outline-button {
  width: 48px;
  min-height: 48px;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.ella-product-share {
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  line-height: 1;
}

.ella-product-share:hover,
.ella-product-share:focus {
  color: #555;
}

.ella-product-share-wrap {
  position: relative;
  width: 48px;
  height: 48px;
}

.ella-share-popover {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  z-index: 20;
  width: min(300px, calc(100vw - 32px));
  padding: 18px;
  border: 1px solid #e7e7e7;
  background: #fff;
  color: #111;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .16);
}

.ella-share-popover[hidden] {
  display: none;
}

.ella-share-popover__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 14px;
}

.ella-share-popover__close {
  width: 24px;
  height: 24px;
  border: 0;
  background: transparent;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  font-size: 20px;
  line-height: 1;
}

.ella-share-copy {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 46px;
  gap: 10px;
  margin-bottom: 18px;
}

.ella-share-copy input {
  width: 100%;
  min-width: 0;
  height: 44px;
  border: 1px solid #cfcfcf;
  padding: 0 14px;
  color: #111;
  font-size: 14px;
}

.ella-share-copy button {
  height: 44px;
  border: 0;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.ella-share-label {
  margin-bottom: 10px;
  font-size: 13px;
  font-weight: 700;
}

.ella-share-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
}

.ella-share-link {
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 22px;
  font-size: 20px;
  line-height: 1;
  text-decoration: none;
}

.ella-share-link:hover,
.ella-share-link:focus {
  color: #555;
  text-decoration: none;
}

.ella-share-link--tumblr span {
  font-family: Georgia, serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}

.ella-sticky-cart {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1300;
  background: rgba(255, 255, 255, .98);
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 -1px 20px rgba(0, 0, 0, .1);
  transform: translateY(110%);
  opacity: 0;
  visibility: hidden;
  transition: transform .22s ease, opacity .22s ease, visibility .22s ease;
}

.ella-sticky-cart.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.ella-sticky-cart__inner {
  width: min(1180px, calc(100% - 40px));
  min-height: 65px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

/* ── 左侧：图片 + 标题 + 价格 ── */
.ella-sticky-cart__left {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  min-width: 0;
  flex: 1 1 auto;
}

.ella-sticky-cart__image {
  width: 45px;
  height: 60px;
  overflow: hidden;
  flex: 0 0 auto;
}

.ella-sticky-cart__image img {
  width: 45px;
  height: 60px;
  object-fit: contain;
}

.ella-sticky-cart__info {
  min-width: 0;
  padding-left: 15px;
}

.ella-sticky-cart__name {
  max-width: 520px;
  overflow: hidden;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ella-sticky-cart__price {
  color: #111;
  font-size: 15px;
  font-weight: 700;
}

/* ── 右侧：SKU 下拉 + 数量 + 加购 + 心愿单 ── */
.ella-sticky-cart__right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  flex: 0 0 auto;
}

/* 单规格下拉选择 */
.ella-sticky-cart__select {
  position: relative;
  max-width: 250px;
  min-width: 160px;
}

.ella-sticky-cart__select-input {
  width: 100%;
  height: 45px;
  padding: 9px 30px 10px 12px;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background: #fff;
  color: #111;
  font-size: 13px;
  font-weight: 400;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.ella-sticky-cart__select-input:focus {
  border-color: #999;
  outline: none;
  box-shadow: none;
}

.ella-sticky-cart__select-arrow {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  color: #777;
  pointer-events: none;
}

/* 多规格按钮触发 */
.ella-sticky-cart__variant {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #777;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  max-width: 300px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ella-sticky-cart__variant:hover,
.ella-sticky-cart__variant:focus {
  color: #111;
}

.ella-sticky-cart__variant i {
  font-size: 10px;
}

/* 数量选择器 */
.ella-sticky-cart__quantity {
  width: 120px;
}

.ella-sticky-cart__quantity .btn,
.ella-sticky-cart__quantity .form-control {
  height: 45px;
}

.ella-sticky-cart__quantity .btn i {
  pointer-events: none;
}

/* 加入购物车按钮 */
.ella-sticky-cart__button {
  width: 160px;
  height: 45px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}

.ella-sticky-cart__button:hover,
.ella-sticky-cart__button:focus {
  background: #333;
  color: #fff;
}

.ella-sticky-cart__button:disabled {
  border-color: #999;
  background: #999;
}

/* 心愿单按钮 */
.ella-sticky-cart__wishlist {
  width: 44px;
  height: 44px;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  background: #fff;
  color: #666;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex: 0 0 auto;
  transition: color .15s, border-color .15s, background .15s;
}

.ella-sticky-cart__wishlist:hover,
.ella-sticky-cart__wishlist:focus {
  color: #e74c3c;
  border-color: #e74c3c;
  background: #fff;
}

.ella-sticky-options {
  position: fixed;
  inset: 0;
  z-index: 1310;
  pointer-events: none;
}

.ella-sticky-options__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .36);
  pointer-events: auto;
}

.ella-sticky-options__drawer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  padding: 0 20px 20px;
  pointer-events: auto;
}

.ella-sticky-options__panel {
  width: min(620px, 100%);
  max-height: min(78vh, 680px);
  overflow: auto;
  background: #fff;
  box-shadow: 0 -18px 44px rgba(0, 0, 0, .18);
}

.ella-sticky-options__header {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 58px;
  padding: 0 22px;
  border-bottom: 1px solid #eee;
  background: #fff;
  color: #111;
  font-size: 15px;
  font-weight: 700;
}

.ella-sticky-options__close {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ella-sticky-options__product {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 12px;
  padding: 20px 22px 8px;
  align-items: center;
}

.ella-sticky-options__product img {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

.ella-sticky-options__name {
  overflow: hidden;
  color: #111;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ella-sticky-options__price {
  margin-top: 4px;
  color: #111;
  font-size: 15px;
  font-weight: 700;
}

.ella-sticky-options__summary {
  margin-top: 4px;
  color: #777;
  font-size: 12px;
  line-height: 1.35;
}

.ella-sticky-options__groups {
  display: grid;
  gap: 18px;
  padding: 16px 22px 20px;
}

.ella-sticky-option-label {
  margin-bottom: 10px;
  color: #111;
  font-size: 13px;
  font-weight: 700;
}

.ella-sticky-option-values {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ella-sticky-option-value {
  min-width: 46px;
  min-height: 42px;
  border: 1px solid #ddd;
  background: #fff;
  color: #111;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 12px;
  cursor: pointer;
}

.ella-sticky-option-value.selected {
  border-color: #111;
  box-shadow: inset 0 0 0 1px #111;
}

.ella-sticky-option-value.disabled,
.ella-sticky-option-value:disabled {
  opacity: .35;
  pointer-events: none;
}

.ella-sticky-option-value.is-image {
  width: 46px;
  height: 46px;
  padding: 2px;
}

.ella-sticky-option-value.is-image img {
  width: 40px;
  height: 40px;
  object-fit: cover;
}

.ella-sticky-options__action {
  position: sticky;
  bottom: 0;
  width: calc(100% - 44px);
  height: 46px;
  margin: 0 22px 22px;
  border: 1px solid #111;
  background: #111;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.ella-sticky-options__action:hover,
.ella-sticky-options__action:focus {
  background: #333;
  color: #fff;
}

.ella-sticky-options__action:disabled {
  border-color: #999;
  background: #999;
}

.ella-product-tabs {
  margin-top: 46px;
  border-top: 1px solid #eee;
}

.ella-product-detail > .product-recommendation--fbt {
  max-width: 760px;
  margin-top: 34px;
}

.ella-product-detail > .product-recommendation--fbt .product-recommendation__title {
  font-size: 22px;
  line-height: 1.25;
}

.ella-product-detail > .product-recommendation--fbt .product-recommendation__item {
  grid-template-columns: auto 72px minmax(0, 1fr) auto;
}

.ella-product-detail > .product-recommendation--fbt .product-recommendation__item img {
  width: 72px;
  height: 72px;
  object-fit: cover;
}

.ella-product-tabs .nav-tabs {
  border-bottom: 1px solid #eee;
  justify-content: center;
}

.ella-product-tabs .nav-link {
  border: 0;
  color: #555;
  font-weight: 700;
  padding: 18px 22px;
}

.ella-product-tabs .nav-link.active {
  color: #111;
  border-bottom: 2px solid #111;
}

.ella-product-tabs .tab-content {
  padding: 28px 0;
}

.ella-product-relations,
.ella-product-recently {
  padding: 12px 0 42px;
}

.ella-recently-viewed-scroll {
  display: flex;
  gap: 18px;
  overflow-x: hidden;
  overflow-y: hidden;
  padding-bottom: 12px;
  overscroll-behavior-x: contain;
  scroll-snap-type: x proximity;
  scrollbar-color: #111 transparent;
  scrollbar-width: thin;
}

.ella-recently-viewed-scroll.is-scrollable {
  overflow-x: auto;
}

.ella-recently-viewed-scroll::-webkit-scrollbar {
  height: 3px;
}

.ella-recently-viewed-scroll::-webkit-scrollbar-track {
  background: transparent;
}

.ella-recently-viewed-scroll::-webkit-scrollbar-thumb {
  background: #111;
  border-radius: 0;
}

.ella-recently-viewed-scroll .ella-product-grid__item {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  scroll-snap-align: start;
}

.ella-recently-viewed-scroll .ella-product-card {
  height: 100%;
}

@media (max-width: 1199.98px) {
  .ella-recently-viewed-scroll .ella-product-grid__item {
    flex-basis: calc((100% - 10px) / 2);
    min-width: 160px;
  }
}

.free-shipping-bar {
  --free-shipping-percent: 0%;
  --free-shipping-accent: #67cf9f;
  --free-shipping-pending: #ffc206;
  display: grid;
  gap: 14px;
  padding: 0;
  background: transparent;
}

.free-shipping-bar__count {
  color: #8f8f8f;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}

.free-shipping-bar__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.free-shipping-bar__label {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 7px;
  color: #232323;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.25;
}

.free-shipping-bar__label i {
  color: var(--free-shipping-accent);
  font-size: 18px;
  line-height: 1;
}

.free-shipping-bar__progress {
  position: relative;
  min-height: 28px;
  padding-top: 8px;
}

.free-shipping-bar__text {
  color: #8b8b8b;
  line-height: 1.45;
  font-size: 20px;
  font-weight: 600;
}

.free-shipping-bar__track {
  height: 16px;
  border-radius: 999px;
  background: #eeeeee;
  overflow: hidden;
}

.free-shipping-bar__fill {
  height: 100%;
  width: var(--free-shipping-percent);
  border-radius: inherit;
  background-color: var(--free-shipping-pending);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, .18) 0,
    rgba(255, 255, 255, .18) 18px,
    rgba(255, 255, 255, 0) 18px,
    rgba(255, 255, 255, 0) 36px
  );
  background-size: 50px 50px;
  animation: free-shipping-stripes 1s linear infinite;
  transition: width .6s cubic-bezier(.25, .8, .25, 1), background-color .4s ease;
}

@keyframes free-shipping-stripes {
  from { background-position: 0 0; }
  to { background-position: 50px 0; }
}

.free-shipping-bar.progress-qualified .free-shipping-bar__fill {
  background-color: var(--free-shipping-accent);
}

.free-shipping-bar__truck {
  position: absolute;
  left: var(--free-shipping-percent);
  top: 0;
  transform: translateX(-50%);
  width: 42px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background: var(--free-shipping-pending);
  color: #fff;
  font-size: 24px;
  line-height: 1;
  box-shadow: 0 0 0 2px rgba(255,255,255,.85);
  transition: left .6s cubic-bezier(.25, .8, .25, 1), background-color .4s ease;
}

.free-shipping-bar.progress-qualified .free-shipping-bar__truck {
  background: var(--free-shipping-accent);
}

.free-shipping-bar--mini {
  max-width: 328px;
  margin: 10px auto 18px;
  padding: 14px 12px 12px;
  border: 1px solid #edf2ee;
  border-radius: 8px;
  background: #fbfdfb;
}

.free-shipping-bar--mini .free-shipping-bar__track {
  height: 12px;
}

.free-shipping-bar--mini .free-shipping-bar__progress {
  min-height: 24px;
  padding-top: 8px;
}

.free-shipping-bar--mini .free-shipping-bar__truck {
  width: 34px;
  height: 24px;
  font-size: 19px;
}

.free-shipping-bar--mini .free-shipping-bar__count {
  flex: 0 0 auto;
  color: #777;
  font-size: 14px;
  font-weight: 700;
}

.free-shipping-bar--mini .free-shipping-bar__text {
  color: #5f5f5f;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.35;
}

.free-shipping-bar--cart,
.free-shipping-bar--mobile {
  gap: 10px;
}

.free-shipping-bar--cart .free-shipping-bar__text,
.free-shipping-bar--mobile .free-shipping-bar__text {
  font-size: 14px;
  font-weight: 500;
}

.free-shipping-bar--cart .free-shipping-bar__progress,
.free-shipping-bar--mobile .free-shipping-bar__progress {
  min-height: 22px;
  padding-top: 7px;
}

.free-shipping-bar--cart .free-shipping-bar__track,
.free-shipping-bar--mobile .free-shipping-bar__track {
  height: 10px;
}

.free-shipping-bar--cart .free-shipping-bar__truck,
.free-shipping-bar--mobile .free-shipping-bar__truck {
  width: 30px;
  height: 22px;
  font-size: 18px;
}

.ella-account-page {
  padding: 28px 0 56px;
}

.ella-account-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
}

.ella-account-grid > .col-12,
.ella-account-grid > .col-md-3,
.ella-account-grid > .account-sidebar {
  width: auto;
}

.ella-wishlist-panel {
  min-height: 520px;
}

.ella-account-heading h1 {
  margin: 0 0 22px;
  font-size: 30px;
  font-weight: 700;
}

.ella-wishlist-list {
  display: grid;
  gap: 14px;
}

.ella-wishlist-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  border-bottom: 1px solid #eee;
  padding-bottom: 14px;
}

.ella-wishlist-image {
  display: block;
  width: 96px;
  aspect-ratio: 1 / 1;
  background: #f5f5f5;
  overflow: hidden;
}

.ella-wishlist-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ella-wishlist-info {
  min-width: 0;
  display: grid;
  gap: 8px;
}

.ella-wishlist-name {
  color: #111;
  font-weight: 700;
  text-decoration: none;
}

.ella-wishlist-price {
  font-weight: 700;
}

.ella-wishlist-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ella-icon-remove {
  width: 42px;
  height: 42px;
  border: 1px solid #ddd;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ella-empty-state {
  padding: 54px 0;
}

@media (max-width: 991px) {
  .ella-container,
  .ella-header .container-fluid {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ella-image-grid,
  .ella-product-grid,
  .ella-instagram-grid {
    grid-template-columns: repeat(var(--ella-mobile-columns, 2), minmax(0, 1fr));
    gap: 12px;
  }

  .ella-story-grid,
  .ella-review-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .ella-footer-service-grid,
  .ella-footer-main,
  .ella-footer-links {
    grid-template-columns: 1fr;
  }

  .ella-footer-service-grid {
    gap: 0;
  }

  .ella-service-item {
    min-height: 0;
    padding: 18px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.12);
  }

  .ella-service-item:last-child {
    border-bottom: 0;
  }

  .ella-footer-content {
    padding: 34px 0 30px;
  }

  .ella-footer-main {
    gap: 28px;
  }

  .ella-footer-links {
    gap: 24px;
  }

  .ella-footer .footer-link-wrap h6 {
    margin-bottom: 12px;
  }

  .ella-section-heading {
    align-items: start;
    flex-direction: column;
  }

  .ella-newsletter-form {
    flex-direction: column;
    gap: 10px;
  }

  .ella-footer-bottom-inner {
    display: grid;
    gap: 16px;
    justify-items: start;
  }

  .ella-collection-heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .ella-collection-breadcrumb {
    justify-content: flex-start;
  }

  .ella-collection-heading h1 {
    font-size: 28px;
  }

  .ella-collection-shell {
    display: block;
  }

  .ella-collection-toolbar {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
  }

  .ella-sort-form {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: space-between;
  }

  .ella-sort-form .form-select {
    flex: 1;
    width: auto;
  }

  .ella-product-detail {
    padding-top: 12px;
  }

  .ella-product-top {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ella-product-gallery,
  .ella-product-summary {
    position: static;
    top: auto;
  }

  .ella-product-gallery {
    padding-right: 0;
  }

  .ella-product-title {
    font-size: 28px;
    line-height: 1.2;
  }

  .ella-product-price .new-price {
    font-size: 26px;
  }

  .ella-product-actions {
    grid-template-columns: 1fr 48px 48px;
  }

  body.page-product.ella-product-page .product-btns.ella-product-actions {
    position: static;
    z-index: auto;
    left: auto;
    right: auto;
    bottom: auto;
    width: auto;
    max-height: none;
    display: grid;
    align-items: center;
    background: transparent;
    box-shadow: none;
    flex-wrap: nowrap;
    padding: 0;
  }

  .ella-share-popover {
    right: -4px;
  }

  .ella-sticky-cart__inner {
    width: 100%;
    min-height: 0;
    padding: 10px 12px;
    flex-direction: column;
    gap: 10px;
  }

  .ella-sticky-cart__left {
    display: none;
  }

  .ella-sticky-cart__right {
    width: 100%;
    justify-content: stretch;
    gap: 10px;
  }

  .ella-sticky-cart__select {
    max-width: none;
    min-width: 0;
    flex: 1 1 auto;
  }

  .ella-sticky-cart__variant {
    max-width: none;
    flex: 1 1 auto;
  }

  .ella-sticky-cart__quantity {
    width: 100px;
  }

  .ella-sticky-cart__quantity .btn,
  .ella-sticky-cart__quantity .form-control,
  .ella-sticky-cart__button {
    height: 42px;
  }

  .ella-sticky-cart__button {
    width: auto;
    flex: 1 1 auto;
  }

  .ella-sticky-cart__wishlist {
    display: none;
  }

  .ella-sticky-options__drawer {
    padding: 0;
  }

  .ella-sticky-options__panel {
    width: 100%;
    max-height: 82vh;
  }

  .ella-sticky-options__header {
    min-height: 54px;
    padding: 0 16px;
  }

  .ella-sticky-options__product {
    padding: 16px 16px 6px;
  }

  .ella-sticky-options__groups {
    padding: 14px 16px 18px;
  }

  .ella-sticky-options__action {
    width: calc(100% - 32px);
    margin: 0 16px 16px;
  }

  .ella-product-tabs .nav-tabs {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
  }

  .ella-account-grid {
    grid-template-columns: 1fr;
  }

  .ella-wishlist-item {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .ella-wishlist-image {
    width: 82px;
  }

  .ella-wishlist-actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }

.ella-wishlist-actions .ella-outline-button,
.ella-wishlist-actions .ella-dark-button {
    flex: 1;
  }
}

.ella-header-search .header-search-close {
  display: none;
}

.ella-header-search .search_details,
.ella-header-search .header__search-full {
  display: block;
}

.ella-header-search summary.header__search-full {
  list-style: none;
}

.ella-header-search summary.header__search-full::-webkit-details-marker {
  display: none;
}

.ella-header-search .search-modal__form {
  position: relative;
  display: block;
  width: 100%;
  max-width: 160px;
  margin: 0;
  background: transparent;
}

.ella-header-search .field {
  display: flex;
  align-items: center;
  width: 100%;
  height: 31px;
  border-bottom: 1px solid #e7e7e7;
  background: #fafafa;
}

.ella-header-search .search__input {
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  height: 31px;
  padding: 3px 10px;
  border: 0;
  background: #fafafa;
  color: #232323;
  font-size: 12px;
  line-height: 31px;
  outline: 0;
}

.ella-header-search .search__input::placeholder {
  color: #767676;
}

.ella-header-search .search__input::-webkit-search-decoration,
.ella-header-search .search__input::-webkit-search-cancel-button {
  -webkit-appearance: none;
}

.ella-header-search .hiddenLabels {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0,0,0,0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.ella-header-search .search__button {
  display: inline-flex;
  width: 34px;
  min-width: inherit;
  height: 31px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: #fafafa;
  color: #232323;
}

.ella-header-search .search__button svg {
  width: 14px;
  height: 14px;
  margin-right: 0;
  fill: currentColor;
}

.ella-header-search .search__button .icon-search-1,
.ella-header-search .list-item .link svg {
  transform: rotate(-90deg);
}

.ella-header-search .hidden,
.ella-header-search .quickSearchResultsWrap[hidden],
.ella-header-search [data-predictive-search][hidden],
.ella-header-search [data-quick-trending-products][hidden],
.ella-header-search .quickSearchResultsBlock.is-hidden,
.ella-header-search [data-related-section].is-hidden {
  display: none !important;
}

.ella-header-search .quickSearchResultsWrap {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  left: auto;
  z-index: 5;
  display: none;
  width: 570px;
  padding: 18px 0;
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  cursor: auto;
}

.ella-header-search:not(.is-search-open) .quickSearchResultsWrap,
.ella-header-search:not(.is-search-open) [data-predictive-search],
.ella-header-search:not(.is-search-open) [data-quick-trending-products],
.ella-header-search:not(.is-search-open) .ella-predictive-search .predictive-search {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.ella-header-search.is-search-open .quickSearchResultsWrap.is-show[data-quick-trending-products]:not([hidden]),
.ella-header-search.is-search-open .ella-predictive-search[open] .predictive-search:not([hidden]) {
  display: block;
}

@media (min-width: 992px) {
  .ella-header-search.is-sticky-search-open {
    position: fixed !important;
    top: 87px !important;
    right: 15px !important;
    z-index: 1200 !important;
    width: min(570px, calc(100vw - 30px)) !important;
  }

  .ella-header-search.is-sticky-search-open .search-modal__form {
    width: 100% !important;
    max-width: none !important;
  }

  .ella-header-search.is-sticky-search-open .field {
    height: 42px !important;
    border: 1px solid #e7e7e7 !important;
    background: #fff !important;
    box-shadow: 0 1px 4px rgba(0,0,0,.12) !important;
  }

  .ella-header-search.is-sticky-search-open .search__input,
  .ella-header-search.is-sticky-search-open .search__button {
    height: 40px !important;
    background: #fff !important;
    line-height: 40px !important;
  }

  .ella-header-search.is-sticky-search-open .quickSearchResultsWrap {
    top: calc(100% + 8px) !important;
    right: 0 !important;
    z-index: 1201 !important;
    width: min(570px, calc(100vw - 30px)) !important;
  }

  .ella-header-search.is-sticky-search-open .ella-search-results-window {
    width: min(1170px, calc(100vw - 30px)) !important;
  }
}

.ella-header-search .quickSearchResults {
  max-height: calc(80vh - 150px);
  overflow: hidden auto;
}

.ella-header-search .quickSearchResults .container {
  max-width: none;
  padding-left: 30px;
  padding-right: 30px;
}

.ella-header-search .search-block + .search-block {
  margin-top: 13px;
}

.ella-header-search .search-block-title {
  position: relative;
  margin: 0 0 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8e8e8;
  color: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.ella-header-search .search-block-title .text {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: auto;
  padding: 0 28px 0 0;
  background: #fff;
  vertical-align: top;
}

.ella-header-search .list-item {
  display: block;
  margin: 0 -5px;
  padding: 0;
  font-size: 0;
  letter-spacing: 0;
  text-align: left;
}

.ella-header-search .list-item .item {
  display: inline-block;
  margin: 0 0 10px;
  padding: 0 5px;
  vertical-align: top;
}

.ella-header-search .list-item .link {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px 5px 7px;
  background: #f7f7f7;
  color: #6f6f6f;
  text-decoration: none;
  text-transform: lowercase;
}

.ella-header-search .list-item .link:hover {
  background: #e5e5e5;
  color: #232323;
}

.ella-header-search .list-item .link svg {
  width: 20px;
  height: 20px;
  padding: 2px;
  fill: currentColor;
}

.ella-header-search .list-item .link .text {
  display: block;
  margin: 0 0 0 4px;
  font-size: 14px;
  line-height: 20px;
}

.ella-header-search .products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 20px;
  font-size: initial;
  letter-spacing: 0;
}

.ella-header-search .products-grid.column-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ella-header-search .products-grid.column-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ella-header-search .products-grid .product {
  min-width: 0;
}

.ella-header-search .ella-product-card__body {
  gap: 7px;
  padding-top: 11px;
  text-align: center;
}

.ella-header-search .ella-product-card__name {
  display: -webkit-box;
  min-height: 38px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #232323;
  font-size: 14px;
  font-weight: 600;
  line-height: 19px;
}

.ella-header-search .ella-product-card__price {
  color: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
}

.ella-header-search .reviews-card-rating,
.ella-header-search .ella-product-card__swatches,
.ella-header-search .ella-product-card__media > .ella-card-cart,
.ella-header-search .ella-card-option-panel,
.ella-header-search .ella-card-wishlist {
  display: none;
}

.ella-header-search .productViewAll {
  border-top: 1px solid #e8e8e8;
  padding-top: 15px;
}

.ella-header-search .productViewAll .button {
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: #232323;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.ella-header-search .productEmpty {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 14px 0;
  color: #777;
  font-size: 14px;
  line-height: 22px;
}

.ella-header-search .ella-search-related__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.ella-header-search .ella-search-related__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ella-header-search .ella-search-related__links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  background: #f7f7f7;
  color: #6f6f6f;
  font-size: 14px;
  line-height: 20px;
  text-decoration: none;
}

.ella-header-search .ella-search-related__links a:hover {
  background: #e5e5e5;
  color: #232323;
}

.ella-header-search .ella-search-results-window {
  left: auto;
  right: 0;
  width: min(1170px, calc(100vw - 30px));
  padding: 0;
}

.ella-header-search .ella-search-results-window .quickSearchResults {
  max-height: calc(100vh - 150px);
}

.ella-header-search .ella-search-results-window .quickSearchResults .container {
  padding: 26px 30px 28px;
}

.ella-search-results-window__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8e8e8;
}

.ella-search-results-window__eyebrow {
  display: block;
  margin-bottom: 4px;
  color: #777;
  font-size: 12px;
  font-weight: 500;
  line-height: 18px;
  text-transform: uppercase;
}

.ella-search-results-window__query {
  margin: 0;
  color: #232323;
  font-size: 20px;
  font-weight: 700;
  line-height: 28px;
  letter-spacing: 0;
}

.ella-header-search .header-search-popup-close {
  display: inline-flex;
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #232323;
}

.ella-header-search .header-search-popup-close svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.ella-search-results-window__grid {
  display: grid;
  grid-template-columns: minmax(220px, 250px) minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.ella-search-results-window__grid--full {
  grid-template-columns: 1fr;
}

.ella-search-results-window__side {
  display: grid;
  gap: 18px;
}

.ella-search-results-window__side .search-block + .search-block,
.ella-search-results-window__products.search-block {
  margin-top: 0;
}

.ella-search-results-window__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e8e8e8;
}

.ella-search-results-window__title-row .search-block-title {
  flex: 1 1 auto;
  margin-bottom: 0;
  border-bottom: 0;
}

.ella-search-results-window__view-all {
  flex: 0 0 auto;
  padding-bottom: 8px;
  color: #232323;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-transform: uppercase;
}

.ella-search-results-window__view-all:hover {
  color: #777;
}

.ella-header-search .ella-search-results-window .products-grid,
.ella-header-search .ella-search-results-window .products-grid.column-3 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 0;
}

.ella-header-search .ella-search-results-window .ella-search-related__links {
  display: grid;
  gap: 7px;
}

.ella-header-search .ella-search-results-window .ella-search-related__links a {
  display: flex;
  min-height: 0;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 0;
  background: transparent;
  color: #555;
  font-size: 13px;
  line-height: 20px;
  text-decoration: none;
}

.ella-header-search .ella-search-results-window .ella-search-related__links a svg {
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
  fill: currentColor;
}

.ella-header-search .ella-search-results-window .ella-search-related__links a:hover {
  background: transparent;
  color: #232323;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ella-header-search .ella-search-results-window .list-item {
  display: grid;
  gap: 7px;
  margin: 0;
}

.ella-header-search .ella-search-results-window .list-item .item {
  display: block;
  margin: 0;
  padding: 0;
}

.ella-header-search .ella-search-results-window .list-item .link {
  justify-content: flex-start;
  padding: 0;
  background: transparent;
  color: #555;
}

.ella-header-search .ella-search-results-window .list-item .link:hover {
  background: transparent;
  color: #232323;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ella-header-search .predictive-search__loading-state {
  justify-content: center;
  padding: 16px;
}

.ella-search-extra {
  display: grid;
  gap: 28px;
}

.ella-search-extra h2 {
  margin-bottom: 12px;
  font-size: 22px;
}

.ella-search-extra-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ella-search-extra-links a {
  display: inline-flex;
  padding: 9px 14px;
  border: 1px solid #ddd;
  color: #111;
  text-decoration: none;
}

.ella-search-fallback-product {
  display: grid;
  gap: 8px;
  color: #111;
  text-decoration: none;
}

.ella-search-fallback-product img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #f6f6f6;
}

.ella-mobile-search-panel {
  position: fixed;
  inset: 0;
  z-index: 1045;
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
  background: rgba(35,35,35,.45);
}

.ella-mobile-search-panel[hidden] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.ella-mobile-search-panel.is-open {
  display: block !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.ella-mobile-search-panel__inner {
  min-height: 100vh;
  padding: 16px 15px 28px;
  background: #fff;
  overflow: auto;
}

.ella-mobile-search-panel .ella-header-search {
  height: auto;
  background: transparent;
}

.ella-mobile-search-panel .ella-header-search > .search-modal__form,
.ella-mobile-search-panel .ella-header-search .search-modal__form {
  width: 100%;
  max-width: 100%;
}

.ella-mobile-search-panel .ella-header-search .field {
  height: 42px;
  border-bottom: 1px solid #e7e7e7;
}

.ella-mobile-search-panel .ella-header-search .field > input,
.ella-mobile-search-panel .ella-header-search .search__input {
  width: 100%;
  height: 42px;
  font-size: 18px;
  line-height: 42px;
}

.ella-mobile-search-panel .ella-header-search .field > button,
.ella-mobile-search-panel .ella-header-search .search__button {
  height: 42px;
}

#offcanvas-right-cart.offcanvas:not(.show) {
  visibility: hidden !important;
  pointer-events: none !important;
}

.background-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: block !important;
  cursor: pointer;
  background-color: rgba(35, 35, 35, .8);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration-long) ease;
}

body.cart-sidebar-show {
  overflow-y: hidden;
  padding-inline-end: 16px;
}

.body-content-wrapper {
  transition: transform var(--duration-long) ease;
}

body.cart-sidebar-show .body-content-wrapper {
  transform: translate(calc(var(--page-content-distance) * -1));
}

body.cart-sidebar-show .background-overlay {
  z-index: 1400;
  opacity: 1;
  pointer-events: all;
}

body.cart-sidebar-show .offcanvas-backdrop {
  display: none !important;
}

.halo-sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 101;
  width: 100%;
  max-width: calc(100vw - 40px);
  height: 100%;
  padding: 0;
  background-color: #fff;
  opacity: 1;
  visibility: hidden;
  transition: opacity .5s, transform var(--duration-long) ease, visibility var(--duration-long) ease;
}

.halo-sidebar.halo-sidebar-right {
  right: 0;
  transform: translate3d(101%, 0, 0);
}

.halo-sidebar.halo-cart-sidebar {
  display: flex;
  flex-direction: column;
  z-index: 1401;
  max-width: 420px;
}

body.cart-sidebar-show #offcanvas-right-cart.halo-cart-sidebar,
#offcanvas-right-cart.halo-cart-sidebar.show {
  transform: translateZ(0);
  opacity: 1;
  visibility: visible;
}

#offcanvas-right-cart .halo-sidebar-header,
#offcanvas-right-cart .previewCartMessage,
#offcanvas-right-cart .previewCart-wrapper {
  transform: translate(calc(var(--sidebar-content-distance) * 1));
  opacity: 0;
  transition: transform var(--duration-long) ease, opacity var(--duration-long) ease;
  transition-delay: 0s;
}

body:not(.safari).cart-sidebar-show #offcanvas-right-cart .halo-sidebar-header {
  transition-delay: .25s;
}

body:not(.safari).cart-sidebar-show #offcanvas-right-cart .previewCartMessage {
  transition-delay: .4s;
}

body:not(.safari).cart-sidebar-show #offcanvas-right-cart .previewCart-wrapper {
  transition-delay: .55s;
}

/* When loading, remove the fade-in delay so the spinner shows immediately,
   but keep the transform/opacity transition for the slide-in feel */
body.cart-sidebar-loading #offcanvas-right-cart .previewCart-wrapper,
body.cart-sidebar-show #offcanvas-right-cart.is-loading .previewCart-wrapper {
  transition-delay: 0s;
}

body.cart-sidebar-show #offcanvas-right-cart .halo-sidebar-header,
body.cart-sidebar-show #offcanvas-right-cart .previewCartMessage,
body.cart-sidebar-show #offcanvas-right-cart .previewCart-wrapper {
  transform: translate(0);
  opacity: 1;
}

body.cart-sidebar-show #offcanvas-right-cart.ella-cart-content-enter .halo-sidebar-header,
body.cart-sidebar-show #offcanvas-right-cart.ella-cart-content-enter .previewCartMessage,
body.cart-sidebar-show #offcanvas-right-cart.ella-cart-content-enter .previewCart-wrapper {
  transform: translate(calc(var(--sidebar-content-distance) * 1));
  opacity: 0;
  transition-delay: 0s;
}

#offcanvas-right-cart .halo-sidebar-close {
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 0;
  background-color: transparent;
  color: #232323;
  font-size: 0;
  line-height: 1;
  text-align: center;
}

#offcanvas-right-cart .halo-sidebar-close svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: #232323;
  stroke: transparent;
}

#offcanvas-right-cart .halo-sidebar-header {
  position: relative;
  flex: 0 0 auto;
  padding: 24px 30px 0;
  background-color: #fff;
  text-align: left;
}

#offcanvas-right-cart .halo-sidebar-header .title {
  display: block;
  margin: 0;
  color: #232323;
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: capitalize;
}

#offcanvas-right-cart .wrapper-cartCount {
  min-height: 21px;
  margin-top: 8px;
  margin-bottom: 0;
  color: #727272;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}

#offcanvas-right-cart .wrapper-cartCount .cartCount {
  position: static !important;
  display: inline !important;
  min-width: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit !important;
  transform: none;
}

#offcanvas-right-cart .halo-sidebar-wrapper {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  height: auto;
  padding: 13px 0 0;
  overflow: hidden;
}

#offcanvas-right-cart .custom-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #c7c7c7 transparent;
}

#offcanvas-right-cart .custom-scrollbar::-webkit-scrollbar {
  width: 6px;
}

#offcanvas-right-cart .custom-scrollbar::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: #c7c7c7;
}

#offcanvas-right-cart .previewCartMessage {
  flex: 0 0 auto;
  padding: 0 30px;
}

#offcanvas-right-cart cart-coupon-discount {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  height: 100%;
}

#offcanvas-right-cart .previewCart-wrapper {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

#offcanvas-right-cart .previewCart-wrapper-inner {
  position: relative;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

#offcanvas-right-cart .previewCart {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  min-height: 0;
  padding: 12px 30px 0;
  overflow-y: auto;
  overflow-x: hidden;
}

#offcanvas-right-cart .previewCartItem {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  margin-top: 19px;
  padding: 0 0 25px;
  border-bottom: 1px solid #e7e7e7;
  background-color: #fff;
  font-size: 0;
  letter-spacing: 0;
}

#offcanvas-right-cart .previewCartItem:first-child {
  margin-top: 0;
}

#offcanvas-right-cart .previewCartItem:last-child {
  border-bottom: 0;
}

#offcanvas-right-cart .select-wrap {
  flex: 0 0 20px;
  width: 20px;
  margin: 48px 10px 0 0;
  cursor: pointer;
  line-height: 1;
}

#offcanvas-right-cart .select-wrap i {
  color: #aaa;
  font-size: 18px;
  line-height: 1;
}

#offcanvas-right-cart .select-wrap i.bi-check-circle-fill {
  color: #232323;
}

#offcanvas-right-cart .previewCartItem-image {
  position: relative;
  top: 6px;
  display: block;
  flex: 0 0 80px;
  width: 80px;
  text-align: center;
}

#offcanvas-right-cart .previewCartItem-image::before {
  content: "";
  display: block;
  width: 100%;
  height: 0;
  padding-bottom: 107px;
}

#offcanvas-right-cart .previewCartItem-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  object-fit: contain;
  object-position: center;
}

#offcanvas-right-cart .previewCartItem-content {
  position: relative;
  display: block;
  flex: 1 1 auto;
  min-width: 0;
  width: calc(100% - 110px);
  padding: 0 20px;
}

#offcanvas-right-cart .previewCartItem-name {
  display: -webkit-box;
  margin: 0 0 10px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  color: #232323;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 20px;
  text-decoration: none;
  text-overflow: ellipsis;
  text-transform: none;
  white-space: normal;
}

#offcanvas-right-cart .previewCartItem-name:hover {
  color: #ff8b21;
}

#offcanvas-right-cart .previewCartItem-title {
  margin: 0 0 10px;
}

#offcanvas-right-cart .previewCartItem-title .previewCartItem-name {
  display: inline;
  margin: 0;
}

#offcanvas-right-cart .previewCartItem-giftBadge {
  display: inline-flex;
  align-items: center;
  min-height: 18px;
  margin-left: 6px;
  padding: 2px 6px;
  border-radius: 2px;
  background: #dc3545;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
  vertical-align: text-bottom;
}

#offcanvas-right-cart .previewCartItem-options {
  display: inline-block;
  position: relative;
  margin: 0 0 7px;
  padding: 0 30px 0 0;
  vertical-align: top;
}

#offcanvas-right-cart .previewCartItem-variant {
  display: block;
  color: #727272;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 22px;
  text-transform: capitalize;
}

#offcanvas-right-cart .previewCartItem-price {
  margin: 0 0 10px;
  color: #232323;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 22px;
}

#offcanvas-right-cart .previewCartItem-price .price,
#offcanvas-right-cart .previewCartItem-price span {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

#offcanvas-right-cart .previewCartItem-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

#offcanvas-right-cart .previewCartItem-qty {
  display: inline-flex;
  align-items: center;
  width: auto;
  margin-top: 8px;
  color: #232323;
  font-size: 14px;
  line-height: 22px;
  vertical-align: middle;
}

#offcanvas-right-cart .previewCartItem-qty-prefix {
  margin-right: 8px;
  color: #727272;
}

#offcanvas-right-cart .previewCartItem-qty input {
  width: 54px;
  height: 34px;
  padding: 0 8px;
  border: 1px solid #c7c7c7;
  border-radius: 0;
  background: #fff;
  color: #232323;
  font-size: 14px;
  line-height: 32px;
  text-align: center;
}

#offcanvas-right-cart .previewCartItem-qty--gift {
  color: #727272;
  font-size: 14px;
}

#offcanvas-right-cart .previewCartItem-qty--gift .previewCartItem-qty-prefix {
  margin-right: 4px;
}

#offcanvas-right-cart .previewCartItem-remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-top: 8px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background-color: transparent;
  color: #232323;
}

#offcanvas-right-cart .previewCartItem-remove svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: transparent;
}

#offcanvas-right-cart .previewCartInfo {
  flex: 0 0 auto;
  padding: 5px 30px 0;
  border-top: 1px solid #e7e7e7;
  background: #fff;
}

#offcanvas-right-cart .previewCartTotals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0 0;
  font-size: 14px;
  letter-spacing: 0;
}

#offcanvas-right-cart .previewCartTotals .select-wrap {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  width: auto;
  margin: 0;
  color: #727272;
  font-size: 14px;
  line-height: 22px;
}

#offcanvas-right-cart .previewCartTotals .select-wrap i {
  margin-right: 7px;
}

#offcanvas-right-cart .previewCartTotalsPrice {
  min-width: 0;
  color: #727272;
  font-size: 14px;
  line-height: 22px;
  text-align: right;
}

#offcanvas-right-cart .previewCartTotals-label {
  color: #232323;
  font-weight: 600;
}

#offcanvas-right-cart .previewCartTotals-count {
  color: #232323;
  font-weight: 600;
}

#offcanvas-right-cart .previewCartTotals-value {
  display: block;
  color: #232323;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 26px;
}

#offcanvas-right-cart .previewCartAction {
  margin: 15px 0 0;
}

#offcanvas-right-cart .previewCartGroup {
  margin: 12px 0 0;
}

#offcanvas-right-cart .previewCartGroup .button + .button {
  margin-top: 15px;
}

#offcanvas-right-cart .button {
  display: block;
  position: relative;
  width: 100%;
  max-width: 100%;
  padding: 10px 15px;
  overflow: hidden;
  border: 1px solid #232323;
  border-radius: 0;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 22px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    color .5s cubic-bezier(.25, .46, .45, .94),
    background .5s cubic-bezier(.25, .46, .45, .94),
    background-color .5s cubic-bezier(.25, .46, .45, .94),
    border .5s cubic-bezier(.25, .46, .45, .94);
}

#offcanvas-right-cart .button-1 {
  background: #232323;
  color: #fff;
}

#offcanvas-right-cart .button-1:hover {
  background: #ff8b21;
  border-color: #ff8b21;
  color: #fff;
}

#offcanvas-right-cart .button-2 {
  background: #fff;
  color: #232323;
}

#offcanvas-right-cart .button-2:hover {
  background: #232323;
  color: #fff;
}

#offcanvas-right-cart .button.disabled,
#offcanvas-right-cart .button[disabled] {
  opacity: .5;
  pointer-events: none;
}

#offcanvas-right-cart .previewCart-emptyBody {
  display: flex;
  min-height: 280px;
  align-items: center;
  justify-content: center;
  padding-top: 52px;
  text-align: center;
}

#offcanvas-right-cart .empty-cart-wrap {
  max-width: 300px;
  margin: 0 auto;
}

#offcanvas-right-cart .empty-cart-icon {
  margin-bottom: 16px;
  color: #232323;
  font-size: 42px;
  line-height: 1;
}

#offcanvas-right-cart .empty-cart-text h5 {
  margin: 0 0 8px;
  color: #232323;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
}

#offcanvas-right-cart .empty-cart-text p {
  margin: 0 0 22px;
  color: #727272;
  font-size: 14px;
  line-height: 22px;
}

#offcanvas-right-cart .previewCartList {
  margin: 0;
  padding: 0;
  list-style: none;
}

#offcanvas-right-cart .previewCartCollection {
  position: relative;
  padding: 20px 0 7px;
  border-top: 1px solid #e7e7e7;
}

#offcanvas-right-cart .previewCartTitle {
  position: relative;
  margin: 0 0 22px;
  color: #232323;
  font-family: Poppins, Arial, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 26px;
  text-transform: none;
}

#offcanvas-right-cart .previewCartRecommendationSkeleton {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

#offcanvas-right-cart .previewCartRecommendationSkeleton__media,
#offcanvas-right-cart .previewCartRecommendationSkeleton__line {
  display: block;
  background: linear-gradient(to right, #f5f5f5 4%, #eeeeee 25%, #f5f5f5 36%);
  background-size: 2000px 100%;
  animation: acceleratedCheckoutLoadingSkeleton 4s ease infinite;
}

#offcanvas-right-cart .previewCartRecommendationSkeleton__media {
  flex: 0 0 74px;
  width: 74px;
  height: 92px;
}

#offcanvas-right-cart .previewCartRecommendationSkeleton__line {
  width: 58%;
  height: 12px;
  margin-top: 12px;
}

#offcanvas-right-cart .previewCartRecommendationSkeleton__line--short {
  width: 34%;
  margin-top: 36px;
  margin-left: -58%;
}

#offcanvas-right-cart .previewCartInfo {
  position: relative;
  flex: 0 0 auto;
  padding: 5px 30px 90px;
  background: #fff;
}

#offcanvas-right-cart .previewCartCheckbox {
  margin: 0 0 12px;
}

#offcanvas-right-cart .previewCartCheckbox .select-wrap {
  display: inline-flex;
  align-items: center;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #727272;
  font: inherit;
  line-height: 20px;
  text-align: left;
}

#offcanvas-right-cart .previewCartCheckbox .select-wrap i {
  margin-right: 7px;
}

#offcanvas-right-cart .previewCartTotals {
  display: block;
  padding: 0;
  font-size: 0;
  letter-spacing: 0;
}

#offcanvas-right-cart .previewCartTotals + .previewCartTotals {
  margin-top: 9px;
}

#offcanvas-right-cart .previewCartTotalsPrice {
  min-width: 0;
  margin: 0;
  padding: 0;
  color: #727272;
  font-size: 14px;
  line-height: 22px;
  text-align: left;
}

#offcanvas-right-cart .previewCartTotals .previewCartTotals-label,
#offcanvas-right-cart .previewCartTotals .previewCartTotals-value {
  display: inline-block;
  vertical-align: top;
  font-size: 14px;
  letter-spacing: 0;
  line-height: 22px;
}

#offcanvas-right-cart .previewCartTotals .previewCartTotals-label {
  width: 120px;
  color: #232323;
  font-weight: 600;
  text-align: left;
}

#offcanvas-right-cart .previewCartTotals .previewCartTotals-value {
  width: calc(100% - 120px);
  color: #727272;
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  text-align: right;
}

#offcanvas-right-cart .previewCartTotals.total .previewCartTotals-value {
  font-size: 18px;
}

#offcanvas-right-cart .previewCartTotals.total .previewCartTotals-value,
#offcanvas-right-cart .previewCartTotals.subTotal .previewCartTotals-value {
  color: #232323;
  font-weight: 600;
}

#offcanvas-right-cart .previewCartTool {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  padding: 10px 30px 12px;
  background: transparent;
}

#offcanvas-right-cart .cartTool-item {
  width: 25%;
  padding: 16px 10px;
  border: 0;
  border-top: 1px solid #e2e2e2;
  border-right: 1px solid #e2e2e2;
  border-bottom: 1px solid #e2e2e2;
  background-color: #fff;
  color: #464646;
  cursor: pointer;
  pointer-events: auto;
  text-align: center;
}

#offcanvas-right-cart .cartTool-item:hover {
  background-color: #f8f8f8;
}

#offcanvas-right-cart .cartTool-item:first-child {
  border-left: 1px solid #e2e2e2;
}

#offcanvas-right-cart .cartTool-item span {
  pointer-events: none;
}

#offcanvas-right-cart .cartTool-item svg {
  width: 24px;
  height: 24px;
  color: #464646;
}

#offcanvas-right-cart .cartTool-item.cart-tool-shipping svg {
  width: 32px;
}

#offcanvas-right-cart .cartTool-item.cart-tool-gift svg {
  width: 26px;
}

#offcanvas-right-cart .previewCartAction {
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  z-index: 3;
  margin: auto 0 0;
  padding: 12px 30px max(16px, env(safe-area-inset-bottom));
  background: #fff;
  box-shadow: 0 -1px 0 rgba(0, 0, 0, .08);
}

#offcanvas-right-cart .previewCartGroup {
  margin: 12px 0 0;
}

#offcanvas-right-cart .previewCartGroup .button + .button,
#offcanvas-right-cart .previewCartGroup .dynamic-checkout-wrapper + .button {
  margin-top: 15px;
}

#offcanvas-right-cart .dynamic-checkout-wrapper {
  margin-top: 5px;
  margin-bottom: 10px;
}

#offcanvas-right-cart .dynamic-checkout__content {
  --shopify-accelerated-checkout-button-block-size: 54px;
  --shopify-accelerated-checkout-button-inline-size: 54px;
  --shopify-accelerated-checkout-button-border-radius: 4px;
  --shopify-accelerated-checkout-skeleton-background-color: #dedede;
  width: 100%;
}

#offcanvas-right-cart .wallet-button-fade-in {
  animation: walletButtonFadeIn .3s cubic-bezier(.1, .79, 1, 1);
}

#offcanvas-right-cart .screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  border-width: 0;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

#offcanvas-right-cart shopify-accelerated-checkout-cart {
  display: block;
  width: 100%;
}

#offcanvas-right-cart .wallet-button-wrapper {
  container-type: inline-size;
  container-name: wrapper;
  width: 100%;
}

#offcanvas-right-cart .wallet-cart-grid {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 0 -5px -5px;
  padding: 0;
}

#offcanvas-right-cart .wallet-cart-grid.accelerated-checkout-button-container {
  list-style: none;
}

#offcanvas-right-cart .wallet-cart-button-container {
  position: relative;
  flex: 1 1 0;
  min-width: 100px;
  height: clamp(25px, var(--shopify-accelerated-checkout-button-inline-size, var(--shopify-accelerated-checkout-button-block-size, 42px)), 55px);
  margin: 0 5px 5px;
  list-style-type: none !important;
  text-align: center;
}

#offcanvas-right-cart .wallet-cart-button {
  width: auto;
  flex: 1 1 0;
  min-width: 100px;
  height: clamp(25px, var(--shopify-accelerated-checkout-button-inline-size, var(--shopify-accelerated-checkout-button-block-size, 42px)), 55px);
  border-radius: var(--shopify-accelerated-checkout-button-border-radius, 4px);
  list-style-type: none !important;
  text-align: center;
}

#offcanvas-right-cart .accelerated-checkout-button {
  display: flex;
  width: 100%;
  height: 100%;
  min-height: 0;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
  padding: 0;
  border: 0;
  border-radius: var(--shopify-accelerated-checkout-button-border-radius, 4px);
  box-shadow: none;
  cursor: default;
  opacity: 1;
  transition: filter .2s ease-in-out;
}

#offcanvas-right-cart .accelerated-checkout-button[disabled] {
  opacity: 1;
  pointer-events: none;
}

#offcanvas-right-cart .accelerated-checkout-button--paypal {
  background: #ffc439;
  color: #003087;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: 20px;
  font-style: italic;
  font-weight: 700;
  letter-spacing: -.35px;
  line-height: 1;
}

#offcanvas-right-cart .paypal-wordmark {
  display: inline-flex;
  align-items: baseline;
}

#offcanvas-right-cart .paypal-wordmark span:first-child {
  color: #003087;
}

#offcanvas-right-cart .paypal-wordmark span:last-child {
  color: #009cde;
}

#offcanvas-right-cart .accelerated-checkout-button--google-pay {
  background: #000;
  color: #fff;
}

#offcanvas-right-cart .accelerated-checkout-button--google-pay svg {
  display: block;
  width: 45px;
  height: auto;
}

#offcanvas-right-cart .wallet-cart-grid--skeleton {
  flex-direction: column;
  justify-content: flex-start;
  margin: 0;
}

#offcanvas-right-cart .wallet-cart-grid--skeleton .wallet-cart-button-container {
  width: 100%;
  height: clamp(25px, var(--shopify-accelerated-checkout-button-block-size, 54px), 55px);
  margin: var(--shopify-accelerated-checkout-row-gap, 8px) 0 0 0;
}

#offcanvas-right-cart .wallet-cart-grid--skeleton .wallet-cart-button {
  width: 100%;
  height: clamp(25px, var(--shopify-accelerated-checkout-button-block-size, 54px), 55px);
}

#offcanvas-right-cart .wallet-cart-button__skeleton {
  background-color: var(--shopify-accelerated-checkout-skeleton-background-color, #dedede);
  animation: acceleratedCheckoutLoadingSkeleton 4s ease infinite;
  animation-delay: -.168s;
}

#offcanvas-right-cart .previewCartCheckoutNote {
  display: block;
  width: 100%;
  margin-top: 5px;
  color: #727272;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 22px;
  text-align: right;
}

#offcanvas-right-cart .previewCart.active-tool::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: .7;
}

#offcanvas-right-cart .popup-toolDown {
  position: fixed;
  bottom: 0;
  z-index: 2000;
  width: 100%;
  padding: 30px;
  border-top: 1px solid #e3e3e3;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 50%, 0);
  transition: transform .35s ease, visibility .35s ease, opacity .35s ease;
}

#offcanvas-right-cart .popup-toolDown.show {
  opacity: 1;
  visibility: visible;
  transform: translateZ(0);
}

#offcanvas-right-cart #popup-tool-discount {
  padding-bottom: 36px;
}

#offcanvas-right-cart .popup-toolDown label {
  display: block;
  margin: 0 0 7px;
  color: #232323;
  font-family: Poppins, Arial, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-transform: capitalize;
}

#offcanvas-right-cart .popup-toolDown label svg {
  position: relative;
  top: -2px;
  width: 20px;
  height: 20px;
  margin-right: 9px;
}

#offcanvas-right-cart .popup-toolDown .text-area,
#offcanvas-right-cart .popup-toolDown .cart-tool-input {
  display: block;
  width: 100%;
  min-height: 45px;
  margin: 0 0 10px;
  padding: 10px 12px;
  border: 1px solid #c7c7c7;
  border-radius: 0;
  background: #fff;
  color: #232323;
  font-size: 14px;
  line-height: 22px;
}

#offcanvas-right-cart .popup-toolDown .text-area {
  min-height: 100px;
  resize: vertical;
}

#offcanvas-right-cart .popup-toolDown .cart__note {
  display: block;
}

#offcanvas-right-cart .popup-toolDown .discount-code-field p {
  margin-top: 0;
  margin-bottom: 14px;
  color: #727272;
}

#offcanvas-right-cart .popup-toolDown button {
  margin-top: 15px;
  margin-bottom: 10px;
}

#offcanvas-right-cart .popup-toolDown .button.is-loading {
  opacity: .7;
  pointer-events: none;
}

#offcanvas-right-cart .cart-tool-message {
  min-height: 0;
  color: #727272;
  font-size: 13px;
  line-height: 20px;
}

#offcanvas-right-cart .cart-tool-message:empty {
  display: none;
}

#offcanvas-right-cart .cart-tool-message.is-error {
  color: #b00020;
}

#offcanvas-right-cart .cart-tool-message.is-success {
  color: #2f7d32;
}

@media (max-width: 1024px) {
  #offcanvas-right-cart .previewCartTool {
    padding: 10px 20px 12px;
  }

  #offcanvas-right-cart .previewCartInfo {
    padding: 5px 20px 90px;
  }

  #offcanvas-right-cart .previewCartAction {
    padding-right: 20px;
    padding-left: 20px;
  }

  #offcanvas-right-cart .popup-toolDown {
    padding: 30px 20px 22px;
  }
}

@media (min-width: 1025px) {
  #offcanvas-right-cart .popup-toolDown.show {
    transform: translateY(-15%) !important;
  }
}

#offcanvas-right-cart .free-shipping-bar--mini {
  --free-shipping-bg: #ededed;
  --free-shipping-bg-1: #f44336;
  --free-shipping-bg-2: #ffc206;
  --free-shipping-bg-3: #69c69c;
  --free-shipping-bg-4: #69c69c;
  --free-shipping-color: #727272;
  max-width: none;
  margin: 0 0 20px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

#offcanvas-right-cart .free-shipping-bar--mini .free-shipping-bar__label {
  font-size: 14px;
  font-weight: 600;
}

#offcanvas-right-cart .free-shipping-bar--mini .free-shipping-bar__summary {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 14px;
  text-align: left;
}

#offcanvas-right-cart .free-shipping-bar--mini .free-shipping-bar__label {
  margin-top: 5px;
}

#offcanvas-right-cart .free-shipping-bar--mini .free-shipping-bar__label i {
  display: none;
}

#offcanvas-right-cart .free-shipping-bar--mini .free-shipping-bar__count {
  color: var(--free-shipping-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

#offcanvas-right-cart .free-shipping-bar--mini .free-shipping-bar__progress {
  min-height: 20px;
  margin-top: -10px;
  padding-top: 0;
}

#offcanvas-right-cart .free-shipping-bar--mini .free-shipping-bar__track {
  height: 10px;
  border: 0;
  border-radius: 20px;
  background-color: var(--free-shipping-bg);
}

#offcanvas-right-cart .free-shipping-bar--mini .free-shipping-bar__fill {
  background-color: var(--free-shipping-pending);
  background-image: repeating-linear-gradient(
    45deg,
    rgba(255, 255, 255, .18) 0,
    rgba(255, 255, 255, .18) 18px,
    rgba(255, 255, 255, 0) 18px,
    rgba(255, 255, 255, 0) 36px
  );
  background-size: 50px 50px;
  animation: free-shipping-stripes 1s linear infinite;
  transition: width .6s cubic-bezier(.25, .8, .25, 1), background-color .4s ease;
}

#offcanvas-right-cart .free-shipping-bar--mini.progress-30 .free-shipping-bar__fill,
#offcanvas-right-cart .free-shipping-bar--mini.progress-60 .free-shipping-bar__fill {
  background-color: var(--free-shipping-pending);
}

#offcanvas-right-cart .free-shipping-bar--mini.progress-free .free-shipping-bar__fill {
  background-color: var(--free-shipping-accent);
}

#offcanvas-right-cart .free-shipping-bar--mini .free-shipping-bar__truck {
  top: -7px;
  width: 31px;
  height: 18px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--free-shipping-pending);
  font-size: 22px;
  transition: left .6s cubic-bezier(.25, .8, .25, 1), color .4s ease;
}

#offcanvas-right-cart .free-shipping-bar--mini.progress-30 .free-shipping-bar__truck,
#offcanvas-right-cart .free-shipping-bar--mini.progress-60 .free-shipping-bar__truck {
  color: var(--free-shipping-pending);
}

#offcanvas-right-cart .free-shipping-bar--mini.progress-free .free-shipping-bar__truck {
  color: var(--free-shipping-accent);
}

#offcanvas-right-cart .free-shipping-bar--mini .free-shipping-bar__text {
  margin-top: -10px;
  color: var(--free-shipping-color);
  font-size: 14px;
  font-weight: 400;
  line-height: 22px;
}

#offcanvas-right-cart .ella-cart-sidebar-loading {
  display: none !important;
}

#offcanvas-right-cart .loading-overlay {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 12;
  width: 3rem;
}

#offcanvas-right-cart .loading-overlay--custom {
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  width: 100%;
  padding: 0 5rem;
  background-color: var(--color-background-overylay, rgba(255, 255, 255, .9));
}

#offcanvas-right-cart .is-loading > .loading-overlay {
  display: block;
}

#offcanvas-right-cart .loading-overlay__spinner {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 40px;
  transform: translate(-50%, -50%);
}

#offcanvas-right-cart .spinner {
  width: 100%;
  height: 100%;
  animation: ella-cart-rotator 1.4s linear infinite;
}

body.cart-sidebar-show #offcanvas-right-cart .path,
body.cart-sidebar-loading #offcanvas-right-cart .path {
  transform-origin: center;
  stroke: var(--color-background-global, #919191);
  stroke-dasharray: 280;
  stroke-dashoffset: 0;
  animation: ella-cart-dash 1.4s ease-in-out infinite;
}

@keyframes ella-cart-rotator {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(270deg); }
}

@keyframes ella-cart-dash {
  0% { stroke-dashoffset: 280; }
  50% {
    stroke-dashoffset: 75;
    transform: rotate(135deg);
  }
  100% {
    stroke-dashoffset: 280;
    transform: rotate(450deg);
  }
}

@keyframes acceleratedCheckoutLoadingSkeleton {
  50% {
    opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-start, 1);
  }
  75% {
    opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-end, .5);
  }
  100% {
    opacity: var(--shopify-accelerated-checkout-skeleton-animation-opacity-start, 1);
  }
}

@keyframes walletButtonFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@media (max-width: 767.98px) {
  .ella-header-search .field > .search__input {
    height: 42px;
    font-size: 18px;
    line-height: 42px;
  }

  .ella-header-search .quickSearchResultsWrap {
    position: static;
    width: 100%;
    padding: 15px 0 0;
    box-shadow: none;
  }

  .ella-header-search .quickSearchResults {
    max-height: none;
    overflow: visible;
  }

  .ella-header-search .quickSearchResults .container {
    padding-left: 0;
    padding-right: 0;
  }

  .ella-header-search .products-grid,
  .ella-header-search .products-grid.column-4,
  .ella-header-search .products-grid.column-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ella-header-search .ella-search-related__grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }
}

/* Beaueye.com visual baseline for customer-facing theme pages. */
body.ella-home,
body.ella-home .ella-header {
  font-family: Poppins, Arial, sans-serif;
}

header.ella-header {
  z-index: 50;
}

header.ella-header .container-fluid,
.ella-container {
  max-width: 1170px;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.ella-announcement {
  min-height: 26px;
  padding: 2px 0;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  letter-spacing: 0;
}

header.ella-header .ella-header-main {
  height: 99px;
  padding: 15px 0 16px;
  background: #fff;
}

header.ella-header .ella-header-main > .container-fluid {
  min-height: 68px;
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: 424px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
}

.ella-logo {
  display: flex;
  align-items: center;
}

.ella-logo img {
  width: 150px;
  max-width: 150px;
  max-height: 55px;
}

.ella-header-actions {
  min-height: 68px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto 160px;
  grid-template-rows: 31px 23px;
  align-items: center;
  justify-content: stretch;
  gap: 14px 16px;
}

.ella-header-switchers {
  grid-column: 2;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  min-width: 0;
  color: #232323;
  font-size: 12px;
  line-height: 22px;
  white-space: nowrap;
}

.ella-header-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: -8px;
}

.ella-header-switcher::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  height: 8px;
  pointer-events: none;
}

.ella-header-switcher__toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-height: 22px;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  line-height: inherit;
  cursor: pointer;
}

.ella-header-switcher__toggle i {
  font-size: 10px;
  line-height: 1;
}

header.ella-header .ella-header-switcher .dropdown-menu {
  top: 100%;
  min-width: 120px;
  padding: 8px 0;
  border-radius: 0;
  border-color: #e5e5e5;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

header.ella-header .ella-header-switcher:hover > .dropdown-menu,
header.ella-header .ella-header-switcher:focus-within > .dropdown-menu,
header.ella-header .ella-header-switcher.is-open > .dropdown-menu,
header.ella-header .ella-header-switcher .dropdown-menu.show {
  display: block;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

header.ella-header .ella-header-switcher .dropdown-item {
  padding: 6px 14px;
  color: #232323;
  font-size: 12px;
  line-height: 18px;
}

header.ella-header .ella-header-switcher .dropdown-item:hover,
header.ella-header .ella-header-switcher .dropdown-item:focus,
header.ella-header .ella-header-switcher .dropdown-item.active {
  background: #f6f6f6;
  color: #000;
}

.ella-header-contact {
  grid-column: 3;
  grid-row: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  color: #232323;
  font-size: 12px;
  line-height: 22px;
  white-space: nowrap;
}

.ella-header-contact a {
  color: inherit;
  text-decoration: none;
}

.ella-header-search {
  grid-column: 4;
  grid-row: 1;
  position: relative;
  display: block;
  height: 31px;
  background: #fafafa;
}

.ella-header-search > .search-modal__form {
  width: 160px;
  max-width: 160px;
}

.ella-header-search .field > input {
  width: 126px;
  height: 31px;
  padding: 0 10px;
  border: 0;
  background: #fafafa;
  color: #232323;
  font-size: 12px;
  outline: 0;
}

.ella-header-search .field > button {
  width: 34px;
  height: 31px;
  border: 0;
  background: #fafafa;
  color: #232323;
  font-size: 15px;
}

.ella-header-actions > .navbar-nav {
  grid-column: 1 / 5;
  grid-row: 2;
  min-height: 23px;
  height: 23px;
  display: block;
  text-align: right;
  font-size: 0;
  letter-spacing: 0;
}

.ella-header-actions .nav-item,
.ella-header-actions .nav-item.dropdown {
  height: auto;
}

.ella-header-actions .nav-link {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: auto;
  padding: 0;
  color: #323232;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: .24px;
  text-decoration: none;
}

header.ella-header .ella-header-actions .ella-header-action-group > .nav-item {
  display: inline-block !important;
  height: auto;
  padding: 0 !important;
  margin: 0;
  vertical-align: middle;
}

header.ella-header .ella-header-actions .ella-header-action-group .nav-link {
  display: inline-block;
  width: auto;
  height: auto;
  padding: 0 !important;
  color: #323232;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: .24px;
  vertical-align: middle;
}

.ella-header-actions .nav-link i {
  font-size: 19px;
  line-height: 1;
}

.ella-header-svg-icon {
  display: inline-block;
  flex: 0 0 auto;
  fill: currentColor;
  vertical-align: middle;
}

.ella-header-svg-icon path {
  fill: currentColor;
}

.ella-header-actions .nav-link .ella-header-svg-icon {
  width: 19px;
  height: 19px;
}

.ella-header-actions .nav-link .ella-header-svg-icon--cart {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  position: relative;
  top: -2px;
}

.ella-header-actions .nav-link .ella-header-svg-icon--wishlist {
  width: 19px;
  height: 18px;
}

.ella-header-actions .ella-cart-text-item,
.ella-header-actions .ella-wishlist-item,
.ella-header-actions .ella-account-auth {
  display: inline-block;
  vertical-align: middle;
}

.ella-header-cart-text {
  display: inline-block !important;
  position: relative;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  color: #323232;
  font-size: 0 !important;
  line-height: 1 !important;
  vertical-align: middle;
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.ella-header-cart-text .ella-header-svg-icon--cart {
  display: inline-block !important;
  width: 20px;
  height: 20px;
  margin-right: 8px;
  position: relative;
  top: -2px;
  vertical-align: middle;
}

.ella-header-cart-text .cart-text {
  display: inline-block !important;
  height: auto !important;
  color: #323232;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: .24px;
  vertical-align: middle;
  text-decoration: none !important;
  border-bottom: 0 !important;
}

.ella-header-actions .cart-count-bubble {
  display: inline-block;
  position: relative;
  min-width: 23px;
  min-height: 23px;
  width: auto;
  height: 23px;
  margin-left: 8px;
  border-radius: 50%;
  background: #ff8b21;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

header.ella-header .cart-badge-quantity {
  position: absolute;
  z-index: 3;
  top: -8px !important;
  left: 100% !important;
  min-width: 16px !important;
  width: auto;
  height: 16px !important;
  padding: 0 4px !important;
  border-radius: 999px;
  background: #ff3b30;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px !important;
  text-align: center;
  white-space: nowrap;
  transform: translateX(-2px);
  zoom: 1 !important;
}

header.ella-header .ella-header-actions .cart-count-bubble .cart-badge-quantity {
  position: static !important;
  display: inline-block !important;
  min-width: 0 !important;
  width: auto !important;
  height: auto !important;
  padding: 0 !important;
  border-radius: 0;
  background: transparent;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px !important;
  text-align: center;
  white-space: nowrap;
  transform: none;
  zoom: 1 !important;
  top: auto !important;
  left: auto !important;
}

.ella-account-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  white-space: nowrap;
}

.ella-account-link span {
  color: #777;
}

.ella-account-auth {
  display: inline-flex;
  align-items: center;
  margin-left: 25px;
  color: #323232;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: .24px;
  white-space: nowrap;
  vertical-align: middle;
}

.ella-account-auth__link {
  display: inline !important;
  width: auto !important;
  min-width: 0 !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: #323232 !important;
  font-family: inherit;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: .24px;
  text-decoration: none !important;
  vertical-align: baseline;
}

.ella-account-auth__link:hover,
.ella-account-auth__link:focus {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ella-account-auth__separator {
  display: inline;
  margin: 0;
  color: #323232;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: .24px;
}

.ella-header-actions .ella-header-wishlist-link {
  position: relative;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  margin-left: 25px;
  padding: 0 !important;
  font-size: 0 !important;
  line-height: 1 !important;
  text-decoration: none !important;
  vertical-align: middle;
}

.ella-header-actions .ella-header-wishlist-link .ella-header-svg-icon--wishlist {
  display: inline-block !important;
  width: 19px;
  height: 18px;
  vertical-align: middle;
}

.ella-header-actions .ella-header-wishlist-link::before,
.ella-header-actions .ella-header-wishlist-link::after {
  display: none !important;
  content: none !important;
}

.ella-header-actions .ella-header-wishlist-link .wishlist-count-bubble {
  display: inline-block;
  position: relative;
  top: auto;
  right: auto;
  min-width: 23px;
  min-height: 23px;
  width: auto;
  height: 23px;
  margin-left: 8px;
  border-radius: 50%;
  background: #ff8b21;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0;
  text-align: center;
  vertical-align: middle;
  text-decoration: none !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
}

.ella-header-actions .ella-header-wishlist-link .wishlist-count-bubble .text {
  display: inline-block !important;
  min-width: 0;
  height: auto;
  color: inherit;
  font-size: inherit;
  line-height: inherit;
  text-decoration: none !important;
  border-bottom: 0 !important;
}

header.ella-header .ella-header-actions .ella-header-action-group .ella-account-auth.customer-links {
  margin-left: 25px;
}

.ella-login-drawer {
  --bs-offcanvas-width: 512px;
  width: 512px;
  max-width: 100vw;
  border: 0;
}

@media (max-width: 767.98px) {
  .ella-login-drawer {
    --bs-offcanvas-width: calc(100vw - 24px);
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }
}

.ella-login-drawer__close {
  position: absolute;
  z-index: 3;
  top: 22px;
  right: 22px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
}

.ella-login-drawer__close::before,
.ella-login-drawer__close::after {
  content: "";
  position: absolute;
  top: 17px;
  left: 5px;
  width: 28px;
  height: 2px;
  background: #232323;
}

.ella-login-drawer__close::before {
  transform: rotate(45deg);
}

.ella-login-drawer__close::after {
  transform: rotate(-45deg);
}

.ella-login-drawer__frame {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100vh;
  border: 0;
  background: #fff;
}

header.ella-header .ella-header-actions .dropdown-menu {
  top: calc(100% + 8px);
  min-width: 190px;
}

header.ella-header .ella-header-actions .ella-header-switcher .dropdown-menu {
  top: 100%;
}

.ella-navigation {
  min-height: 79px;
  background: #000;
}

.ella-navigation-sticky-logo,
.ella-navigation-sticky-icons {
  display: none !important;
}

@media (min-width: 992px) {
  .ella-navigation[data-ella-sticky-navigation] {
    z-index: 20;
    transition: top 0.2s ease, transform 0.2s ease;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 101;
    min-height: 79px;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-hidden {
    top: -79px;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-show {
    top: 0;
  }

  header.ella-header .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled > .container-fluid {
    width: 100%;
    max-width: 100%;
    height: 79px;
    min-height: 79px;
    margin-left: 0;
    margin-right: 0;
    padding: 0 15px;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 30px;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-logo {
    display: flex !important;
    align-items: center;
    flex: 0 0 195px;
    width: 195px;
    height: 79px;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-logo a {
    display: inline-block;
    width: 195px;
    line-height: 0;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-logo img {
    display: inline-block;
    width: 55%;
    max-width: 195px;
    height: auto;
    vertical-align: middle;
  }

  header.ella-header .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-menu {
    flex: 1 1 auto;
    width: auto;
    min-width: 0;
    height: 79px;
    min-height: 79px;
    align-items: stretch;
  }

  header.ella-header .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-menu > .navbar-nav {
    width: min(calc(100% + 40px), 1240px);
    max-width: 1240px;
    height: 79px;
    min-height: 79px;
    padding: 11px 0 0;
    margin-left: max(-20px, calc((100% - 1240px) / 2)) !important;
    margin-right: max(-20px, calc((100% - 1240px) / 2)) !important;
    align-content: flex-start;
    align-items: flex-start;
    flex: 0 0 auto;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-menu > .navbar-nav > .nav-item {
    min-height: 34px;
    height: 34px;
    margin: 0;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-menu > .navbar-nav > .nav-item > .nav-link {
    display: block;
    height: 34px;
    min-height: 34px;
    padding: 0 20px 12px;
    font-weight: 700;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons {
    display: flex !important;
    align-items: stretch;
    justify-content: flex-end;
    flex-wrap: wrap;
    flex: 0 0 auto;
    width: 193px;
    min-width: 90px;
    height: 79px;
    color: #232323;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: .24px;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__iconItem,
  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header--account,
  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header--wishlist,
  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header--cart {
    position: relative;
    display: flex;
    align-items: center;
    height: 79px;
    padding: 0;
    margin: 0;
    flex: 0 1 auto;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__search {
    width: 44px;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header--account {
    width: 46px;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header--wishlist {
    width: 47px;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header--cart {
    width: 56px;
    padding-right: 10px;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 24px;
    padding: 0 11px;
    border: 0;
    background: transparent;
    color: #232323;
    font-size: 0;
    line-height: 0;
    text-decoration: none;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons summary.header__icon--search {
    list-style: none;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons summary.header__icon--search::-webkit-details-marker {
    display: none;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--search {
    width: 44px;
    min-width: 0;
    cursor: pointer;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--account,
  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--cart {
    width: 46px;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--wishlist {
    width: 47px;
    height: 25px;
    margin-top: 1px;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon svg,
  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon path {
    fill: #fff;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--search svg,
  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--search path,
  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--account svg,
  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--account path {
    stroke: #fff;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--cart svg,
  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--cart path,
  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--wishlist svg,
  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--wishlist path {
    stroke: rgba(0, 0, 0, 0);
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__search .icon-search {
    display: block;
    width: 22px;
    height: 22px;
    margin-top: 2px;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--account svg,
  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--cart svg {
    display: block;
    width: 24px;
    height: 24px;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--wishlist svg {
    display: block;
    width: 25px;
    height: 25px;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .header__icon--cart .cart-count-bubble {
    display: block;
    position: absolute;
    top: -7px;
    right: 0;
    min-width: 23px;
    min-height: 23px;
    width: 23px;
    height: 23px;
    margin: 0;
    padding: 0;
    border-radius: 50%;
    background: #ffe5e8;
    color: #323232;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px;
    letter-spacing: 0;
    text-align: center;
  }

  .ella-navigation[data-ella-sticky-navigation].ella-navigation-scrolled .ella-navigation-sticky-icons .cart-count-bubble .cart-badge-quantity {
    position: static !important;
    display: inline-block !important;
    min-width: 0 !important;
    width: auto !important;
    height: 22px !important;
    min-height: 0 !important;
    padding: 0 !important;
    border-radius: 0;
    background: transparent;
    color: #323232;
    font-size: 12px;
    font-weight: 400;
    line-height: 22px !important;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    transform: none;
    top: auto !important;
    left: auto !important;
    zoom: 1 !important;
  }
}

header.ella-header .ella-navigation > .container-fluid {
  min-height: 79px;
  width: 100%;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  align-items: center;
}

header.ella-header .ella-navigation .ella-menu {
  width: 100%;
  min-height: 79px;
  justify-content: flex-start;
}

header.ella-header .ella-navigation .ella-menu > .navbar-nav {
  min-height: 79px;
  width: calc(100% + 40px);
  padding: 11px 0 0;
  justify-content: flex-start;
  align-items: flex-start;
  align-content: flex-start;
  flex-wrap: wrap;
  gap: 0;
  margin-left: -20px !important;
  margin-right: -20px !important;
}

.ella-navigation .ella-menu > .navbar-nav > .nav-item {
  min-height: 34px;
  height: 34px;
  margin: 0;
}

.ella-navigation .ella-menu > .navbar-nav > .nav-item > .nav-link {
  display: block;
  min-height: 34px;
  height: 34px;
  padding: 0 20px 12px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: .7px;
}

.ella-navigation .ella-menu > .navbar-nav > .nav-item > .dropdown-toggle::after {
  display: none;
}

.ella-navigation .ella-menu > .navbar-nav > .nav-item > .nav-link > svg {
  flex: 0 0 auto;
}

.ella-navigation .ella-menu > .navbar-nav > .nav-item > .nav-link:hover,
.ella-navigation .ella-menu > .navbar-nav > .nav-item > .nav-link.is-active {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.ella-navigation .ella-menu .dropdown-menu {
  top: 100%;
  left: 0;
  right: 0;
  transform: translateY(8px);
  width: 100%;
}

.ella-navigation .ella-menu .nav-item:hover > .dropdown-menu,
.ella-navigation .ella-menu .nav-item:focus-within > .dropdown-menu {
  transform: translateY(0);
}

.ella-home-page {
  background: #fff;
}

.ella-home-page.modules-box > .module-item {
  padding-top: 0;
  padding-bottom: 20px;
}

.ella-home .ella-section {
  overflow: visible;
}

.ella-home .module-info.w-100 .module-slideshow,
.ella-home .module-info.w-100 .module-slideshow .swiper-wrapper,
.ella-home .module-info.w-100 .module-slideshow .swiper-slide,
.ella-home .module-info.w-100 .module-slideshow .swiper-slide > a {
  width: 100% !important;
  min-width: 100%;
  height: 100% !important;
}

.ella-home .module-info.w-100 .module-slideshow .swiper-slide > a {
  display: block !important;
}

.ella-home .module-info.w-100 .module-slideshow img,
.ella-home .module-info.w-100 .module-slideshow video {
  display: block;
  width: 100% !important;
  max-width: none;
  height: 100% !important;
  object-fit: cover;
}

.ella-four-image {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.ella-four-image .ella-container {
  max-width: 1170px;
}

.ella-four-image .ella-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 0;
}

.ella-four-image .ella-image-tile {
  display: block;
  width: calc(100% - 8px);
  margin-left: 8px;
  aspect-ratio: 1370 / 520;
  overflow: hidden;
  color: #232323;
  text-align: center;
  text-decoration: none;
  background: #c8ecff;
}

.ella-four-image .ella-image-tile img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1370 / 520;
  object-fit: contain;
}

.ella-four-image .ella-image-tile span {
  display: none;
}

body.page-cart {
  background: #fff;
}

.ella-cart-page {
  max-width: 1170px;
  padding-top: 20px;
  padding-bottom: 52px;
}

.ella-cart-status {
  margin-top: 22px;
  padding: 40px 44px 28px;
  border: 3px solid #ff3046;
}

.ella-cart-status h1 {
  margin: 0 0 30px;
  color: #111;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: .05em;
  text-transform: uppercase;
}

.ella-cart-status .free-shipping-bar {
  margin-bottom: 28px;
}

.ella-cart-status .ella-cart-notice {
  margin: 0;
}

.ella-cart-empty {
  display: block;
}

.ella-cart-notice {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 48px;
  margin: 26px 0 66px;
  padding: 12px 24px;
  background: #fff3df;
  color: #232323;
  font-size: 13px;
  line-height: 1.45;
}

.ella-cart-notice i {
  font-size: 18px;
}

.ella-cart-empty .empty-cart-wrap {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 88px;
  border-bottom: 1px solid #e5e5e5;
}

.ella-cart-empty .empty-cart-icon {
  margin-bottom: 20px !important;
  color: #222;
}

.ella-cart-empty .empty-cart-icon i {
  font-size: 38px !important;
}

.ella-cart-empty .empty-cart-text {
  margin-bottom: 36px !important;
}

.ella-cart-empty .empty-cart-text p {
  margin: 0;
  font-size: 13px;
  color: #8b8b8b !important;
}

.ella-cart-continue {
  min-width: 250px;
  min-height: 44px;
  border: 1px solid #222;
  border-radius: 0;
  background: #fff;
  color: #222;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.ella-cart-continue:hover {
  background: #222;
  color: #fff;
}

.product-recommendation--cart {
  padding-top: 34px;
}

.product-recommendation--cart .ella-container {
  max-width: 1170px;
}

.product-recommendation--cart .ella-section-heading {
  justify-content: flex-start;
  text-align: left;
  margin-bottom: 34px;
}

.product-recommendation--cart .ella-section-heading h2 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 800;
  text-transform: uppercase;
}

.product-recommendation--cart .ella-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
}

.ella-shop-by-color {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  background: #fff;
}

.ella-shop-by-color .ella-container {
  max-width: 1170px;
}

.ella-shop-by-color .ella-section-heading::before,
.ella-shop-by-color .ella-section-heading::after {
  display: none;
  content: none;
}

.ella-home .ella-shop-by-color .ella-shop-by-color__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: start;
  gap: 0;
}

.ella-shop-by-color__grid-item {
  width: calc(100% / 3);
  min-width: 0;
  padding: 0 0 8px 8px;
  box-sizing: border-box;
}

.ella-shop-by-color__item {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  overflow: hidden;
  background: transparent;
  text-decoration: none;
}

.ella-shop-by-color__item img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .25s ease;
}

.ella-shop-by-color__item:hover img,
.ella-shop-by-color__item:focus img {
  transform: scale(1.04);
}

.ella-shop-by-color__swatch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 180px;
  background: #f8f8f8;
  color: #111;
  text-align: center;
}

.ella-shop-by-color__swatch span {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, .08);
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, .32);
}

.ella-shop-by-color__swatch strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
}

.ella-home .module-info.w-100 .ella-instagram .ella-container {
  max-width: none;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.ella-home .module-info.w-100 .ella-instagram-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr));
  width: 100%;
  gap: 0;
}

.ella-home .module-info.w-100 .ella-instagram-item {
  border-radius: 0;
}

.ella-home .ella-instagram .ella-section-heading.centered {
  display: block;
  position: relative;
  width: 1170px;
  max-width: calc(100% - 20px);
  margin: 0 0 30px;
  margin-left: auto;
  margin-right: auto;
  color: #232323;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: .24px;
  text-align: center;
}

.ella-home .ella-instagram .ella-section-heading.centered .title {
  position: relative;
  display: block;
  width: 100%;
  margin: 1px 0 5px;
  color: #232323;
  font-family: Poppins;
  font-size: 19px;
  font-weight: 700;
  font-style: normal;
  line-height: 24px;
  letter-spacing: .95px;
  text-align: center;
  text-transform: uppercase;
}

.ella-home .ella-instagram .ella-section-heading.centered .title::before {
  content: "";
  display: none;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 100%;
  height: 2px;
  background: #c7c7c7;
}

.ella-home .ella-instagram .ella-section-heading.centered .title .text {
  display: inline-block;
  position: relative;
  z-index: 1;
  width: 420px;
  max-width: calc(100% - 40px);
  padding: 0 20px;
  background: #fff;
}

.ella-home .ella-instagram .ella-section-heading.centered .subtext-brand,
.ella-home .ella-instagram .ella-section-heading.centered p {
  margin: 0;
  color: #3c3c3c;
  font-family: Poppins;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: .24px;
  text-align: center;
}

.ella-home .ella-products {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.ella-home .ella-products.ella-shop-by-color {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

#module-ella-home-best-sellers .ella-products {
  padding-top: 0 !important;
}

.ella-home .ella-products .ella-container {
  max-width: 1170px;
}

.ella-home .ella-products .ella-section-heading {
  position: relative;
  display: block;
  margin: 0;
  text-align: center;
}

.ella-home .ella-products .ella-section-heading::before,
.ella-home .ella-products .ella-section-heading::after {
  display: none;
  content: none;
}

.ella-home .ella-products .ella-section-heading .title {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
  margin: 1px 0 12px;
  padding: 0;
  border: 0;
  color: #232323;
  font-family: Poppins;
  font-size: 16px;
  font-weight: 700;
  line-height: 24px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.ella-home .ella-products .ella-section-heading .title::before {
  content: "";
  display: block;
  position: absolute;
  z-index: 0;
  top: 11px;
  right: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #232323;
}

.ella-home .ella-products .ella-section-heading .title .text {
  position: relative;
  z-index: 1;
  display: inline-block;
  width: 420px;
  max-width: calc(100% - 40px);
  padding: 0 20px;
  background: #fff;
}

.ella-home .ella-products.ella-shop-by-color .ella-section-heading {
  margin: 0 0 25px;
}

.ella-home .ella-products.ella-shop-by-color .ella-section-heading .title {
  margin: 0 0 5px;
  color: #202020;
  font-size: 20px;
  font-style: italic;
  letter-spacing: 1px;
}

.ella-home .ella-products.ella-shop-by-color .ella-section-heading .title::before {
  display: none;
  top: calc(50% - 1px);
  background: #202020;
}

.ella-home .ella-products .ella-section-heading > a {
  display: none;
}

.ella-home .ella-products .ella-product-grid {
  grid-template-columns: repeat(4, minmax(0, 270px));
  justify-content: space-between;
  align-items: start;
  gap: 24px 30px;
}

.ella-home .ella-products.ella-shop-by-color .ella-product-grid.ella-shop-by-color__grid {
  display: flex;
  flex-wrap: wrap;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  justify-content: flex-start;
  gap: 0;
}

.ella-home .ella-products .ella-product-grid__item {
  min-width: 0;
}

.ella-home .ella-products .ella-product-card {
  height: auto;
  border: 0;
  background: #fff;
  text-align: center;
}

.ella-home .ella-products .ella-product-card__media {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background: #fafafa;
}

.ella-home .ella-products .ella-product-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background: #fafafa;
}

.ella-home .ella-products .ella-product-card__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.ella-home .ella-products .ella-card-wishlist {
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: transparent;
  color: #111;
  opacity: 0;
  box-shadow: none;
  transition: opacity .18s ease;
}

.ella-home .ella-products .ella-product-card:hover .ella-card-wishlist,
.ella-home .ella-products .ella-product-card:focus-within .ella-card-wishlist {
  opacity: 1;
}

.ella-home .ella-products .ella-card-wishlist i {
  font-size: 20px;
}

.ella-home .ella-products .ella-product-card__body {
  display: block;
  padding-top: 15px;
  text-align: center;
}

.ella-home .ella-products .ella-product-card__name {
  display: flow-root;
  min-height: 0;
  height: 44px;
  color: #232323;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  overflow: hidden;
}

.ella-home .ella-products .ella-product-card__price {
  display: block;
  margin: 0 0 13px;
  color: #232323;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
}

.ella-home .ella-products .reviews-card-rating {
  display: flex;
  justify-content: center;
  margin: 4px 0 2px;
  font-size: 14px;
  line-height: 18px;
}

.ella-home .ella-products .reviews-card-rating__stars {
  color: #f6cf57;
  font-size: 15px;
}

.ella-home .ella-products .reviews-card-rating__meta {
  color: #232323;
  font-size: 13px;
  line-height: 18px;
}

.ella-home .ella-products .ella-product-card__swatches,
.ella-home .ella-products .ella-product-card__media > .ella-card-cart {
  display: none;
}

.ella-home .ella-products .ella-product-card:hover .ella-product-card__media > .ella-card-cart,
.ella-home .ella-products .ella-product-card:focus-within .ella-product-card__media > .ella-card-cart {
  display: flex;
}

.ella-home .ella-products .ella-product-card__media > .ella-card-cart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
  margin: 0;
  border: 1px solid #111;
  background: #fff;
  color: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0;
  z-index: 4;
}

.ella-home .ella-products .ella-product-card.is-options-open > .ella-product-card__media > .ella-card-select-options {
  display: none;
}

.ella-home .ella-products .ella-card-option-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 176px;
  max-height: 176px;
  padding: 23px 10px 58px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  z-index: 5;
}

.ella-home .ella-products .ella-product-card.is-options-open .ella-card-option-panel {
  display: block;
}

.ella-home .ella-products .ella-card-option-close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #232323;
  font-size: 28px;
  font-weight: 300;
  line-height: 28px;
}

.ella-home .ella-products .ella-card-option-label {
  margin-bottom: 8px;
  color: #232323;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}

.ella-home .ella-products .ella-card-option-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 22px;
  max-height: 76px;
  overflow: hidden;
}

.ella-home .ella-products .ella-card-option-value {
  min-width: 35px;
  padding: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #232323;
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
}

.ella-home .ella-products .ella-card-option-value.is-selected {
  border-bottom-color: #232323;
}

.ella-home .ella-products .ella-card-option-value.is-disabled,
.ella-home .ella-products .ella-card-option-value:disabled {
  cursor: not-allowed;
  opacity: .35;
}

.ella-home .ella-products .ella-card-option-add {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: 100%;
  min-height: 44px;
  margin: 0;
  border: 1px solid #111;
  background: #fff;
  color: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.ella-home .ella-products .ella-show-more-wrap {
  margin-top: 14px;
  text-align: center;
}

.ella-home .ella-products .ella-show-more {
  min-width: 270px;
  min-height: 45px;
  padding: 0 34px;
  border: 1px solid #232323;
  background: #fff;
  color: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 45px;
  text-transform: uppercase;
  letter-spacing: .8px;
  cursor: pointer;
}

@media (max-width: 991.98px) {
  header.ella-header .container-fluid,
  .ella-container {
    max-width: none;
    padding-left: 10px;
    padding-right: 10px;
  }

  .ella-announcement {
    min-height: 48px;
    padding: 2px 10px;
    font-size: 12px;
    line-height: 22px;
  }

  .ella-header-mobile {
    height: 50px;
    border-bottom: 0;
  }

  .ella-header-mobile .mobile-content {
    min-height: 50px;
    height: 50px;
    display: grid;
    grid-template-columns: 76px 1fr 112px;
    padding: 0 10px;
  }

  .ella-header-mobile .left,
  .ella-header-mobile .right {
    gap: 13px;
    align-items: center;
  }

  .ella-header-mobile .center {
    display: flex;
    justify-content: center;
  }

  .ella-header-mobile .center img {
    width: 90px;
    max-width: 90px;
    max-height: 37px;
  }

  .ella-icon-button,
  .ella-header-mobile .nav-link {
    width: 24px;
    height: 24px;
    padding: 0;
    color: #111;
    font-size: 24px;
  }

  .ella-icon-button i,
  .ella-header-mobile .nav-link i {
    line-height: 1;
  }

  .ella-icon-button .ella-header-svg-icon,
  .ella-header-mobile .nav-link .ella-header-svg-icon {
    width: 22px;
    height: 22px;
  }

  .ella-icon-button .ella-header-svg-icon--search,
  .ella-header-mobile .nav-link .ella-header-svg-icon--mobile-cart {
    width: 24px;
    height: 24px;
  }

  .ella-header-mobile .m-cart .cart-badge-quantity {
    top: -7px !important;
    right: -8px !important;
    left: auto !important;
    min-width: 16px !important;
    width: auto;
    height: 16px !important;
    padding: 0 4px !important;
    line-height: 16px !important;
    background: #ff3b30;
    font-size: 10px;
  }

  .ella-four-image {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .ella-four-image .ella-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .ella-four-image .ella-image-grid {
    gap: 10px;
  }

  .ella-four-image .ella-image-tile {
    width: 100%;
    margin-left: 0;
    aspect-ratio: 170 / 64;
  }

  .ella-four-image .ella-image-tile img {
    height: 100%;
    aspect-ratio: 170 / 64;
  }

  .ella-four-image .ella-image-tile span {
    display: none;
  }

  .ella-shop-by-color {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .ella-shop-by-color__grid {
    gap: 0;
    margin-left: -5px;
    margin-right: -5px;
  }

  .ella-shop-by-color__grid-item {
    width: calc(100% / 3);
    margin-top: 10px;
    padding: 0 5px;
  }

  .ella-shop-by-color__item img {
    width: 100%;
  }

  .ella-shop-by-color__swatch {
    min-height: 120px;
    gap: 10px;
  }

  .ella-shop-by-color__swatch span {
    width: 48px;
    height: 48px;
  }

  .ella-home .ella-products {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .ella-home .ella-products.ella-shop-by-color {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  #module-ella-home-best-sellers .ella-products {
    padding-top: 0 !important;
  }

  .ella-home .ella-products .ella-section-heading {
    display: block;
    margin: 0;
    text-align: center;
  }

  .ella-home .ella-products .ella-section-heading::before,
  .ella-home .ella-products .ella-section-heading::after {
    display: none;
    content: none;
  }

  .ella-home .ella-products .ella-section-heading .title {
    width: 100%;
    min-width: 0;
    margin: 1px 0 12px;
    border-bottom: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 24px;
  }

  .ella-home .ella-products .ella-section-heading .title::before {
    top: 11px;
    height: 2px;
  }

  .ella-home .ella-products .ella-section-heading .title .text {
    width: auto;
    max-width: calc(100% - 40px);
    padding: 0 20px;
  }

  .ella-home .ella-products.ella-shop-by-color .ella-section-heading {
    margin: 0 0 5px;
  }

  .ella-home .ella-products.ella-shop-by-color .ella-section-heading .title {
    margin: 0 0 5px;
    color: #202020;
    font-size: 12px;
    font-style: italic;
    letter-spacing: .6px;
  }

  .ella-home .ella-instagram .ella-section-heading.centered {
    width: 370px;
    max-width: calc(100% - 20px);
    margin: 0 0 30px;
    margin-left: auto;
    margin-right: auto;
  }

  .ella-home .ella-instagram .ella-section-heading.centered .title {
    width: 100%;
    margin: 1px 0 5px;
    font-size: 15px;
    line-height: 24px;
    letter-spacing: .75px;
    text-transform: uppercase;
  }

  .ella-home .ella-instagram .ella-section-heading.centered .title .text {
    width: auto;
    max-width: calc(100% - 40px);
  }

  .ella-home .ella-products .ella-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 24px 10px;
  }

  .ella-home .ella-products .ella-product-card__body {
    display: block;
    padding-top: 12px;
  }

  .ella-home .ella-products .ella-product-card__name {
    height: 44px;
    font-size: 12px;
    line-height: 22px;
  }

  .ella-home .ella-products .ella-show-more {
    min-width: 270px;
  }
}

@media (max-width: 575.98px) {
  .ella-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 10px;
  }
}

header.ella-header .ella-header-main.fixed,
header.ella-header .ella-header-mobile.fixed {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: auto !important;
  z-index: auto !important;
  box-shadow: none !important;
}

header.ella-header .ella-header-mobile.fixed {
  display: block !important;
}

.page-collection-manager--ella {
  background: #fff;
  color: #232323;
  font-family: Poppins, Arial, sans-serif;
}

.ella-collection-container {
  padding-top: 28px;
  padding-bottom: 58px;
}

.ella-collection-header {
  margin-bottom: 15px;
}

.ella-collection .ella-collection-breadcrumb {
  justify-content: flex-start;
  gap: 9px;
  color: #9a9a9a;
  font-size: 12px;
  line-height: 22px;
  text-transform: uppercase;
}

.ella-collection .ella-collection-breadcrumb a {
  color: #8d8d8d;
}

.ella-collection .ella-collection-shell {
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.ella-collection .ella-collection-sidebar {
  position: static;
}

.ella-collection .ella-collection-main {
  min-width: 0;
}

.ella-collection .articleLookbook-block {
  width: 100%;
  margin-bottom: 25px;
}

.ella-collection .articleLookbook-item {
  width: 100%;
}

.ella-collection .articleLookbook-item .image {
  position: relative;
  display: block;
  width: 100%;
  max-width: 100%;
  padding-top: 22.35%;
  overflow: hidden;
  background: #f6f6f6;
}

.ella-collection .articleLookbook-item .image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ella-collection .articleLookbook-title {
  margin: 0;
  margin-top: 30px;
  color: #232323;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
  letter-spacing: 0;
  text-transform: none;
}

.ella-collection .articleLookbook-des {
  max-width: none;
  margin: 12px 0 0;
  color: #3c3c3c;
  font-size: 12px;
  line-height: 22px;
  text-align: left;
}

.ella-collection-overview {
  margin-bottom: 0;
}

.ella-collection .ella-collection-filter {
  display: block;
}

.ella-collection .sidebarBlock,
.ella-collection .collection-filters__item {
  margin: 0;
  padding: 0;
  border: 0;
}

.ella-collection .sidebarBlock {
  margin-bottom: 35px;
}

.ella-collection .collection-filters__item .sidebarBlock.is-collapsed {
  margin-bottom: 5px;
}

.ella-collection .sidebarBlock-heading {
  position: relative;
  display: flex;
  float: none;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 10px;
  padding: 5px 15px 9px 0;
  border-bottom: 1px solid #787878;
  color: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  letter-spacing: 0;
  text-transform: uppercase;
  cursor: pointer;
}

.ella-collection .collection-filters__item .sidebarBlock.is-collapsed .sidebarBlock-heading {
  margin-bottom: 5px;
}

.ella-collection .sidebarBlock-headingWrapper,
.ella-collection .sidebarBlock-contentWrapper,
.ella-collection .sidebarBlock-content {
  display: block;
}

.ella-collection .sidebarBlock-headingWrapper .sidebarBlock-heading::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #3c3c3c;
  border-bottom: 2px solid #3c3c3c;
  transform: translateY(-50%) rotate(-45deg);
  transition: transform .3s ease, border-color .2s ease;
}

.ella-collection .sidebarBlock-headingWrapper .sidebarBlock-heading.is-clicked::after {
  transform: translateY(-50%) rotate(45deg);
}

.ella-collection .sidebarBlock-headingWrapper .sidebarBlock-heading {
  justify-content: flex-start;
  gap: 4px;
}

.ella-collection .sidebarBlock-heading .facets__count {
  margin-left: 0;
  padding-right: 0;
}

.ella-collection .sidebarBlock-contentWrapper {
  overflow: hidden;
  transition: height .25s ease, margin-top .25s ease, opacity .2s ease;
}

.ella-collection .sidebarBlock-contentWrapper:not(.is-open) {
  height: 0;
  min-height: 0 !important;
  max-height: 0 !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ella-collection .facets__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin: 0;
  padding: 0;
}

.ella-collection .facets__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 24px;
  margin: 0;
  color: #232323;
  font-family: Poppins, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: .02em;
  cursor: pointer;
  list-style: none;
}

.ella-collection .facets__item:not(.facets__item--swatch) {
  display: block;
  flex-basis: 100%;
  width: 100%;
  min-height: 22px;
  margin: 0 0 6px;
  padding: 0 5px;
}

.ella-collection .facets__item:not(.facets__item--swatch) input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.ella-collection .facets__item:not(.facets__item--swatch) .facet-checkbox {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 0 0 25px;
  color: #232323;
  font-family: Poppins, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: .02em;
  text-transform: capitalize;
  cursor: pointer;
}

.ella-collection .facets__item:not(.facets__item--swatch) .text {
  min-width: 0;
  color: #232323;
  font-family: Poppins, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: .02em;
  text-decoration: none;
}

.ella-collection .facets__item:not(.facets__item--swatch) input + .form-label--checkbox::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #dbdbdb;
  border-radius: 0;
  background-color: transparent;
}

.ella-collection .facets__item:not(.facets__item--swatch) input + .form-label--checkbox::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='far' data-icon='check' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M435.848 83.466L172.804 346.51l-96.652-96.652c-4.686-4.686-12.284-4.686-16.971 0l-28.284 28.284c-4.686 4.686-4.686 12.284 0 16.971l133.421 133.421c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-28.284-28.284c-4.686-4.686-12.284-4.686-16.97 0z'/%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  line-height: 1;
  opacity: 0;
  transform: scale(.9);
  transition: transform .3s ease-out;
}

.ella-collection .facets__item:not(.facets__item--swatch) input:checked + .form-label--checkbox::before {
  border-color: #000;
  background-color: #000;
}

.ella-collection .facets__item:not(.facets__item--swatch) input:checked + .form-label--checkbox::after {
  opacity: 1;
  transform: scale(1);
}

.ella-collection .facets__item:not(.facets__item--swatch) input:focus-visible + .form-label--checkbox::before {
  outline: 1px solid #232323;
  outline-offset: 2px;
}

.ella-collection .facets__item:not(.facets__item--swatch) input:disabled + .form-label--checkbox {
  pointer-events: none;
  opacity: .6;
}

.ella-collection .facets__value-count {
  display: none;
}

.ella-collection .facets__item--swatch {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 44px;
  min-height: 44px;
  margin: 0;
  padding: 0 4px;
}

.ella-collection .facets__item--swatch input {
  position: absolute;
  display: none;
  width: 1px;
  height: 1px;
  margin: 3px 3px 3px 4px;
  padding: 0;
  border: 0;
}

.ella-collection .facets__item--swatch .facet-checkbox {
  position: relative;
  display: inline-block;
  vertical-align: top;
  width: 34px;
  height: 34px;
  margin: 0 0 10px;
  padding: 1px;
  border: 1px solid #cbcbcb;
  border-radius: 50%;
  background: transparent;
  opacity: 1;
  font-size: 0;
  letter-spacing: 0;
  cursor: pointer;
}

.ella-collection .facets__item--swatch .pattern {
  position: relative;
  display: block;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 50%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: none;
  font-size: 0;
  letter-spacing: 0;
  text-align: center;
  overflow: hidden;
}

.ella-collection .facets__item--swatch:hover .facet-checkbox,
.ella-collection .facets__item--swatch input:focus-visible + .facet-checkbox {
  border-color: #8a8a8a;
}

.ella-collection .facets__item--swatch.is-active .facet-checkbox,
.ella-collection .facets__item--swatch input:checked + .facet-checkbox {
  border-color: #232323;
}

.ella-collection .facets__item--swatch input:checked + .facet-checkbox .pattern {
  width: 30px;
  height: 30px;
}

.ella-collection .facets__item--swatch .facet-checkbox--disabled {
  pointer-events: none;
  opacity: .6;
}

.ella-collection .facets__item--swatch .pattern--white {
  border: 1px solid #ccc;
}

.ella-collection .facets__item--swatch .visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.ella-collection .facets__item--swatch .facets__value-count {
  position: absolute;
  right: -6px;
  bottom: -6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border: 1px solid #e5e5e5;
  border-radius: 999px;
  background: #fff;
  color: #555;
  font-size: 10px;
  line-height: 16px;
}

.ella-collection .refined-widgets {
  margin-bottom: 30px;
}

.ella-collection .refined-widgets .sidebarBlock-heading {
  margin-bottom: 12px;
}

.ella-collection .refined-widgets .results-count {
  margin: 0 0 12px;
  color: #707070;
  font-size: 12px;
  line-height: 20px;
}

.ella-collection .refined-widgets .sidebarBlock-content--list {
  display: block;
}

.ella-collection .facets__list--refined {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.ella-collection .facets__list--refined li {
  margin: 0;
}

.ella-collection .facets__list--refined .active-facets__button {
  position: relative;
  display: block;
  padding: 3px 25px 3px 12px;
  border-radius: 3px;
  background-color: #fafafa;
  color: #707070;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: .02em;
  text-decoration: none;
  transition: color .2s ease, background .2s ease;
}

.ella-collection .facets__list--refined .active-facets__button .text {
  display: flex;
  align-items: center;
  pointer-events: none;
}

.ella-collection .facets__list--refined .active-facets__button .close {
  position: absolute;
  top: 50%;
  right: 10px;
  display: block;
  width: 9px;
  height: 9px;
  transform: translateY(-50%);
  opacity: 1;
}

.ella-collection .facets__list--refined .active-facets__button .close::before,
.ella-collection .facets__list--refined .active-facets__button .close::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 9px;
  height: 1px;
  background-color: #707070;
  transition: background .2s ease;
}

.ella-collection .facets__list--refined .active-facets__button .close::before {
  transform: rotate(45deg);
}

.ella-collection .facets__list--refined .active-facets__button .close::after {
  transform: rotate(-45deg);
}

.ella-collection .facets__list--refined .active-facets__button:hover {
  background-color: #232323;
  color: #fff;
}

.ella-collection .facets__list--refined .active-facets__button:hover .close::before,
.ella-collection .facets__list--refined .active-facets__button:hover .close::after {
  background-color: #fff;
}

.ella-collection .facets__reset,
.ella-collection .facets__clear-all {
  display: inline-block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #3c3c3c;
  font-family: Poppins, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: .02em;
  text-decoration: none;
  text-transform: capitalize;
}

.ella-collection .facets__clear-all {
  display: block;
  width: fit-content;
}

.ella-collection .refined-widgets .sidebarBlock-content--list > .facets__clear-all {
  display: none;
}

.ella-collection .facets__reset .text,
.ella-collection .facets__clear-all .text {
  display: inline;
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ella-collection .facets__reset:hover,
.ella-collection .facets__clear-all:hover {
  background: transparent;
  color: #3c3c3c;
}

.ella-collection .sidebar-product,
.ella-collection .sidebar-image {
  margin-bottom: 5px;
}

.ella-collection .sidebar-product .sidebarBlock-heading,
.ella-collection .sidebar-image .sidebarBlock-heading {
  display: block;
  height: 37px;
  margin-bottom: 5px;
}

.ella-collection .sidebar-product .sidebarBlock-contentWrapper {
  margin-top: 25px;
}

.ella-collection .sidebar-product .sidebarBlock-headingWrapper {
  position: relative;
}

.ella-collection .sidebar-product .sidebarBlock-heading {
  padding-right: 15px;
}

.ella-collection .sidebar-product .sidebarBlock-headingWrapper .sidebarBlock-heading::after {
  display: inline-block;
}

.ella-collection .sidebar-product .sidebarBlock-content,
.ella-collection .sidebar-image .sidebarBlock-content {
  display: block;
}

.ella-collection .sidebarBlock-product {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.ella-collection .sidebar-product .products-carousel {
  position: relative;
  display: flex;
  flex-wrap: nowrap;
  width: calc(100% + 30px);
  margin: 0 -15px;
  padding: 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  font-size: 0;
  min-height: 327px;
}

.ella-collection .sidebar-product .products-carousel::-webkit-scrollbar {
  display: none;
}

.ella-collection .sidebar-product .products-carousel > .product,
.ella-collection .sidebar-product .products-carousel > .slider__slide {
  display: inline-block;
  flex: 0 0 100%;
  min-width: 0;
  width: 100%;
  margin: 0;
  padding: 0 15px;
  scroll-snap-align: start;
  list-style: none;
  vertical-align: top;
  font-size: 0;
  min-height: 327px;
}

.ella-collection .sidebar-product .sidebarBlock-product > .slick-arrow {
  --arrow-width: 30px;
  --arrow-height: 30px;
  --arrow-size-icon: 14px;
  --arrow-background-color: #fff;
  --arrow-border-width: 1px;
  --arrow-border-color: #cbcbcb;
  --arrow-border-radius: 50%;
  --arrow-color: #232323;
  position: absolute;
  top: 105px;
  z-index: 2;
  display: block;
  width: var(--arrow-width);
  height: var(--arrow-height);
  padding: 8px;
  border: var(--arrow-border-width) solid var(--arrow-border-color);
  border-radius: var(--arrow-border-radius);
  background: var(--arrow-background-color);
  color: var(--arrow-color);
  font-size: 0;
  line-height: 1;
  letter-spacing: 0;
  outline: none;
  opacity: 0;
  cursor: pointer;
  transform: translateY(-50%);
  transition: color .2s ease, border-color .2s ease, background .2s ease, opacity .2s ease;
}

.ella-collection .sidebar-product:hover .sidebarBlock-product > .slick-arrow,
.ella-collection .sidebar-product:focus-within .sidebarBlock-product > .slick-arrow {
  opacity: 1;
}

.ella-collection .sidebar-product .sidebarBlock-product > .slick-arrow svg {
  display: block;
  width: var(--arrow-size-icon);
  height: var(--arrow-size-icon);
  max-width: 100%;
  max-height: 100%;
  color: currentColor;
  fill: none;
  stroke: currentColor;
}

.ella-collection .sidebar-product .sidebarBlock-product > .slick-prev {
  left: 15px;
}

.ella-collection .sidebar-product .sidebarBlock-product > .slick-prev svg {
  transform: rotate(-180deg);
}

.ella-collection .sidebar-product .sidebarBlock-product > .slick-next {
  right: 15px;
}

.ella-collection .sidebar-product .sidebarBlock-product > .slick-arrow:hover {
  border-color: #232323;
  color: #000;
}

.ella-collection .sidebar-product .ella-product-card {
  width: 100%;
  height: 314px;
  font-size: 0;
  position: relative;
}

.ella-collection .sidebar-product .ella-product-card__media,
.ella-collection .sidebar-product .ella-product-card__image {
  width: 210px;
  height: 210px;
  aspect-ratio: auto;
}

.ella-collection .sidebar-product .ella-product-card__image {
  display: block;
}

.ella-collection .sidebar-product .ella-product-card__image img {
  display: block;
  width: 210px;
  height: 210px;
  object-fit: cover;
}

.ella-collection .sidebar-product .ella-product-card__body {
  padding-top: 15px;
}

.ella-collection .sidebar-product .ella-product-card__name {
  display: flow-root;
  width: 210px;
  height: 44px;
  color: #232323;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  text-transform: capitalize;
}

.ella-collection .sidebar-product .ella-product-card__price {
  margin: 0;
  font-size: 12px;
  line-height: 22px;
}

.ella-collection .sidebar-product .reviews-card-rating {
  margin: 4px 0 2px;
  font-size: 12px;
  line-height: 18px;
}

.ella-collection .sidebarBlock-no-heading {
  margin-top: 0;
}

.ella-collection .sidebar-image .advertisement-image,
.ella-collection .sidebar-image .advertisement-image .image {
  display: block;
  width: 100%;
  max-width: 210px;
  aspect-ratio: 1;
}

.ella-collection .sidebar-image .advertisement-image {
  margin: 12px 0 0;
  padding: 0;
}

.ella-collection .sidebar-image .advertisement-image:last-child {
  margin-bottom: 12px;
}

.ella-collection .sidebar-image .advertisement-image img {
  display: block;
  width: 100%;
  max-width: 210px;
  height: 100%;
  object-fit: cover;
}

.ella-collection-featured-sidebar {
  margin-top: 44px;
}

.ella-collection-featured-sidebar h2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 30px;
  padding-bottom: 10px;
  border-bottom: 1px solid #787878;
  color: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

.ella-collection-featured-list {
  display: grid;
  gap: 18px;
  max-height: 390px;
  overflow: hidden;
}

.ella-sidebar-product {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  color: #232323;
}

.ella-sidebar-product__image {
  display: block;
  width: 76px;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fafafa;
}

.ella-sidebar-product__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ella-sidebar-product__body {
  min-width: 0;
  padding-top: 2px;
}

.ella-sidebar-product__name {
  display: block;
  max-height: 44px;
  overflow: hidden;
  color: #232323;
  font-size: 12px;
  line-height: 22px;
  text-decoration: none;
}

.ella-sidebar-product__price {
  margin-top: 5px;
  color: #232323;
  font-size: 12px;
  font-weight: 700;
  line-height: 18px;
}

.ella-sidebar-product .reviews-card-rating {
  justify-content: flex-start;
  margin-top: 3px;
  font-size: 12px;
  line-height: 16px;
}

.ella-collection .ella-collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0;
  padding: 30px 0;
}

.ella-collection .ella-collection-toolbar > .toolbar-wrapper.toolbar-mobile {
  display: none;
}

.ella-collection .ella-collection-toolbar > .toolbar-wrapper:not(.toolbar-mobile) {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.ella-collection .ella-collection-toolbar .toolbar-colLeft {
  display: flex;
  align-items: center;
  font-size: 0;
}

.ella-collection .ella-collection-toolbar .toolbar-colRight {
  display: block;
  font-size: 0;
}

.ella-view-switch {
  display: block;
  justify-self: start;
}

.ella-collection .toolbar-label,
.ella-per-page-form label,
.ella-sort-form label {
  display: inline-block;
  color: #232323;
  font-size: 12px;
  font-weight: 500;
  line-height: 22px;
  margin-right: 15px;
  text-transform: uppercase;
  white-space: nowrap;
}

.ella-view-switch__button {
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  margin-left: 5px;
  padding: 3px;
  border: 1px solid #808080;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
}

.ella-view-switch__button:first-child {
  margin-left: 0;
}

.ella-view-switch__button::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 4px;
  height: 18px;
  background-color: #777;
}

/* List: 三条横线 */
.ella-view-switch__button[data-view-columns="1"]::before {
  width: 18px;
  height: 4px;
  box-shadow: 0 7px 0 #777, 0 14px 0 #777;
}

/* Grid 2 */
.ella-view-switch__button[data-view-columns="2"] {
  width: 19px;
}
.ella-view-switch__button[data-view-columns="2"]::before {
  box-shadow: 7px 0 0 #777;
}

/* Grid 3: 默认26px */
.ella-view-switch__button[data-view-columns="3"]::before {
  box-shadow: 7px 0 0 #777, 14px 0 0 #777;
}

/* Grid 4 */
.ella-view-switch__button[data-view-columns="4"] {
  width: 33px;
}
.ella-view-switch__button[data-view-columns="4"]::before {
  box-shadow: 7px 0 0 #777, 14px 0 0 #777, 21px 0 0 #777;
}

/* Active */
.ella-view-switch__button.is-active {
  border-color: #232323;
}
.ella-view-switch__button.is-active::before {
  background-color: #232323;
}
.ella-view-switch__button.is-active[data-view-columns="1"]::before {
  box-shadow: 0 7px 0 #232323, 0 14px 0 #232323;
}
.ella-view-switch__button.is-active[data-view-columns="2"]::before {
  box-shadow: 7px 0 0 #232323;
}
.ella-view-switch__button.is-active[data-view-columns="3"]::before {
  box-shadow: 7px 0 0 #232323, 14px 0 0 #232323;
}
.ella-view-switch__button.is-active[data-view-columns="4"]::before {
  box-shadow: 7px 0 0 #232323, 14px 0 0 #232323, 21px 0 0 #232323;
}

.ella-per-page-form,
.ella-sort-form {
  display: inline-block;
  margin: 0;
}

.ella-sort-form {
  margin-left: 28px;
}

.ella-per-page-form .form-select,
.ella-sort-form .form-select {
  display: inline-block;
  min-width: 89px;
  width: auto;
  height: 45px;
  padding: 7px 38px 7px 20px;
  border: 1px solid #cbcbcb;
  border-radius: 0;
  color: #232323;
  font-size: 12px;
  line-height: 29px;
  vertical-align: top;
}

.ella-sort-form .form-select {
  width: 140px;
  min-width: 140px;
}

.ella-collection .ella-collection-count {
  display: none;
}

.ella-collection .ella-collection-toolbar .results-count {
  display: none;
}

.ella-collection .ella-active-filters {
  display: block;
  margin: 0 0 30px;
}

.ella-collection .ella-active-filters span {
  padding: 0;
  border: 0;
  background: transparent;
}

.ella-collection .ella-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 55px 30px;
}

.ella-collection .ella-product-card {
  height: auto;
  background: #fff;
  text-align: center;
}

.ella-collection .ella-product-card__media,
.ella-collection .ella-product-card__image {
  aspect-ratio: 1 / 1;
  background: #fafafa;
}

.ella-collection .ella-card-wishlist {
  top: 10px;
  right: 10px;
  width: 23px;
  height: 23px;
  background: transparent;
  color: #111;
  opacity: 0;
  transition: opacity .18s ease;
}

.ella-collection .ella-product-card:hover .ella-card-wishlist,
.ella-collection .ella-product-card:focus-within .ella-card-wishlist {
  opacity: 1;
}

.ella-collection .ella-card-wishlist i {
  font-size: 20px;
}

.ella-collection .ella-product-card__body {
  display: block;
  padding-top: 15px;
  text-align: center;
}

.ella-collection .ella-product-card__name {
  display: flow-root;
  height: 44px;
  overflow: hidden;
  color: #232323;
  font-size: 12px;
  font-weight: 400;
  line-height: 22px;
  text-transform: capitalize;
}

.ella-collection .ella-product-card__price {
  display: block;
  margin: 0 0 13px;
  color: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
}

.ella-collection .reviews-card-rating {
  justify-content: center;
  margin: 4px 0 2px;
  color: #232323;
}

.ella-collection .reviews-card-rating__stars {
  color: #f6cf57;
}

.ella-collection .ella-product-card__swatches,
.ella-collection .ella-product-card__media > .ella-card-cart {
  display: none;
}

.ella-collection .ella-product-card:hover .ella-product-card__media > .ella-card-cart,
.ella-collection .ella-product-card:focus-within .ella-product-card__media > .ella-card-cart {
  display: flex;
}

.ella-collection .ella-product-card__media > .ella-card-cart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
  margin: 0;
  border: 1px solid #111;
  background: #fff;
  color: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  z-index: 4;
}

.ella-collection .ella-product-card.is-options-open > .ella-product-card__media > .ella-card-select-options {
  display: none;
}

.ella-collection .ella-card-option-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 176px;
  max-height: 176px;
  padding: 23px 10px 58px;
  overflow: hidden;
  background: #fff;
  text-align: center;
  z-index: 5;
}

.ella-collection .ella-product-card.is-options-open .ella-card-option-panel {
  display: block;
}

.ella-collection .ella-card-option-close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #232323;
  font-size: 28px;
  font-weight: 300;
  line-height: 28px;
}

.ella-collection .ella-card-option-label {
  margin-bottom: 8px;
  color: #232323;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}

.ella-collection .ella-card-option-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 22px;
  max-height: 76px;
  overflow: hidden;
}

.ella-collection .ella-card-option-value {
  min-width: 35px;
  padding: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #232323;
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
}

.ella-collection .ella-card-option-value.is-selected {
  border-bottom-color: #232323;
}

.ella-collection .ella-card-option-value.is-disabled,
.ella-collection .ella-card-option-value:disabled {
  cursor: not-allowed;
  opacity: .35;
}

.ella-collection .ella-card-option-add {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: 100%;
  min-height: 44px;
  margin: 0;
  border: 1px solid #111;
  background: #fff;
  color: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

.ella-collection-pagination {
  margin-top: 42px;
}

@media (max-width: 991.98px) {
  .ella-collection-container {
    padding: 14px 10px 42px;
  }

  .ella-collection-header {
    margin: 0 -10px 24px;
    padding: 10px;
    background: #fafafa;
  }

  .ella-collection .ella-collection-breadcrumb {
    font-size: 12px;
  }

  .ella-collection .ella-collection-shell {
    display: block;
  }

  .ella-collection .articleLookbook-block {
    margin-bottom: 27px;
  }

  .ella-collection .articleLookbook-item .image {
    padding-top: 22.35%;
  }

  .ella-collection .articleLookbook-title {
    margin-bottom: 42px;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .ella-collection .articleLookbook-title {
    font-size: 26px;
    line-height: 34px;
  }

  .ella-collection .ella-collection-toolbar {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 12px;
    align-items: center;
    margin-bottom: 30px;
    padding: 0 0 30px;
  }

  .ella-collection .ella-collection-toolbar > .toolbar-wrapper.toolbar-mobile {
    display: flex;
    align-items: center;
  }

  .ella-collection .ella-collection-toolbar > .toolbar-wrapper:not(.toolbar-mobile) {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: auto;
  }

  .ella-collection .ella-collection-toolbar .toolbar-colRight {
    gap: 0;
  }

  .ella-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    min-height: 34px;
    padding: 0;
    border: 0;
    background: transparent;
    color: #232323;
    font-size: 14px;
    line-height: 22px;
  }

  .ella-filter-toggle__icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-left: 1px solid #232323;
    border-bottom: 1px solid #232323;
    transform: skew(-18deg) rotate(-45deg);
  }

  .ella-view-switch {
    justify-self: center;
  }

  .ella-view-switch__label,
  .ella-per-page-form {
    display: none;
  }

  .ella-view-switch__button {
    width: 26px;
  }

  .ella-view-switch__button[data-view-columns="5"],
  .ella-view-switch__button[data-view-columns="4"] {
    display: none;
  }

  .ella-sort-form {
    grid-column: auto;
    width: auto;
    justify-content: flex-end;
    gap: 5px;
  }

  .ella-sort-form label {
    font-size: 13px;
    font-weight: 400;
    text-transform: none;
  }

  .ella-sort-form .form-select {
    min-width: 20px;
    width: 20px;
    height: 34px;
    padding: 0;
    border: 0;
    color: transparent;
    background-position: right center;
  }

  .ella-collection .ella-collection-count {
    display: none;
  }

  .ella-collection .ella-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 16px;
  }

  .ella-collection .ella-card-wishlist {
    opacity: 1;
  }

  .ella-collection .ella-product-card__media {
    overflow: visible;
    margin-bottom: 50px;
  }

  .ella-collection .ella-product-card__media > .ella-card-cart {
    display: flex;
    bottom: -49px;
    min-height: 38px;
    font-size: 13px;
  }

  .ella-collection .ella-card-option-panel {
    min-height: 164px;
    max-height: 164px;
    bottom: -49px;
    padding-bottom: 49px;
    border: 1px solid #111;
  }

  .ella-collection .ella-product-card__body {
    padding-top: 8px;
  }

  .ella-collection .ella-product-card__name {
    height: 44px;
  }

  .ella-collection-featured-sidebar {
    margin-top: 34px;
  }
}

.ella-product-grid {
  grid-template-columns: repeat(var(--ella-desktop-columns, 4), minmax(0, 270px));
  justify-content: space-between;
  align-items: start;
  gap: 24px 30px;
}

.ella-product-listing-grid,
.ella-collection .ella-product-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  justify-content: stretch;
  gap: 24px 30px;
}

.ella-collection .ella-product-grid.ella-product-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ella-collection .ella-product-grid.ella-product-grid--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.ella-collection .ella-product-grid.ella-product-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ella-collection .ella-product-grid.ella-product-grid--2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.ella-collection .ella-product-grid.ella-product-grid--1 {
  grid-template-columns: 1fr;
  gap: 0;
}

.ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-grid__item {
  min-width: 0;
  padding: 30px 0;
  border-bottom: 1px solid #dedede;
}

.ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-grid__item:first-child {
  padding-top: 0;
}

.ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-grid__item:last-child {
  border-bottom: 0;
}

.ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card {
  display: flex;
  gap: 30px;
  align-items: flex-start;
  text-align: left;
  width: 100%;
}

/* 左侧图片区 */
.ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__media {
  flex: 0 0 280px;
  max-width: 280px;
  aspect-ratio: 1;
  overflow: hidden;
}

.ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__image {
  width: 100%;
  max-width: 280px;
  aspect-ratio: 1;
}

/* 隐藏图片上的加购按钮和心愿单 */
.ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__media > .ella-card-cart,
.ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__media > .ella-card-wishlist,
.ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__media > .ella-card-option-panel {
  display: none;
}

/* 右侧信息区 */
.ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__body {
  flex: 1;
  padding-top: 0;
  text-align: left;
  display: flex;
  flex-direction: column;
}

/* 商品名称 - 列表模式 */
.ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__name {
  display: block;
  height: auto;
  min-height: 0;
  color: #232323;
  font-size: 14px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
  margin-bottom: 4px;
}

/* 商品价格 - 列表模式 */
.ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__price {
  text-align: left;
  color: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 22px;
  margin: 0 0 6px;
}

/* 评分 - 列表模式 */
.ella-collection .ella-product-grid.ella-product-grid--1 .reviews-card-rating {
  justify-content: flex-start;
  margin: 0 0 10px;
}

/* 列表模式专用按钮容器 - 默认隐藏，网格模式不显示 */
.ella-product-card__list-actions {
  display: none;
}

.ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__list-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin-top: auto;
  padding-top: 12px;
  position: relative;
}

/* 列表模式加购按钮 - 镂空样式 */
.ella-collection .ella-product-grid.ella-product-grid--1 .ella-card-list-clone.ella-card-cart {
  display: flex;
  width: auto;
  min-width: 160px;
  max-width: 100%;
  position: static;
  border: 1px solid #111;
  background: transparent;
  color: #111;
  min-height: 44px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all .2s ease;
}

.ella-collection .ella-product-grid.ella-product-grid--1 .ella-card-list-clone.ella-card-cart:hover {
  background: #111;
  color: #fff;
}

/* 列表模式规格面板 - 在按钮上方弹出 */
.ella-collection .ella-product-grid.ella-product-grid--1 .ella-card-list-clone.ella-card-option-panel {
  position: absolute;
  bottom: 100%;
  top: auto;
  left: 0;
  right: auto;
  width: 100%;
  min-height: auto;
  max-height: none;
  padding: 16px;
  margin-bottom: 4px;
  background: #fff;
  border: 1px solid #e5e5e5;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  text-align: left;
  z-index: 10;
  display: none;
  overflow: visible;
}

.ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card.is-options-open .ella-card-list-clone.ella-card-option-panel {
  display: block;
}

.ella-collection .ella-product-grid.ella-product-grid--1 .ella-card-list-clone.ella-card-option-label {
  text-align: left;
}

.ella-collection .ella-product-grid.ella-product-grid--1 .ella-card-list-clone .ella-card-option-values {
  justify-content: flex-start;
}

.ella-collection .ella-product-grid.ella-product-grid--1 .ella-card-list-clone.ella-card-option-add {
  display: none;
}

.ella-collection .ella-product-grid.ella-product-grid--1 .ella-card-list-clone.ella-card-option-close {
  position: absolute;
  top: 8px;
  right: 8px;
}

/* 心愿单按钮 - 列表模式 */
.ella-collection .ella-product-grid.ella-product-grid--1 .ella-card-wishlist {
  opacity: 1;
  visibility: visible;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.ella-product-grid__item {
  min-width: 0;
}

.ella-product-grid__empty {
  grid-column: 1 / -1;
}

.ella-product-card,
.ella-collection .ella-product-card,
.ella-collection-featured-list .ella-product-card {
  height: auto;
  border: 0;
  background: #fff;
  text-align: center;
}

.ella-product-card__media,
.ella-collection .ella-product-card__media {
  position: relative;
  width: 100%;
  height: auto;
  margin-bottom: 0;
  aspect-ratio: 1;
  overflow: hidden;
  background: #fafafa;
}

.ella-product-card__image,
.ella-collection .ella-product-card__image {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  background: #fafafa;
}

.ella-product-card__image img,
.ella-collection .ella-product-card__image img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.ella-card-wishlist,
.ella-collection .ella-card-wishlist {
  top: 10px;
  right: 10px;
  width: 22px;
  height: 22px;
  background: transparent;
  color: #111;
  opacity: 0;
  box-shadow: none;
  transition: opacity .18s ease;
}

.ella-product-card:hover .ella-card-wishlist,
.ella-product-card:focus-within .ella-card-wishlist,
.ella-collection .ella-product-card:hover .ella-card-wishlist,
.ella-collection .ella-product-card:focus-within .ella-card-wishlist {
  opacity: 1;
}

.ella-card-wishlist i,
.ella-collection .ella-card-wishlist i {
  font-size: 20px;
}

.ella-product-card__body,
.ella-collection .ella-product-card__body {
  display: block;
  padding-top: 15px;
  text-align: center;
}

.ella-product-card__name,
.ella-collection .ella-product-card__name {
  display: flow-root;
  min-height: 0;
  height: 44px;
  overflow: hidden;
  color: #232323;
  font-size: 13px;
  font-weight: 500;
  line-height: 22px;
  text-transform: none;
}

.ella-product-card__price,
.ella-collection .ella-product-card__price {
  display: block;
  margin: 0 0 13px;
  color: #232323;
  font-size: 13px;
  font-weight: 700;
  line-height: 22px;
}

.ella-product-card .reviews-card-rating,
.ella-collection .reviews-card-rating {
  display: flex;
  justify-content: center;
  margin: 4px 0 2px;
  font-size: 14px;
  line-height: 18px;
}

.ella-product-card .reviews-card-rating__stars,
.ella-collection .reviews-card-rating__stars {
  color: #f6cf57;
  font-size: 15px;
}

.ella-product-card .reviews-card-rating__meta,
.ella-collection .reviews-card-rating__meta {
  color: #232323;
  font-size: 13px;
  line-height: 18px;
}

.ella-product-card__swatches,
.ella-product-card__media > .ella-card-cart,
.ella-collection .ella-product-card__swatches,
.ella-collection .ella-product-card__media > .ella-card-cart {
  display: none;
}

.ella-product-card:hover .ella-product-card__media > .ella-card-cart,
.ella-product-card:focus-within .ella-product-card__media > .ella-card-cart,
.ella-collection .ella-product-card:hover .ella-product-card__media > .ella-card-cart,
.ella-collection .ella-product-card:focus-within .ella-product-card__media > .ella-card-cart {
  display: flex;
}

.ella-product-card__media > .ella-card-cart,
.ella-collection .ella-product-card__media > .ella-card-cart {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  min-height: 44px;
  margin: 0;
  border: 1px solid #111;
  background: #fff;
  color: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0;
  z-index: 4;
}

.ella-product-card.is-options-open > .ella-product-card__media > .ella-card-select-options,
.ella-collection .ella-product-card.is-options-open > .ella-product-card__media > .ella-card-select-options {
  display: none;
}

.ella-card-option-panel,
.ella-collection .ella-card-option-panel {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 176px;
  max-height: 176px;
  padding: 23px 10px 58px;
  overflow: hidden;
  border: 0;
  background: #fff;
  text-align: center;
  z-index: 5;
}

.ella-product-card.is-options-open .ella-card-option-panel,
.ella-collection .ella-product-card.is-options-open .ella-card-option-panel {
  display: block;
}

.ella-card-option-close,
.ella-collection .ella-card-option-close {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 28px;
  height: 28px;
  border: 0;
  background: transparent;
  color: #232323;
  font-size: 28px;
  font-weight: 300;
  line-height: 28px;
}

.ella-card-option-label,
.ella-collection .ella-card-option-label {
  margin-bottom: 8px;
  color: #232323;
  font-size: 13px;
  font-weight: 700;
  line-height: 18px;
}

.ella-card-option-values,
.ella-collection .ella-card-option-values {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px 22px;
  max-height: 76px;
  overflow: hidden;
}

.ella-card-option-value,
.ella-collection .ella-card-option-value {
  min-width: 35px;
  padding: 0;
  border: 0;
  border-bottom: 2px solid transparent;
  background: transparent;
  color: #232323;
  font-size: 15px;
  font-weight: 700;
  line-height: 19px;
}

.ella-card-option-value.is-selected,
.ella-collection .ella-card-option-value.is-selected {
  border-bottom-color: #232323;
}

.ella-card-option-value.is-disabled,
.ella-card-option-value:disabled,
.ella-collection .ella-card-option-value.is-disabled,
.ella-collection .ella-card-option-value:disabled {
  cursor: not-allowed;
  opacity: .35;
}

.ella-card-option-add,
.ella-collection .ella-card-option-add {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  width: 100%;
  min-height: 44px;
  margin: 0;
  border: 1px solid #111;
  background: #fff;
  color: #232323;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  text-transform: uppercase;
}

@media (max-width: 991.98px) {
  .ella-instagram-modal-root {
    padding: 22px;
  }

  .ella-instagram-modal {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(260px, 46vh) minmax(0, 1fr);
    width: calc(100vw - 44px);
    height: calc(100vh - 44px);
    max-height: calc(100vh - 44px);
  }

  .ella-instagram-modal__close {
    top: 10px;
    right: 10px;
    color: #fff;
    text-shadow: 0 1px 4px rgba(0, 0, 0, .35);
  }

  .ella-product-grid,
  .ella-product-listing-grid,
  .ella-collection .ella-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 24px 10px;
  }

  .ella-collection .ella-product-grid.ella-product-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ella-collection .ella-product-grid.ella-product-grid--2,
  .ella-collection .ella-product-grid.ella-product-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ella-product-card__body,
  .ella-collection .ella-product-card__body {
    padding-top: 12px;
  }

  .ella-product-card__name,
  .ella-collection .ella-product-card__name {
    height: 44px;
    font-size: 12px;
    line-height: 22px;
  }

  .ella-collection .ella-product-card__media {
    overflow: hidden;
    margin-bottom: 0;
  }

  .ella-collection .ella-product-card__media > .ella-card-cart {
    display: none;
    bottom: 0;
    min-height: 44px;
    font-size: 14px;
  }

  .ella-collection .ella-product-card:hover .ella-product-card__media > .ella-card-cart,
  .ella-collection .ella-product-card:focus-within .ella-product-card__media > .ella-card-cart {
    display: flex;
  }

  .ella-collection .ella-card-option-panel {
    bottom: 0;
    min-height: 176px;
    max-height: 176px;
    padding-bottom: 58px;
    border: 0;
  }

  /* List view responsive - tablet */
  .ella-collection .ella-product-grid.ella-product-grid--1 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card {
    gap: 20px;
  }

  .ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__media {
    flex: 0 0 200px;
    max-width: 200px;
  }

  .ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__image {
    max-width: 200px;
  }

  .ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__name {
    height: auto;
    font-size: 13px;
    line-height: 20px;
  }

  .ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__price {
    font-size: 13px;
  }

  .ella-collection .ella-product-grid.ella-product-grid--1 .ella-card-list-clone.ella-card-cart {
    min-width: 140px;
    min-height: 40px;
    padding: 8px 20px;
    font-size: 13px;
  }

  .ella-collection .ella-product-grid.ella-product-grid--1 .ella-card-list-clone.ella-card-option-add {
    min-height: 40px;
  }
}

@media (max-width: 767px) {
  /* List view responsive - mobile */
  .ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card {
    flex-direction: column;
    gap: 16px;
  }

  .ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__media {
    flex: 0 0 auto;
    max-width: 100%;
    width: 100%;
  }

  .ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__image {
    max-width: 100%;
  }

  .ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-card__body {
    padding-top: 0;
  }

  .ella-collection .ella-product-grid.ella-product-grid--1 .ella-product-grid__item {
    padding: 20px 0;
  }
}

@media (max-width: 1199.98px) {
  .ella-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
    gap: 24px 10px;
  }
}

.ella-home .module-info.w-100 .ella-instagram > .ella-container {
  max-width: none !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.ella-home .module-info.w-100 .ella-instagram .ella-instagram-grid {
  grid-template-columns: repeat(8, minmax(0, 1fr)) !important;
  width: 100% !important;
  gap: 0 !important;
}

.ella-header-search .quickSearchResultsWrap[hidden],
.ella-header-search [data-predictive-search][hidden],
.ella-header-search [data-quick-trending-products][hidden],
.ella-header-search:not(.is-search-open) .quickSearchResultsWrap,
.ella-header-search:not(.is-search-open) [data-predictive-search],
.ella-header-search:not(.is-search-open) [data-quick-trending-products] {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.ella-header-search.is-search-open [data-quick-trending-products].is-show:not([hidden]),
.ella-header-search.is-search-open .ella-predictive-search[open] [data-predictive-search]:not([hidden]) {
  display: block !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.ella-header-search.is-search-results-open .ella-search-results-window:not([hidden]) {
  display: block !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

.ella-mobile-search-panel[hidden],
.ella-mobile-search-panel:not(.is-open) {
  display: none !important;
  visibility: hidden !important;
  pointer-events: none !important;
}

.ella-mobile-search-panel.is-open {
  display: block !important;
  visibility: visible !important;
  pointer-events: auto !important;
}

@media (max-width: 991.98px) {
  .ella-header-search .ella-search-results-window {
    position: static;
    width: 100%;
    padding: 0;
    box-shadow: none;
  }

  .ella-header-search .ella-search-results-window .quickSearchResults .container {
    padding: 16px 0 0;
  }

  .ella-search-results-window__head {
    margin-bottom: 18px;
  }

  .ella-search-results-window__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .ella-header-search .ella-search-results-window .products-grid,
  .ella-header-search .ella-search-results-window .products-grid.column-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .ella-home .module-info.w-100 .ella-instagram .ella-instagram-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767.98px) {
  .ella-home .module-info.w-100 .ella-instagram .ella-instagram-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

.page-smart-search {
  background: #fff;
  color: #232323;
  font-size: 12px;
  line-height: 22px;
}

.ella-search-page {
  padding: 37px 0 96px;
}

.ella-search-page__container {
  width: min(1170px, calc(100% - 40px));
  margin: 0 auto;
}

.ella-search-page__header {
  margin-bottom: 25px;
}

.ella-search-page__header h1 {
  margin: 0 0 25px;
  color: #232323;
  font-size: 20px;
  font-weight: 700;
  line-height: 20px;
  letter-spacing: 0;
}

.ella-search-tabs {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  min-height: 34px;
}

.ella-search-tabs__item {
  position: relative;
  display: inline-flex;
  align-items: flex-start;
  gap: 1px;
  padding: 0 0 9px;
  color: #555;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-decoration: none;
}

.ella-search-tabs__item sup {
  top: -.35em;
  color: inherit;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
}

.ella-search-tabs__item.is-active {
  color: #232323;
}

.ella-search-tabs__item.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: #232323;
}

.ella-search-page__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 35px;
}

.ella-search-page__summary p {
  margin: 0;
  color: #777;
  font-size: 12px;
  line-height: 22px;
}

.ella-search-page__controls {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  margin-left: auto;
}

.ella-search-mobile-filter {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #232323;
  font-size: 14px;
  line-height: 22px;
}

.ella-search-mobile-filter__icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border-left: 1px solid #232323;
  border-bottom: 1px solid #232323;
  transform: skew(-18deg) rotate(-45deg);
}

.ella-search-view-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ella-search-view-switch__button {
  display: grid;
  width: 32px;
  height: 32px;
  padding: 7px;
  border: 1px solid #e4e4e4;
  border-radius: 0;
  background: #fff;
  color: #232323;
  cursor: default;
}

.ella-search-view-switch__button:first-child {
  grid-template-columns: repeat(3, 4px);
  grid-auto-rows: 4px;
  gap: 3px;
  place-content: center;
}

.ella-search-view-switch__button:first-child span {
  display: block;
  background: currentColor;
}

.ella-search-view-switch__button:last-child {
  gap: 3px;
  align-content: center;
}

.ella-search-view-switch__button:last-child i {
  display: block;
  width: 14px;
  height: 2px;
  background: currentColor;
}

.ella-search-view-switch__button.is-active {
  background: #232323;
  border-color: #232323;
  color: #fff;
}

.ella-search-sort {
  margin: 0;
}

.ella-search-sort select {
  width: 195px;
  height: 35px;
  padding: 0 36px 0 15px;
  border: 1px solid #cbcbcb;
  border-radius: 0;
  background-color: #fff;
  color: #232323;
  font-size: 12px;
  line-height: 22px;
}

.ella-search-page__layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.ella-search-page__layout--categories {
  display: block;
}

.ella-search-page__sidebar {
  min-width: 0;
}

.ella-search-page__filter-backdrop,
.ella-search-filters__mobile-head {
  display: none;
}

.ella-search-filters {
  display: block;
}

.ella-search-filter-group {
  margin: 0;
  padding: 0 0 31px;
  border-bottom: 1px solid #e5e5e5;
}

.ella-search-filter-group + .ella-search-filter-group {
  padding-top: 25px;
}

.ella-search-filter-group__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin: 0 0 18px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #232323;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
}

.ella-search-filter-group__title span:last-child {
  position: relative;
  width: 13px;
  height: 13px;
  flex: 0 0 13px;
}

.ella-search-filter-group__title span:last-child::before {
  content: "";
  position: absolute;
  left: 2px;
  right: 2px;
  top: 6px;
  height: 1px;
  background: #232323;
}

.ella-search-filter-group.is-collapsed .ella-search-filter-group__title span:last-child::after {
  content: "";
  position: absolute;
  top: 2px;
  bottom: 2px;
  left: 6px;
  width: 1px;
  background: #232323;
}

.ella-search-filter-group.is-collapsed .ella-search-filter-group__body {
  display: none;
}

.ella-search-filter-group__body {
  display: grid;
  gap: 8px;
}

.ella-search-price-fields {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
}

.ella-search-price-fields input {
  width: 100%;
  height: 35px;
  padding: 0 10px;
  border: 1px solid #d6d6d6;
  border-radius: 0;
  color: #555;
  font-size: 12px;
  line-height: 22px;
}

.ella-search-price-fields span {
  color: #8b8b8b;
}

.ella-search-price-range {
  position: relative;
  height: 18px;
  margin: 12px 0 1px;
}

.ella-search-price-range::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 8px;
  height: 2px;
  background: #232323;
}

.ella-search-price-range span::before,
.ella-search-price-range span::after {
  content: "";
  position: absolute;
  top: 2px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #232323;
}

.ella-search-price-range span::before {
  left: 0;
}

.ella-search-price-range span::after {
  right: 0;
}

.ella-search-filter-apply {
  width: 100%;
  height: 36px;
  margin-top: 10px;
  border: 1px solid #232323;
  border-radius: 0;
  background: #232323;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 22px;
  text-transform: uppercase;
}

.ella-search-filter-option,
.ella-search-filter-link {
  display: flex;
  align-items: baseline;
  gap: 5px;
  margin: 0;
  padding-left: 17px;
  color: #555;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
  cursor: pointer;
}

.ella-search-filter-option.is-muted {
  cursor: default;
}

.ella-search-filter-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
}

.ella-search-filter-option span {
  position: relative;
}

.ella-search-filter-option input:checked + span {
  color: #232323;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ella-search-filter-option sup,
.ella-search-filter-link sup {
  top: -.35em;
  color: #777;
  font-size: 9px;
  line-height: 1;
}

.ella-search-filter-link:hover {
  color: #232323;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ella-search-filter-clear {
  display: inline-flex;
  margin-top: 24px;
  color: #777;
  font-size: 12px;
  line-height: 22px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ella-search-page__results {
  min-width: 0;
}

.ella-search-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 20px;
}

.ella-search-product-grid__empty {
  grid-column: 1 / -1;
}

.ella-search-product-grid .ella-product-card {
  text-align: left;
}

.ella-search-product-grid .ella-product-card__media,
.ella-search-product-grid .ella-product-card__image {
  aspect-ratio: 1;
  background: #fafafa;
}

.ella-search-product-grid .ella-product-card__body {
  padding-top: 10px;
  text-align: left;
}

.ella-search-product-grid .ella-product-card__name {
  height: 40px;
  color: #232323;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  text-transform: none;
}

.ella-search-product-grid .ella-product-card__price {
  margin: 2px 0 0;
  color: #232323;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
}

.ella-search-product-grid .reviews-card-rating {
  justify-content: flex-start;
  margin: 4px 0 2px;
}

.ella-search-product-grid .ella-card-wishlist {
  top: 10px;
  right: 10px;
}

.ella-search-product-grid .ella-product-card__swatches,
.ella-search-product-grid .ella-product-card__media > .ella-card-cart {
  display: none;
}

.ella-search-product-grid .ella-product-card:hover .ella-product-card__media > .ella-card-cart,
.ella-search-product-grid .ella-product-card:focus-within .ella-product-card__media > .ella-card-cart {
  display: flex;
}

.ella-search-product-grid.is-list-view {
  grid-template-columns: 1fr;
  gap: 24px;
}

.ella-search-product-grid.is-list-view .ella-search-product-grid__item {
  min-width: 0;
}

.ella-search-product-grid.is-list-view .ella-product-card {
  display: grid;
  grid-template-columns: minmax(170px, 240px) minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  min-height: 240px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e5e5e5;
}

.ella-search-product-grid.is-list-view .ella-product-card__media,
.ella-search-product-grid.is-list-view .ella-product-card__image {
  width: 100%;
  max-width: 240px;
  aspect-ratio: 1;
}

.ella-search-product-grid.is-list-view .ella-product-card__body {
  padding-top: 2px;
}

.ella-search-product-grid.is-list-view .ella-product-card__name {
  height: auto;
  max-height: none;
  margin-bottom: 8px;
  font-size: 14px;
  line-height: 22px;
}

.ella-search-product-grid.is-list-view .ella-product-card__price {
  font-size: 14px;
  line-height: 22px;
}

.ella-search-product-grid.is-list-view .ella-product-card__media > .ella-card-cart {
  max-width: 240px;
}

.ella-search-pagination {
  margin-top: 45px;
}

.ella-search-category-results {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ella-search-category-results__item {
  display: block;
  margin: 0;
  padding: 20px 12px 20px 0;
  color: #535353;
  font-size: 12px;
  line-height: 16px;
}

.ella-search-category-results__link {
  display: block;
  color: #535353;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
  text-decoration: none;
}

.ella-search-category-results__link:hover {
  color: #232323;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ella-search-extra {
  margin-top: 55px;
}

.ella-search-fallback-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px 20px;
  margin-top: 16px;
}

@media (max-width: 1199.98px) {
  .ella-search-page__container {
    width: min(100% - 30px, 1170px);
  }

  .ella-search-page__layout {
    grid-template-columns: 200px minmax(0, 1fr);
    gap: 24px;
  }
}

@media (max-width: 991.98px) {
  .ella-search-page {
    padding: 28px 0 64px;
  }

  .ella-search-page__header h1 {
    margin-bottom: 20px;
    font-size: 20px;
  }

  .ella-search-page__summary {
    align-items: flex-start;
    margin-bottom: 25px;
  }

  .ella-search-page__controls {
    gap: 12px;
  }

  .ella-search-mobile-filter {
    display: inline-flex;
  }

  .ella-search-view-switch {
    display: none;
  }

  .ella-search-sort select {
    width: 150px;
  }

  .ella-search-page__layout {
    display: block;
  }

  .ella-search-page__sidebar {
    position: fixed;
    inset: 0;
    z-index: 1050;
    visibility: hidden;
    pointer-events: none;
  }

  .ella-search-page__sidebar.is-open {
    visibility: visible;
    pointer-events: auto;
  }

  .ella-search-page__filter-backdrop {
    position: absolute;
    inset: 0;
    display: block;
    background: rgba(0, 0, 0, .35);
    opacity: 0;
    transition: opacity .2s ease;
  }

  .ella-search-page__sidebar.is-open .ella-search-page__filter-backdrop {
    opacity: 1;
  }

  .ella-search-filters {
    position: relative;
    width: min(360px, calc(100% - 54px));
    height: 100%;
    padding: 0 24px 28px;
    overflow-y: auto;
    background: #fff;
    transform: translateX(-100%);
    transition: transform .2s ease;
  }

  .ella-search-page__sidebar.is-open .ella-search-filters {
    transform: translateX(0);
  }

  .ella-search-filters__mobile-head {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 -24px 22px;
    padding: 17px 20px;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
    color: #232323;
    font-size: 14px;
    font-weight: 700;
    line-height: 22px;
    text-transform: uppercase;
  }

  .ella-search-filters__mobile-head button {
    width: 32px;
    height: 32px;
    border: 0;
    background: transparent;
    color: #232323;
    font-size: 28px;
    line-height: 28px;
  }

  .ella-search-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px 12px;
  }

  .ella-search-product-grid.is-list-view {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .ella-search-product-grid.is-list-view .ella-product-card {
    grid-template-columns: 120px minmax(0, 1fr);
    gap: 14px;
    min-height: 120px;
    padding-bottom: 18px;
  }

  .ella-search-product-grid.is-list-view .ella-product-card__media,
  .ella-search-product-grid.is-list-view .ella-product-card__image {
    max-width: 120px;
  }

  .ella-search-product-grid.is-list-view .ella-product-card__name {
    font-size: 12px;
    line-height: 20px;
  }

  .ella-search-product-grid.is-list-view .ella-product-card__price {
    font-size: 12px;
    line-height: 20px;
  }

  .ella-search-fallback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.ella-search-filter-open {
    overflow: hidden;
  }
}

@media (max-width: 575.98px) {
  .ella-search-page__container {
    width: calc(100% - 20px);
  }

  .ella-search-page__summary {
    display: grid;
    gap: 14px;
  }

  .ella-search-page__controls {
    justify-content: space-between;
    width: 100%;
    margin-left: 0;
  }

  .ella-search-sort select {
    width: 172px;
  }

  .ella-cart-success-modal {
    padding: 12px;
  }

  .ella-cart-success-modal__dialog {
    padding: 24px 18px 28px;
  }

  .ella-cart-success-modal__close {
    width: 40px;
    height: 40px;
    font-size: 24px;
    line-height: 40px;
  }

  .ella-cart-success-modal__product {
    grid-template-columns: 82px minmax(0, 1fr);
    gap: 16px;
    margin-bottom: 22px;
  }

  .ella-cart-success-modal__image {
    width: 82px;
  }

  .ella-cart-success-modal__copy {
    padding-top: 8px;
  }

  .ella-cart-success-modal__name {
    font-size: 18px;
    line-height: 1.3;
  }

  .ella-cart-success-modal__copy p {
    margin-top: 10px;
    font-size: 17px;
  }

  .ella-cart-success-modal__actions {
    gap: 14px;
    margin-left: 0;
  }

  .ella-cart-success-modal__button {
    min-height: 50px;
    padding: 10px 12px;
    font-size: 16px;
  }
}

.product-recommendation--fbt.cbb-frequently-bought-container {
  width: 100%;
  clear: both;
  margin: 20px auto;
  padding: 0;
  max-width: 1170px;
  background: #fff;
  color: #232323;
  text-align: left;
}

.product-recommendation--fbt .cbb-frequently-bought-title {
  margin: 0 0 1rem;
  color: #232323;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
  text-align: left;
  text-transform: uppercase;
}

.product-recommendation--fbt .cbb-frequently-bought-discount-message-container {
  display: none;
  text-align: left;
  padding: 0;
  margin: 0;
}

.product-recommendation--fbt .cbb-frequently-bought-recommendations-container {
  display: block;
}

.product-recommendation--fbt .cbb-frequently-bought-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 10px;
  float: left;
  width: auto;
  max-width: 370px;
  margin: 0 15px 15px 0;
  padding: 0;
  list-style: none;
  vertical-align: middle;
}

.product-recommendation--fbt .cbb-frequently-bought-product {
  display: block;
  width: 180px;
  height: 180px;
  margin: 0;
  padding: 0;
  list-style: none;
  opacity: 1;
  transition: opacity .8s;
}

.product-recommendation--fbt .cbb-frequently-bought-product-image-link,
.product-recommendation--fbt .cbb-frequently-bought-product-image {
  display: block;
  width: 180px;
  height: 180px;
}

.product-recommendation--fbt .cbb-frequently-bought-product-image-link {
  cursor: pointer;
}

.product-recommendation--fbt .cbb-frequently-bought-product-image {
  overflow: hidden;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

.product-recommendation--fbt .cbb-frequently-bought-plus-icon {
  display: none !important;
}

.product-recommendation--fbt .cbb-frequently-bought-form {
  display: inline-block;
  margin-bottom: 12px;
}

.product-recommendation--fbt .cbb-frequently-bought-total-price-box {
  margin: 0 0 10px;
  color: #232323;
  font-size: 13px;
  line-height: 22px;
}

.product-recommendation--fbt .cbb-frequently-bought-total-price-text {
  font-weight: 400;
  white-space: nowrap;
}

.product-recommendation--fbt .cbb-frequently-bought-total-price-regular-price {
  margin-left: .25em;
  margin-right: .25em;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.product-recommendation--fbt .cbb-frequently-bought-add-button {
  display: inline-block;
  width: auto;
  max-height: 70px;
  margin: 0;
  padding: 10px 30px;
  border: 1px solid #232323;
  border-radius: 0;
  background: #000;
  color: #fff;
  box-shadow: none;
  cursor: pointer;
  font-family: Poppins, Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  letter-spacing: .7px;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  vertical-align: baseline;
  white-space: nowrap;
  opacity: 1;
  transition: opacity .5s;
}

.product-recommendation--fbt .cbb-frequently-bought-add-button:hover,
.product-recommendation--fbt .cbb-frequently-bought-add-button:focus {
  opacity: .85;
}

.product-recommendation--fbt .cbb-frequently-bought-selector-list {
  display: block;
  clear: left;
  margin: 0;
  padding-left: 0;
  list-style: none;
}

.product-recommendation--fbt .cbb-frequently-bought-selector-list li {
  margin: 0;
  padding: 0;
  list-style-type: none;
  opacity: 1;
  transition: opacity .5s;
}

.product-recommendation--fbt .cbb-frequently-bought-selector-input {
  display: inline;
  float: none;
  width: auto;
  min-width: unset;
  height: auto;
  min-height: unset;
  margin: 0;
  vertical-align: baseline;
  appearance: checkbox;
}

.product-recommendation--fbt .cbb-frequently-bought-selector-link,
.product-recommendation--fbt .cbb-frequently-bought-this-item-label-wrap {
  display: inline;
  color: #232323;
  font-weight: 400;
  text-decoration: none;
}

.product-recommendation--fbt .cbb-frequently-bought-this-item-label-wrap {
  margin-left: 5px;
}

.product-recommendation--fbt .cbb-frequently-bought-selector-label-name {
  display: inline;
  margin: 0 0 0 5px;
  color: #232323;
  font-size: 1em;
  font-weight: 400;
  line-height: 2em;
}

.product-recommendation--fbt .cbb-frequently-bought-selector-list li:first-child .cbb-frequently-bought-selector-label-name {
  margin-left: 0;
  font-weight: 700;
}

.product-recommendation--fbt .cbb-recommendations-variant-select {
  display: inline-block;
  width: auto;
  max-width: 220px;
  height: 2em;
  min-height: 2em;
  max-height: 2em;
  margin: 2px 2px 2px 5px;
  padding: 2px;
  border: 1px solid #e0e0e0;
  border-radius: 0;
  background-color: #fff;
  background-image: none;
  color: #212121;
  font-size: .9em;
  font-weight: 400;
  line-height: normal;
  text-align: left;
  vertical-align: baseline;
  appearance: menulist;
}

.product-recommendation--fbt .cbb-frequently-bought-selector-label-regular-price {
  margin-left: .5em;
  color: #232323;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.product-recommendation--fbt .money {
  color: inherit;
  font: inherit;
  text-decoration: inherit;
  white-space: nowrap;
}

@media (max-width: 767px) {
  .product-recommendation--fbt.cbb-frequently-bought-container {
    margin-top: 18px;
  }

  .product-recommendation--fbt .cbb-frequently-bought-title {
    font-size: 16px;
  }

  .product-recommendation--fbt .cbb-frequently-bought-products {
    float: none !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    width: 100% !important;
    max-width: none !important;
    margin-right: 0 !important;
  }

  .product-recommendation--fbt .cbb-frequently-bought-product,
  .product-recommendation--fbt .cbb-frequently-bought-product-image-link,
  .product-recommendation--fbt .cbb-frequently-bought-product-image {
    width: 100% !important;
    height: calc(50vw - 24px) !important;
    min-height: 145px;
  }

  .product-recommendation--fbt .cbb-frequently-bought-form {
    display: block !important;
    margin-bottom: 14px;
  }
}

/* Product Tabs Accordion for Mobile */
.ella-tabs-accordion {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.ella-accordion-item {
  border-bottom: 1px solid #e5e7eb;
}

.ella-accordion-item:last-child {
  border-bottom: none;
}

.ella-accordion-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #f9fafb;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  user-select: none;
}

.ella-accordion-header:hover {
  background: #f3f4f6;
}

.ella-accordion-header i {
  transition: transform 0.3s ease;
  font-size: 14px;
  color: #6b7280;
}

.ella-accordion-item.active .ella-accordion-header i {
  transform: rotate(180deg);
}

.ella-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: #fff;
}

.ella-accordion-content.show,
.ella-accordion-item.active .ella-accordion-content {
  padding: 16px 20px;
}

.ella-accordion-content .rich-text-editor-content {
  line-height: 1.7;
  font-size: 14px;
  color: #374151;
}

.ella-accordion-content .attribute-table {
  font-size: 13px;
  margin-bottom: 0;
}

body.page-smart-search.halo-search-filter-open {
  overflow: hidden;
}

.halo-search-page {
  padding: 25px 0 60px;
}

.halo-search-page.is-independent-scroll {
  display: flex;
  flex-direction: column;
  padding-bottom: 0;
  overflow: hidden;
}

.halo-search-page.is-independent-scroll .search-container {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.halo-search-page.is-independent-scroll .page-header {
  flex-shrink: 0;
}

.halo-search-page.is-independent-scroll .halo-search-content {
  flex: 1;
  min-height: 0;
}

.search-container.container-1170 {
  width: min(1170px, calc(100% - 40px));
  margin: 0 auto;
}

.search-container .page-header {
  padding: 0 0 30px;
  margin: 0;
  color: #232323;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
}

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

.halo-search-content.halo-grid-content.sidebar--layout_vertical {
  display: grid;
  grid-template-columns: 250px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
}

.halo-search-page.is-independent-scroll .halo-search-content.halo-grid-content.sidebar--layout_vertical {
  align-items: stretch;
  overflow: hidden;
}

.page-sidebar.page-sidebar--vertical {
  position: sticky;
  top: 20px;
}

.halo-search-page.is-independent-scroll .page-sidebar.page-sidebar--vertical {
  position: relative;
  top: 0;
  min-height: 0;
}

.halo-sidebar-close {
  display: none;
}

.halo-sidebar-header {
  display: none;
}

.page-sidebar .halo-sidebar-wrapper {
  padding: 0;
}

.halo-search-page.is-independent-scroll .page-sidebar .halo-sidebar-wrapper {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  padding-right: 10px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.halo-search-page.is-independent-scroll .page-sidebar .halo-sidebar-wrapper::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.page-content {
  min-width: 0;
}

.halo-search-page.is-independent-scroll .page-content {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  padding-right: 5px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.halo-search-page.is-independent-scroll .page-content::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.facets__form {
  display: block;
}

.sidebarBlock {
  margin: 0 0 5px;
}

.sidebarBlock.sidebar-categories {
  margin-bottom: 44px;
}

.sidebarBlock-headingWrapper {
  position: relative;
}

.sidebarBlock-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 5px;
  padding: 0 0 9px;
  border-bottom: 1px solid #787878;
  color: #232323;
  font-family: var(--font-heading-family, inherit);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border-top: none;
  border-left: none;
  border-right: none;
  width: 100%;
  text-align: left;
}

.sidebarBlock-heading::after {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: 8px;
  border-right: 1px solid #232323;
  border-bottom: 1px solid #232323;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.sidebarBlock-heading.is-clicked::after {
  transform: translateY(2px) rotate(-135deg);
}

.sidebarBlock-contentWrapper {
  padding-bottom: 15px;
}

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

.navPages-item {
  margin: 0;
  padding: 0;
}

.navPages-action {
  display: block;
  padding: 5px 0;
  color: #555;
  font-size: 13px;
  line-height: 22px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.navPages-action:hover,
.navPages-action:focus {
  color: #232323;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.facets__list {
  margin: 15px 0 10px;
  padding: 0;
  list-style: none;
  max-height: 280px;
  overflow-y: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.facets__list::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.facets__item {
  position: relative;
  display: block;
  width: 100%;
  min-height: 22px;
  margin: 0 0 6px;
  padding: 0;
}

.facets__item input {
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

.facet-checkbox.form-label--checkbox {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0 0 0 25px;
  color: #555;
  font-family: Poppins, Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 22px;
  letter-spacing: 0.02em;
  cursor: pointer;
}

.facet-checkbox.form-label--checkbox::before {
  content: "";
  position: absolute;
  top: 3px;
  left: 0;
  width: 15px;
  height: 15px;
  border: 1px solid #dbdbdb;
  border-radius: 0;
  background-color: transparent;
}

.facet-checkbox.form-label--checkbox::after {
  content: "";
  position: absolute;
  top: 5px;
  left: 3px;
  display: block;
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg aria-hidden='true' focusable='false' data-prefix='far' data-icon='check' role='img' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 512 512'%3E%3Cpath fill='%23ffffff' d='M435.848 83.466L172.804 346.51l-96.652-96.652c-4.686-4.686-12.284-4.686-16.971 0l-28.284 28.284c-4.686 4.686-4.686 12.284 0 16.971l133.421 133.421c4.686 4.686 12.284 4.686 16.971 0l299.813-299.813c4.686-4.686 4.686-12.284 0-16.971l-28.284-28.284c-4.686-4.686-12.284-4.686-16.97 0z'/%3E%3C/svg%3E");
  background-position: center;
  background-size: cover;
  line-height: 1;
  opacity: 0;
  transform: scale(.9);
  transition: transform .3s ease-out, opacity .3s ease-out;
}

.facets__item input:checked + .form-label--checkbox {
  color: #232323;
  font-weight: 700;
}

.facets__item input:checked + .form-label--checkbox::before {
  border-color: #000;
  background-color: #000;
}

.facets__item input:checked + .form-label--checkbox::after {
  opacity: 1;
  transform: scale(1);
}

.facets__item input:focus-visible + .form-label--checkbox::before {
  outline: 1px solid #232323;
  outline-offset: 2px;
}

.facets__item input:disabled + .form-label--checkbox {
  pointer-events: none;
  opacity: .6;
}

.facet-checkbox .count {
  color: #999;
  font-size: 12px;
  font-weight: 400;
}

.facets__reset {
  display: inline-block;
  margin-top: 5px;
  color: #777;
  font-size: 12px;
  line-height: 22px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.facets__reset:hover {
  color: #232323;
}

.show-more--list_tags {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 8px;
  color: #232323;
  font-size: 12px;
  font-weight: 600;
  line-height: 22px;
  cursor: pointer;
  text-transform: uppercase;
}

.show-more--list_tags .icon-container {
  display: inline-flex;
}

.show-more--list_tags:hover {
  color: #555;
}

.halo-search-sort-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.toolbar-wrapper.toolbar-mobile {
  display: none;
  margin-bottom: 20px;
}

.toolbar-item.toolbar-sidebar {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  color: #232323;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
}

.toolbar-icon.icon-filter {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.productListing.productGrid.column-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-grid-item {
  min-width: 0;
}

.product-grid-empty {
  grid-column: 1 / -1;
}

.halo-search-pagination {
  margin-top: 40px;
}

.list-unstyled {
  list-style: none;
}

.link-underline {
  text-decoration: none;
}

.link-underline:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.custom-scrollbar::-webkit-scrollbar {
  width: 4px;
}

.custom-scrollbar::-webkit-scrollbar-track {
  background: transparent;
}

.custom-scrollbar::-webkit-scrollbar-thumb {
  background: #ccc;
  border-radius: 2px;
}

@media (max-width: 1024px) {
  .halo-search-page.is-independent-scroll {
    height: auto;
    display: block;
    padding-bottom: 60px;
    overflow: visible;
  }

  .halo-search-page.is-independent-scroll .search-container {
    display: block;
  }

  .halo-search-page.is-independent-scroll .halo-search-content {
    overflow: visible;
  }

  .halo-search-page.is-independent-scroll .page-sidebar .halo-sidebar-wrapper,
  .halo-search-page.is-independent-scroll .page-content {
    height: auto;
    overflow: visible;
    overscroll-behavior-y: auto;
    padding-right: 0;
  }

  .halo-search-content.halo-grid-content.sidebar--layout_vertical {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .page-sidebar.page-sidebar--vertical {
    position: fixed;
    inset: 0;
    z-index: 1050;
    visibility: hidden;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.35);
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .page-sidebar.page-sidebar--vertical.is-open {
    visibility: visible;
    pointer-events: auto;
    opacity: 1;
  }

  .halo-sidebar-close {
    position: absolute;
    top: 15px;
    right: -38px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: #fff;
    cursor: pointer;
    z-index: 10;
  }

  .page-sidebar.page-sidebar--vertical.is-open .halo-sidebar-close {
    right: 15px;
    color: #232323;
  }

  .halo-sidebar-header {
    position: sticky;
    top: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 17px 20px;
    border-bottom: 1px solid #e5e5e5;
    background: #fff;
  }

  .halo-sidebar-header .title {
    color: #232323;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
  }

  .page-sidebar .halo-sidebar-wrapper {
    position: relative;
    width: min(320px, calc(100% - 54px));
    height: 100%;
    padding: 20px;
    overflow-y: auto;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.25s ease;
  }

  .page-sidebar.page-sidebar--vertical.is-open .halo-sidebar-wrapper {
    transform: translateX(0);
  }

  .toolbar-wrapper.toolbar-mobile {
    display: block;
  }

  .productListing.productGrid.column-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px 12px;
  }
}

@media (max-width: 575px) {
  .search-container.container-1170 {
    width: min(100% - 24px, 1170px);
  }

  .search-container .page-header {
    font-size: 16px;
    padding-bottom: 20px;
  }
}

/* Collection color selectors */
.ella-collection .facets__list--swatches {
  display: grid;
  grid-template-columns: repeat(auto-fill, 42px);
  gap: 12px 10px;
  align-items: center;
}

.ella-collection .facets__item--swatch {
  width: 42px;
  height: 42px;
  min-height: 42px;
  padding: 0;
}

.ella-collection .facets__item--swatch input {
  position: absolute;
  inset: 0;
  width: 42px;
  height: 42px;
  margin: 0;
  opacity: 0;
}

.ella-collection .facets__item--swatch .facet-checkbox {
  display: block;
  width: 42px;
  height: 42px;
  margin: 0;
  padding: 2px;
  border: 2px solid #c4c4c4;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .9);
}

.ella-collection .facets__item--swatch .pattern {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background-image: none !important;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .12);
}

.ella-collection .facets__item--swatch:hover .facet-checkbox,
.ella-collection .facets__item--swatch input:focus-visible + .facet-checkbox {
  border-color: #8f8f8f;
}

.ella-collection .facets__item--swatch.is-active .facet-checkbox,
.ella-collection .facets__item--swatch input:checked + .facet-checkbox {
  border-color: #111;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .9);
}

.ella-collection .facets__item--swatch input:checked + .facet-checkbox .pattern {
  width: 34px;
  height: 34px;
}

.ella-collection .facets__item--swatch .pattern--white {
  border: 1px solid #d8d8d8;
  box-shadow: inset 0 0 0 1px #fff;
}

.ella-card-option-panel--swatches,
.ella-collection .ella-card-option-panel--swatches {
  min-height: 176px;
  max-height: 176px;
  padding: 23px 10px 58px;
}

.ella-card-option-group--swatch .ella-card-option-values,
.ella-collection .ella-card-option-group--swatch .ella-card-option-values {
  display: grid;
  grid-template-columns: repeat(auto-fill, 42px);
  justify-content: center;
  gap: 12px 10px;
  max-height: none;
  overflow: visible;
}

.ella-card-option-value--swatch,
.ella-collection .ella-card-option-value--swatch {
  display: block;
  width: 42px;
  min-width: 42px;
  height: 42px;
  padding: 2px;
  border: 2px solid #c4c4c4;
  border-radius: 50%;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .9);
}

.ella-card-option-value--swatch.is-selected,
.ella-collection .ella-card-option-value--swatch.is-selected {
  border-color: #111;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .9);
}

.ella-card-option-swatch,
.ella-collection .ella-card-option-swatch {
  display: block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  box-shadow: inset 0 1px 3px rgba(0, 0, 0, .12);
}

.ella-card-option-swatch--white,
.ella-collection .ella-card-option-swatch--white {
  border: 1px solid #d8d8d8;
  box-shadow: inset 0 0 0 1px #fff;
}

.ella-product-card .ella-card-wishlist,
.ella-collection .ella-product-card .ella-card-wishlist,
.ella-home .ella-products .ella-product-card .ella-card-wishlist,
.ella-instagram-modal__product .ella-product-card .ella-card-wishlist,
.ella-search-product-grid .ella-card-wishlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  visibility: visible;
}

.ella-card-wishlist .icon-wishlist {
  display: block;
  width: 20px;
  min-width: 20px;
  max-width: 20px;
  height: 20px;
  flex: 0 0 20px;
  fill: currentColor;
}
