/** Shopify CDN: Minification failed

Line 2497:0 Unexpected "<"

**/
/* Some css class in defined in critical css */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important;
}
:is(
    input[type="search"],
    input[type="tel"],
    input[type="text"],
    input[type="number"],
    input[type="email"],
    input[type="password"],
    select,
    textarea,
    .input-style
  ):focus {
  outline: 0;
  border-color: var(--color-heading);
}
input[type="checkbox"] {
  display: inline-block;
  margin-block-end: 0.5rem;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input[type="search"]::-webkit-search-cancel-button {
  -webkit-appearance: none; /* Remove default styling */
  position: relative;
  height: 15px; /* Size of your custom icon */
  width: 15px;
  background: url("icon-close.png") no-repeat center center;
  background-size: 10px;
  cursor: pointer;
  transition: var(--duration-short);
}
.search-modal__form.loading input[type="search"]::-webkit-search-cancel-button {
  opacity: 0;
  visibility: hidden;
}
/* Style the checkmark/indicator */
.checkmark:before {
  content: "";
  display: inline-flex;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  border: 1px solid var(--color-color, #ebebeb);
  background-color: var(--grey-color);
  position: relative;
  top: 2px;
  transition: var(--bls-transition);
}
.checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  left: 7px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid var(--color-white);
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: var(--transition);
}

/* Show the checkmark when checked */
input[type="checkbox"]:checked + .checkmark:after {
  opacity: 1;
}

input[type="checkbox"]:checked + .checkmark:before {
  background-color: var(--color-link);
  border-color: var(--color-link);
}
.overflow-auto {
  overflow: auto;
}
.overflow-scroll {
  overflow: scroll;
}
.overflow-x-scroll {
  overflow-x: scroll;
}
.overflow-y-scroll {
  overflow-y: scroll;
}
.overflow-y-auto {
  overflow-y: auto;
}
.overflow-x-hidden {
  overflow-x: hidden;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.flex-100 {
  flex: 100%;
  width: 100%;
}
.grow-0 {
  flex-grow: 0;
}
.shrink {
  flex-shrink: 1;
}
.shrink-0 {
  flex-shrink: 0;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.align-stretch {
  align-items: stretch;
}
.py-4 {
  padding-top: 4px;
  padding-bottom: 4px;
}
.py-60 {
  padding-top: clamp(30px, calc(30px + 30 * var(--responsive-rate)), 60px);
  padding-bottom: clamp(30px, calc(30px + 30 * var(--responsive-rate)), 60px);
}
.w-0 {
  width: 0;
}
.w-15 {
  width: 15px;
}
.w-20 {
  width: 20px;
}
.w-55 {
  width: 5.5rem;
}
.w-100 {
  width: 10rem;
}
.min-w-10 {
  min-width: 10px;
}
.min-w-20 {
  min-width: 20px;
}
.min-w-30 {
  min-width: 30px;
}
.min-w-full {
  min-width: 100%;
}
.max-w-15 {
  max-width: 15px;
}
.max-w-30 {
  max-width: 30px;
}
.max-w-full {
  max-width: 100%;
}
.h-0 {
  height: 0;
}
.h-15 {
  height: 15px;
}
.h-20 {
  height: 2rem;
}
.h-30 {
  height: 30px;
}
.h-55 {
  height: 5.5rem;
}
.min-h-30 {
  min-height: 30px;
}
.min-h-50 {
  min-height: 50px;
}
.min-h-full {
  min-height: 100%;
}
.max-h-full {
  max-height: 100%;
}
.my-auto {
  margin-top: auto;
  margin-bottom: auto;
}
.user-select-none,
.swiper-slide {
  user-select: none;
  -webkit-user-select: none;
}
.toolbar-sorter{
  text-wrap: nowrap;
}
/* Hover */
@media (min-width: 1025px) and (pointer: fine) and (prefers-reduced-motion: no-preference) {
  :is(
      .btn-outline,
      .btn-primary,
      .btn-hover,
      .btn-white,
      button.shopify-payment-button__more-options,
      .dmp_discount-form button
    ):hover {
    --btn-bg: var(--btn-primary-hover-bg-color);
    --btn-color: var(--btn-primary-hover-color);
    --btn-border-color: var(--btn-primary-hover-bg-color);
  }
  .btn-hover:hover {
    color: var(--btn-color);
    background-color: var(--btn-bg);
    border-color: var(--btn-border-color);
  }
  .btn-link:hover {
    color: var(--btn-link-hover-color);
  }
  .btn-action:hover {
    background: var(--btn-action-hover-bg-color);
    color: var(--btn-action-hover-color);
    border-color: var(--btn-action-hover-bg-color); 
  }
  .btn-link:hover::before {
    width: calc(100% - 3px);
    transition: var(--transition);
    animation: 1s infinite btnLinkAnimation;
  }
  .smooth-padding-hover:hover {
    padding-inline-start: 1rem;
  }
  .hover-effect {
    will-change: transform;
  }
  .hover-effect :is(img, .placeholder-image, picture) {
    transition: var(--transition);
    will-change: transform;
  }
  .hover_zoom .hover-effect:hover :is(img, .placeholder-image, picture) {
    transform: var(--zoom-transform, scale(1.05));
  }
  .hover_flip .hover-effect .show_secondary > .secondary-image {
    -webkit-transform: translateZ(-1000px) rotateY(-90deg);
    -moz-transform: translateZ(-1000px) rotateY(-90deg);
    -ms-transform: translateZ(-1000px) rotateY(-90deg);
    -o-transform: translateZ(-1000px) rotateY(-90deg);
    transform: translateZ(-1000px) rotateY(-90deg);
  }
  .hover_flip .hover-effect:hover .show_secondary > .secondary-image {
    -webkit-transform: translateZ(0) rotateY(0);
    -moz-transform: translateZ(0) rotateY(0);
    -ms-transform: translateZ(0) rotateY(0);
    -o-transform: translateZ(0) rotateY(0);
    transform: translateZ(0) rotateY(0);
    --transition: all 0.5s ease-in-out;
  }
  .hover_right .hover-effect .show_secondary > .secondary-image {
    -webkit-transform: translateX(30px);
    -moz-transform: translateX(30px);
    -ms-transform: translateX(30px);
    -o-transform: translateX(30px);
    transform: translateX(30px);
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    -o-transform-style: preserve-3d;
    transform-style: preserve-3d;
    --transition: all 0.5s ease-in-out;
  }
  .hover_right .hover-effect:hover .show_secondary > .secondary-image {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
  .hover_fade .hover-effect:hover :is(img, .placeholder-image, picture) {
    opacity: 0.8;
  }
  .hover_fade .hover-effect:hover .secondary-image {
    opacity: 1;
  }
  .tooltip-content {
    background: var(--color-dark);
    color: var(--color-white);
    line-height: 1;
    max-width: 360px;
    z-index: 2;
    text-align: center;
    font-size: 1.2rem;
    white-space: nowrap;
    transition: all 0.3s;
    will-change: transform;
    padding: 7px 15px;
    transform: var(--tooltip-transform, translateY(-100%) translateX(-50%));
    left: var(--left, 50%);
    right: var(--right, auto);
    top: var(--top, 0);
  }
  .tooltip-content:before {
    border: 5px solid transparent;
    content: "";
    height: 0;
    width: 0;
    top: var(--tooltip-y, 100%);
    bottom: var(--tooltip-bottom, auto);
    margin-left: 0;
    -webkit-transform: var(--tooltip-before, translateX(-50%) translateZ(0));
    transform: var(--tooltip-before, translateX(-50%) translateZ(0));
    transform-origin: 0;
    border-top-color: var(--color-dark);
    position: absolute;
    left: var(--tooltip-left, 50%);
    right: var(--tooltip-right, auto);
  }
  .tooltip:not(.open):hover .tooltip-content {
    opacity: 1;
    visibility: visible;
    transform: var(
      --tooltip-hover-transform,
      translateY(calc(-100% - 10px)) translateX(-50%)
    );
  }
  .tooltip-left {
    --tooltip-transform: translateY(-50%);
    --left: auto;
    --right: 100%;
    --top: 50%;
    --tooltip-hover-transform: translateX(-10px) translateY(-50%);
    --tooltip-left: 100%;
    --tooltip-y: 50%;
    --tooltip-before: rotate(-90deg) translateY(50%);
  }
  .tooltip-right {
    --tooltip-transform: translateY(-50%);
    --left: 100%;
    --top: 50%;
    --tooltip-hover-transform: translateX(10px) translateY(-50%);
    --tooltip-left: auto;
    --tooltip-right: 100%;
    --tooltip-y: 12%;
    --tooltip-before: rotate(90deg) translateY(-50%);
  }
  .tooltip-bottom {
    --tooltip-transform: translateY(100%) translateX(-50%);
    --top: auto;
    bottom: 0;
    --tooltip-hover-transform: translateY(calc(100% + 10px)) translateX(-50%);
    --tooltip-y: auto;
    --tooltip-bottom: 100%;
  }
  .tooltip-bottom::before {
    border-bottom-color: var(--color-dark);
    border-top-color: transparent;
  }
  .instagram-item__media--ratio .instagram-icon {
    transform: scale(0.8);
    will-change: transform;
  }
  .instagram-item__media--ratio:hover .instagram-icon {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  @keyframes btnLinkAnimation {
    0% {
      left: 0;
      width: 100%;
    }

    33% {
      left: 100%;
      width: 0;
    }

    66% {
      left: 0;
      width: 0;
    }

    100% {
      right: 0;
      width: 100%;
    }
  }
  @keyframes progress {
    0% {
      background-position: 0 0;
    }
    100% {
      background-position: -60px -60px;
    }
  }
  .hover-svg-zoom:hover svg {
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
  }
}
@keyframes autoplay {
  0% {
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
  }

  100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }
}

@keyframes autoplay2 {
  0% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
  }

  100% {
      -webkit-transform: translateY(20px);
      transform: translateY(20px);
  }
}
.ins-image-animation .swiper {
  padding: 20px 0;
  margin: -20px 0;
}
.ins-image-animation a:nth-child(odd) .instagram-item__media--ratio{
  animation: autoplay2 2s infinite alternate linear;
  transition: all cubic-bezier(.47, 1.21, .47, 1.21) .5s;
}
.ins-image-animation a:nth-child(even) .instagram-item__media--ratio{
  animation: autoplay 2s infinite alternate linear;
  transition: all cubic-bezier(.47, 1.21, .47, 1.21) .5s; 
}
.ins-image-animation .instagram-item__media--ratio:hover {
  -webkit-animation-play-state: paused !important;
  animation-play-state: paused !important;
}

.button-close:not(:hover) {
  opacity: 0.7;
  color: var(--color-heading);
}
.btn-search-close{
  display: inline-flex;
  align-items: center;
}
:is(
    .custom-scrollbar,
    .tingle-modal .tingle-modal-box__content
  )::-webkit-scrollbar {
  width: 4px;
}
:is(
    .custom-scrollbar,
    .tingle-modal .tingle-modal-box__content
  )::-webkit-scrollbar-track {
  background: var(--border-color-base);
}
:is(
    .custom-scrollbar,
    .tingle-modal .tingle-modal-box__content
  )::-webkit-scrollbar-thumb {
  background: #c8c8c8;
}
:is(
    .custom-scrollbar,
    .tingle-modal .tingle-modal-box__content
  )::-webkit-scrollbar-thumb:hover {
  background: #555;
  width: 6px;
}
.translateY-100 {
  transform: translateY(-100%);
}
.transition-short {
  transition: var(--duration-short);
  -webkit-transition: var(--duration-short);
}
.transition {
  transition: var(--transition);
  -webkit-transition: var(--transition);
}
.transition-popup {
  transition: var(--transition-popup);
  -webkit-transition: var(--transition-popup);
}
/* Rounded */
.rounded-custom {
  border-radius: var(--rounded-custom);
}
.bottom-25 {
  bottom: 2.5rem;
}
.top-20 {
  top: 2rem;
}
.top-30 {
  top: 3rem;
}
.top-100 {
  top: 100%;
}

.right-45 {
  right: 4.5rem;
}
.right-50 {
  right: 5rem;
}
.icon-load {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: calc(var(--loader-width, 1.4rem) / 2 * -1);
  margin-left: calc(var(--loader-height, 1.4rem) / 2 * -1);
}
:where(.btn-primary, .btn-outline, .btn, button-quickview).loading {
  pointer-events: none;
}
:where(.btn-primary, .btn-outline, .btn, button-quickview).loading
  .hidden-on-load {
  opacity: 0;
}
:where(.btn-primary, .btn-outline, .btn, button-quickview).loading
  > .icon-load {
  opacity: 1;
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.spin {
  -webkit-animation: 0.8s linear infinite spin;
  animation: 0.8s linear infinite spin;
}
/* Global style */
.w-custom-svg svg {
  height: auto;
  width: var(--custom-width);
}
.bls__spacing {
  height: var(--mobile-height);
}
@media (min-width: 768px) {
  .bls__spacing {
    height: var(--desktop-height);
  }
}
:is(.open-drawer, .nav-open) {
  overflow: hidden;
}
.overlay::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  background-color: var(--overlay-bg);
  pointer-events: none;
  transition: var(--transition);
  opacity: 0;
  z-index: 12;
  cursor: url(cursor-close.png), pointer;
}
:is(.open-drawer, .nav-open, .open-sidebar) .open.overlay::after {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}
.open-drawer .tingle-enabled {
  position: static;
  overflow: auto;
}
#search_mini_form.loading .loading-icon {
  opacity: 1;
  visibility: visible;
}
@media (min-width: 1025px) {
  .footer__localization.lang__currency-desktop .disclosure__list {
    top: auto;
    left: 0;
    right: auto;
    bottom: calc(100% + 30px);
  }
  .footer__localization.lang__currency-desktop
    .button-localization.open
    + .disclosure__list {
    bottom: calc(100% + 10px);
    top: auto;
  }
  .lang__currency-desktop .disclosure__button::after,
  .minicart__action.show-overlay:after,
  .lang__currency-desktop .disclosure__list icon-close {
    display: none;
  }
  .lang__currency-desktop .disclosure__list {
    top: calc(100% + 30px);
    max-height: 60vh;
    padding: 2rem 2.5rem;
    left: auto;
    min-width: 25rem;
    overflow: auto;
  }
  .lang__currency-desktop .button-localization.open + .disclosure__list {
    top: 100%;
    opacity: 1;
    visibility: visible;
  }
  .topbar
    .lang__currency-desktop
    .button-localization.open
    + .disclosure__list {
    top: calc(100% + calc(var(--section-pb) * 1px));
  }
  .topbar:has(.disclosure__button.open) {
    z-index: 20;
    position: relative;
  }
  .rounded-style :is(.topbar, .section-header) .disclosure__list {
    border-radius: 0 0 5px 5px;
  }
  .rounded-style
    .footer__localization.lang__currency-desktop
    .disclosure__list {
    border-radius: 5px;
  }
  body:has(.shopify-section-header-sticky) .sticky.top-30 {
    top: calc(var(--height-header, 0px) + 30px);
    transition: var(--transition);
  }
  body:has(.layout-2.shopify-section-header-sticky) .sticky.top-30 {
    top: 80px;
  }
  body:has(.shopify-section-header-hidden) .sticky.top-30 {
    top: 30px;
  }
}
.header__menu::before {
  content: "";
  display: none;
}
.header-icon:hover,.header-icon:hover >.header-icon {
  color: var(--color-primary);
}
/* Sticky header */
.shopify-section-header-sticky {
  position: sticky;
  z-index: 11;
  top: 0;
}
.shopify-section-header-sticky header.header {
  box-shadow: var(--shadow);
}
.shopify-section-header-sticky .header__normal-logo {
  display: block;
}
.shopify-section-header-sticky .header__transparent-logo {
  display: none;
}

.shopify-section-header-hidden {
  top: calc(-1 * var(--height-header));
}
.section-header.animate {
  transition: top 0.35s ease-in-out;
}
.header-sticky .gradient {
  background-attachment: unset;
}
.shopify-section-header-sticky.gradient {
  background-attachment: unset;
}
@media screen and (max-width: 1024.98px) {
  [data-sticky-mobile="false"].shopify-section-header-sticky {
    position: unset;
  }
  :where(.lang__currency-on-nav, .lang__currency-desktop, .popup_cart)
    icon-close {
    transform: translateY(calc(-100% - 15px));
  }
  .hidden-mobile {
    display: none;
  }
  .w-mb-44 {
    width: 4.4rem;
  }
}
header-search #search-form .search__button {
  color: var(--color-heading);
}
.fadeIn {
  animation: 0.3s fadeIn;
}
.fadeInForwards { 
  animation: 0.3s fadeIn forwards;
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.shopify-section-header-sticky.animate:not(.scroll-up) {
  animation-name: fadeInSticky;
  animation-duration: 0.5s;
  animation-fill-mode: inherit;
  animation-fill-mode: forwards;
}
@keyframes fadeInSticky {
  0% {
    opacity: 0;
    top: calc(var(--height-header, 100%) * -1);
  }
  100% {
    opacity: 1;
    top: 0;
  }
}
.fadeOut {
  animation: 0.3s fadeOut forwards;
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#header_size_guide {
  display: none;
}
.white-gradient:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 32px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
  z-index: 1;
}

/* Fake order */
@keyframes progressbar {
  0% {
    width: 100%;
  }

  to {
    width: 0;
  }
}

@keyframes fadeInUp {
  from {
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    visibility: visible;
    opacity: 0;
  }

  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes fadeInDown {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }

  to {
    visibility: hidden;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
    opacity: 0;
  }
}
.animated {
  -webkit-animation-duration: 0.8s;
  animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.animate__fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}
.animate__fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}
.fake-order-progressbar {
  border-radius: 0 0 var(--rounded) var(--rounded);
}
.fake-order-progressbar span {
  height: 2px;
  display: block;
  width: 100%;
}
.success,
.warning {
  padding: 1.2rem 2rem;
  position: relative;
}
.success,
.message-success {
  --color-success: #137f24;
  --border-color-success: #b4deb0;
  --background-success: #dcf0d8;
  --color-link: var(--color-success);
  margin-bottom: 2rem;
  color: var(--color-success);
  background-color: var(--background-success);
  border: 1px solid var(--border-color-success);
  border-radius: 5px;
  gap: 0.5rem;
  font-weight: var(--subheading_weight, 500);
  line-height: 1.5;
  font-size: var(--body-font-size);
}

