/** Shopify CDN: Minification failed

Line 3122:0 Unexpected "}"

**/
/* Color custom properties */
:root {
  --alpha-button-background: 1;
  --alpha-button-border: 1;
  --alpha-link: 0.85;
  --alpha-badge-border: 0.1;
}

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

/* base CSS */

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

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

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

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

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

/*  page width   */

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

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

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

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

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

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

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

.element-margin {
  margin-top: 5rem;
}
:root {
  --duration-short: 0.1s;
  --duration-default: 0.2s;
  --duration-long: 0.5s;
}
.page-margin,
.shopify-challenge__container {
  margin: 7rem auto;
}

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

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

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

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

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

.overflow-hidden {
  overflow: hidden;
}

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

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

/* Heading Tag Style */
h1,
h2,
h3,
h4,
h5,
h6,
.h0,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-family: var(--font-heading-family);
  font-style: var(--font-heading-style);
  font-weight: var(--font-heading-weight);
  letter-spacing: var(--heading-letter-spacing, 0);
  color: rgb(var(--color-foreground));
  line-height: calc(1 + 0.3 / max(1, var(--font-heading-size)));
  margin: 0 0 15px;
  text-transform: var(--header-text-case);
}

.h0 {
  font-size: calc(var(--font-heading-size) * 3rem);
}

@media only screen and (min-width: 992px) {
  .h0 {
    font-size: calc(var(--font-heading-size) * 5rem);
  }
}

h1,
.h1 {
  font-size: calc(var(--font-heading-size) * 2.5rem);
}
@media only screen and (min-width: 750px) {
  h1,
  .h1 {
    font-size: calc(var(--font-heading-size) * 3.6rem);
  }
}

@media only screen and (min-width: 992px) {
  h1,
  .h1 {
    font-size: calc(var(--font-heading-size) * 4rem);
  }
}
h2,
.h2 {
  font-size: calc(var(--font-heading-size) * 2.5rem);
}

@media only screen and (min-width: 750px) {
  h2,
  .h2 {
    font-size: calc(var(--font-heading-size) * 3rem);
  }
}
@media only screen and (min-width: 992px) {
  h2,
  .h2 {
    font-size: calc(var(--font-heading-size) * 3.2rem);
  }
}

h3,
.h3 {
  font-size: calc(var(--font-heading-size) * 2.2rem);
}
@media only screen and (min-width: 750px) {
  h3,
  .h3 {
    font-size: calc(var(--font-heading-size) * 2.8rem);
  }
}

h4,
.h4 {
  font-size: calc(var(--font-heading-size) * 2rem);
}
@media only screen and (min-width: 750px) {
  h4,
  .h4 {
    font-size: calc(var(--font-heading-size) * 2.4rem);
  }
}

h5,
.h5 {
  font-size: calc(var(--font-heading-size) * 1.8rem);
}

@media only screen and (min-width: 750px) {
  h5,
  .h5 {
    font-size: calc(var(--font-heading-size) * 2rem);
  }
}

h6,
.h6 {
  font-size: calc(var(--font-heading-size) * 1.6rem);
}
/*  End Heading Tag Style */

/*  Others Common Style */
p {
  margin-top: 0;
  margin-bottom: 15px;
}
p:last-child {
  margin-bottom: 0;
}

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

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

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

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

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

.caption-large,
.customer .field input,
.customer select,
.field__input,
.form__label,
.select__select {
  font-size: 16px;
  line-height: 1.5;
}

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

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

table:not([class]) td,
table:not([class]) th {
  padding: 1em;
  border: 0.1rem solid rgba(var(--color-foreground), 0.2);
}
.error {
  color: red;
}
.hidden {
  display: none !important;
}

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

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

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

.link--text:hover {
  color: rgba(var(--color-base-text-link-hover)) !important;
}

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

