@charset "UTF-8";
:root {
  --max-width: 1400px;
  --space-outer: 3.3vw;
  --spacing-unit: 4px;
  --spacing-unit-half: 2px;
  --spacing-1: calc(var(--spacing-unit) * 1);
  --spacing-2: calc(var(--spacing-unit) * 2);
  --spacing-3: calc(var(--spacing-unit) * 3);
  --spacing-4: calc(var(--spacing-unit) * 4);
  --spacing-5: calc(var(--spacing-unit) * 5);
  --spacing-6: calc(var(--spacing-unit) * 6);
  --spacing-7: calc(var(--spacing-unit) * 7);
  --spacing-8: calc(var(--spacing-unit) * 8);
  --spacing-9: calc(var(--spacing-unit) * 9);
  --spacing-10: calc(var(--spacing-unit) * 10);
  --spacing-11: calc(var(--spacing-unit) * 11);
  --spacing-12: calc(var(--spacing-unit) * 12);
  --spacing-13: calc(var(--spacing-unit) * 13);
  --spacing-14: calc(var(--spacing-unit) * 14);
  --spacing-15: calc(var(--spacing-unit) * 15);
  --spacing-16: calc(var(--spacing-unit) * 16);
  --spacing-17: calc(var(--spacing-unit) * 17);
  --spacing-18: calc(var(--spacing-unit) * 18);
  --spacing-19: calc(var(--spacing-unit) * 19);
  --spacing-20: calc(var(--spacing-unit) * 20);
  --spacing-21: calc(var(--spacing-unit) * 21);
  --spacing-22: calc(var(--spacing-unit) * 22);
  --spacing-23: calc(var(--spacing-unit) * 23);
  --spacing-24: calc(var(--spacing-unit) * 24);
  --spacing-25: calc(var(--spacing-unit) * 25);
  --spacing-26: calc(var(--spacing-unit) * 26);
  --spacing-27: calc(var(--spacing-unit) * 27);
  --spacing-28: calc(var(--spacing-unit) * 28);
  --spacing-29: calc(var(--spacing-unit) * 29);
  --spacing-30: calc(var(--spacing-unit) * 30);
}

@supports (padding: 0 clamp(18px, 3.3vw, 3.3vw)) {
  @media (max-width: 767px) {
    :root {
      --space-outer: clamp(18px, 3.3vw, 3.3vw);
    }
  }
}
* {
  padding: 0;
  margin: 0;
  outline: 0;
  box-sizing: border-box;
}
*:before, *:after {
  box-sizing: inherit;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
main {
  display: block;
}

template {
  display: none;
}

html {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  text-size-adjust: none;
}

img,
iframe,
video,
audio,
object {
  max-width: 100%;
}

img,
iframe {
  border: 0 none;
}

img {
  height: auto;
  display: inline-block;
  vertical-align: middle;
}

b,
strong {
  font-weight: bold;
}

address {
  font-style: normal;
}

svg:not(:root) {
  overflow: hidden;
}

a,
button,
input[type=submit],
input[type=button],
input[type=reset],
input[type=file],
input[type=image],
label[for] {
  cursor: pointer;
}

a[href^=tel],
button[disabled],
input[disabled],
textarea[disabled],
select[disabled] {
  cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  padding: 0;
  border: 0;
}

input[type=text],
input[type=password],
input[type=date],
input[type=datetime],
input[type=datetime-local],
input[type=month],
input[type=week],
input[type=email],
input[type=number],
input[type=search],
input[type=tel],
input[type=time],
input[type=url],
input[type=color],
textarea,
a[href^=tel] {
  appearance: none;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  appearance: none;
}

textarea {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  overflow-scrolling: touch;
}

button,
input,
optgroup,
select,
textarea {
  font-family: var(--font-body--family);
  font-size: inherit;
  color: inherit;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

button,
select {
  text-transform: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

nav ul,
nav ol {
  list-style: none outside none;
}

.col {
  max-width: 100%;
  flex: 1;
  padding: 0 8px;
}
.cols {
  display: flex;
  flex-flow: row wrap;
  margin: 0 -8px;
}
.cols--gutter-sm {
  margin: 0 -4px;
}
.cols--gutter-sm .col {
  padding: 0 4px;
}
.col--1of2 {
  max-width: 50%;
  flex: 0 0 50%;
}

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

:root {
  --max-width: 1260px;
  --max-width-sm: 1024px;
}

.hidden {
  display: none !important;
}

.visible {
  display: block !important;
}

.visible-inline {
  display: inline !important;
}

.visible-inline-block {
  display: inline-block !important;
}

@media screen and (min-width: 321px) and (max-width: 374px) {
  .hidden-xxxs {
    display: none !important;
  }
  .visible-xxxs-block {
    display: block !important;
  }
  .visible-xxxs-inline {
    display: inline !important;
  }
  .visible-xxxs-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 321px) {
  .hidden-min-xxxs {
    display: none !important;
  }
  .visible-min-xxxs-block {
    display: block !important;
  }
  .visible-min-xxxs-inline {
    display: inline !important;
  }
  .visible-min-xxxs-inline-block {
    display: inline-block !important;
  }
}
@media screen and (max-width: 320px) {
  .hidden-max-xxxs {
    display: none !important;
  }
  .visible-max-xxxs-block {
    display: block !important;
  }
  .visible-max-xxxs-inline {
    display: inline !important;
  }
  .visible-max-xxxs-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 376px) and (max-width: 479px) {
  .hidden-xxs {
    display: none !important;
  }
  .visible-xxs-block {
    display: block !important;
  }
  .visible-xxs-inline {
    display: inline !important;
  }
  .visible-xxs-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 376px) {
  .hidden-min-xxs {
    display: none !important;
  }
  .visible-min-xxs-block {
    display: block !important;
  }
  .visible-min-xxs-inline {
    display: inline !important;
  }
  .visible-min-xxs-inline-block {
    display: inline-block !important;
  }
}
@media screen and (max-width: 375px) {
  .hidden-max-xxs {
    display: none !important;
  }
  .visible-max-xxs-block {
    display: block !important;
  }
  .visible-max-xxs-inline {
    display: inline !important;
  }
  .visible-max-xxs-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 481px) and (max-width: 575px) {
  .hidden-xs {
    display: none !important;
  }
  .visible-xs-block {
    display: block !important;
  }
  .visible-xs-inline {
    display: inline !important;
  }
  .visible-xs-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 481px) {
  .hidden-min-xs {
    display: none !important;
  }
  .visible-min-xs-block {
    display: block !important;
  }
  .visible-min-xs-inline {
    display: inline !important;
  }
  .visible-min-xs-inline-block {
    display: inline-block !important;
  }
}
@media screen and (max-width: 480px) {
  .hidden-max-xs {
    display: none !important;
  }
  .visible-max-xs-block {
    display: block !important;
  }
  .visible-max-xs-inline {
    display: inline !important;
  }
  .visible-max-xs-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 577px) and (max-width: 767px) {
  .hidden-sm {
    display: none !important;
  }
  .visible-sm-block {
    display: block !important;
  }
  .visible-sm-inline {
    display: inline !important;
  }
  .visible-sm-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 577px) {
  .hidden-min-sm {
    display: none !important;
  }
  .visible-min-sm-block {
    display: block !important;
  }
  .visible-min-sm-inline {
    display: inline !important;
  }
  .visible-min-sm-inline-block {
    display: inline-block !important;
  }
}
@media screen and (max-width: 576px) {
  .hidden-max-sm {
    display: none !important;
  }
  .visible-max-sm-block {
    display: block !important;
  }
  .visible-max-sm-inline {
    display: inline !important;
  }
  .visible-max-sm-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 769px) and (max-width: 1023px) {
  .hidden-md {
    display: none !important;
  }
  .visible-md-block {
    display: block !important;
  }
  .visible-md-inline {
    display: inline !important;
  }
  .visible-md-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 769px) {
  .hidden-min-md {
    display: none !important;
  }
  .visible-min-md-block {
    display: block !important;
  }
  .visible-min-md-inline {
    display: inline !important;
  }
  .visible-min-md-inline-block {
    display: inline-block !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-max-md {
    display: none !important;
  }
  .visible-max-md-block {
    display: block !important;
  }
  .visible-max-md-inline {
    display: inline !important;
  }
  .visible-max-md-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1259px) {
  .hidden-lg {
    display: none !important;
  }
  .visible-lg-block {
    display: block !important;
  }
  .visible-lg-inline {
    display: inline !important;
  }
  .visible-lg-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1025px) {
  .hidden-min-lg {
    display: none !important;
  }
  .visible-min-lg-block {
    display: block !important;
  }
  .visible-min-lg-inline {
    display: inline !important;
  }
  .visible-min-lg-inline-block {
    display: inline-block !important;
  }
}
@media screen and (max-width: 1024px) {
  .hidden-max-lg {
    display: none !important;
  }
  .visible-max-lg-block {
    display: block !important;
  }
  .visible-max-lg-inline {
    display: inline !important;
  }
  .visible-max-lg-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1261px) and (max-width: 1399px) {
  .hidden-xl {
    display: none !important;
  }
  .visible-xl-block {
    display: block !important;
  }
  .visible-xl-inline {
    display: inline !important;
  }
  .visible-xl-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1261px) {
  .hidden-min-xl {
    display: none !important;
  }
  .visible-min-xl-block {
    display: block !important;
  }
  .visible-min-xl-inline {
    display: inline !important;
  }
  .visible-min-xl-inline-block {
    display: inline-block !important;
  }
}
@media screen and (max-width: 1260px) {
  .hidden-max-xl {
    display: none !important;
  }
  .visible-max-xl-block {
    display: block !important;
  }
  .visible-max-xl-inline {
    display: inline !important;
  }
  .visible-max-xl-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1401px) and (max-width: 1919px) {
  .hidden-xxl {
    display: none !important;
  }
  .visible-xxl-block {
    display: block !important;
  }
  .visible-xxl-inline {
    display: inline !important;
  }
  .visible-xxl-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1401px) {
  .hidden-min-xxl {
    display: none !important;
  }
  .visible-min-xxl-block {
    display: block !important;
  }
  .visible-min-xxl-inline {
    display: inline !important;
  }
  .visible-min-xxl-inline-block {
    display: inline-block !important;
  }
}
@media screen and (max-width: 1400px) {
  .hidden-max-xxl {
    display: none !important;
  }
  .visible-max-xxl-block {
    display: block !important;
  }
  .visible-max-xxl-inline {
    display: inline !important;
  }
  .visible-max-xxl-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1921px) and (max-width: ) {
  .hidden-xxxl {
    display: none !important;
  }
  .visible-xxxl-block {
    display: block !important;
  }
  .visible-xxxl-inline {
    display: inline !important;
  }
  .visible-xxxl-inline-block {
    display: inline-block !important;
  }
}
@media screen and (min-width: 1921px) {
  .hidden-min-xxxl {
    display: none !important;
  }
  .visible-min-xxxl-block {
    display: block !important;
  }
  .visible-min-xxxl-inline {
    display: inline !important;
  }
  .visible-min-xxxl-inline-block {
    display: inline-block !important;
  }
}
@media screen and (max-width: 1920px) {
  .hidden-max-xxxl {
    display: none !important;
  }
  .visible-max-xxxl-block {
    display: block !important;
  }
  .visible-max-xxxl-inline {
    display: inline !important;
  }
  .visible-max-xxxl-inline-block {
    display: inline-block !important;
  }
}
input[type=checkbox] {
  appearance: none;
  -webkit-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #737373;
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  vertical-align: top;
}
input[type=checkbox]:checked {
  background-color: #e6005c;
  border-color: #e6005c;
}
input[type=checkbox]:checked::after {
  content: "✓";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 12px;
  line-height: 1;
}
input[type=checkbox]:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 0, 92, 0.3);
}

input[type=text],
input[type=email],
input[type=password],
input[type=number],
textarea,
select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #bfbfbf;
  border-radius: 0.25rem;
  font-size: 1rem;
  line-height: 1.5;
  color: #404040;
  background-color: white;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=number]:focus,
textarea:focus,
select:focus {
  border-color: #e6005c;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(230, 0, 92, 0.25);
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=password]::placeholder,
input[type=number]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #8c8c8c;
  opacity: 1;
}
input[type=text]:disabled, input[type=text][readonly],
input[type=email]:disabled,
input[type=email][readonly],
input[type=password]:disabled,
input[type=password][readonly],
input[type=number]:disabled,
input[type=number][readonly],
textarea:disabled,
textarea[readonly],
select:disabled,
select[readonly] {
  background-color: #f2f2f2;
  opacity: 1;
}