.errors,
.error,
.message-error,
.dmp_error-message {
  --color-error: #d0473e;
  --border-color-error: #eabdbd;
  --background-error: #fadfdf;
  --color-link: var(--color-error);
  padding: 11px 2rem;
  background: var(--background-error);
  border: 1px solid var(--border-color-error);
  color: var(--color-error);
  text-align: left;
  border-radius: 5px;
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  gap: 0.5rem;
  font-weight: var(--subheading_weight, 500);
  line-height: 1.5;
  font-size: var(--body-font-size);
}
.dmp_error-message {
  display: block;
  margin-top: 1rem;
}
.text-overflow-ellipsis {
  text-overflow: ellipsis;
}
/* Message */
.message-info,
.warning {
  color: #907341;
  --color-link: #907341;
  --btn-link-color: #907341;
  border: 1px solid #e9d7b8;
  background: #faf0df;
  padding: 1.5rem 2rem;
  font-weight: var(--subheading_weight, 500);
  border-radius: 5px;
  line-height: 1.5;
  font-size: var(--body-font-size);
}
:is(.message-info, .message-success, .message-error) a {
  color: currentColor;
}
:is(
    .message-info,
    .success,
    .message-success,
    .message-error,
    .warning,
    .errors,
    .error
  )
  svg {
  width: 1.8rem;
  flex: 0 0 1.8rem;
}
@keyframes al-loading {
  0% {
    width: 0;
  }

  to {
    width: 80%;
  }
}
@keyframes al-loading-finish {
  0% {
    width: 80%;
  }

  to {
    width: 100%;
  }
}
.select-custom__content {
  top: calc(100% + 15px);
  max-height: 60vh;
  min-width: 22rem;
  overflow: hidden;
  overflow-y: scroll;
  z-index: 7;
}
.select-custom.active .select-custom__content {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.select-collection-tab.active .select-custom__content {
  top: calc(100% + 2px);
}
:is(.horizontal-filter collapsible-block, .select-custom).active
  .active-rotated {
  transform: rotate(-180deg);
}
.pagination__item--current {
  color: var(--btn-primary-color);
  background-color: var(--btn-primary-bg-color);
  border-color: var(--btn-primary-bg-color);
}
.loading .loading-overlay {
  opacity: 0.7;
  visibility: visible;
}
body.loading::after {
  background: var(--color-primary);
  content: "";
  height: 3px;
  left: 0;
  opacity: 1;
  position: absolute;
  top: 0;
  width: 0;
  z-index: 11;
  animation: al-loading 1s cubic-bezier(0.43, 0.27, 0.36, 0.83) forwards;
  transition: width 1s linear, opacity 0.35s linear 0.35s;
}
body.loading.finish::after {
  width: 100%;
  animation: al-loading-finish 0.3s cubic-bezier(0.43, 0.27, 0.36, 0.83)
    forwards;
}
/* Start customer style */
.customer-forgot#recover {
  display: none;
}