@media screen and (min-width: 750px) {
  hr {
    margin: 7rem 0;
  }
}
.gradient--text strong {
  background: var(--accent-highlight-gradient);
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.placeholder {
  background-color: rgba(var(--placeholder-background));
  color: rgba(var(--placeholder-foreground), 0.85);
  fill: rgba(var(--placeholder-foreground), 0.85);
  position: relative;
}
.placeholder-svg-new {
  position: absolute;
  left: 0;
  height: 100%;
  top: 0;
  width: 100%;
  fill: currentColor;
}
details > * {
  box-sizing: border-box;
}

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

.visibility-hidden {
  visibility: hidden;
}

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

.customer a:hover {
  color: rgb(var(--color-link));
  text-decoration-thickness: 0.2rem;
}
a,
button {
  line-height: inherit;
  display: inline-block;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  font-family: var(--font-body-family);
}
/*  End Others Common Style */

/* Display: None css */

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

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

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

.d-none {
  display: none;
}
@media only screen and (max-width: 991px) {
  .d-md-none {
    display: none !important;
  }
}

@media only screen and (min-width: 992px) {
  .d-md-only-visible {
    display: none !important;
  }
}

@media only screen and (min-width: 750px) {
  .d-sm-only-visible {
    display: none !important;
  }
}

@media only screen and (max-width: 749px) {
  .d-sm-none {
    display: none !important;
  }
}
@media only screen and (max-width: 575px) {
  .d-xs-none {
    display: none !important;
  }
}

.d-block {
  display: block;
}
@media only screen and (min-width: 992px) {
  .d-md-block {
    display: block !important;
  }
}

@media only screen and (min-width: 750px) {
  .d-sm-block {
    display: block !important;
  }
}

@media only screen and (min-width: 575px) {
  .d-xs-block {
    display: block !important;
  }
}

@media only screen and (max-width: 991px) {
  .d-md-only-block {
    display: block !important;
  }
}

@media only screen and (max-width: 749px) {
  .d-sm-only-block {
    display: block !important;
  }
}
@media only screen and (max-width: 575px) {
  .d-xs-only-block {
    display: block !important;
  }
}

/* End Display: None css */

/* Text Align Center css */
.center {
  text-align: center;
}

.right {
  text-align: right;
}

.uppercase {
  text-transform: uppercase;
}
/* End Text Align Center css */

/* Details summary Css */
summary {
  cursor: pointer;
  list-style: none;
  position: relative;
}

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

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

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

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

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

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

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

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

input:focus {
  box-shadow: 0 0 5px 0px rgba(var(--color-foreground), 0.1);
}

*:focus-visible {
  box-shadow: 0 0 5px 0px rgba(var(--color-foreground), 0.1);
}

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

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

/*
  Focus ring - inset
*/

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

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

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

/*
  Focus ring - none
*/

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

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

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

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

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

.media--transparent {
  background-color: transparent;
}
.media
  > *:not(
    .zoom,
    .deferred-media__poster-button,
    .lookbook__shop--product-wrapper,
    quick-view-modal
  ),
.media model-viewer {
  display: block;
  max-width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.media > img {
  object-fit: cover;
  object-position: center center;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

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

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

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

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

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

deferred-media {
  display: block;
}

/* End component-media */

/* Button default style */
.button,
.customer button,
.shopify-challenge__button {
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  font-size: calc(var(--button-font-size) * 1.7rem);
  padding: 1rem 1.5rem;
  text-decoration: none;
  border: var(--button-border-width) solid transparent;
  background-color: rgba(var(--color-button), var(--alpha-button-background));
  color: rgb(var(--color-button-text));
  transition: box-shadow var(--duration-short) ease;
  -webkit-appearance: none;
  appearance: none;
  border-radius: var(--button-border-radius);
  letter-spacing: var(--button-letter-spacing);
  text-transform: var(--button-text-case);
  transition: 0.3s;
  position: relative;
}
.button:focus-visible {
  box-shadow: 0 0 0 0.1rem rgba(var(--color-button), var(--alpha-button-border)),
    0 0 0 0.3rem rgb(var(--color-background)),
    0 0 0.5rem 0.4rem rgba(var(--color-foreground), 0.3);
}
.button--primary:hover {
  background-color: rgba(var(--primary-button-hover-background));
  color: rgba(var(--primary-button-hover-text));
}
.button--secondary,
.button--tertiary {
  --color-button: var(--color-secondary-button);
  --color-button-text: var(--color-secondary-button-text);
}

.button--secondary {
  --alpha-button-background: 0;
  border-width: var(--button-border-width);
  border-color: rgba(var(--color-button-text), var(--alpha-button-border));
}

.button--tertiary {
  --alpha-button-background: 0;
  --alpha-button-border: 0.2;
}

.button--secondary:hover {
  background-color: rgba(var(--secondary-button-hover-background));
  color: rgba(var(--secondary-button-hover-text));
  border-color: rgba(var(--secondary-button-hover-background));
}
.button-label {
  font-size: 1.5rem;
  letter-spacing: 0.1rem;
  line-height: 1.2;
}

.button--tertiary {
  font-size: 1.2rem;
  padding: 1rem 1.5rem;
  min-width: 9rem;
  min-height: 3.5rem;
}
.button--large {
  padding-left: 5rem !important;
  padding-right: 5rem !important;
}
.button--medium {
  padding-left: 3.5rem !important;
  padding-right: 3.5rem !important;
}
.button--small {
  padding: 1rem 2rem;
}
.button--extra-small {
  font-size: 1.5rem;
  padding: 1rem 1.5rem;
}
.button--with-icon {
  align-items: center;
}
.button--icon {
  line-height: 0;
}
.button--icon-right {
  margin-left: 0.5rem;
}
.button--icon > svg {
  width: 2.2rem;
  display: inline-block;
}
.button--icon-left {
  margin-right: 0.5rem;
}
/* Button - other */

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

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

.button.loading,
button.loading {
  color: transparent !important;
}

.button.loading:after,
button.loading:after {
  animation: loading var(--duration-long) infinite linear;
  border: 2.5px solid rgba(var(--color-foreground));
  border-left: 2.5px solid transparent;
  border-radius: 100%;
  box-sizing: content-box;
  content: "";
  display: block;
  height: 20px;
  position: absolute;
  width: 20px;
  top: 5px;
  left: 5px;
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Button default style End */

/* component-form */
.field__input,
.select__select,
.customer .field input {
  -webkit-appearance: none;
  appearance: none;
  background-color: transparent;
  border: 0;
  border-radius: 0;
  color: rgb(var(--color-foreground));
  font-size: 1.6rem;
  width: 100%;
  box-shadow: 0 0 0 0.1rem rgba(var(--color-foreground), 0.55);
  height: 4.5rem;
  box-sizing: border-box;
  transition: box-shadow var(--duration-short) ease;
}

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

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

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

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

/* Select */

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

.select__select,
.customer select {
  cursor: pointer;
  line-height: 1.6;
  padding: 0 4rem 0 1.5rem;
}
.select_box {
  appearance: none;
  -webkit-appearance: none;
  height: 50px;
  padding: 0 20px;
  min-width: 200px;
  border-color: rgba(var(--color-foreground), 0.55);
  color: rgba(var(--color-foreground), 1);
  background: rgba(var(--color-background));
}
.select_box option {
  font-size: 16px;
}
select option[disabled] {
  background: #ddd;
}
/* Field */

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

.customer .field {
  display: block;
}

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

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

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

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

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

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

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

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

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

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

/* Text area */

.text-area {
  font-family: var(--font-body-family);
  font-style: var(--font-body-style);
  font-weight: var(--font-body-weight);
  padding: 1.2rem;
  min-height: 10rem;
  resize: none;
  border: 0.1rem solid rgba(var(--color-foreground), 0.15);
}

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

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

/* Form global */

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

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

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

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

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

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

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

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

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

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

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

/* component-quantity */

.quantity {
  border: 1.5px solid rgba(var(--color-foreground), 0.08);
  position: relative;
  height: 45px;
  width: 120px;
  display: flex;
  background: rgba(var(--color-background));
  border-radius: 25px;
}
.quantity__input {
  color: currentColor;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  background-color: transparent;
  border: 0;
  padding: 10px;
  width: 100%;
  flex-grow: 1;
  -webkit-appearance: none;
  appearance: none;
}
.quantity__button {
  width: 40px;
  flex-shrink: 0;
  border: 0;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-foreground));
  padding: 0;
}

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

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

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

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

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

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

.modal__toggle-close {
  display: none;
}

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

.modal__toggle-open {
  display: flex;
}

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

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

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

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

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

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

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

/* Announcement bar end */

details-disclosure > details {
  position: relative;
}

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

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

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

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

@media screen and (min-width: 990px) {
  .overflow-hidden-tablet {
    overflow: auto;
  }
}
.badge {
  border: 1px solid transparent;
  display: inline-block;
  font-size: 13px;
  line-height: 1;
  padding: 4px 10px;
  text-align: center;
  background-color: rgb(var(--color-badge-background));
  border-color: rgba(var(--color-badge-border), var(--alpha-badge-border));
  color: rgb(var(--color-foreground));
  word-break: break-word;
  border-radius: 6px 0 6px;
}
@media only screen and (max-width: 575px) {
  .badge {
    padding: 3px 5px;
  }
}
.gradient {
  background: rgb(var(--color-background));
  background: var(--gradient-background);
  background-attachment: fixed;
}
/*  container width || pag width  */

/* HT own code start */
.container,
.container-fluid {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
}
.container {
  padding-right: 1.5rem;
  padding-left: 1.5rem;
}
.container-fluid {
  --offset-fluid: 1.5rem;
  padding-right: var(--offset-fluid);
  padding-left: var(--offset-fluid);
}

@media only screen and (min-width: 992px) {
  .container-fluid {
    --offset-fluid: 3rem;
  }
}

@media only screen and (min-width: 1366px) {
  .container-fluid {
    --offset-fluid: calc(var(--container-fluid-offset) / 4.5);
  }
}

@media only screen and (min-width: 1600px) {
  .container-fluid {
    --offset-fluid: calc(var(--container-fluid-offset) / 2.5);
  }
}

@media only screen and (min-width: 1800px) {
  .container-fluid {
    --offset-fluid: var(--container-fluid-offset);
  }
}

.px-0 {
  padding-right: 0 !important;
  padding-left: 0 !important;
}

@media (min-width: 1200px) {
  .container {
    max-width: var(--container-lg-width);
  }
}
.row {
  --bs-gutter-x: 20px;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}
.row > * {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}
.g-0,
.gy-0 {
  --bs-gutter-y: 0;
}
.g-0,
.gx-0 {
  --bs-gutter-x: 0;
}
/* HT own code end */

/* HT - Grid Column CSS Start */

.col {
  flex: 1 0 0%;
}

.row-cols-auto > * {
  flex: 0 0 auto;
  width: auto;
}

.row-cols-1 > * {
  flex: 0 0 auto;
  width: 100%;
}

.row-cols-2 > * {
  flex: 0 0 auto;
  width: 50%;
}

.row-cols-3 > * {
  flex: 0 0 auto;
  width: 33.3333333333%;
}

.row-cols-4 > * {
  flex: 0 0 auto;
  width: 25%;
}

.row-cols-5 > * {
  flex: 0 0 auto;
  width: 20%;
}

.row-cols-6 > * {
  flex: 0 0 auto;
  width: 16.6666666667%;
}
@media (min-width: 750px) {
  .col-md {
    flex: 1 0 0%;
  }

  .row-cols-md-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-md-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-md-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-md-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-md-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-md-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-md-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 992px) {
  .col-lg {
    flex: 1 0 0%;
  }

  .row-cols-lg-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-lg-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-lg-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-lg-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-lg-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-lg-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }

  .row-cols-lg-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1200px) {
  .col-xl {
    flex: 1 0 0%;
  }

  .row-cols-xl-auto > * {
    flex: 0 0 auto;
    width: auto;
  }

  .row-cols-xl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
  .row-cols-xl-6 > * {
    flex: 0 0 auto;
    width: 16.6666666667%;
  }
}
@media (min-width: 1500px) {
  .row-cols-xxl-1 > * {
    flex: 0 0 auto;
    width: 100%;
  }

  .row-cols-xxl-2 > * {
    flex: 0 0 auto;
    width: 50%;
  }

  .row-cols-xxl-3 > * {
    flex: 0 0 auto;
    width: 33.3333333333%;
  }

  .row-cols-xxl-4 > * {
    flex: 0 0 auto;
    width: 25%;
  }

  .row-cols-xxl-5 > * {
    flex: 0 0 auto;
    width: 20%;
  }
}
.col-auto {
  flex: 0 0 auto;
  width: auto;
}

.col-1 {
  flex: 0 0 auto;
  width: 8.33333333%;
}

.col-2 {
  flex: 0 0 auto;
  width: 16.66666667%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-4 {
  flex: 0 0 auto;
  width: 33.33333333%;
}

.col-5 {
  flex: 0 0 auto;
  width: 41.66666667%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-7 {
  flex: 0 0 auto;
  width: 58.33333333%;
}

.col-8 {
  flex: 0 0 auto;
  width: 66.66666667%;
}

.col-9 {
  flex: 0 0 auto;
  width: 75%;
}

.col-10 {
  flex: 0 0 auto;
  width: 83.33333333%;
}

.col-11 {
  flex: 0 0 auto;
  width: 91.66666667%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

@media (min-width: 750px) {
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-md-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-md-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-md-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-md-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-md-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
  .col-md-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }
}
@media (min-width: 992px) {
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-lg-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-lg-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}
@media (min-width: 1200px) {
  .col-xl-auto {
    flex: 0 0 auto;
    width: auto;
  }

  .col-xl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }

  .col-xl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
}
@media (min-width: 1400px) {
  .col-xxl-auto {
    flex: 0 0 auto;
    width: auto;
  }
  .col-xxl-1 {
    flex: 0 0 auto;
    width: 8.33333333%;
  }
  .col-xxl-2 {
    flex: 0 0 auto;
    width: 16.66666667%;
  }
  .col-xxl-3 {
    flex: 0 0 auto;
    width: 25%;
  }
  .col-xxl-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }
  .col-xxl-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }
  .col-xxl-6 {
    flex: 0 0 auto;
    width: 50%;
  }
  .col-xxl-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }
}
.d-flex {
  display: flex;
}
.flex-wrap {
  flex-wrap: wrap;
}
.align-items-center {
  align-items: center;
}
.align-items-end {
  align-items: flex-end;
}
.align-items-start {
  align-items: flex-start;
}
.align-self-center {
  align-self: center;
}