select {
  appearance: none;
  background-image: url('data:image/svg+xml;charset=US-ASCII,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 4 5"><path fill="%23333" stroke="none" stroke-width="0" d="M2 0L0 2h4zm0 5L0 3h4z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  background-size: 0.65rem auto;
}
select :focus {
  outline: none;
  border-color: #e6005c;
  box-shadow: 0 0 0 3px rgba(230, 0, 92, 0.3);
}

textarea {
  resize: vertical;
}

label {
  display: inline-block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: #404040;
}

.btn {
  background: none;
  outline: none;
  border: none;
  padding: 0.5rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.btn:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(230, 0, 92, 0.3);
}

.btn.primary {
  background-color: #e6005c;
  color: white;
  border-radius: 0.25rem;
  font-weight: 500;
  text-transform: uppercase;
}
.btn.primary:hover {
  background-color: rgb(204.5, 0, 81.8);
}

.btn.roundless {
  border-radius: 0;
}

body {
  font-family: var(--font-body--family);
}
body.locked {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}
a:hover, a[href^=tel] {
  text-decoration: none;
}

.wrapper {
  display: flex;
  min-height: 100vh;
  flex-direction: column;
  padding-top: 194px;
  transition: padding-top 0.3s;
}
@media (max-width: 1023px) {
  .wrapper {
    padding-top: 100px;
  }
}
@media (max-width: 767px) {
  .wrapper {
    padding-top: 70px;
  }
}
.wrapper .footer {
  margin-top: auto;
}
.wrapper > * {
  flex: 0 0 auto;
}

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

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  color: #000;
}
@media screen and (max-width: 1260px) {
  .header {
    border-bottom: 1px solid transparent;
  }
}
.header .header__inner {
  position: relative;
  z-index: 99;
}
.header.header--dark {
  background-color: transparent;
  color: #fff;
}
@media screen and (max-width: 1260px) {
  .header.header--dark:after {
    display: none;
  }
}
.header.header--dark:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 230px;
  transition: all 0.3s;
  z-index: -1;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,1e1e1e+44,2d2d2d+100 */
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+53,000000+100&0.7+0,0.29+53,0+100 */
  background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.29) 53%, rgba(0, 0, 0, 0) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.29) 53%, rgba(0, 0, 0, 0) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.29) 53%, rgba(0, 0, 0, 0) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b3000000", endColorstr="#00000000", GradientType=0);
  /* IE6-9 */
}
@media screen and (max-width: 1024px) {
  .header.header--dark:before {
    height: 93px;
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0.7+0,0+100 */
    background: -moz-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 100%);
    /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#b3000000", endColorstr="#00000000", GradientType=0);
    /* IE6-9 */
  }
}
@media screen and (max-width: 768px) {
  .header.header--dark:before {
    height: 65px;
  }
}
.header.header--dark.fixed:before {
  height: 0;
}
.header.header--dark .logo img:last-child {
  opacity: 0;
  visibility: hidden;
}
.header.header--dark .link-cart {
  color: white;
}
.header.header--dark .link-cart:before {
  background-color: transparent;
}
.header.header--dark .link-cart:has(.cart-count:not(:empty)):before {
  background-color: white;
}
.header.header--dark .link-cart:has(.cart-count:not(:empty)) {
  color: #820044;
}
.header.header--dark.fixed .link-cart {
  color: #50002f;
}
.header.header--dark.fixed .link-cart:before {
  background-color: #d9d9d9;
}
@media screen and (min-width: 1025px) {
  .header.header--dark.fixed .link-cart:hover {
    color: white;
  }
}
@media screen and (min-width: 1025px) {
  .header.header--dark.fixed .link-cart:hover:before {
    background-color: #b40054;
  }
}
.header.header--dark .header__body,
.header.header--dark .header__nav {
  background: transparent;
}
.header.header--dark .header__nav {
  border-color: transparent;
}
.header .header__logo-scroll {
  display: none;
}
.header.open, .header.fixed {
  color: #2e2e2e;
  background: white;
}
.header.open:before, .header.fixed:before {
  opacity: 0;
}
.header.open .header__logo img:first-child, .header.fixed .header__logo img:first-child {
  opacity: 0;
}
.header.open .header__logo img:last-child, .header.fixed .header__logo img:last-child {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .header.open .header__logo img, .header.fixed .header__logo img {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header.open .header__logo .header__logo-scroll, .header.fixed .header__logo .header__logo-scroll {
    display: inline-block;
    opacity: 1 !important;
    visibility: visible;
  }
}
.header.open .nav-utilities, .header.fixed .nav-utilities {
  z-index: 4;
}
.header.open .nav-utilities > ul > li:not(.visible-scroll), .header.fixed .nav-utilities > ul > li:not(.visible-scroll) {
  display: none;
}
@media screen and (max-width: 1260px) {
  .header.open .nav-utilities > ul > li:not(.visible-scroll), .header.fixed .nav-utilities > ul > li:not(.visible-scroll) {
    display: list-item;
  }
}
@media screen and (max-width: 768px) {
  .header.open .nav-utilities > ul > li:not(.visible-scroll), .header.fixed .nav-utilities > ul > li:not(.visible-scroll) {
    display: none;
  }
}
.header.open .nav > ul > li > a, .header.fixed .nav > ul > li > a {
  padding: 26px 0;
}
.header.open .header__nav, .header.fixed .header__nav {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  border-top-width: 0;
  padding: 0 72px;
  transform: translateY(-50%);
}
.header.open .nav > ul > li, .header.fixed .nav > ul > li {
  padding: 0;
}
.header.open .nav > ul, .header.fixed .nav > ul {
  max-width: 50%;
  flex: 0 0 50%;
  justify-content: space-around;
}
.header.open .nav > ul:first-child, .header.fixed .nav > ul:first-child {
  padding-right: 50px;
}
.header.open .nav > ul:last-child, .header.fixed .nav > ul:last-child {
  padding-left: 50px;
}
.header .header__mobile {
  background-color: #fff;
  color: #2e2e2e;
  height: 100vh;
  overflow: auto;
  padding-bottom: 62px;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  transition: all 0.3s;
  visibility: hidden;
  opacity: 0;
}
.header .header__mobile.open {
  visibility: visible;
  opacity: 1;
  margin-top: 1px;
}
.header .header__mobile .custom-select {
  margin: 14px 16px;
  width: calc(100% - 32px);
}
.header .header__mobile .custom-select.open ul {
  max-height: none;
}
.header .header__mobile .custom-select.open svg {
  transform: rotate(180deg);
}
.header .header__mobile .custom-select h6 {
  height: 48px;
  line-height: 48px;
}
.header .header__mobile .custom-select h6 svg {
  margin-top: 22px;
}
.header .header__mobile .custom-select ul {
  position: static;
}
.header .header__mobile .custom-select ul {
  max-height: 0;
  background-color: transparent;
}
.header .header__mobile .custom-select li.current a:before {
  top: 0;
  line-height: 48px;
}
.header .header__mobile .custom-select a {
  padding: 6px 0;
}
.header .header__body {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  padding: 15px 15px;
  background: white;
  transition: all 0.3s;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .header .header__body {
    display: block;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .header .header__body {
    padding: 17px 15px;
  }
}
.header .header__nav {
  position: relative;
  top: 0;
  left: 0;
  border-top: 1px solid #cbcbcb;
  border-bottom: 1px solid #f3f3f3;
  padding: 0;
  background: white;
  transition: padding 0.3s;
}
.header .header__nav-secondary {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: -1;
}
.header .header__search {
  padding: 16px;
}
.header .header__search .form-search {
  position: relative;
}
.header .header__search .form-search label {
  display: none;
}
.header .header__search .form-search .search__field {
  display: block;
  width: 100%;
  background-color: #efefef;
  padding: 0 8px;
  height: 44px;
  color: #6f6f6f;
  border: 0;
  border-radius: 0;
}
.header .header__search .form-search .search__btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 44px;
  border: 0;
  background-color: transparent;
  color: #2e2e2e;
  padding: 0 8px;
}

.logo {
  position: absolute;
  top: 75%;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
  margin-top: -32px;
  text-decoration: none;
  width: 128px;
  transition: all 0.3s;
}
.logo img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
}
.logo img:last-child {
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .logo {
    width: 156px;
    margin-top: -22px;
  }
}