.customer-forgot#recover:target {
  display: block;
}

.customer-forgot#recover:target + .customer-login {
  display: none;
}

.form-group textarea,
.form-group input {
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.subtext {
  margin-bottom: 1rem;
}

.subtext.mb-20 {
  margin-bottom: 2rem;
}

.bls__tab-header > div,
.bls-login-popup {
  display: none;
}

.bls__tab-header > div[aria-hidden="false"],
.bls-login-popup[aria-hidden="false"] {
  display: block;
}

label.form-label {
  color: var(--color-link);
}

.title-customer {
  --font-h3: 2.4rem;
  font-size: clamp(2rem, 3vw, var(--font-h3));
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.forget-password,
.link-forgot {
  color: rgb(var(--base-color));
}

@media (min-width: 1024px) {
  [class*="customer-"] .row {
    --bs-gutter-x: 8rem;
  }
}
.open-drawer .bls__drawer.open {
  transform: translate(0);
  opacity: 1;
  visibility: visible;
}
.show-overlay::after {
  content: "";
  background: var(--show-overlay-bg, rgba(255, 255, 255, 0.9));
  opacity: 0;
  position: fixed;
  transition: var(--transition);
  visibility: hidden;
  bottom: 0;
  left: 0;
  right: 0;
  top: 0;
  z-index: 9;
}
.open.show-overlay::after {
  opacity: 1;
  visibility: visible;
}
.toast {
  opacity: 0;
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  text-align: center;
  border-radius: 2px;
  position: fixed;
  z-index: 999999;
  top: 3rem;
  right: 3rem;
  font-size: 17px;
  white-space: nowrap;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.toast.show {
  visibility: visible;
  opacity: 1;
}
.show-tooltip {
  overflow: visible;
}
.show-tooltip:not(.reveal_on_scroll) .swiper-slide:not(.swiper-slide-visible) {
  opacity: 0;
  pointer-events: none;
}
body .swiper-button-next.swiper-button-disabled,
body .swiper-button-prev.swiper-button-disabled {
  pointer-events: auto;
}

.error-message a{
   color: red;
   text-decoration: none;
}
/* idea product */
.btn-idea:hover{
  transition: var(--transition);
  -webkit-transition: var(--transition);
}
.idea-product-list{
  --color-text: #444444;
  --color-heading: #111111;
  min-width: 390px;
  max-width: 100%;
  bottom: 3rem;
  left: 3rem;
  border-radius: var(--rounded-radius);
  top: auto;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.3s;
  transform: translateY(3rem);
}

.idea-product.active .idea-product-list{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.idea-product-list .close svg {
  color: var(--color-text);
}
@media (min-width: 1200px) {
  .products-idea-limit .idea-product-list{
    min-width: unset;
    right: 3rem;
  }
}
@media (max-width: 1199.98px) {
  .idea-product-list{
    right: 2rem;
    left: 2rem;
    bottom: 2rem;
    min-width: auto;
  }
}
@media (min-width: 768px) {
  .btn-idea{
    --btn-padding-x: 3rem;
  }
  .ins-grid-moderm > a:nth-child(1) {
    grid-column: 1 / span 2;
    grid-row: 1 / span 2;
  }
  .item-lookbook-one {
    max-width: 33rem;  
    margin: auto;
  }
}
.idea-product .idea-product-list_header{
  padding: 0 2rem 1.7rem;
  margin-left: -2rem;
  margin-right: -2rem;
  line-height: 1;
}
.idea-product .close{
  transform: translateY(3px);
}
.idea-product .custom-scrollbar{
  max-height: 330px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  padding-inline-end: 0.2rem;
}
.idea-product  .idea-product-list .custom-scrollbar > div:not(:last-child){
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 1.5rem;
  margin-bottom: 1.5rem;
}
.idea-product .product-item__inner{
  max-width: 60px;
}
.idea-product .product-item__inner > a{
  border-radius: 5px;
}
@media (max-width: 1024.98px) {
  .idea-product-list{
    padding: 1.5rem;
  }
  .idea-product .idea-product-list_header{
    margin-left: -1.5rem;
    margin-right: -1.5rem;
  }
  .idea-product .custom-scrollbar{
    max-height: 200px;
  }
  .outfit-timer countdown-timer{
    gap: 5px;
  }
  .outfit-timer .count-timer{
    font-size: 2rem;
  }
}
@media (max-width: 767.98px) {
  .outfit_idea  .flex-cols > *{
    width: 100%;
  }  
  .idea-product .view_idea_product{
    right: 0;
    margin: auto;
    margin-bottom: 3rem;
  }
}
.view_idea_product{
   transition: var(--transition);
   width: max-content;
}
/* testimonial products style */

.testimonials_design-morden .testimonial_wraper{
  border: 0;
}
.testimonials_design-morden slide-section{
  max-width: 100%;
  margin: auto;
}
.testimonials_design-morden  .testimonial_info{
  width: 650px;
  max-width: 100%;
  margin: auto;
}
.testimonials_design-morden  .testimonial_info .testimonials-quote{
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.41;
  color: var(--color-heading);
}
.testimonials_design-morden  .testimonial_info  > div{
    padding:  0 1rem;
}
@media (min-width: 1024px) {
  .testimonials_design-morden  .testimonial_info .testimonials-quote{
    font-size: calc(var(--body-font-size) + 10px);
  }

}
/* testimonial style */
.testimonials_morden slide-section {
  width: 1030px;
  max-width: 100%;
  margin: auto;
}
.sec__testimonials .testimonial_wraper {
  background-color: var(--sec-testi-content-bg);
  border: none;
}
.testimonials_morden .testimonials-quote{
  font-family: var(--heading-font);
  color: var(--color-heading);
  font-size: 3rem;
  font-weight: 400;
  margin-bottom: 2rem;
}
.testimonials_morden .rate-info{
  display: flex;
  flex-direction: column-reverse; 
}
.testimonials_morden .testimonial_wraper{
  gap: 0;
}
.testimonials_morden .testimonials-rating{
  margin: 0 0 1.5rem;
}
.testimonials_morden .testimonials-group{
  margin: 0;
}
.testimonials_morden .author-infor{
  gap: 1.5rem;
}
.testimonials_morden .icon-quote{
  margin-bottom: 5px;
}
@media (max-width: 767.98px) {
  .testimonials_morden .testimonials-quote{
    font-size: 2rem;
  }
}

/* products-grid banner */
.product-grid__banner-content{
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem;
  pointer-events: none;
}
.banner-content-inner{
  pointer-events: auto;
}
@media (min-width: 768px) {
  .product-grid__banner-content [class*="btn-"] {
    --btn-padding-x: 4.6rem;
  }
}
@media (min-width: 1200px) {
  .product-grid__banner-content .sec__content-heading{
    font-size: 4rem;
  }
}

/* comparison-slider */
.sec__image-comparison-slider .img-container  .align-self-start{
  align-self: unset;
  display: flex;
  flex-direction: column;
}
.sec__image-comparison-slider .img-container  .align-self-start .testimonial-product_comparison{
  margin-top: auto;
}
.sec__image-comparison-slider .testimonial-product_comparison .product-item__wrapper{
  background-color: var(--grey-color);
  border-radius: var(--rounded-radius);
  overflow: hidden;
}
.sec__image-comparison-slider .testimonial-product_comparison .product__media{
  border-radius: 0;
  aspect-ratio: 3/4 !important;
}
@media (min-width: 992px) {
  .sec__image-comparison-slider .col-md-w-custom {
      flex: 0 0 auto;
      width: var(--col-width, 50%);
  }
}
@media (max-width: 991.98px) {
  .sec__image-comparison-slider .col-md-w-custom {
      flex: 0 0 auto;
      width: 100%;
  }
}
/* testimonial */

.testi-classic .author-image-classic {
  border: 2px solid #e5e051;
  background-color: var(--color-white);
}
.testi-classic .heading-style {
  font-size: calc(var(--body-font-size) + 6px);
}
.testimonials-title {
  font-size: calc(var(--body-font-size) + 4px);
} 
/* blog */
.sec__blog-post .blog-posts-main.morden .blog-posts-info{
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 2rem;
}
.sec__blog-post .blog-posts-main.morden .blog-posts-info *{
  color: white;
}
.sec__blog-post .blog-posts-main.morden .blog-posts-category {
  position: static;
}
.sec__blog-post .blog-posts-main.morden .blog-posts-category a{
  background: transparent;
}
.sec__blog-post .blog-posts-image >a:after {
  content: "";
  background: linear-gradient(180deg, #0000 20%, #00000085);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
  pointer-events: none;
  z-index: 2;
  border-radius: var(--rounded-radius, 0);
}
.blog-list .blog-posts-category {
  position: static; 
}
@media (min-width: 768px) and (max-width: 1024px) {
  #blog-articles:is(.grid-cols, .flex-cols) {
      --col: var(--col-desktop-small, var(--col-tablet));
  }
}
@media (max-width: 1024px) {
  #blog-articles .blog-posts-category >a {
    padding: 3px 6px;
  }
}
.no-preload.swiper-slide picture {
  animation: none;
  transform: scale(1);
}

.swiper-slide-active picture {
  animation: zoomOutimage 1s ease;
  transform: scale(1);
  transition: all 1s ease;
}
.swiper-slide-prev picture, .swiper-slide-next picture {
  transform: scale(1);
}

@keyframes zoomOutimage {
  0% {
    transform: scale(1.08); 
  }
  100% {
    transform: scale(1); 
  }
}


image-tabs .rounded{
  overflow: revert;
  border-radius: var(--rounded-radius);
}
image-tabs  .banner__media {
  overflow: hidden;
}
.preload-page {
  background-color: #fff;
  z-index: 9999;
  opacity: 1;
  left: 0;
  top: 0;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  height: 100vh;
  width: 100vw;
  position: fixed;
  display: flex;
}
.preload-screen-loading-bar {
  width: 13rem;
  height: 0.2rem;
  border-radius: 0.2rem;
  background-color: #ebebeb;
  overflow: hidden;
  position: relative;
  display: block;
}
.preload-screen-loading-bar::after {
  content: '';
  height: 100%;
  width: 6.8rem;
  position: absolute;
  transform: translate(-3.4rem);
  background-color: #212326;
  border-radius: 0.2rem;
  animation: initial-loading 1s ease infinite;
}
@keyframes initial-loading {
  0% {
    transform: translate(-6.8rem);
  }
  100% {
    transform: translate(13rem);
  }
}
@keyframes pageTransitionSpinner {
  0% {
    -webkit-transform: rotate3d(0, 0, 1, 0deg);
    transform: rotate3d(0, 0, 1, 0deg);
  }

  25% {
    -webkit-transform: rotate3d(0, 0, 1, 90deg);
    transform: rotate3d(0, 0, 1, 90deg);
  }
  50% {
    -webkit-transform: rotate3d(0, 0, 1, 180deg);
    transform: rotate3d(0, 0, 1, 180deg);
  }
  75% {
    -webkit-transform: rotate3d(0, 0, 1, 270deg);
    transform: rotate3d(0, 0, 1, 270deg);
  }
  100% {
    -webkit-transform: rotate3d(0, 0, 1, 360deg);
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
.preload-screen-spinner {
  --loading-size: 80px;
  --loading-color: #bbbbbb;
  animation: pageTransitionSpinner 1.5s linear infinite;
  width: var(--loading-size);
  height: var(--loading-size);
  border-radius: 50%;
  box-shadow: 0 2px 0 0 var(--loading-color);
  transform-origin: calc(var(--loading-size) / 2)
    calc(var(--loading-size) / 2 + 1px);
}
.appstle_manageSubBtn ~ br,
.appstle_manageSubBtn {
  display: none;
}
.sec__icon-content-box {
  background-color: var(--sec-icon-content-bg);
  border-radius: var(--rounded-radius);
}
.outfit-item {
  width: 28rem;
}
.outfit-item .product-item__wrapper {
  padding: 1rem;
  --col-width: 7rem;
  border-radius: var(--rounded-radius,3px);
}
.outfit-item .product-item__wrapper  .fs-custom ,
.outfit-item .product-item__wrapper .product-item__price {
  font-size:14px;
}
.collection-tab__tab-item.mx-20:first-child{
  margin-left: 0;;
}
.collection-tab__tab-item.mx-20:last-child {
  margin-right: 0;
}
/* Center Viva Reviews star badge/rating on product page */
.viva_reviews_product_reviews_viva_star_liquid,
.review-product.inline-loading,
.product__title + div, /* fallback if class not exact */
.caption-with-letter-spacing { /* common for rating text */
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  text-align: center !important;
  width: 100% !important;
  margin: 10px auto !important; /* adds spacing and centers */
}

/* If the parent wrapper is left-aligned */
.product__info-container,
.product__title-wrapper {
  text-align: center !important;
}

/* Mobile responsive */
@media screen and (max-width: 749px) {
  .viva_reviews_product_reviews_viva_star_liquid,
  .review-product.inline-loading {
    font-size: 1.2rem !important; /* slightly smaller on mobile if needed */
  }
}
/* Hide "View Full Details" link on product cards (collection/homepage) */
.product-card__link,
.product__card .link,
.product-item__action .link,
.product__action-animation .link,
.card__heading + .link, /* fallback */
.product__title + .link {
  display: none !important;
}

/* Optional: Hide the entire actions wrapper if empty */
.product-item__action:empty,
.product__action-animation:empty {
  display: none !important;
}
/* Hide "View Full Details" link on product cards in collections/homepage */
.product-card .product-card__actions .link,
.product-card .product-card__title + .link,
.product-card .caption,
.product-card .view-details {
  display: none !important;
}

/* Optional: Remove extra spacing left behind */
.product-card__actions {
  margin-top: 0 !important;
}
/* Hide "View Full Details" button on product page */
.mt-25.product-singe__view-all-button,
a[aria-label="View Full Details"],
.product-singe__view-all-button {
  display: none !important;
}
/* Move product title slightly to the right */
.product-detail__title,
h2.product-detail__title.heading-letter-spacing {
  margin-left: 40px !important;  /* Adjust 20px to your liking: 15px, 25px, 30px, etc. */
  padding-left: 0 !important;    /* Optional: if there's existing padding */
}

/* Optional: Center on mobile but right-aligned on desktop */
@media (min-width: 768px) {
  .product-detail__title {
    margin-left: 30px !important;
  }
}.product-detail__title {
  padding-left: 0px !important;
  text-align: center !important;
}
/* Center the price on product page */
.price.heading_weight,
span.price.price-same-style,
.product__price,
.price--special,
.price {
  display: block !important;       /* Ensures it behaves like a block for centering */
  text-align: center !important;   /* Centers the text */
  margin: 15px auto !important;    /* Adds vertical spacing and centers horizontally */
  width: fit-content !important;   /* Prevents full-width stretch */
}

/* Optional: Make price larger and bolder for emphasis */
.price.heading_weight.primary-color {
  font-size: 36px !important;      /* Bigger price (adjust 32–42px) */
  font-weight: bold !important;
}

/* Center the entire price wrapper if needed */
.product__price-wrapper,
.product-form__price {
  text-align: center !important;
}
/* Increase product title size */
.product-detail__title,
h2.product-detail__title.heading-letter-spacing {
  font-size: 34px !important;   /* Change to 36px, 40px, 42px etc. as you like */
  line-height: 1.2 !important;  /* Keeps spacing nice */
}

/* Optional: Make it even bolder */
.product-detail__title {
  font-weight: 700 !important;
}

/* Mobile adjustment (smaller on phones) */
@media (max-width: 767px) {
  .product-detail__title {
    font-size: 32px !important;  /* Smaller on mobile */
  }
}
/* Keep title in one line if possible, wrap overflow to next line at start */
.product-detail__title,
h2.product-detail__title.heading-letter-spacing {
  white-space: normal !important;     /* Allows wrapping */
  word-wrap: break-word !important;   /* Breaks long words if needed */
  overflow-wrap: break-word !important;
  text-align: left !important;        /* Aligns wrapped lines to the left/start */
  margin-left: 20px !important;       /* Your slight right shift */
  padding-left: 0 !important;
  max-width: 100% !important;         /* Fits container */
  line-height: 1.2 !important;        /* Nice spacing between lines */
}

/* Optional: More right shift on desktop */
@media (min-width: 768px) {
  .product-detail__title {
    margin-left: 30px !important;
  }
}

/* Mobile: Tighter if needed */
@media (max-width: 767px) {
  .product-detail__title {
    margin-left: 15px !important;
    font-size: 32px !important;  /* Smaller on mobile to reduce wrapping */
  }
}
/* Align color swatches to the same left position as the product title */
.product__color-swatches,
.variant-picker,
.product-form__input--swatches,
.product-form__inputs .product-form__input,
.product__color-swatch-wrapper {
  display: flex !important;
  justify-content: flex-start !important;  /* Align to left/start */
  align-items: center !important;
  gap: 15px !important;                    /* Space between swatches */
  margin: 20px 0 !important;
  padding-left: 20px !important;           /* Match title's margin-left (adjust to 30px on desktop if needed) */
  width: fit-content !important;
}

/* Desktop: Match larger title margin */
@media (min-width: 768px) {
  .product__color-swatches,
  .variant-picker {
    padding-left: 30px !important;         /* Matches your title's desktop margin */
  }
}

/* Make swatches slightly larger for better clickability */
label.product__color-swatch {
  width: 50px !important;
  height: 50px !important;
}
/* Move "Color:" label and swatches slightly to the right */
.variant-picker__label,
.product-form__input label[for*="Color"], /* Targets "Color:" label */
.product__color-swatches-wrapper,
.product-form__input--swatches,
.variant-picker {
  margin-left: 20px !important;   /* Slight move right — adjust 15px, 25px, 30px as needed */
  padding-left: 0 !important;
}

/* Optional: More on desktop */
@media (min-width: 768px) {
  .variant-picker__label,
  .product-form__input--swatches {
    margin-left: 30px !important;
  }
}

/* Keep swatches centered within their row but shifted overall */
.product__color-swatches {
  justify-content: flex-start !important; /* Align swatches left within the shifted space */
}
/* Align "Color:" label and swatches to same left start as title */
.variant-picker__label,
.product-form__input label, /* Targets "Color:" text */
.product__color-swatches-wrapper,
.product-form__input--swatches,
.variant-picker,
.product-form__input {
  display: flex !important;
  flex-direction: column !important; /* Label above swatches */
  align-items: flex-start !important; /* Align to left/start */
  justify-content: flex-start !important;
  margin-left: 20px !important;      /* Exact match to title's margin-left */
  padding-left: 0 !important;
  text-align: left !important;
  gap: 10px !important;              /* Space between label and swatches */
}

/* Swatches row: Left-aligned */
.product__color-swatches {
  display: flex !important;
  justify-content: flex-start !important;
  gap: 15px !important;
}

/* Desktop: Match larger title margin */
@media (min-width: 768px) {
  .variant-picker__label,
  .product-form__input--swatches,
  .variant-picker {
    margin-left: 30px !important;    /* Matches title's desktop shift */
  }
}

/* Optional: Larger swatches */
label.product__color-swatch {
  width: 50px !important;
  height: 50px !important;
}
/* Increase space between product title and next row (price/color/etc.) */
.product-detail__title,
h2.product-detail__title.heading-letter-spacing {
  margin-bottom: 30px !important;   /* Adjust: 25px for less, 40px for more space */
  padding-bottom: 10px !important;  /* Optional extra gap */
}

/* Optional: More space on desktop only */
@media (min-width: 768px) {
  .product-detail__title {
    margin-bottom: 40px !important;
  }
}

/* Mobile: Slightly less to save space */
@media (max-width: 767px) {
  .product-detail__title {
    margin-bottom: 25px !important;
  }
}
/* Align price to same left start as product title */
.product__price,
.price,
.product-form__price,
.price.heading_weight,
span.price.price-same-style {
  display: block !important;
  text-align: left !important;         /* Align text left */
  margin-left: 20px !important;        /* Exact match to title's margin-left */
  margin-top: 15px !important;         /* Spacing from title */
  padding-left: 0 !important;
  width: fit-content !important;
}

/* Desktop: Match larger title margin */
@media (min-width: 768px) {
  .product__price,
  .price {
    margin-left: 30px !important;      /* Matches title's desktop shift */
  }
}

/* Optional: Larger price for emphasis */
.product__price .price {
  font-size: 36px !important;         /* Bigger price (adjust 32–40px) */
}
/* Center price to match title alignment */
.product__price,
.price.heading_weight,
span.price.price-same-style,
.price--special,
.product-form__price {
  display: block !important;
  text-align: center !important;      /* Centers the text */
  justify-content: center !important;
  margin: 20px auto !important;       /* Vertical spacing + horizontal center */
  width: fit-content !important;      /* Prevents full-width */
  font-size: 36px !important;         /* Optional: Larger for emphasis */
}

/* Center the entire price wrapper if needed */
.product__info-wrapper,
.product-form__info,
.product__tax,
.card-information {
  text-align: center !important;
}

/* Mobile adjustment */
@media (max-width: 767px) {
  .product__price {
    font-size: 32px !important;
    margin: 15px auto !important;
  }
}
/* Force quantity row to end, then Add to Cart on new full row */
.product-form__input--quantity,
.product-form__quantity,
.quantity__wrapper,
.quantity {
  display: block !important;
  width: 100% !important;
  margin-bottom: 25px !important;   /* Space below quantity before button */
  text-align: center !important;    /* Centers quantity if needed */
}
/* Move "SHOP NOW" button to the right */
.button_raise.btn-primary,
a.button_raise.inline-flex.no-underline.btn-primary {
  margin-left: auto !important;     /* Pushes button to the right in flex container */
  margin-right: 0 !important;
  display: inline-flex !important;   /* Ensures flex behavior */
}

/* If parent container isn't flex, force it (common fix) */
.button_raise.btn-primary:parent,
.product-card__actions,
.card__action,
.product__actions {
  display: flex !important;
  justify-content: flex-end !important;  /* Aligns button to right */
  width: 100% !important;
}


/* Move SHOP NOW button slightly to the right */
.sec__content-btn {
  justify-content: flex-start;
}

.sec__content-btn a {
  margin-left: 40px;
}
.sec__content-btn a {
  margin-left: 60px;
}
@media (min-width: 768px) {
  .sec__content-btn {
    justify-content: flex-start;
  }

  .sec__content-btn a {
    margin-left: 60px;
  }
}
/* =====================================
   Milano – Decrease color swatch size
   ===================================== */

.product-form__input_color .product__color-swatch {
  width: 14px;
  height: 14px;
  min-width: 14px;
  min-height: 14px;
}

.product-form__input_color .swatch-large {
  width: 14px;
  height: 14px;
}
/* === Product color swatches: force single row === */
.product-form__input_color {
  display: flex !important;
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 12px;
}

.product-form__input_color .form__label {
  width: 100%;
  margin-bottom: 8px;
}

.product-form__input_color label.product__color-swatch {
  display: inline-flex !important;
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
}
.product-form__input_color {
  flex-direction: row !important;
}
/* === Bigger color swatch icons === */
.product-form__input_color label.product__color-swatch {
  width: 64px !important;
  height: 64px !important;
  min-width: 64px !important;
  min-height: 64px !important;
}
.product-form__input_color input:checked + label {
  box-shadow: 0 0 0 3px #000;
}
/* Align Color label with product title */
.product-detail__variant-picker {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.product-detail__variant-picker .form__label {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

/* Remove extra offset added by fieldset */
.product-form__input_color {
  margin-left: 0 !important;
  padding-left: 0 !important;
}
/* === Color label + swatches on same row === */
.product-detail__variant-picker fieldset {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 20px !important;
}

/* Left side: "Color: Gold" */
.product-detail__variant-picker .form__label {
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Right side: swatches container */
.product-detail__variant-picker .product__color-swatch {
  margin: 0 !important;
}

/* Ensure swatches stay in one row */
.product-form__input_color {
  flex-wrap: nowrap !important;
}
/* ===== Color label + swatches aligned under title ===== */
.product-detail__variant-picker fieldset.product-form__input_color {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 16px !important;
  margin-top: 8px;
}

/* Color text */
.product-detail__variant-picker .form__label {
  margin: 0 !important;
  padding: 0 !important;
  width: auto !important;
  white-space: nowrap;
}

/* Swatches wrapper */
.product-detail__variant-picker 
.product__color-swatches--js {
  display: inline-flex !important;
  gap: 12px !important;
}

/* Swatch size */
.product-detail__variant-picker .product__color-swatch {
  width: 48px !important;
  height: 48px !important;
  border-radius: 50%;
}
/* Hide Color text label */
.product-detail__variant-picker .form__label {
  display: none !important;
}
/* Shift entire swatch group right */
.product-detail__variant-picker fieldset.product-form__input_color {
  padding-left: 20px;
}
/* Align color swatches with product title */
.product-detail__variant-picker {
  padding-left: 0;
}

.product-detail__variant-picker fieldset.product-form__input_color {
  margin-left: 0;
  padding-left: 0;
}
/* Move color icons right to match title start */
.product-detail__variant-picker .product__color-swatch {
  margin-left: 12px;
}

.product-detail__variant-picker .product__color-swatch:first-child {
  margin-left: 0;
}
/* Product title */
.product__title,
.product__title h1 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0.2px;
  margin-bottom: 14px;
}

/* Mobile */
@media (max-width: 768px) {
  .product__title,
  .product__title h1 {
    font-size: 24px;
  }
}
/* Main price */
.price-item--sale,
.price-item--regular {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Compare at price */
.price-item--compare {
  font-size: 14px;
  opacity: 0.6;
  margin-left: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .price-item--sale,
  .price-item--regular {
    font-size: 22px;
  }
}
/* Color swatches wrapper */
.product-form__input_color {
  margin-top: 6px;
}

/* Swatch icons */
.product__color-swatch {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #e6e6e6;
  margin-right: 10px;
}

/* Active swatch */
.product__color-swatch[aria-checked="true"],
.product__color-swatch.active {
  border-color: #000;
}

/* Mobile */
@media (max-width: 768px) {
  .product__color-swatch {
    width: 44px;
    height: 44px;
  }
}
/* Hide color label text */
.product-form__input_color .form__label {
  display: none;
}
/* Quantity text */
.product-form__quantity label,
.quantity__label {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.2px;
  margin-bottom: 8px;
}
/* Add to cart button */
.product-form__submit,
button[name="add"] {
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  border-radius: 999px;
  padding: 16px 24px;
}
@media (max-width: 768px) {
  .product__title,
  .product__title h1 {
    font-size: 23px;
    line-height: 1.35;
    font-weight: 600;
    margin-bottom: 12px;
  }
}
@media (max-width: 768px) {
  .price-item--sale,
  .price-item--regular {
    font-size: 21px;
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  .price-item--compare {
    font-size: 13px;
    opacity: 0.55;
  }
}
@media (max-width: 768px) {
  .product-form__input_color {
    margin-top: 10px;
    margin-bottom: 16px;
  }

  .product__color-swatch {
    width: 46px;
    height: 46px;
    margin-right: 12px;
  }
}
@media (max-width: 768px) {
  .product-form__quantity,
  .quantity__wrapper {
    margin-top: 20px;
  }

  .quantity__label {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media (max-width: 768px) {
  .product-form__submit,
  button[name="add"] {
    font-size: 15px;
    font-weight: 600;
    padding: 16px 22px;
    letter-spacing: 0.6px;
  }
}
/* Homepage product card title */
.template-index .card__heading,
.template-index .card__heading a {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.2px;
  margin-bottom: 6px;
}

/* Mobile */
@media (max-width: 768px) {
  .template-index .card__heading,
  .template-index .card__heading a {
    font-size: 16px;
  }
}
/* Homepage product price */
.template-index .price-item--sale,
.template-index .price-item--regular {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Compare price */
.template-index .price-item--compare {
  font-size: 13px;
  opacity: 0.55;
  margin-left: 4px;
}

/* Mobile */
@media (max-width: 768px) {
  .template-index .price-item--sale,
  .template-index .price-item--regular {
    font-size: 16px;
  }
}
/* Card spacing cleanup */
.template-index .card__information {
  padding-top: 12px;
}

.template-index .card__content {
  row-gap: 6px;
}
/* Homepage swatches */
.template-index .product__color-swatch {
  width: 22px;
  height: 22px;
  margin-right: 6px;
  border-width: 1.5px;
}

/* Active swatch */
.template-index .product__color-swatch.active {
  border-color: #000;
}
/* Subtle hover effect */
.template-index .card-wrapper:hover .card__heading a {
  opacity: 0.85;
}
/* Product page spacing */
.product,
.product__info-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}
.product__title,
.product__title h1 {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: -0.3px;
  line-height: 1.15;
  margin-bottom: 12px;
}

/* Mobile */
@media (max-width: 768px) {
  .product__title,
  .product__title h1 {
    font-size: 26px;
    line-height: 1.25;
  }
}
.price-item--sale,
.price-item--regular {
  font-size: 28px;
  font-weight: 600;
  letter-spacing: -0.2px;
}

.price-item--compare {
  font-size: 14px;
  opacity: 0.5;
  margin-left: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .price-item--sale,
  .price-item--regular {
    font-size: 22px;
  }
}
/* Swatches container */
.product-form__input_color {
  margin-top: 18px;
  margin-bottom: 24px;
}

/* Swatch icons */
.product__color-swatch {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid #d9d9d9;
  margin-right: 14px;
  transition: all 0.2s ease;
}

/* Active swatch */
.product__color-swatch.active,
.product__color-swatch[aria-checked="true"] {
  border-color: #000;
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 768px) {
  .product__color-swatch {
    width: 38px;
    height: 38px;
  }
}
/* Remove labels and borders */
.product-form__input_color .form__label,
.product__tax,
.shopify-payment-button__more-options {
  display: none;
}
.quantity__label {
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  margin-bottom: 10px;
}
.product-form__submit,
button[name="add"] {
  background: #000;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 999px;
  padding: 18px 32px;
  letter-spacing: 0.5px;
  transition: all 0.2s ease;
}

.product-form__submit:hover {
  opacity: 0.9;
}
/* Align Add to Cart with Product Title */
.product__info-wrapper .product-form__buttons {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Ensure button itself is aligned */
.product__info-wrapper .product-form__submit,
.product__info-wrapper button[name="add"] {
  margin-left: 0 !important;
  padding-left: 32px; /* keeps button padding only */
}
@media (max-width: 768px) {
  .product__info-wrapper .product-form__buttons {
    padding-left: 0 !important;
  }
}
/* Force product form content to align left */
.product__info-wrapper,
.product__info-wrapper * {
  text-align: left;
}

/* Quantity wrapper alignment */
.product__info-wrapper .quantity,
.product__info-wrapper .quantity__wrapper {
  margin-left: 0 !important;
  justify-content: flex-start !important;
}

/* Quantity label */
.product__info-wrapper .quantity__label {
  text-align: left;
  margin-left: 0;
}

/* Add to cart container */
.product__info-wrapper .product-form__buttons {
  justify-content: flex-start !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Add to cart button itself */
.product__info-wrapper .product-form__submit,
.product__info-wrapper button[name="add"] {
  margin-left: 0 !important;
  align-self: flex-start;
  max-width: 100%;
}
/* Quantity selector – smaller size */
quantity-input.quantity {
  height: 32px;
  border-radius: 999px;
}

/* Minus & Plus buttons */
quantity-input .quantity__button {
  --custom-width: 26px !important;
  min-width: 26px;
  height: 32px;
}

/* Quantity number input */
quantity-input .quantity-input {
  --input-height: 32px !important;
  --custom-width: 22px !important;
  font-size: 14px;
}

/* SVG icons smaller */
quantity-input svg {
  width: 5px;
  height: 7px;
}
/* FORCE smaller quantity selector */
quantity-input.quantity {
  --custom-width: 36px !important;
  --input-height: 40px !important;
  height: 40px;
}

/* Minus & Plus buttons */
quantity-input.quantity .quantity__button {
  width: 36px !important;
  min-width: 36px !important;
  height: 40px !important;
  padding: 0 !important;
}

/* Number input */
quantity-input.quantity input.quantity-input {
  width: 32px !important;
  height: 40px !important;
  font-size: 14px !important;
  line-height: 40px;
}

/* Icons */
quantity-input.quantity svg {
  width: 10px;
  height: 10px;
}
/* Home product card: quantity + add to cart in one row */
.product-form__buttons,
.product-card__buttons,
.featured-product form {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Quantity smaller */
.product-form__buttons quantity-input,
.product-card__buttons quantity-input {
  flex: 0 0 auto;
}

/* Add to cart beside quantity */
.product-form__buttons button[type="submit"],
.product-card__buttons button[type="submit"] {
  flex: 1;
  height: 48px;
  border-radius: 999px;
  white-space: nowrap;
}
/* === HOME PRODUCT CARD: Quantity + Add to Cart SAME ROW === */
.product-form {
  display: flex;
  flex-direction: column;
}

/* Force quantity + submit into one row */
.product-form quantity-input,
.product-form .product-form__submit {
  display: inline-flex;
}

/* Wrap them visually into one row */
.product-form quantity-input {
  margin-right: 12px;
}

/* Button sizing */
.product-form__submit {
  flex: 1;
  height: 48px;
  border-radius: 999px;
  white-space: nowrap;
}

/* Quantity smaller */
.product-form quantity-input {
  height: 48px;
  align-items: center;
}
/* Remove full width stacking */
.product-form__submit.w-full {
  width: auto !important;
  min-width: 180px;
}
<div class="product-form__buttons">
  <quantity-input>
  <button>
</div>
.product-form__buttons {
  display: flex !important;
  align-items: center;
  gap: 12px;
}
/* Inline quantity + add to cart */
.buy-inline-row {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
}

/* Quantity should not stretch */
.buy-inline-row .product-form__quantity {
  flex: 0 0 auto;
}

/* Add to cart should take remaining space */
.buy-inline-row .button_buy-now {
  flex: 1;
}

/* Button height match quantity */
.buy-inline-row .product-form__submit {
  width: 100%;
  height: 48px;
  white-space: nowrap;
  border-radius: 999px;
}
/* Featured product inline layout ONLY */
[data-type-element="feature_product"] .buy-inline-row {
  display: flex;
  align-items: center;
  width: 100%;
  flex-wrap: nowrap;
}
[data-type-element="feature_product"] .product-form__quantity {
  flex: 0 0 auto;
}

[data-type-element="feature_product"] quantity-input {
  height: 48px;
  border-radius: 10px;
}

[data-type-element="feature_product"] .quantity__button {
  width: 44px !important;
  height: 48px;
  border-radius: 10px;
}

[data-type-element="feature_product"] .quantity-input input {
  width: 42px !important;
  height: 48px;
  font-size: 16px;
}
[data-type-element="feature_product"] .button_buy-now {
  flex: 1;
}

[data-type-element="feature_product"] .product-form__submit {
  width: 100%;
  height: 48px;
  border-radius: 999px;
  white-space: nowrap;
}
[data-type-element="feature_product"] .product__submit-form {
  padding-left: 0;
}

[data-type-element="feature_product"] .product-form__buttons {
  margin-left: 0;
}
[data-type-element="feature_product"] .product__submit-form {
  position: sticky;
  bottom: 20px;
  background: var(--color-background);
  padding: 15px;
  border-radius: 16px;
  z-index: 20;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  [data-type-element="feature_product"] .buy-inline-row {
    flex-direction: column;
    align-items: stretch;
  }

  [data-type-element="feature_product"] .product-form__submit {
    width: 100%;
  }
}
/* FORCE inline layout for homepage featured product */
[data-type-element="feature_product"] .product__submit-form-cart {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 12px;
}
[data-type-element="feature_product"] .product-form__quantity {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

[data-type-element="feature_product"] quantity-input {
  width: auto !important;
}
[data-type-element="feature_product"] .quantity__button {
  width: 44px !important;
  height: 48px !important;
  border-radius: 10px !important;
}

[data-type-element="feature_product"] .quantity-input input {
  width: 42px !important;
  height: 48px !important;
  font-size: 16px;
}
[data-type-element="feature_product"] .button_buy-now {
  flex: 1 1 auto !important;
  margin: 0 !important;
}

[data-type-element="feature_product"] .product-form__submit {
  width: 100% !important;
  height: 48px;
  border-radius: 999px;
}
[data-type-element="feature_product"] .product__submit-form {
  background: transparent !important;
  box-shadow: none !important;
  padding: 0 !important;
}
@media (max-width: 768px) {
  [data-type-element="feature_product"] .product__submit-form-cart {
    flex-direction: column !important;
  }
}
[data-type-element="feature_product"] 
.product-form__quantity > label,
[data-type-element="feature_product"] 
.product-form__quantity .btn-text-transform {
  display: none !important;
}
[data-type-element="feature_product"] 
.product__submit-form-cart {
  align-items: center !important;
}
[data-type-element="feature_product"] 
.product-form__quantity {
  margin-right: 12px !important;
}
[data-type-element="feature_product"] 
quantity-input,
[data-type-element="feature_product"] 
.quantity-input input,
[data-type-element="feature_product"] 
.quantity__button {
  height: 48px !important;
}
[data-type-element="feature_product"] 
quantity-input {
  border-radius: 12px !important;
}
/* === FORCE Quantity + Add to Cart Inline === */
.quantity-cart-row {
  display: flex !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: nowrap !important;
}

/* Quantity container */
.quantity-cart-row .product-form__quantity {
  max-width: 130px;
  flex: 0 0 auto;
}

/* Quantity input height */
.quantity-cart-row quantity-input {
  height: 44px;
}

/* Quantity buttons */
.quantity-cart-row .quantity__button {
  width: 40px !important;
  height: 44px !important;
}

/* Quantity number */
.quantity-cart-row .quantity-input {
  width: 40px !important;
  font-size: 14px;
}

/* Add to cart beside quantity */
.quantity-cart-row .button_buy-now {
  flex: 1;
}

.quantity-cart-row .product-form__submit {
  height: 44px;
  border-radius: 999px;
  padding: 0 24px;
  white-space: nowrap;
}
.product-form__quantity label,
.product-form__quantity .visually-hidden {
  display: none !important;
}
/* Align Quantity + Add to Cart to the LEFT */
.quantity-cart-row {
  justify-content: flex-start !important;
}

/* Move Quantity label to the left */
.product-form__quantity {
  text-align: left !important;
}

/* Fix Quantity label alignment */
.product-form__quantity + .button_buy-now,
.product-form__quantity {
  margin-left: 0 !important;
}

/* Optional: align everything with price/title */
.product__submit-form {
  justify-content: flex-start !important;
}
.product-form__quantity label,
.product-form__quantity .visually-hidden {
  display: none !important;
}
.quantity-cart-row {
  display: flex;
  justify-content: flex-start !important;
  align-items: center;
  width: 100%;
}

.product-form__quantity {
  flex: 0 0 auto;
}

.button_buy-now {
  flex: 1;
}

.button_buy-now button {
  width: 100%;
}
/* Fix price alignment in Featured Product */
.feature_product-center .price,
.feature_product-center .product__price,
.feature_product-center .price__container {
  text-align: left !important;
  justify-content: flex-start !important;
}

/* Fix quantity + add to cart row */
.feature_product-center .product-form__buttons,
.feature_product-center .product__submit-form-cart {
  justify-content: flex-start !important;
  align-items: center !important;
}
/* ================================
   FEATURED PRODUCT ALIGNMENT FIX
   ================================ */

/* Make title & price share same left edge */
.sec__featured-product .product__title,
.sec__featured-product .price,
.sec__featured-product .product__price {
  text-align: left !important;
  margin-left: 0 !important;
}

/* Force price container to align left */
.sec__featured-product .price__container {
  justify-content: flex-start !important;
}

/* Quantity + Add to Cart on same row */
.sec__featured-product .product__submit-form-cart {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 16px !important;
}

/* Prevent centering from section setting */
.feature_product-center .product-form__buttons,
.feature_product-center .product__submit-form-cart {
  justify-content: flex-start !important;
  text-align: left !important;
}

/* Keep button size correct */
.sec__featured-product .product-form__submit {
  width: auto !important;
  min-width: 220px;
}
/* FORCE quantity + add-to-cart on same row (Milano theme) */
form[data-type="add-to-cart-form"] {
  display: flex !important;
  align-items: center;
  gap: 12px;
}

form[data-type="add-to-cart-form"] quantity-input {
  flex: 0 0 auto;
}

form[data-type="add-to-cart-form"] button[name="add"] {
  width: auto !important;
  min-width: auto !important;
  white-space: nowrap;
}
[data-type="feature_product"] form[data-type="add-to-cart-form"]
/* MILANO FIX: force quantity + add-to-cart in same row */
.product__submit-form-cart {
  flex-wrap: nowrap !important;
  align-items: center;
}

/* Prevent Add to Cart from taking full width */
.product__submit-form-cart .product_submit_button {
  width: auto !important;
  min-width: auto !important;
  white-space: nowrap;
}

/* Keep quantity compact */
.product__submit-form-cart quantity-input {
  flex: 0 0 auto;
}
.section__header-heading {
  color: #000000; /* change to any color */
}
.subcribe-input {
  color: #000000;
}

.subcribe-input::placeholder {
  color: #000000;
}
.sec_newsletter_note {
  color: #000000;
}
.subcribe-button {
  background-color: #000000;
}
.sec__newsletter {
  color: #000000;
}
.section__header-heading {
  font-size: 30px;
}
.subcribe-input {
  font-size: 28px;
}
.subcribe-input::placeholder {
  font-size: 28px;
}
.subcribe-button {
  font-size: 18px;
}
.sec_newsletter_note {
  font-size: 22px;
}
.subcribe-button {
  background-color: #E7A94C; /* Gold */
  color: #000;              /* Text color */
  border-color: #E7A94C;
}
.testimonial_wraper .testimonials-quote p {
  font-size: 22px;   /* try 16–20px */
  line-height: 1.6;
}
/* Move price to the left */
.price-item.compare-price {
  display: block;
  text-align: left;
  margin-left: 0 !important;
}
.price {
  justify-content: flex-start !important;
}

.price__regular,
.price__sale {
  justify-content: flex-start !important;
  text-align: left;
}
/* Milano – force product price to align left */
.product__info,
.product__info * {
  text-align: left;
}

.product__info .price {
  justify-content: flex-start !important;
  text-align: left !important;
}

.product__info .price-item {
  margin-left: 0 !important;
}
.product__info .price__sale,
.product__info .price__regular {
  justify-content: flex-start !important;
  gap: 8px;
}
/* === Milano: align price exactly with product title === */

/* Normalize product info inner padding */
.product__info > * {
  padding-left: 0 !important;
}

/* Ensure title, price, and swatches share same start */
.product__info .product__title,
.product__info .price,
.product__info .variant-picker {
  margin-left: 0 !important;
  padding-left: 0 !important;
}

/* Price alignment */
.product__info .price {
  display: flex;
  justify-content: flex-start !important;
  text-align: left !important;
}

/* Compare price */
.product__info .price-item {
  margin-left: 0 !important;
}
.product__info .price-item--sale {
  font-weight: 700;
}
/* Move the whole swatch group right */
.product__color-swatches {
  padding-left: 20px;
}
/* Move color swatches to the right */
.product__color-swatches--js {
  margin-left: 20px; /* increase value to move more right */
}
/* === Localization: Flags only === */
.button-localization {
  font-size: 0; /* hide text */
  gap: 6px;
}

/* Keep arrow visible */
.button-localization svg {
  font-size: initial;
}

/* Flag base */
.button-localization::before {
  content: '';
  width: 24px;
  height: 16px;
  background-size: cover;
  background-position: center;
  border-radius: 2px;
  display: inline-block;
}

/* 🇺🇸 United States */
html[lang="en-US"] .button-localization::before {
  background-image: url("https://flagcdn.com/us.svg");
}

/* 🇨🇦 Canada */
html[lang="en-CA"] .button-localization::before {
  background-image: url("https://flagcdn.com/ca.svg");
}

/* 🇬🇧 United Kingdom */
html[lang="en-GB"] .button-localization::before {
  background-image: url("https://flagcdn.com/gb.svg");
}

/* 🇪🇺 Europe */
html[lang="en-EU"] .button-localization::before {
  background-image: url("https://flagcdn.com/eu.svg");
}
.button-localization::before {
  width: 28px;
  height: 18px;
}
/* Market flags */
.flag-svg {
  width: 28px;
  height: 20px;
  display: inline-block;
  background-size: cover;
  background-position: center;
  border-radius: 3px;
}

/* Active market */
[aria-current="true"] .flag-svg {
  outline: 2px solid #e7a94c;
}

/* US */
.flag-us {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 7410 3900'>\
<rect width='7410' height='3900' fill='%23b22234'/>\
<g fill='%23fff'>\
<rect y='300' width='7410' height='300'/>\
<rect y='900' width='7410' height='300'/>\
<rect y='1500' width='7410' height='300'/>\
<rect y='2100' width='7410' height='300'/>\
<rect y='2700' width='7410' height='300'/>\
<rect y='3300' width='7410' height='300'/>\
</g>\
<rect width='2964' height='2100' fill='%233c3b6e'/>\
</svg>");
}

/* UK */
.flag-gb {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'>\
<path d='M0 0h60v30H0z' fill='%23012169'/>\
<path d='M0 0l60 30M60 0L0 30' stroke='%23fff' stroke-width='6'/>\
<path d='M0 0l60 30M60 0L0 30' stroke='%23C8102E' stroke-width='4'/>\
<path d='M30 0v30M0 15h60' stroke='%23fff' stroke-width='10'/>\
<path d='M30 0v30M0 15h60' stroke='%23C8102E' stroke-width='6'/>\
</svg>");
}

/* Canada */
.flag-ca {
  background-image: url("data:image/svg+xml;utf8,\
<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 32'>\
<rect width='64' height='32' fill='%23fff'/>\
<rect width='16' height='32' fill='%23d52b1e'/>\
<rect x='48' width='16' height='32' fill='%23d52b1e'/>\
<path fill='%23d52b1e' d='M32 6l2 6 6-2-3 5 5 3-6 1 1 6-5-4-5 4 1-6-6-1 5-3-3-5 6 2z'/>\
</svg>");
}
/* Localization dropdown container */
.disclosure__list {
  width: 140px !important;
  min-width: unset !important;
  padding: 10px 0;
}

/* Remove default list spacing */
.disclosure__list ul {
  padding: 0;
  margin: 0;
}

/* Each country item */
.disclosure__item {
  display: flex;
  justify-content: center;
}

/* Flag link */
.disclosure__item a {
  padding: 8px 0 !important;
  width: 100%;
  display: flex;
  justify-content: center;
}

/* Flag size */
.flag-svg {
  width: 32px;
  height: 22px;
  border-radius: 4px;
}

/* Active flag highlight */
.disclosure__item a[aria-current="true"] .flag-svg {
  outline: 2px solid #e7a94c;
  outline-offset: 2px;
}