.justify-content-between {
  justify-content: space-between;
}
.justify-content-around {
  justify-content: space-around;
}
.justify-content-center {
  justify-content: center;
}
.justify-content-end {
  justify-content: flex-end;
}
.justify-content-start {
  justify-content: flex-start;
}
.flex-row-reverse {
  flex-direction: row-reverse;
}
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.flex-grow-1 {
  flex-grow: 1;
}
.flex-direction-column {
  flex-direction: column;
}
.inline-y-center {
  display: flex;
  align-items: center;
}
.inline-x-center {
  display: flex;
  justify-content: center;
}
.inline-xy-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* TH Grid Column CSS End  */

/* Wishlist Button Css */
.wishlist__button {
  cursor: pointer;
}
.wishlist__button.loading.adding .remove__wishlist,
.wishlist__button.wishlist__button.loading.adding .add__wishlist,
.wishlist__button.active .add__wishlist,
.loading__wishlist,
.remove__wishlist {
  display: none;
}
.wishlist__button.active .remove__wishlist,
.wishlist__button.loading .loading__wishlist {
  display: inline-block;
}
.wishlist__button.loading.adding {
  pointer-events: none;
}
.wishlist__button svg {
  width: 2rem;
  height: auto;
  display: inline-block;
}
.remove__wishlist svg {
  width: 2rem;
}
/* Added overlay Css */
.added__overlay,
.added__overlay_search,
.added__overlay_filter {
  overflow: hidden;
}
.added__overlay::before,
.added__overlay_search::before,
.added__overlay_filter::before {
  position: absolute;
  content: "";
  background: #000;
  width: 100%;
  height: 100%;
  z-index: 3;
  opacity: 0.5;
  cursor: crosshair;
  z-index: 99;
}