.nav-mobile {
  position: relative;
  padding: 0 0;
  font-size: 13px;
}
.nav-mobile a {
  text-decoration: none;
  display: block;
}
.nav-mobile ul {
  margin: 0;
}
.nav-mobile > ul > li {
  border-bottom: 1px solid transparent;
}
.nav-mobile > ul > li > a {
  font-weight: 700;
  text-transform: uppercase;
  padding: 14px 16px;
  position: relative;
  letter-spacing: 0.1em;
}
.nav-mobile > ul > li > a:before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: calc(100% - 32px);
  display: block;
  height: 1px;
  background: #e2e2e2;
  transform: translateX(-50%);
}
.nav-mobile > ul > li.menu__item--has-dropdown > a:after {
  content: "\f292";
  font-family: "boxicons";
  font-size: 14px;
  position: absolute;
  top: 50%;
  right: 16px;
  margin-top: -2px;
}
.nav-mobile > ul > li.menu__item--has-dropdown > a.open:after {
  transform: rotate(180deg);
}
.nav-mobile > ul > li > .menu__dropdown {
  visibility: hidden;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
}
.nav-mobile > ul > li > .menu__dropdown.open {
  opacity: 1;
  visibility: visible;
  max-height: none;
}
.nav-mobile > ul > li > .menu__dropdown.open:after {
  opacity: 0;
}
.nav-mobile .menu__dropdown {
  position: relative;
  background-color: #efefef;
  border-top: 1px solid transparent;
}
.nav-mobile .menu__dropdown a {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 16px;
}
.nav-mobile .menu__dropdown .menu__item--has-dropdown + .menu__item--has-dropdown {
  position: relative;
}
.nav-mobile .menu__dropdown .menu__item--has-dropdown + .menu__item--has-dropdown:before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  width: calc(100% - 32px);
  display: block;
  height: 1px;
  background: #cbcbcb;
  transform: translateX(-50%);
}
.nav-mobile .menu__dropdown .menu__dropdown {
  border-bottom: 1px solid transparent;
  font-size: 15px;
  border-top: 0;
}
.nav-mobile .menu__dropdown .menu__dropdown a {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}
.nav-mobile .nav__title {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  font-size: 13px;
}
.nav-mobile .nav__title .nav__title__text {
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-mobile .nav__title .nav__title__link {
  padding: 0;
}
.nav-mobile .nav__title .nav__title__link .text-custom {
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: underline;
}
.nav-mobile .nav__title .nav__title__link .text-link {
  display: none;
}
.nav-mobile .menu__dropdown .menu__dropdown .nav__title {
  display: block;
  padding: 0;
}
.nav-mobile .menu__dropdown .menu__dropdown .nav__title .nav__title__text {
  display: none;
}
.nav-mobile .menu__dropdown .menu__dropdown .nav__title .nav__title__link {
  padding: 16px;
}
.nav-mobile .menu__dropdown .menu__dropdown .nav__title .nav__title__link .text-custom {
  display: none;
}
.nav-mobile .menu__dropdown .menu__dropdown .nav__title .nav__title__link .text-link {
  display: block;
}

.nav {
  font-size: 13px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
}
.nav > ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  margin: 0;
  transition: all 0.3s;
}
.nav > ul > li {
  padding: 0 29px;
}
@media (max-width: 1280px) {
  .nav > ul > li {
    padding: 0 21px;
  }
}
.nav > ul > li.hover > a {
  border-bottom-color: currentColor;
}
.nav > ul > li.hover .dropdown {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.nav > ul > li.menu__item--has-dropdown > a:after {
  content: "\f292";
  font-family: "boxicons";
  font-size: 14px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 5px;
}
.nav > ul > li:hover > .menu__dropdown {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.nav > ul > li > .menu__dropdown {
  position: absolute;
  left: 0;
  width: 100%;
  color: #2e2e2e;
  background-color: #fff;
  padding: 32px;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  top: 200%;
}
.nav > ul > li .menu__dropdown li a:before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon-arrow-right.svg);
  width: 12px;
  height: 12px;
  margin-left: -12px;
  opacity: 0;
  transition: all 0.3s;
}
.nav > ul > li .menu__dropdown li a:hover {
  text-decoration: underline;
}
.nav > ul > li .menu__dropdown li a:hover:before {
  margin-left: 0;
  margin-right: 7px;
  opacity: 1;
}
.nav > ul > li .menu__dropdown li a:hover .text {
  text-decoration: underline;
}
.nav > ul > li > a {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}
.nav > ul > li > a .icon {
  margin-left: 5px;
}
.nav > ul > li > a .icon svg {
  display: block;
}
.nav a {
  text-decoration: none;
}
.nav .dropdown {
  position: absolute;
  left: 0;
  z-index: 1;
  width: 100%;
  color: #2e2e2e;
  background-color: #fff;
  padding: 32px;
  transition: all 0.3s;
  opacity: 0;
  visibility: hidden;
  top: 200%;
  border-top: 1px solid #efefef;
  box-shadow: 0 2px 0px -1px #efefef;
}
.nav .dropdown.dropdown--default {
  padding-top: 0;
  padding-bottom: 0;
  background: rgba(239, 239, 239, 0.5);
  font-size: 15px;
  color: #2e2e2e;
}
.nav .dropdown.dropdown--default > .menu__dropdown {
  position: relative;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.nav .dropdown.dropdown--default .menu__item {
  padding: 0 25px;
}
.nav .dropdown.dropdown--default .menu__item:hover > .menu__dropdown {
  opacity: 1;
  visibility: visible;
  top: 100%;
}
.nav .dropdown.dropdown--default .menu__item a {
  position: relative;
  display: inline-block;
  padding: 11px 0;
  text-decoration: none;
}
.nav .dropdown.dropdown--default .menu__item a:before {
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  width: 100%;
  height: 2px;
  background: #2e2e2e;
}
.nav .dropdown.dropdown--default .menu__dropdown .menu__dropdown {
  position: absolute;
  top: 200%;
  z-index: 2;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.nav .dropdown.dropdown--default .menu__dropdown .menu__dropdown:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 150vw;
  height: 100%;
  background: rgba(239, 239, 239, 0.5);
  z-index: -1;
  transform: translateX(-50%);
}
.nav .dropdown.dropdown--gallery > ul {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
}
.nav .dropdown.dropdown--gallery > ul > li {
  max-width: 20%;
  flex: 0 0 20%;
  padding: 0 18px;
}
.nav .dropdown.dropdown--gallery > ul > li > a {
  display: block;
  position: relative;
  padding-top: 100%;
  text-transform: uppercase;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
}
.nav .dropdown.dropdown--gallery > ul > li > a:before {
  display: none;
}
.nav .dropdown.dropdown--gallery > ul > li > a:hover .text {
  margin-top: -15px;
  text-decoration: none;
}
.nav .dropdown.dropdown--gallery > ul > li > a .text {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
  text-align: center;
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.nav .dropdown.dropdown--grid .col > .menu__dropdown {
  display: flex;
  flex-flow: row wrap;
}
.nav .dropdown.dropdown--grid .col > .menu__dropdown > .menu__item {
  font-size: 15px;
  max-width: 45.4%;
  flex: 0 0 45.4%;
}
.nav .dropdown.dropdown--grid .col > .menu__dropdown > .menu__item h5 {
  font-size: 13px;
  text-transform: uppercase;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  letter-spacing: 0.09em;
  margin-bottom: 12px;
}
.nav .dropdown.dropdown--grid .col > .menu__dropdown > .menu__item h5 a {
  font-weight: 400;
  text-decoration: underline;
  margin-left: 8px;
}
.nav .dropdown.dropdown--grid .col > .menu__dropdown > .menu__item h5 a:before {
  display: none;
}
.nav .dropdown.dropdown--grid .col > .menu__dropdown > .menu__item ul li a {
  display: inline-block;
  padding: 6px 0;
  position: relative;
  transition: padding-left 0.3s;
}
.nav .dropdown.dropdown--grid .col > .menu__dropdown > .menu__item ul li a:before {
  content: "";
  display: inline-block;
  background-image: url(../images/icon-arrow-right.svg);
  width: 12px;
  height: 12px;
  padding-left: 0;
  margin: auto;
  position: absolute;
  left: -10px;
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
.nav .dropdown.dropdown--grid .col > .menu__dropdown > .menu__item ul li a:hover {
  text-decoration: underline;
  padding-left: 19px;
}
.nav .dropdown.dropdown--grid .col > .menu__dropdown > .menu__item ul li a:hover:before {
  left: 0;
  opacity: 1;
}
.nav .dropdown.dropdown--grid .col > .menu__dropdown > .menu__item ul li a:hover .text {
  text-decoration: underline;
}
.nav .dropdown .dropdown__image {
  height: 100%;
  background-position: 50% 50%;
  background-size: cover;
  padding-bottom: 100%;
  position: relative;
}
.nav .dropdown .dropdown__image:after {
  content: "";
  position: absolute;
  top: 15px;
  left: 15px;
  bottom: 15px;
  right: 15px;
  border: 1px solid #efefef;
}
.nav .dropdown .dropdown__title {
  font-weight: 400;
  font-family: var(--font-body--family);
}
.nav .dropdown .dropdown__subtitle {
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: #6f6f6f;
  margin-bottom: 13px;
}
.nav .dropdown .dropdown__header {
  height: 100%;
  text-align: center;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  background-color: #efefef;
  padding: 16px 32px;
  position: relative;
  font-size: 13px;
}
.nav .dropdown .dropdown__header:before {
  content: "";
  position: absolute;
  top: 16px;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid #e2e2e2;
}
.nav .dropdown .dropdown__header__inner {
  padding-bottom: 13px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nav .dropdown .dropdown__header__inner {
    position: absolute;
    top: 50%;
    left: 0;
    padding: 0 32px;
    transform: translateY(-50%);
  }
}

.nav--alt > ul > li.menu__item--has-dropdown > a:after {
  background-image: url("../images/icon-down.svg");
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nav-utilities {
    float: left;
  }
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .nav-utilities.nav-utilities--right {
    float: right;
  }
}
.nav-utilities.nav-utilities--right > ul {
  margin: 0 -17px;
}
.nav-utilities.nav-utilities--right > ul > li {
  padding: 0 17px;
}
.nav-utilities > ul {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 -12px;
}
.nav-utilities > ul > li {
  padding: 0 12px;
}
@media (max-width: 767px) {
  .nav-utilities > ul > li:not(.visible-scroll) {
    display: none;
  }
}
.nav-utilities > ul > li a {
  font-size: 24px;
  font-weight: 100;
}
.nav-utilities a {
  width: 42px;
  height: 42px;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
.nav-utilities a:hover {
  background-color: #fff;
  color: #2e2e2e;
}
@media (max-width: 767px) {
  .nav-utilities a:hover {
    color: inherit;
    background-color: transparent;
  }
}
@media (max-width: 767px) {
  .nav-utilities a {
    width: 32px;
    height: 32px;
  }
}
.nav-utilities a.link-cart {
  color: #820044;
  position: relative;
  transition: all 0.3s;
}
.nav-utilities a.link-cart .cart-count {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #820044;
  border: 1px solid transparent;
  color: white;
  font-size: 11px;
  line-height: 1;
  font-weight: 700;
  top: 0;
  right: 0;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .nav-utilities a.link-cart .cart-count {
    top: -5px;
    right: -5px;
  }
}
.nav-utilities a.link-cart:before {
  content: "";
  background-color: #d9d9d9;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  transition: all 0.3s;
}
@media (max-width: 767px) {
  .nav-utilities a.link-cart:before {
    width: 32px;
    height: 32px;
  }
}
.nav-utilities a.link-cart:after {
  content: attr(data-heading);
  font: normal normal normal 11px/19px serif;
  letter-spacing: 0;
  text-align: center;
  text-transform: none;
  color: white;
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  opacity: 0;
  transition: all 0.3s;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .nav-utilities a.link-cart:hover {
    color: white;
    background-color: #820044;
  }
}
.nav-utilities a.link-cart:hover .cart-count {
  background-color: white;
  color: #820044;
  border-color: #820044;
}
@media (min-width: 1025px) {
  .nav-utilities a.link-cart:hover:before {
    background-color: #820044;
    width: 42px;
    height: 42px;
  }
}
@media (min-width: 1025px) {
  .nav-utilities a.link-cart:hover:after {
    opacity: 1;
    bottom: -12px;
  }
}
@media (min-width: 1025px) {
  .nav-utilities a.link-cart:hover .count {
    color: #820044;
    background-color: white;
  }
}
@media (max-width: 767px) {
  .nav-utilities a.link-cart.open {
    visibility: hidden;
    opacity: 0;
  }
}
.nav-utilities a svg {
  display: block;
}

.header:not(.header--dark) .nav-utilities a.link-cart:before {
  z-index: 0;
}
.header:not(.header--dark) .nav-utilities a.link-cart svg, .header:not(.header--dark) .nav-utilities a.link-cart .bx {
  position: relative;
}
.header:not(.header--dark) .nav-utilities a {
  position: relative;
}
.header:not(.header--dark) .nav-utilities a:not(.link-cart) svg, .header:not(.header--dark) .nav-utilities a:not(.link-cart) .bx {
  position: relative;
}
.header:not(.header--dark) .nav-utilities a:not(.link-cart):before {
  content: "";
  background-color: #efefef;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
@media (max-width: 1023px) {
  .header:not(.header--dark) .nav-utilities a:not(.link-cart):before {
    display: none;
  }
}
.header:not(.header--dark) .nav-utilities a:not(.link-cart):hover:before {
  opacity: 1;
  visibility: visible;
}

.nav-mobile-bottom {
  padding: 0 16px 0 16px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.nav-mobile-bottom li {
  border-bottom: 1px solid #e2e2e2;
}
.nav-mobile-bottom a {
  text-decoration: none;
  display: block;
  padding: 14px 0;
}

.nav-socials {
  padding: 23px 40px 18px;
  border-top: 1px solid #cbcbcb;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
}
.nav-socials a {
  font-size: 24px;
}
.nav-socials ul {
  max-width: 295px;
  margin: 0 auto;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  color: #6f6f6f;
}

.featured-product {
  width: 100%;
  margin: 16px 0;
}

.featured-product-card {
  display: block;
  text-decoration: none;
  color: inherit;
}
.featured-product-card__image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 1/1;
  background-color: #f5f5f5;
}
.featured-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.featured-product-card:hover .featured-product-card__image img {
  transform: scale(1.05);
}
.featured-product-card__info {
  padding: 8px 4px;
}
.featured-product-card__title {
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.featured-product-card__price {
  font-size: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.featured-product-card__price--sale {
  color: #e53935;
  font-weight: 600;
}
.featured-product-card__price--compare {
  text-decoration: line-through;
  color: #757575;
  font-size: 12px;
}

.swiper-container {
  position: relative;
}

.swiper {
  width: 100%;
  height: 100%;
}

.featured-slider .swiper-slide {
  width: 100%;
}
.featured-slider .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.featured-slider .swiper-pagination-bullet {
  width: 2rem !important;
  height: 0.12rem !important;
  border-radius: 10px !important;
  background-color: #e0e0e0 !important;
  opacity: 1 !important;
  margin: 0 6px !important;
  transition: all 0.3s ease !important;
}
.featured-slider .swiper-pagination-bullet-active {
  background-color: #000 !important;
  transform: scale(1.05) !important;
  box-shadow: 0 0 4px rgba(255, 41, 113, 0.3) !important;
}

.leading-image-container {
  position: relative;
  max-width: calc(var(--max-width) - var(--space-outer));
  margin: 60px auto;
}
.leading-image-container::before {
  content: "";
  position: absolute;
  top: 32px;
  right: 32px;
  bottom: 32px;
  left: 32px;
  z-index: 5;
  border: 1px solid #e6005c;
  pointer-events: none;
}

.leading-image-content {
  position: relative;
}

.leading-image {
  height: 80vh;
  object-fit: cover;
  z-index: 0;
}

.leading-image-text {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 80vh;
  z-index: 1;
  color: #fff;
  font-size: 3rem;
  font-weight: 100;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Baskervville", serif;
}

/* Mobile */
@media screen and (max-width: 768px) {
  .leading-image-border {
    border: 1px solid #FF2971;
    /* Adjust the border width as needed */
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    right: 0.5rem;
    bottom: 0.5rem;
    box-sizing: border-box;
    z-index: 1;
  }
  .leading-image-container {
    padding: 0;
    margin-top: 1rem;
  }
  .leading-image {
    height: 50vh;
  }
  .leading-image-text {
    font-size: 1.5rem;
    height: 50vh;
    padding: 0 1rem;
  }
}
/* Tablet */
@media screen and (max-width: 1024px) {
  .leading-image-text {
    font-size: 2rem;
  }
}
.real-results.full-width {
  width: 100%;
  margin: 0;
  max-width: 100%;
  padding: var(--page-padding);
}
@media screen and (max-width: 768px) {
  .real-results.full-width {
    padding: 0;
  }
}
.real-results {
  max-width: 1260px;
  margin: 2rem auto;
}
.real-results__container {
  display: flex;
  flex-direction: row-reverse;
  gap: 2rem;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .real-results__container {
    flex-direction: column;
  }
}
.real-results__model {
  flex: 2;
}
.real-results__review {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
}
.real-results__review h1 {
  max-width: 300px;
  text-align: center;
  font-size: 2.7rem;
  font-family: var(--font-heading--family);
  font-style: var(--font-heading--style);
  font-weight: var(--font-heading--weight);
  text-transform: uppercase;
  margin: 1rem 0;
}
.real-results__review-rating {
  color: #ff1a67;
  display: flex;
  flex-direction: row;
  gap: 0.7rem;
}
.real-results__review p {
  font-size: 1.2rem;
  text-align: center;
  padding: 1rem;
}
.real-results__review p.customer {
  font-size: 1.4rem;
  color: #737373;
  font-weight: bolder;
  text-transform: uppercase;
  letter-spacing: 4px;
}

.product {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .product {
    padding: var(--page-padding);
  }
}
.product__breadcrumb {
  margin-bottom: 2rem;
}
.product__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (min-width: 769px) {
  .product__container {
    flex-direction: row;
    align-items: flex-start;
  }
}
.product__recommendations {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .product__recommendations {
    padding: var(--page-padding);
  }
}
.product__recommendations-header {
  margin: 1rem 0;
  display: flex;
}
.product__recommendations-header h2 {
  font-size: 2rem;
  font-family: var(--font-heading--family);
  font-style: var(--font-heading--style);
  font-weight: var(--font-heading--weight);
  text-transform: uppercase;
}
.product__media {
  width: 100%;
  border-radius: 0;
}
@media screen and (min-width: 769px) {
  .product__media {
    width: 50%;
    position: sticky;
    top: 2rem;
  }
}
.product__media-item--image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.product__media-item--video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product__media-item--video video {
  width: 100%;
  height: 100%;
  background-color: black;
}
.product__media-item--video:hover .product__media-item-play-button {
  visibility: visible;
}
.product__media-item--video:hover .product__media-item-mute-button {
  visibility: visible;
}
.product__media-item--video .product__media-item-play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  width: 64px;
  height: 64px;
  font-size: 32px;
  color: white;
  border: 0;
  z-index: 1;
  padding: 8px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  cursor: pointer;
}
.product__media-item--video .product__media-item-play-button:hover {
  background-color: rgba(173, 173, 173, 0.4);
}
.product__media-item--video .product__media-item-play-button i[role=play] {
  display: none;
}
.product__media-item--video .product__media-item-play-button i[role=pause] {
  display: block;
}
.product__media-item--video .product__media-item-play-button[data-state=paused] i[role=play] {
  display: block;
}
.product__media-item--video .product__media-item-play-button[data-state=paused] i[role=pause] {
  display: none;
}
.product__media-item--video .product__media-item-mute-button {
  background: transparent;
  width: 64px;
  height: 64px;
  font-size: 24px;
  color: white;
  outline: 0;
  top: 12px;
  right: 12px;
  position: absolute;
  border: 0;
  z-index: 1;
  padding: 8px;
  border-radius: 100%;
  visibility: hidden;
}
.product__media-item--video .product__media-item-mute-button:hover {
  background-color: rgba(173, 173, 173, 0.5);
}
.product__media-item--video .product__media-item-mute-button i[role=mute] {
  display: none;
}
.product__media-item--video .product__media-item-mute-button i[role=unmute] {
  display: block;
}
.product__media-item--video .product__media-item-mute-button[data-state=muted] i[role=mute] {
  display: block;
}
.product__media-item--video .product__media-item-mute-button[data-state=muted] i[role=unmute] {
  display: none;
}
.product__gallery {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 769px) {
  .product__gallery.product__gallery--left {
    flex-direction: row;
  }
  .product__gallery.product__gallery--right {
    flex-direction: row-reverse;
  }
  .product__gallery.product__gallery--bottom {
    flex-direction: column;
  }
}
.product__thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: thin;
}
@media screen and (min-width: 769px) {
  .product__thumbnails--left, .product__thumbnails--right {
    flex-direction: column;
    max-height: 500px;
    overflow-y: auto;
    overflow-x: hidden;
    width: auto;
    flex-shrink: 0;
  }
  .product__thumbnails--bottom {
    order: 1;
  }
}
.product__thumbnail {
  width: var(--thumbnail-width, 100px);
  height: var(--thumbnail-width, 100px);
  flex-shrink: 0;
  border: 1px solid transparent;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  transition: border-color 0.3s ease;
}
.product__thumbnail--video .bx {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  color: #fff;
  text-align: center;
  font-size: 32px;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.5);
}
.product__thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product__thumbnail--active {
  border-color: var(--color-primary, #000);
}
.product__thumbnail-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px;
}
.product__main-media {
  width: 100%;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .product__gallery--left .product__main-media, .product__gallery--right .product__main-media {
    width: calc(100% - var(--thumbnail-width, 100px) - 1rem);
  }
}
.product__slide {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 1;
}
.product__slide--mobile-zoom {
  touch-action: manipulation;
}
.product__slide--mobile-zoom .product__media-item--image {
  touch-action: pan-x pan-y pinch-zoom;
}
.product__no-media {
  background-color: #f5f5f5;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  min-height: 400px;
}
.product__no-media svg {
  max-width: 100%;
  max-height: 400px;
}
.product__details {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
@media screen and (min-width: 769px) {
  .product__details {
    width: 50%;
  }
}
.product__related-products {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.product__related-products .heading {
  display: block;
  font-family: var(--font-subheading--family);
  font-style: var(--font-subheading--style);
  font-weight: var(--font-subheading--weight);
  text-transform: uppercase;
}
.product__header {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.product__title {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .product__title {
    font-size: 2rem;
  }
}
.product__price {
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.product__price--regular.sale {
  color: var(--color-error, #e53935);
}
.product__price--compare {
  display: none;
  text-decoration: line-through;
  color: var(--color-text-light, #767676);
  font-size: 1rem;
}
.product__price--compare.sale {
  display: block;
}
.product__shade-products {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
}
.product__shade-product {
  width: var(--related-product-thumbnail-width, 64px);
  height: var(--related-product-thumbnail-width, 64px);
  overflow: hidden;
  box-sizing: content-box;
  border: 2px solid transparent;
  padding: 1px;
}
.product__shade-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product__shade-product:hover {
  border: 2px solid black;
}
.product__shade-product--active {
  border: 2px solid black;
}
.product__description {
  line-height: 1.6;
  color: var(--color-text, #333);
}
.product__description-toggle {
  background: transparent;
  outline: none;
  border: none;
  text-decoration: underline;
}
.product__description[data-read-more=true]:not(.active) .content-preview {
  display: block;
}
.product__description[data-read-more=true]:not(.active) .content-full {
  display: none;
}
.product__description .content-preview {
  display: none;
}
.product__description .content-full {
  display: block;
}
.product__variants {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.product__shade-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product__shade-button {
  background: #f2f2f2;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  border-radius: 0;
  cursor: pointer;
  text-transform: uppercase;
}
.product__shade-button:hover {
  border-color: black;
  color: black;
}
.product__shade-button--selected {
  border-color: black;
  color: black;
}
.product__option {
  border-bottom: 1px solid #bfbfbf;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  border-bottom: 1px solid #bfbfbf;
  padding-bottom: 0.5rem;
}
.product__option:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.product__option-label {
  display: block;
  text-transform: uppercase;
  font-family: var(--font-subheading--family);
  font-style: var(--font-subheading--style);
  font-weight: var(--font-subheading--weight);
}
.product__option-values {
  width: 100%;
}
.product__option-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.product__option-button {
  flex: 1;
  background: #f2f2f2;
  border: 1px solid transparent;
  padding: 0.5rem 1rem;
  border-radius: 0;
  cursor: pointer;
  transition: all 0.2s ease;
  min-width: 44px;
  text-align: center;
  color: #0d0d0d;
  flex-basis: max-content;
  text-transform: uppercase;
}
.product__option-button:hover:not(:disabled) {
  border-color: black;
  color: black;
}
.product__option-button--selected {
  border-color: black;
  color: black;
}
.product__form {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.product__quantity {
  width: 90px;
  display: flex;
  flex-direction: row;
}
.product__quantity .quantity-button {
  background-color: #f2f2f2;
  outline: none;
  width: 30px;
  border: none;
  border-radius: 0;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  color: #0d0d0d;
}
.product__shopping-wrapper {
  display: flex;
  flex-direction: row;
  gap: 0.5em;
  height: 48px;
}
.product__shopping-wrapper .quantity-input {
  height: 100%;
  width: 30px;
  background-color: #f2f2f2;
  outline: none;
  border: none;
  padding: 0;
  border-radius: 0;
  text-align: center;
}
.product__shopping-wrapper .quantity-input:focus {
  border: 0;
  box-shadow: none;
  outline: none;
}
.product__shopping-wrapper .shop-button {
  height: 100%;
  background-color: #e6005c;
  color: white;
  border-radius: 0;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
  outline: none;
  border: none;
  width: 100%;
}
.product__shopping-wrapper .shop-button:disabled {
  background-color: #bfbfbf;
  cursor: not-allowed;
}
.product__shopping-wrapper .shop-button:hover:not(:disabled) {
  background-color: #b40054;
  color: white;
}
.product__shopping-wrapper .shop-button:active {
  scale: 0.98;
}
.product__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.product__add-to-cart {
  padding: 1rem 1.5rem;
  background-color: var(--color-primary, #000);
  color: #fff;
  border: none;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.product__add-to-cart:hover {
  background-color: white;
}
.product__add-to-cart:disabled {
  background-color: #bfbfbf;
  cursor: not-allowed;
}
.product__media-item--image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.1s ease-out;
  will-change: transform;
  background-size: auto;
  background-position: center;
  cursor: zoom-in;
  background-repeat: no-repeat;
  object-fit: cover;
}
@media (hover: none) {
  .product__media-item--image {
    transition: none;
  }
}
.product__info-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f2f2f2;
  border: none;
  padding: 1rem;
  border: 1px solid #d9d9d9;
  cursor: pointer;
  line-height: 1;
  color: var(--color-text);
  transition: background-color 0.3s ease;
}
.product__info-button:hover {
  background-color: #d9d9d9;
}

.product .swiper-button-prev,
.product .swiper-button-next {
  color: var(--color-primary, #000);
}
.product .swiper-button-prev::after,
.product .swiper-button-next::after {
  font-size: 1.5rem;
}
.product .swiper-pagination-bullet {
  background-color: var(--color-text-light, #767676);
  opacity: 0.5;
}
.product .swiper-pagination-bullet-active {
  background-color: var(--color-primary, #000);
  opacity: 1;
}

@media screen and (min-width: 769px) and (max-width: 1023px) {
  :root {
    --thumbnail-width: calc(var(--thumbnail-width, 100px) * 0.5);
  }
}
.footer-container {
  background-color: #000;
  color: #fff;
  padding: 2rem;
  margin-top: 2rem;
}

.footer-title-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 0.5rem;
  width: 70%;
}

.footer-body {
  display: flex;
  flex-direction: row;
  align-items: start;
  justify-content: start;
  gap: 2rem;
}

.site-name {
  font-size: 3rem;
  letter-spacing: 0.19em;
  font-weight: 500;
}

.follow-us {
  font-size: 1.5rem;
  font-weight: 500;
}

.footer-social-icons {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  color: white;
}

.footer-social-icons .bxl {
  font-size: 2rem;
}

.footer-subscribe-container {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 0.5rem;
  width: 40%;
}

.subscribe-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.subscribe-description {
  font-size: 1rem;
  font-weight: 400;
}

.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 1rem;
}

.subscribe-input-container {
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}

.subscribe-input {
  width: 100%;
  padding: 0.5rem;
  border: none;
  background-color: #000;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  padding-left: 3rem;
  border: 1px solid #fff;
  outline: none;
  border-radius: 0;
}
.subscribe-input::placeholder {
  color: #fff;
}

.subscribe-input-container .bx {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
}

.subscribe-button {
  font-size: 1rem;
  font-weight: 600;
  background-color: #fff;
  color: #000;
  padding: 0.5rem 1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.subscribe-button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.subscribe-button:hover:not(:disabled) {
  background-color: #f0f0f0;
}

.subscribe-error-message {
  font-size: 14px;
  margin-top: 8px;
  text-align: center;
  transition: all 0.3s ease;
  color: #ff0000;
}
.subscribe-error-message.success {
  color: #28a745;
}

.subscribe-input {
  transition: border-color 0.3s ease;
}
.subscribe-input:focus {
  border-color: #007bff;
}
.subscribe-input.error {
  border-color: #ff0000;
}
.subscribe-input.success {
  border-color: #28a745;
}

.footer-bottom-hr {
  margin-top: 2rem;
  margin-bottom: 2rem;
}

.footer-bottom-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footer__copyright {
  font-size: 1rem;
  font-weight: 500;
}

.footer__links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.footer__link {
  font-size: 1rem;
  font-weight: 500;
}

.footer__currency {
  margin: 0 1rem;
}
.footer__currency .currency-selector {
  padding: 0.5rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  background-color: transparent;
  color: var(--color-text);
  font-size: var(--font-size-base);
  cursor: pointer;
}
.footer__currency .currency-selector:hover {
  border-color: var(--color-text);
}
.footer__currency .currency-selector option {
  background-color: var(--color-background);
}

@media screen and (max-width: 768px) {
  .footer-container {
    margin-top: 4rem;
    padding: 1.5rem;
  }
  .site-name {
    font-size: 2.2rem;
    letter-spacing: 0.19rem;
  }
  .footer-body {
    flex-direction: column;
    gap: 4rem;
  }
  .footer-title-container {
    width: 100%;
  }
  .footer-subscribe-container {
    width: 100%;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 1rem;
    align-items: start;
  }
  .footer__links {
    flex-direction: column;
    gap: 1rem;
    align-items: start;
    justify-content: start;
    text-align: left;
    width: 100%;
  }
}
.breadcrumbs {
  font-size: 0.85em;
  margin: 0 0 2em;
}
.breadcrumbs ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.breadcrumbs li {
  display: inline-block;
}
.breadcrumbs li:not(:last-child):after {
  content: "› ";
  display: inline-block;
  padding-left: 0.75ch;
  speak: none;
}
.breadcrumbs a {
  text-decoration: none;
}
.breadcrumbs a:hover, .breadcrumbs a:focus {
  text-decoration: underline;
  color: #e6005c;
}
.breadcrumbs [aria-current=page] {
  color: inherit;
  font-weight: normal;
  text-decoration: none;
}
.breadcrumbs [aria-current=page]:hover, .breadcrumbs [aria-current=page]:focus {
  text-decoration: underline;
  color: #e6005c;
}

.gallery-wrapper {
  background-color: #f1eaec;
  position: relative;
}
.gallery-wrapper::before {
  content: "";
  position: absolute;
  top: 32px;
  right: 32px;
  bottom: 32px;
  left: 32px;
  z-index: 5;
  border: 1px solid #e6005c;
  pointer-events: none;
}

.gallery-slider {
  display: flex;
  flex-direction: column;
  max-width: calc(var(--max-width) - var(--space-outer));
  margin: 60px auto;
  align-items: center;
  justify-content: center;
  padding: 32px;
  gap: 40px;
  background-color: #f1eaec;
}
@media (max-width: 767px) {
  .gallery-slider {
    flex-direction: column-reverse;
  }
}
@media screen and (min-width: 768px) {
  .gallery-slider {
    flex-direction: row;
    gap: 60px;
  }
  .gallery-slider > * {
    flex: 0 0 calc(50% - 30px);
  }
}
.gallery-slider__content {
  display: flex;
  flex-direction: column;
  padding: 20px;
  align-items: flex-start;
  gap: 20px;
}
@media (max-width: 767px) {
  .gallery-slider__content {
    text-align: center;
    align-items: center;
  }
}
.gallery-slider__title {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  line-height: 1.2;
}
.gallery-slider__description {
  font-size: 18px;
  margin: 0;
  line-height: 1.5;
}
.gallery-slider__button {
  display: inline-block;
  color: #e6005c;
  border: 1px solid #e6005c;
  box-sizing: content-box;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: 500;
  margin-top: 10px;
  transition: background-color 0.3s ease;
}
.gallery-slider__button:hover {
  color: #fff;
  background-color: #e6005c;
}
.gallery-slider__images {
  width: 100%;
  max-width: 500px;
  border-radius: 8px;
  overflow: hidden;
  position: relative;
}
.gallery-slider__controller {
  position: absolute;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 200px;
  justify-content: flex-end;
}
.gallery-slider__controller-item {
  width: 64px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.7;
  transition: opacity 0.3s ease;
  border: 2px solid transparent;
}
.gallery-slider__controller-item:hover {
  opacity: 1;
}
.gallery-slider__controller-item--active {
  opacity: 1;
  border-color: var(--color-primary);
}
.gallery-slider__controller-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-slider__item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.swiper-button-next,
.swiper-button-prev {
  color: var(--color-primary);
}

.swiper-pagination-bullet-active {
  background-color: var(--color-primary);
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1000;
  width: 100%;
  visibility: hidden;
  transition: visibility 0.3s ease;
}
@media screen and (min-width: 768px) {
  .cart-drawer {
    width: 400px;
  }
}
.cart-drawer.is-active {
  visibility: visible;
}
.cart-drawer.is-active .cart-drawer__overlay {
  opacity: 1;
}
.cart-drawer.is-active .cart-drawer__container {
  transform: translateX(0);
}

.cart-drawer__overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.cart-drawer__container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background-color: var(--color-background);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (min-width: 768px) {
  .cart-drawer__container {
    width: 400px;
  }
}

.cart-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}

.cart-drawer__close {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: var(--color-text);
}

.cart-drawer__body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 20px;
}

.cart-drawer__empty {
  text-align: center;
  padding: 30px 0;
}
.cart-drawer__empty.js-cart-drawer-empty {
  display: none;
}
.cart-drawer__empty p {
  margin-bottom: 20px;
  font-size: 16px;
}

.cart-drawer__items {
  margin-bottom: 20px;
}

.cart-drawer__item {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid var(--color-border);
}

.cart-drawer__item-image {
  border-radius: 10px;
  overflow: hidden;
}
.cart-drawer__item-image img {
  max-width: 100%;
  height: 100%;
  display: block;
}

.cart-drawer__item-content {
  display: flex;
  flex-direction: column;
}

.cart-drawer__item-title {
  font-weight: 500;
  margin-bottom: 5px;
}
.cart-drawer__item-title a {
  color: var(--color-text);
  text-decoration: none;
}
.cart-drawer__item-title a:hover {
  text-decoration: underline;
}

.cart-drawer__item-variant {
  font-size: 14px;
  color: var(--color-text-light);
  margin-bottom: 5px;
}

.cart-drawer__item-price {
  font-weight: 500;
  margin-bottom: 10px;
}

.cart-drawer__item-quantity {
  display: flex;
  align-items: center;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  max-width: 120px;
}

.cart-drawer__quantity-button {
  background: none;
  border: none;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 16px;
}

.cart-drawer__quantity-input {
  width: 40px;
  border: none;
  text-align: center;
  -moz-appearance: textfield;
}
.cart-drawer__quantity-input::-webkit-outer-spin-button, .cart-drawer__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-drawer__item-remove {
  align-self: flex-start;
}

.cart-drawer__remove-button {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  font-size: 16px;
  color: var(--color-text-light);
}

.cart-drawer__footer {
  padding: 20px;
  border-top: 1px solid var(--color-border);
}

.cart-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  font-weight: 600;
}

.cart-drawer__actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 15px;
}

.cart-drawer__update-button {
  padding: 10px;
  background-color: #820044;
  color: white;
  border: 1px solid #820044;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}
.cart-drawer__update-button:active {
  transform: scale(0.96);
}
.cart-drawer__update-button {
  transition: transform 0.1s;
}

.cart-drawer__checkout-button {
  padding: 10px;
  background-color: white;
  color: black;
  border: 1px solid black;
  cursor: pointer;
  font-weight: 500;
  transition: all 0.3s;
}
.cart-drawer__checkout-button:active {
  transform: scale(0.96);
}
.cart-drawer__checkout-button {
  transition: transform 0.1s;
}

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

.cart-drawer__continue-button {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  text-decoration: underline;
  color: var(--color-text);
}

body.cart-drawer-open {
  overflow: hidden;
}

.template-cart .main {
  padding: var(--page-padding);
}
@media screen and (max-width: 768px) {
  .template-cart .main {
    padding: calc(var(--page-padding) * 0.5);
  }
}

.cart {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}
.cart__container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}
.cart__title {
  font-size: 2rem;
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.2em;
  word-spacing: 0.4em;
}
.cart__table.js-cart-empty {
  display: none;
}
@media screen and (max-width: 768px) {
  .cart__table thead {
    display: none;
  }
}
.cart__table thead tr th {
  text-align: left;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.cart__table tbody tr td {
  padding: 16px 0;
}
.cart__item-product {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.cart__item-product-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1/1;
}
.cart__item-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart__item-product-info {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.cart__item-product-title {
  font-size: 1.2rem;
  font-weight: 600;
}
.cart__item-product-variant {
  font-size: 0.9rem;
  text-transform: uppercase;
}
.cart__item-product-price {
  display: none;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .cart__item-product-price {
    display: block;
  }
}
.cart__item-quantity {
  width: 90px;
  display: flex;
  flex-direction: row;
}
.cart__item-quantity-button {
  background-color: #f2f2f2;
  outline: none;
  width: 30px;
  border: none;
  border-radius: 0;
  text-align: center;
  font-size: 1rem;
  padding: 10px;
  font-weight: 500;
  color: #0d0d0d;
  border: 1px solid #bfbfbf;
}
.cart__item-quantity-input {
  height: 100%;
  width: 30px;
  background-color: #f2f2f2;
  outline: none;
  border: 1px solid #bfbfbf;
  padding: 10px;
  border-radius: 0;
  text-align: center;
}
.cart__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  display: none;
}
.cart__empty.js-cart-empty {
  display: flex;
}
.cart__empty-icon {
  font-size: 4rem;
  color: #737373;
}
.cart__empty-message {
  font-size: 1.5rem;
}
.cart__empty-button {
  text-decoration: underline;
}

.collection-slider__container {
  margin: 0 auto;
  padding: var(--page-padding) calc(var(--page-padding) * 2);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .collection-slider__container {
    padding: calc(var(--page-padding) / 2);
  }
}
.collection-slider__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.collection-slider__title {
  font-size: 2.5rem;
  font-family: var(--font-heading--family);
  font-style: var(--font-heading--style);
  font-weight: var(--font-heading--weight);
  text-transform: uppercase;
}
.collection-slider__view-all {
  background: #ff1a67;
  color: white;
  padding: 15px 30px;
  text-decoration: none;
  font-size: 1.2rem;
  outline: none;
  border: 1px solid #ff1a67;
  transition: all 0.3s ease;
  text-transform: uppercase;
}
.collection-slider__view-all:hover {
  background: white;
  color: #ff1a67;
}
.collection-slider__products {
  display: flex;
  flex-direction: row;
}

.product-preview {
  position: relative;
  height: 100%;
}
.product-preview__link {
  display: flex;
  flex-direction: column;
  height: 100%;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
.product-preview__link:hover .product-preview__image--hover {
  opacity: 1;
}
.product-preview__link:hover .product-preview__image--main {
  opacity: 0;
}
.product-preview__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-preview__image {
  height: 100%;
  width: 100%;
}
.product-preview__image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease;
}
.product-preview__image--hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.product-preview__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.5rem 1rem;
  background-color: #820044;
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 100px;
  z-index: 1;
}
.product-preview__badge--sold-out {
  background-color: #737373;
  color: #d9d9d9;
}
.product-preview__title {
  margin: 0;
  font-family: var(--font-subheading--family);
  font-style: var(--font-subheading--style);
  font-weight: var(--font-subheading--weight);
  font-size: 1rem;
}
.product-preview__price {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}
.product-preview__price--compare {
  text-decoration: line-through;
  color: var(--color-text-subdued);
  margin-right: 0.5rem;
}
.product-preview__price--sale {
  color: var(--color-accent);
}
@media screen and (min-width: 768px) {
  .product-preview__title {
    font-size: 1.125rem;
  }
  .product-preview__price {
    font-size: 1rem;
  }
}

.video-slider__container {
  margin: 0 auto;
  padding: var(--page-padding) calc(var(--page-padding) * 2);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .video-slider__container {
    padding: calc(var(--page-padding) / 2);
  }
}
.video-slider__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.video-slider__title {
  font-size: 2.5rem;
  font-family: var(--font-heading--family);
  font-style: var(--font-heading--style);
  font-weight: var(--font-heading--weight);
  text-transform: uppercase;
}
.video-slider__video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.video-slider__video:hover .video-slider__play-button {
  visibility: visible;
}
.video-slider__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
  width: 64px;
  height: 64px;
  font-size: 32px;
  color: white;
  border: 0;
  z-index: 1;
  padding: 8px;
  border-radius: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  cursor: pointer;
}
.video-slider__play-button:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.video-slider__play-button i[role=play] {
  display: none;
}
.video-slider__play-button i[role=pause] {
  display: block;
}
.video-slider__play-button[data-state=paused] i[role=play] {
  display: block;
}
.video-slider__play-button[data-state=paused] i[role=pause] {
  display: none;
}
.video-slider__mute-button {
  background: transparent;
  width: 48px;
  height: 48px;
  font-size: 24px;
  color: white;
  outline: 0;
  top: 12px;
  right: 12px;
  position: absolute;
  border: 0;
  z-index: 1;
  padding: 8px;
  border-radius: 100%;
}
.video-slider__mute-button:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.video-slider__mute-button i[role=mute] {
  display: none;
}
.video-slider__mute-button i[role=unmute] {
  display: block;
}
.video-slider__mute-button[data-state=muted] i[role=mute] {
  display: block;
}
.video-slider__mute-button[data-state=muted] i[role=unmute] {
  display: none;
}

.location-section__container {
  margin: 0 auto;
  padding: var(--page-padding) calc(var(--page-padding) * 2);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .location-section__container {
    padding: 0;
  }
}
.location-section__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .location-section__header {
    padding: calc(var(--page-padding) / 2);
  }
}
.location-section__title {
  font-size: 2.5rem;
  font-family: var(--font-heading--family);
  font-style: var(--font-heading--style);
  font-weight: var(--font-heading--weight);
  text-transform: uppercase;
}
.location-section__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.location-section__content-image img {
  transition: all 0.2s ease;
  height: 450px;
  object-fit: cover;
  object-position: center;
}
.location-section__content-image:hover img {
  scale: 1.05;
}
.location-section__content-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .location-section__content-item {
    padding: 0 calc(var(--page-padding) / 2);
  }
}
.location-section__content-item-desc {
  font-size: 1.5rem;
}
.location-section__content-item-button {
  background-color: #e6005c;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
}
.location-section__content-item-button:hover {
  background-color: #b40054;
  color: white;
}

.page-container__header {
  margin: 1rem 0;
  background-color: var(--page-background, #ffe1f3);
  padding: var(--page-padding);
}
.page-container__header-title {
  font-size: 2.5rem;
  font-family: var(--font-heading--family);
}

.split-visual-parent {
  margin: 1rem 0;
}
@media screen and (max-width: 768px) {
  .split-visual-parent {
    margin: 0;
  }
}

.split-visual-section {
  max-width: 1260px;
  margin: 0 auto;
  padding: var(--page-padding);
}
.split-visual-section__container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.split-visual-section__container.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .split-visual-section__container {
    flex-direction: column;
  }
  .split-visual-section__container.reverse {
    flex-direction: column;
  }
}
.split-visual-section__container-image {
  width: 100%;
}
.split-visual-section__container-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.split-visual-section__container-details {
  padding: var(--page-padding);
  display: flex;
  flex-basis: 100%;
  height: 100%;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
  min-height: 500px;
}
.split-visual-section__container-title {
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
}
.split-visual-section__container-content {
  font-size: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.split-visual-section__container-content .subheading {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #a6a6a6;
}
.split-visual-section__container-content-item.active-title::after {
  content: "-";
}
.split-visual-section__container-content-item {
  border-top: 1px solid #d9d9d9;
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.split-visual-section__container-content-item-title {
  cursor: pointer;
  position: relative;
  font-size: 1.2rem;
  font-weight: bolder;
  text-transform: uppercase;
}
.split-visual-section__container-content-item-title::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 100;
}
.split-visual-section__container-content-item-content li {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.split-visual-section a.button {
  background-color: #e6005c;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
  margin: 1rem 0;
  display: block;
  border: 0;
  cursor: pointer;
  transition: all 0.3s ease;
}
.split-visual-section a.button:hover {
  background-color: #b40054;
  color: white;
}

.location-details {
  max-width: 1260px;
  margin: 0 auto;
  padding: var(--page-padding);
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .location-details {
    padding: calc(var(--page-padding) / 2);
  }
}
.location-details__container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .location-details__container {
    flex-direction: column;
  }
}
.location-details__title h1 {
  font-size: 2.5rem;
  font-weight: 600;
  text-transform: uppercase;
}
.location-details__contact {
  width: 100%;
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.location-details__contact-background {
  width: 100%;
  height: 500px;
  border-radius: 15px;
  overflow: hidden;
}
.location-details__contact-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.location-details__contact-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.5rem;
}
.location-details__contact-details-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.location-details__email, .location-details__phone {
  width: fit-content;
  display: flex;
  align-items: center;
  transition: border-bottom 0.3s ease-in-out;
  border-bottom: 1px dashed transparent;
  gap: 1rem;
  justify-content: flex-start;
}
.location-details__email i, .location-details__phone i {
  font-size: 1.5rem;
}
.location-details__email:hover, .location-details__phone:hover {
  border-bottom: 1px dashed #ff4c8f;
}
.location-details__book-appointment {
  color: black;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.5rem 0;
  font-size: 1.2rem;
  width: fit-content;
  font-weight: 600;
  transition: background-color 0.3s ease-in-out;
  gap: 1rem;
  border: 1px solid transparent;
  text-align: start;
  display: flex;
  align-items: center;
  border-style: dashed;
}
.location-details__book-appointment i {
  font-size: 1.5rem;
}
.location-details__book-appointment:hover {
  background-color: white;
  color: #50002f;
  border-bottom: 1px dashed #50002f;
}
.location-details__map {
  flex-basis: 50%;
  display: flex;
  flex-direction: column;
  justify-content: start;
  gap: 1rem;
}
.location-details__map-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.location-details__map-container-inner {
  width: 100%;
  height: 100%;
  border-radius: 15px;
  overflow: hidden;
}
.location-details__map-container-inner iframe {
  width: 100%;
  height: 500px;
}
.location-details__map-container-address {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.location-details__map-container-address h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.collection {
  margin: 2rem 0;
}
.collection .container {
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  align-items: flex-start;
}
@media screen and (max-width: 768px) {
  .collection .container {
    flex-direction: column;
    padding: calc(var(--page-padding) / 2);
  }
}
.collection .container .filter-sidebar__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.collection .container .filter-sidebar__title {
  font-size: 1.5rem;
  font-weight: 600;
}
.collection .container .filter-sidebar .filter-button {
  display: none;
}
@media screen and (min-width: 769px) {
  .collection .container .filter-sidebar {
    width: 25%;
    position: sticky;
    top: 5rem;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid #f2f2f2;
    padding: 1rem;
    border-radius: 0.5rem;
  }
  .collection .container .filter-sidebar.js-sidebar {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .collection .container .filter-sidebar:not(.js-sidebar) {
    display: none;
  }
  .collection .container .filter-sidebar.js-sidebar {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    border: 1px solid #f2f2f2;
    padding: 1rem;
    border-radius: 0.5rem;
  }
}
.collection .container .filter-sidebar .collection-sorting__label {
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}
.collection .container .filter-sidebar .collection-sorting__select {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #bfbfbf;
  border-radius: 0.25rem;
  background-color: white;
  font-size: 1rem;
}
.collection .container .filter-sidebar .collection-filters__details[open] .collection-filters__summary-text::after,
.collection .container .filter-sidebar .collection-filters__filter[open] .collection-filters__filter-summary::after {
  transform: translateY(-50%) rotate(180deg);
}
.collection .container .filter-sidebar .collection-filters__summary-text,
.collection .container .filter-sidebar .collection-filters__filter-summary {
  user-select: none;
  --webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  font-weight: 600;
  margin-bottom: 0.5rem;
  cursor: pointer;
  display: block;
  position: relative;
}
.collection .container .filter-sidebar .collection-filters__summary-text::after,
.collection .container .filter-sidebar .collection-filters__filter-summary::after {
  content: "▼";
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.75rem;
  color: #404040;
  transition: transform 0.3s ease;
}
.collection .container .filter-sidebar .collection-filters__filter-summary {
  font-size: 0.85rem;
  padding-left: 0.5rem;
}
.collection .container .filter-sidebar .collection-filters__body form {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.collection .container .filter-sidebar .collection-filters__filter-content {
  padding-left: 1rem;
  margin-top: 0.5rem;
}
.collection .container .filter-sidebar ul.collection-filters__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  user-select: none;
  --webkit-user-select: none -moz-user-select: none;
  -ms-user-select: none;
}
.collection .container .filter-sidebar ul.collection-filters__list label {
  cursor: pointer;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  gap: 0.5rem;
}
.collection .container .filter-sidebar .collection-filters__buttons {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
  align-items: center;
}
.collection .container .products-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  flex: 1;
}
.collection .container .products-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .collection .container .products-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .collection .container .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .collection .container .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: var(--page-padding);
}

.guests-container {
  padding: 12px;
  border: 1px solid #bfbfbf;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.guests-container select {
  width: 100px;
}

.template-article {
  background-color: rgb(255, 245.3, 249.18);
}

.article {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 1024px;
  margin: 0 auto;
  padding: var(--page-padding);
}
.article-header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article-header__image {
  width: 100%;
  position: relative;
}
.article-header__image::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 5;
  border: 1px solid #e6005c;
  pointer-events: none;
}
.article-header__image img {
  max-height: 300px;
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
}
.article-header__title {
  font-size: 2rem;
  font-family: var(--font-heading--family);
  font-style: var(--font-heading--style);
  font-weight: var(--font-body--weight);
  color: #ff1a67;
}
.article-header__meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
}
.article-header__item span {
  font-weight: 600;
}
.article-header__item span[itemprop=author] {
  color: #e6005c;
}
.article-container {
  background-color: white;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: var(--page-padding);
}
.article-container__content {
  border: 1px solid #e6005c;
  padding: var(--page-padding);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.article-container__content ul,
.article-container__content ol {
  list-style-type: disc;
  padding-left: 1.5rem;
}
.article-container__content hr {
  border: none;
  border-top: 1px solid #e6005c;
  margin: 1rem 0;
}
.article-container__author {
  display: flex;
  gap: 0.2rem;
}
.article-container__author-name {
  color: #e6005c;
}

.template-blog {
  background-color: rgb(255, 245.3, 249.18);
}

.blog {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.blog-container {
  padding: var(--page-padding);
}
.blog-article {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.blog-article__title {
  font-size: 1.25rem;
  font-family: var(--font-heading--family);
  font-style: var(--font-heading--style);
  font-weight: var(--font-body--weight);
  color: #ff1a67;
  margin: 0.5rem 0;
  text-decoration: none;
  transition: color 0.3s ease;
}
.blog-article__title:hover, .blog-article__title:focus {
  color: #50002f;
}
.blog-article__time {
  display: flex;
  font-size: 0.85rem;
  color: #595959;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
}
.blog-article__image {
  width: 100%;
  position: relative;
}
.blog-article__image::before {
  content: "";
  position: absolute;
  top: 16px;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 5;
  border: 1px solid #e6005c;
  pointer-events: none;
}
.blog-article__image img {
  height: 400px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.blog-article-grid {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media screen and (max-width: 1024px) {
  .blog-article-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .blog-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 576px) {
  .blog-article-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

.baytree-quiz {
  max-width: 1260px;
  background-position: center;
  padding: var(--page-padding);
  height: 700px;
  margin: 1rem auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.2);
}
.baytree-quiz[data-started=true] {
  background-image: none !important;
  justify-content: flex-start;
  height: auto;
  box-shadow: none;
  background: #ffe1f3;
}
.baytree-quiz[data-started=true] .baytree-quiz__start-container {
  display: none;
}
.baytree-quiz:not([data-started=true]) .baytree-quiz__field-container {
  display: none;
}
.baytree-quiz__title, .baytree-quiz__field-label {
  color: #ff1a67;
  font-size: 2rem;
  font-family: var(--font-heading--family);
  font-style: var(--font-heading--style);
  font-weight: var(--font-heading--weight);
  text-transform: uppercase;
}
.baytree-quiz__description, .baytree-quiz__field-description {
  color: #50002f;
  font-size: 1.5rem;
}
.baytree-quiz__field {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.baytree-quiz__field-footer {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
.baytree-quiz__field-footer button {
  background-color: transparent;
  color: #e6005c;
  border: none;
  padding: 0.5rem 1rem;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}
.baytree-quiz__field-footer button:hover {
  background-color: #e6005c;
  color: white;
}
.baytree-quiz__options {
  width: 75%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
.baytree-quiz__options-img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .baytree-quiz__options-img {
    width: 100%;
  }
}
.baytree-quiz__option-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: white;
  border-radius: 10px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.baytree-quiz__option-img img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 5px;
}
.baytree-quiz__option-img:hover {
  border-color: #ff1a67;
}
.baytree-quiz__option-img[data-selected=true] {
  border-color: #e6005c;
  background-color: #ffb1d4;
}
.baytree-quiz__option-img-label {
  font-weight: var(--font-body--weight);
  color: #b40054;
}
.baytree-quiz__option-description {
  font-size: 0.875rem;
  color: #820044;
}
.baytree-quiz__option {
  border: 2px solid transparent;
  background-color: white;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  padding: 1rem;
  cursor: pointer;
  min-width: 240px;
  text-align: center;
}
.baytree-quiz__option[data-has-image=true] {
  max-width: none;
}
.baytree-quiz__option:hover {
  border-color: #ff1a67;
}
.baytree-quiz__option[data-selected=true] {
  border-color: #e6005c;
  background-color: #ffb1d4;
}
.baytree-quiz__option__option-label {
  font-weight: var(--font-body--weight);
  color: #b40054;
}
.baytree-quiz__option__option-description {
  font-size: 0.875rem;
  color: #820044;
}
.baytree-quiz__start-container, .baytree-quiz__field-container {
  background: #ffe1f3;
  width: 80%;
  padding: 2rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (max-width: 768px) {
  .baytree-quiz__start-container, .baytree-quiz__field-container {
    width: 100%;
  }
}
.baytree-quiz__start-container .baytree-quiz__start-button, .baytree-quiz__field-container .baytree-quiz__start-button {
  background-color: #e6005c;
  color: white;
  padding: 1rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  width: fit-content;
  margin: 0 auto;
  display: block;
  border: 0;
  cursor: pointer;
}
.baytree-quiz__start-container .baytree-quiz__start-button:hover, .baytree-quiz__field-container .baytree-quiz__start-button:hover {
  background-color: #b40054;
  color: white;
}

.grid-component-container {
  max-width: 1260px;
  padding: var(--page-padding);
  margin: 0 auto;
  display: flex;
  gap: 0.5rem;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  flex-flow: row wrap;
}
.grid-component-item {
  flex-basis: calc(33.33% - 0.5rem);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
}
@media screen and (max-width: 768px) {
  .grid-component-item {
    flex-basis: calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
  }
}
.grid-component-item-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 2rem;
}
.grid-component-item-title {
  font-size: 2.2rem;
}
@media screen and (max-width: 768px) {
  .grid-component-item-title {
    font-size: 1.7rem;
  }
}
.grid-component-item-title {
  font-family: Arial, Helvetica, sans-serif;
  font-style: var(--font-heading--style);
  font-weight: var(--font-heading--weight);
  text-transform: uppercase;
  text-align: center;
}
.grid-component-item-description {
  font-size: 1rem;
}
@media screen and (max-width: 768px) {
  .grid-component-item-description {
    font-size: 1rem;
  }
}
.grid-component-item-description {
  text-align: center;
}
.grid-component-item-image {
  border-radius: 100%;
  padding: 0.75rem;
  border: 4px solid black;
}
.grid-component-item-image img {
  width: 100px;
  height: 100px;
}
@media screen and (max-width: 768px) {
  .grid-component-item-image img {
    width: 75px;
    height: 75px;
  }
}

.faq-parent {
  background-color: #f2f2f2;
}

.faq {
  max-width: 1260px;
  margin: 0 auto;
  padding: calc(var(--page-padding) * 4);
  display: flex;
  flex-direction: column;
  gap: 2rem;
  justify-content: center;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: var(--page-padding);
  }
}
.faq h1 {
  font-size: 3rem;
  font-family: var(--font-heading--family);
  font-style: var(--font-heading--style);
  font-weight: var(--font-heading--weight);
}
.faq .items {
  width: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.faq .item {
  border-top: 1px solid #d9d9d9;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.faq .item .question {
  cursor: pointer;
  position: relative;
  font-size: 1.2rem;
  font-weight: bolder;
  text-transform: uppercase;
}

.faq .item .question::after {
  content: "+";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  font-weight: 100;
}

.faq .item.active .question::after {
  content: "-";
}

body.sidebar-open {
  overflow: hidden;
}

/* Base sidebar styles */
.sidebar-base {
  position: fixed;
  z-index: 1000;
  background: #fff;
  transition: transform 300ms ease-in-out, opacity 300ms ease-in-out, filter 300ms ease-in-out;
  will-change: transform, opacity;
}

.sidebar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.sidebar-close {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: var(--color-text);
}

/* Position: Left */
.sidebar-left {
  top: 0;
  left: 0;
  height: 100vh;
  transform: translateX(-100%);
}

.sidebar-left.sidebar-active {
  transform: translateX(0);
}

.sidebar-left.sidebar-slide-out {
  transform: translateX(-100%) !important;
}

/* Position: Right */
.sidebar-right {
  top: 0;
  right: 0;
  height: 100vh;
  transform: translateX(100%);
}

.sidebar-right.sidebar-active {
  transform: translateX(0);
}

.sidebar-right.sidebar-slide-out {
  transform: translateX(100%) !important;
}

/* Position: Top */
.sidebar-top {
  top: 0;
  left: 0;
  width: 100vw;
  transform: translateY(-100%);
}

.sidebar-top.sidebar-active {
  transform: translateY(0);
}

.sidebar-top.sidebar-slide-out {
  transform: translateY(-100%) !important;
}

/* Position: Bottom */
.sidebar-bottom {
  bottom: 0;
  left: 0;
  width: 100vw;
  transform: translateY(100%);
}

.sidebar-bottom.sidebar-active {
  transform: translateY(0);
}

.sidebar-bottom.sidebar-slide-out {
  transform: translateY(100%) !important;
}

/* Animation: Slide */
/* No additional animation needed for slide-in, handled by active class transition */
/* Animation: Fade */
.sidebar-fade {
  opacity: 0;
  transform: none !important;
}

.sidebar-fade.sidebar-active {
  opacity: 1;
}

.sidebar-fade-in {
  animation: sidebarFadeIn 300ms ease-in-out;
}

.sidebar-fade-out {
  animation: sidebarFadeOut 300ms ease-in-out;
}

/* Animation: Scale */
.sidebar-scale {
  opacity: 0;
  transform: scale(0.95) translateZ(0) !important;
  transform-origin: center center;
  filter: blur(1px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.sidebar-scale.sidebar-active {
  opacity: 1;
  transform: scale(1) translateZ(0) !important;
  filter: blur(0px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Position-specific scale origins for better visual effect */
.sidebar-left.sidebar-scale {
  transform-origin: left center;
  transform: scale(0.95) translateX(-20px) translateZ(0) !important;
}

.sidebar-left.sidebar-scale.sidebar-active {
  transform: scale(1) translateX(0) translateZ(0) !important;
}

.sidebar-right.sidebar-scale {
  transform-origin: right center;
  transform: scale(0.95) translateX(20px) translateZ(0) !important;
}

.sidebar-right.sidebar-scale.sidebar-active {
  transform: scale(1) translateX(0) translateZ(0) !important;
}

.sidebar-top.sidebar-scale {
  transform-origin: center top;
  transform: scale(0.95) translateY(-20px) translateZ(0) !important;
}

.sidebar-top.sidebar-scale.sidebar-active {
  transform: scale(1) translateY(0) translateZ(0) !important;
}

.sidebar-bottom.sidebar-scale {
  transform-origin: center bottom;
  transform: scale(0.95) translateY(20px) translateZ(0) !important;
}

.sidebar-bottom.sidebar-scale.sidebar-active {
  transform: scale(1) translateY(0) translateZ(0) !important;
}

.sidebar-scale-in {
  animation: sidebarScaleIn 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sidebar-scale-out {
  animation: sidebarScaleOut 300ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* Overlay */
.sidebar-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 300ms ease-in-out;
  cursor: pointer;
}

.sidebar-overlay-active {
  opacity: 1;
}

/* Keyframe animations */
@keyframes sidebarFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes sidebarFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes sidebarScaleIn {
  0% {
    opacity: 0;
    transform: scale(0.9) translateZ(0);
    filter: blur(2px);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.02) translateZ(0);
    filter: blur(0.5px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateZ(0);
    filter: blur(0px);
  }
}
@keyframes sidebarScaleOut {
  0% {
    opacity: 1;
    transform: scale(1) translateZ(0);
    filter: blur(0px);
  }
  50% {
    opacity: 0.6;
    transform: scale(0.98) translateZ(0);
    filter: blur(0.5px);
  }
  100% {
    opacity: 0;
    transform: scale(0.85) translateZ(0);
    filter: blur(2px);
  }
}
/* Responsive behavior */
@media (max-width: 768px) {
  .sidebar-left,
  .sidebar-right {
    width: 100vw;
  }
}
.sidebar-close-button {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: var(--color-text);
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}

body.modal-open {
  overflow: hidden;
  padding-right: 15px;
}

.modal-overlay-active {
  opacity: 1;
}

.modal-base {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .modal-base {
    width: 96%;
    padding: 1rem;
  }
}

.modal-content {
  max-height: 450px;
  overflow-y: auto;
}
.modal-content::-webkit-scrollbar {
  background-color: transparent;
  width: 4px;
  transition: all 0.3s ease;
}
.modal-content:hover::-webkit-scrollbar {
  display: block;
}
.modal-content::-webkit-scrollbar-thumb {
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 10px;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.2rem 0;
  border-bottom: 1px solid #d9d9d9;
}

.modal-close {
  background: none;
  border: none;
  padding: 5px;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  color: var(--color-text);
}

.modal-active {
  visibility: visible;
  opacity: 1;
}

/* Fade Animation */
.modal-fade-in {
  opacity: 1;
}

.modal-fade-out {
  opacity: 0;
}

/* Scale Animation */
.modal-scale {
  transform: translate(-50%, -50%) scale(0.9);
}

.modal-scale-in {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

.modal-scale-out {
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
}

/* Slide In From Top Animation */
.modal-slide-in-from-top {
  transform: translate(-50%, -60%);
}

.modal-slide-in-from-top-in {
  transform: translate(-50%, -50%);
  opacity: 1;
}

.modal-slide-in-from-top-out {
  transform: translate(-50%, -60%);
  opacity: 0;
}

/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */
/* FONT_START */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}

:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}

.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-horizontal {
  touch-action: pan-y;
}

.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d {
  perspective: 1200px;
}

.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}

/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}

.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}

.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}

.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}

.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-lock {
  display: none;
}

/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}

.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: "next";
}

/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform, 200ms top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform, 200ms right;
}

/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}

/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}

.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

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

body {
  background-color: #fff;
}/**
 * Swiper 11.2.10
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2025 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: June 28, 2025
 */

/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