/* HT - Input Field */
.input__field,
input[type="email"],
input[type="text"],
.select__field_form select {
  height: 50px;
  width: 100%;
  padding: 0 15px;
  border: 1px solid rgba(var(--color-foreground), 0.15);
  border-radius: var(--button-border-radius);
  font-size: 16px;
  color: rgba(var(--color-foreground));
  background: rgba(var(--color-background));
  -webkit-appearance: none;
  appearance: none;
}
.input__field_form {
  position: relative;
}
.input__field_form_button {
  position: absolute;
  right: 0;
  background: 0;
  border: none;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  line-height: 1;
}
.input__field:hover {
  appearance: none;
}
textarea {
  padding: 15px;
}

input::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: rgba(var(--color-foreground), 0.55);
}
input::-moz-placeholder {
  /* Firefox 19+ */
  color: rgba(var(--color-foreground), 0.55);
}
input:-ms-input-placeholder {
  /* IE 10+ */
  color: rgba(var(--color-foreground), 0.55);
}
input:-moz-placeholder {
  /* Firefox 18- */
  color: rgba(var(--color-foreground), 0.55);
}
.select__field_form {
  position: relative;
}

/* Tab */
.tab_content {
  display: block;
}

.tab_pane {
  display: none;
  transition: var(--transition);
}
.tab_pane:not(.show) {
  opacity: 0;
}
.tab_pane.show {
  opacity: 1;
}
.tab_pane.active {
  display: block;
}

/*  Spacing Helper css */
.mb-30 {
  margin-bottom: 30px;
}
.mb-40 {
  margin-bottom: 40px;
}
.pt-25 {
  padding-top: 25px !important;
}
.mb-15 {
  margin-bottom: 15px;
}
.mb-20 {
  margin-bottom: 20px;
}
.mt-40 {
  margin-top: 40px;
}
.mr-20 {
  margin-right: 20px;
}
.mb-80 {
  margin-bottom: 80px;
}
.p-0 {
  padding: 0;
}
.pt--0 {
  padding-top: 0;
}
.pb--0 {
  padding-bottom: 0;
}
.pb-80 {
  padding-bottom: 80px;
}
.mt-15 {
  margin-top: 15px;
}
.mb-0 {
  margin-bottom: 0 !important;
}
.mt-0 {
  margin-top: 0 !important;
}
.mb-50 {
  margin-bottom: 50px;
}
.mt-30-minus {
  margin-top: -30px;
}
.mt-50 {
  margin-top: 50px;
}
.mt-30 {
  margin-top: 30px;
}
.mt-20 {
  margin-top: 20px;
}
.max-w-500 {
  max-width: 50rem;
}
.h-100 {
  height: 100%;
}
.y_scroll {
  overflow-y: scroll;
}
.product-form__error-message-wrapper svg,
.drawer_cart-item__error svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-right: 0.7rem;
}
.product-form__error-message-wrapper,
.drawer_cart-item__error {
  background: #f8d7da;
  color: #721c24;
  padding: 5px 10px;
  border-radius: 3px;
  display: flex;
  align-items: center;
}
.drawer_cart-item__error {
  flex: 0 0 100%;
  margin-top: 20px;
}
.mt-10 {
  margin-top: 10px;
}
.placeholder-svg-2 {
  position: absolute;
  left: 50%;
  max-width: 80rem;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  fill: currentColor;
}
.placeholder_svg_parent {
  background-color: rgba(var(--placeholder-background));
  color: rgba(var(--placeholder-foreground));
  position: relative;
}

.relative {
  position: relative;
}
.loading-bar:after {
  content: "";
  /* width: 40px; */
  height: 3px;
  background: #000;

  position: absolute;
  animation: loader 2s;
  -webkit-animation: loader 2s;
  animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  transition-timing-function: linear;
  -webkit-transition-timing-function: linear;
  top: 0px;

  margin-left: 0;
}

@keyframes loader {
  0% {
    width: 0%;
    left: 0;
    right: 0;
  }
  50% {
    width: 100%;
    left: 0;
    right: 0;
  }
  99% {
    width: 0%;
    left: 100%;
    right: 0;
  }
}

@-webkit-keyframes loader {
  0% {
    width: 0%;
    left: 0;
    right: 0;
  }
  50% {
    width: 100%;
    left: 0;
    right: 0;
  }
  99% {
    width: 0%;
    left: 100%;
    right: 0;
  }
}

@-webkit-keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
  }
}

@keyframes fadeInDown {
  0% {
    opacity: 0;
    -webkit-transform: translate3d(0, -100%, 0);
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}

@-webkit-keyframes animate {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
    box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
  }
  80% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
    box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 rgba(255, 193, 7, 0);
    box-shadow: 0 0 0 rgba(255, 193, 7, 0);
  }
}

@keyframes animate {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  40% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
    box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
  }
  80% {
    -webkit-box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
    box-shadow: 0 0 0 50px rgba(255, 193, 7, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 rgba(255, 193, 7, 0);
    box-shadow: 0 0 0 rgba(255, 193, 7, 0);
  }
}

.animate-fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

.button__icon--arrow_svg {
  max-width: 2.5rem;
}
/* Theme global css */
.position__relative {
  position: relative;
}
.swiper:hover .swiper__nav--btn {
  opacity: 1;
  visibility: visible;
}

.swiper__nav--btn {
  width: 4rem;
  height: 4rem;
  background: rgba(var(--color-button), var(--alpha-button-background));
  color: rgb(var(--color-button-text));
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: var(--transition);
  transition: var(--transition);
  font-size: 2rem;
}

@media only screen and (max-width: 749px) {
  .swiper__nav--btn {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.swiper__nav--btn:hover {
  background: rgba(var(--primary-button-hover-background));
  color: rgba(var(--primary-button-hover-text));
}

.swiper__nav--btn:after {
  font-size: 1.8rem;
}
.swiper__nav--btn.swiper-button-prev {
  left: 0;
}

.swiper__nav--btn.swiper-button-next {
  right: 0;
}
.swiper:hover .swiper__nav--btn.swiper-button-disabled {
  opacity: 0.5;
}
.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  pointer-events: initial;
}
@media only screen and (max-width: 749px) {
  .mobile--text-align-center {
    text-align: center !important;
  }
  .shopify-policy__container {
    margin: 6.5rem auto;
  }
}
@media only screen and (min-width: 750px) {
  .shopify-policy__container {
    margin: 9rem auto;
  }
}
.link.button--not-underline {
  text-decoration: none;
}
/* CSS custom Started Here */

@media only screen and (min-width: 992px) {
    a.header__menu_item {
        padding-bottom: 2rem !important;
        padding-top: 2rem !important;
    }
}
.announcement__wrapper
{
  padding-top:3px !important;
}
.announcement-bar-innner
{
  padding-bottom:3px !important;
}
.announcement__wrapper .arrow__link--button
{
  display:none !important;
}
.announcement-bar--content span
{
  font-size:12px !important;
  text-align:center;
}
@media only screen and (min-width: 992px) {
    .header_bottom:not(.logo__left--menu-center) {
        padding: 5px 0 !important;
    }
}
a.header__menu_item
{
  text-transform:uppercase;
}
@media(max-width: 500px) {
.product__card__content.product--card-spacing-true {
    padding: 1rem 1rem !important;
    min-height:120px;
}
}
.offcanvas-header .offcanvas__footer
{
  display:none;
}
.header__mega_menu
{
  margin:0 2.5rem !important;
}


/* Classic Table Design */
.product-specs table {
  width: 100%;
  max-width:1000px;
  border-collapse: collapse;
  margin: 1rem 0;
  background: white;
  border: 1px solid #ddd;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.product-specs th {
  background: #f8f9fa;
  padding: 16px;
  text-align: left;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #dee2e6;
}

.product-specs td {
  padding: 14px 16px;
  border-bottom: 1px solid #eee;
  color: #555;
}

.product-specs tr:last-child td {
  border-bottom: none;
}

.product-specs tr:hover {
  background-color: #f8f9fa;
}
.product__media_container .product__media-gallery .product__media {
    cursor: crosshair;
    border: 3px solid #d8d5df;
    border-radius: 10px;
}

.swatch-list {
  display: flex;
  flex-wrap: wrap; /* Allows items to wrap to next line */
  gap: 12px;
  overflow: visible;
}

.swatch-wrap {
  position: relative;
  margin-bottom: 5px; /* Extra space for tooltips */
}

/* Adjust tooltip position for wrapped layout */
.swatch-wrap::after {
  content: attr(data-tooltip);
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  z-index: 9999;
  transition: opacity 0.2s ease;
  max-width: 120px;
  overflow: hidden;
  text-overflow: ellipsis;
}

.swatch-wrap:hover::after {
  opacity: 1;
}

/* Rest of your CSS remains the same */
.swatch-item {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: 2px solid #e0e0e0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

.swatch-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Active state - fix selector to target the wrap */
.swatch-wrap.active .swatch-item {
  border-color: #000;
}

.swatch-item:hover {
  border-color: #999;
}

/* Custom BANNER */
    /* MAIN BANNER */
    .cx-hover-banner {
      width: 100%;
      height: 75vh;
      background-image: url("/cdn/shop/files/California_pen_show_1920_by_800_1.jpg?v=1771348547");
      background-size: cover;
      background-position: left;
      transition: background-image 0.4s ease-in-out;
      overflow: hidden;
      position: relative;
    }

    .cx-overlay {
      display: flex;
      height: 100%;
    }

    .cx-section {
      width: 25%;
      padding: 40px 25px;
      color: #fff;
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      cursor: pointer;
      border-right: 1px solid rgba(255,255,255,0.15);
      background: rgba(0,0,0,0.35);
      transition: background 0.3s ease;
      flex-shrink: 0;
    }

    .cx-section:hover {
      background: rgba(255,255,255,0.1);
    }

    .cx-section:last-child {
      border-right: none;
    }

    .cx-section h3 {
      font-size: 22px;
      margin-bottom: 10px;
      color: white;
      font-weight: 900;
    }

    .cx-section p {
      font-size: 14px;
      opacity: 0.9;
    }

    /* --- PAGINATION (bullets) --- */
    .cx-pagination {
      display: flex;
      gap: 12px;
      justify-content: center;
      align-items: center;
      z-index: 50;
      transition: all 0.2s;
    }

    /* DESKTOP: centered bottom (inside banner) */
    .cx-pagination.desktop-pagination {
      position: absolute;
      bottom: 24px;
      left: 50%;
      transform: translateX(-50%);
      padding: 8px 20px;
      background: rgba(0, 0, 0, 0.5);
      backdrop-filter: blur(4px);
      border-radius: 40px;
    }

    .cx-pagination .bullet {
      width: 10px;
      height: 10px;
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.45);
      border: 1px solid rgba(255,255,255,0.3);
      transition: all 0.25s ease;
      cursor: pointer;
      flex-shrink: 0;
    }

    .cx-pagination .bullet.active {
      background: white;
      width: 28px;
      border-color: white;
      box-shadow: 0 0 8px rgba(255,255,255,0.6);
    }

    /* arrows removed – not used */
    .cx-nav-arrow {
      display: none;
    }

    /* 📱 MOBILE STYLES – bullets outside, below banner */
    @media (max-width: 768px) {
      .cx-hover-banner {
        height: 22dvh;
        position: relative;
      }

      .cx-overlay {
        width: 400%;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scroll-behavior: smooth;
        -ms-overflow-style: none;
        scrollbar-width: none;
      }
      .cx-overlay::-webkit-scrollbar {
        display: none;
      }

      .cx-section {
        width: 100vw;
        scroll-snap-align: start;
        border-right: none;
        padding: 40px 30px;
      }

      /* hide desktop pagination (inside) */
      .cx-pagination.desktop-pagination {
        display: none;
      }

      /* outside pagination container */
      .cx-pagination.mobile-pagination {
        display: flex;
        position: relative;
        width: 100%;
        justify-content: center;
        margin-top: 16px;
        gap: 14px;
        padding: 8px 0;
        background: transparent;
        bottom: auto;
        left: auto;
        transform: none;
      }

      .cx-pagination.mobile-pagination .bullet {
        width: 12px;
        height: 12px;
        background: rgba(0, 0, 0, 0.3);
        border: 1px solid rgba(0,0,0,0.15);
      }

      .cx-pagination.mobile-pagination .bullet.active {
        background: #333;
        width: 32px;
        border-color: #333;
      }
    }

    /* desktop: hide mobile pagination by default */
    .cx-pagination.mobile-pagination {
      display: none;
    }

    .cx-hover-banner {
      position: relative;
    }

    /* fix for links inside sections */
    .cx-section a {
      text-decoration: none;
      color: inherit;
      display: flex;
      flex-direction: column;
      height: 100%;
      width: 100%;
      justify-content: flex-end;
    }

    .cx-section span {
      display: flex;
      flex-direction: column;
    }
/* Custom BANNER */

.search-modal__form .search__input_field .search__input, .search-modal__form .search__button
{
  border-radius:10px !important;
}


/* Custom About us */
.cx-about {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 10%;
    gap: 40px;
}

.cx-about .content {
    flex: 2;
}

.cx-about .content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cx-about .content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.cx-about .content button {
    padding: 12px 25px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
}

.cx-about .image {
    flex: 1;
}

.cx-about .image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Responsive */
@media (max-width: 768px) {
    .cx-about {
        flex-direction: column;
        text-align: center;
    }
}

/* Custom Our team */
.cx-team-section{
    padding:60px 8%;
}

/* Each Member Row */
.cx-team-row{
    display:flex;
    align-items:center;
    gap:40px;
    margin-bottom:70px;
}

/* Image */
.cx-team-image{
    width:330px;
    flex-shrink:0;
}

.cx-team-image img{
    width:100%;
    height:430px;
    object-fit:cover;
    object-position:top;
    border-radius:5px;
}

/* Text */
.cx-team-content h2{
    margin:0 0 5px;
    font-size:22px;
}

.cx-team-content span{
    display:block;
    font-size:14px;
    color:#555;
    margin-bottom:20px;
}

.cx-team-content p{
    line-height:1.6;
    margin-bottom:15px;
    color:#333;
}

/* Responsive */
@media(max-width:768px){
    .cx-team-row{
        flex-direction:column;
        align-items:flex-start;   /* left align */
    }

    .cx-team-image{
        width:100%;
    }

    .cx-team-image img{
        width:100%;
        height:auto;   /* natural height on mobile */
    }

    .cx-team-content{
        margin-top:20px;
    }
}

/* Newsletter */
.newsletter-wrapper {
  max-width: 400px;
}

.footer__newsletter .input__field_form {
      display: flex;
    align-items: center;
    padding: 5px;
}

.newsletter__mail--icon {
  padding: 0 10px;
  color: #666;
}

.footer__newsletter .input__field {
  flex: 1;
  border: none;
  padding: 10px 5px;
  font-size: 16px;
  outline: none;
      border-radius: 100px !important;
}

.footer__newsletter .input__field_form_button {
  background: #000;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  font-weight: bold;
  white-space: nowrap;
      right: 0.5rem !important;
    height: 46px !important;
    border-radius: 0px 100px 100px 0px;
}

.footer__newsletter .input__field_form_button:hover {
  background: #333;
}

/* Social Section - Separate div */
/* Social Section - Separate div */
.social-section {
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
}

.follow-text {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.social-icons {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border-radius: 50%;
  text-decoration: none;
  color: #333;
  font-size: 16px;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #000;
  color: #fff;
  transform: translateY(-2px);
}

/* Optional: Brand colors on hover */
.social-icon:hover{
  color: #ffffff;
}


/* product-accordion */
.product-accordion {
  width: 100%;
}

.accordion_item {
      background-color: #f7f6f9;
    padding: 0px 20px 0px 20px;
    border-radius: 8px;
}

.accordion_header {
  display: flex;
  align-items: center;
  padding: 15px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0;
  font-weight: 500;
}

.accordion_icon_wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion_header:hover {
  opacity: 0.7;
}

.accordion_icon {
  display: inline-flex;
  transition: transform 0.3s ease;
  width: 12px;
  height: 8px;
}

.accordion_item.active .accordion_icon {
  transform: rotate(180deg);
}

.accordion_content {
  padding-bottom: 20px;
  padding-left: 24px; /* Indent content to align with header text */
  display: none;
}

.accordion_content.show {
  display: block;
}

/* Optional: Animation */
.accordion_content {
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}



/* Secure checkout */

.secure-checkout-section.minimal {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 10px;
  max-width: 700px;
  margin: 20px auto;
}

.secure-checkout-section.minimal .secure-checkout-text {
  font-size: 13px;
  color: #999;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.secure-checkout-section.minimal .payment-icons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.secure-checkout-section.minimal .payment-icon {
  font-size: 14px;
  font-weight: 500;
  color: #666;
  background: none;
  padding: 0;
  box-shadow: none;
  border: none;
}

.secure-checkout-section.minimal .payment-icon:hover {
  color: #000;
  transform: none;
  box-shadow: none;
}

@media (max-width: 480px) {
  .secure-checkout-section.minimal {
    flex-direction: column;
    gap: 10px;
  }
}

.search__input_field
{
  width:80% !important;
}

.search__button .icon {
    color: black !important;
}
.search__button:not(.popup__search--button)
{
  background:transparent !important;
}
.header__actions_btn
{
  font-size:12px !important;
}

.header__actions_btn svg {
    width: 1.5rem !important;
    color: #353535 !important;
}

.header__actions_btn_cart_num {  
    width: 15px !important;
    height: 15px !important;
}
.product__variant_sku  strong
{
  text-transform:uppercase !important;
}


/* SINGLE SKU */

.cx-features-section{
    padding:5px;
}

.cx-features-grid{
    display:grid;
    grid-template-columns: repeat(3, 1fr); /* Always 3 columns */
    gap:5px;
}

.cx-feature-box{
    padding:5px 5px;
    border-radius:16px;
    text-align:center;
    transition:all 0.3s ease;
    cursor:pointer;
}



.cx-feature-icon{
    font-size:20px;
    color:#2b2b2b;
}

.cx-feature-text{
    font-size:15px;
    color:#333;
    line-height:1.4;
}

/* Mobile adjustments (still 3 columns) */
@media(max-width:600px){
    .cx-feature-box{
        padding:18px 8px;
    }
    .cx-feature-icon{
        font-size:22px;
    }
    .cx-feature-text{
        font-size:12px;
    }
}

@media only screen and (min-width: 992px) {
    .blog__items--content {
        padding: 3rem;
        min-height: 200px !important;
    }
}

/* New Arrivals */

.cx-media-section{
    padding:0px 5%;
}

/* Desktop */
.cx-media-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:15px;
    align-items:start;
}

/* Tablet */
@media(max-width:1024px){
    .cx-media-grid{
        grid-template-columns:repeat(3,1fr);
    }
}

/* Mobile */
@media(max-width:768px){
    .cx-media-grid{
        grid-template-columns:repeat(2,1fr);
        gap:10px;
    }
}

.cx-media-item{
    border-radius:12px;
    overflow:hidden;
    background:#000;
}

.cx-media-item img,
.cx-media-item video{
    width:100%;
    height:auto; /* Let natural height show */
    display:block;
    border-radius:12px;
}

}