body {
  -webkit-font-smoothing: antialiased;
  color: #333;
  overflow-x: hidden;
}

.nowrap {
  white-space: nowrap;
  display: inline-block;
}

.sp-show {
  display: none;
}
@media (max-width: 1023px) {
  .sp-show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.pc-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1023px) {
  .pc-show {
    display: none;
  }
}

.active-filters-container.sp-show {
  display: none;
}
@media (max-width: 1280px) {
  .active-filters-container.sp-show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
.active-filters-container.pc-show {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media (max-width: 1280px) {
  .active-filters-container.pc-show {
    display: none;
  }
}

.brand-main .sp-show {
  display: none;
}
@media (max-width: 1280px) {
  .brand-main .sp-show {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.fade-up {
  opacity: 0;
  -webkit-transform: translateY(30px);
      -ms-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}

.img-hover-zoom {
  overflow: hidden;
}

.img-hover-zoom img {
  -webkit-transition: -webkit-transform 0.5s ease;
  transition: -webkit-transform 0.5s ease;
  transition: transform 0.5s ease;
  transition: transform 0.5s ease, -webkit-transform 0.5s ease;
}

.img-hover-zoom:hover img {
  -webkit-transform: scale(1.05);
      -ms-transform: scale(1.05);
          transform: scale(1.05);
}

.hide-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.hide-scrollbar::-webkit-scrollbar {
  display: none;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

.btn-click-effect:active {
  -webkit-transform: scale(0.95);
      -ms-transform: scale(0.95);
          transform: scale(0.95);
}

@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.animate-marquee {
  -webkit-animation: marquee 15s linear infinite;
          animation: marquee 15s linear infinite;
}

.bg-theme-black {
  --tw-bg-opacity: 1;
  background-color: rgb(25, 25, 25, var(--tw-bg-opacity, 1));
}

.bg-theme-gray {
  --tw-bg-opacity: 1;
  background-color: rgb(247, 247, 247, var(--tw-bg-opacity, 1));
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%); 
  opacity: 0; 
  transition: transform 0.3s ease-out, opacity 0.3s ease-out; 
  z-index: 50;
  visibility: hidden;
}

.menu-overlay.open {
  -webkit-transform: translateY(0);
  transform: translateY(0); 
  opacity: 1; 
  visibility:visible;
}


#string, #screw, #nut, #core-center, #core-moon {
  fill: #1f2937;
}

.mobile-nav-link {
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.mobile-nav-link:hover {
  color: #3b82f6;
  -webkit-transform: translateX(5px);
      -ms-transform: translateX(5px);
          transform: translateX(5px);
}

.hamburger-icon {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 24px;
  height: 21px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.hamburger-icon span {
  display: block;
  height: 3px;
  width: 100%;
  background: #333;
  border-radius: 9999px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.hamburger-icon.open span:nth-child(1) {
  -webkit-transform: translateY(8.5px) rotate(45deg);
      -ms-transform: translateY(8.5px) rotate(45deg);
          transform: translateY(8.5px) rotate(45deg);
}

.hamburger-icon.open span:nth-child(2) {
  opacity: 0;
}

.hamburger-icon.open span:nth-child(3) {
  -webkit-transform: translateY(-8.5px) rotate(-45deg);
      -ms-transform: translateY(-8.5px) rotate(-45deg);
          transform: translateY(-8.5px) rotate(-45deg);
}

.hover-icon-container {
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

header .static-nav nav {
  overflow: hidden;
}
header .static-nav nav:before {
  content: "";
  height: 44px;
  background-color: #111;
  position: absolute;
  border-radius: 100em;
  overflow: hidden;
  width: var(--btn-width);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  top: 1.285rem;
  left: var(--btn-offsetLeft);
  -webkit-transition: left 0.3s cubic-bezier(0.62, 1.42, 0.58, 1) 0s, width 0.3s cubic-bezier(0.62, 1.42, 0.58, 1) 0s;
  transition: left 0.3s cubic-bezier(0.62, 1.42, 0.58, 1) 0s, width 0.3s cubic-bezier(0.62, 1.42, 0.58, 1) 0s;
}
header .static-nav nav.show-highlight:before {
  opacity: 1;
}
header .static-nav nav a {
  -webkit-transition: color 0.25s linear 0s;
  transition: color 0.25s linear 0s;
  position: relative;
  z-index: 2;
  text-decoration: none;
}
header .static-nav nav a.current {
  color: #fff;
}
@media (max-width: 1280px) {
  header .lg\:px-16 {
    padding: 0 30px;
  }
}
@media (max-width: 1023px) {
  header {
    padding: 25px 0;
  }
}
@media (max-width: 767px) {
  header {
    padding: 15px 0;
  }
  header .lg\:px-16 {
    padding: 0 0.5rem 0 1rem;
  }
  header .sp-svg .gap-3 button {
    margin-right: 10px;
  }
  header .sp-svg svg {
    width: 25px;
    height: 25px;
  }
}

.brand {
  position: relative;
  width: min(31vw, 126px);
  min-width: min(31vw, 126px);
  max-width: min(31vw, 126px);
  -webkit-transition: opacity 0.2s linear 0s;
  transition: opacity 0.2s linear 0s;
}
.brand a {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: 2;
}
.brand svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  top: 0;
  left: 0;
  overflow: visible;
}
.brand #brand-graph path {
  stroke-width: 0px;
}
.brand #core-center {
  fill: #fff;
}
.brand #screw,
.brand #nut,
.brand #core-moon {
  fill: #e34296;
}
.brand #string {
  fill: #231f20;
}
.brand #slash {
  z-index: 2;
  position: absolute;
  top: 8.8%;
  left: 36.8%;
  pointer-events: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
      user-select: none;
  width: 4.62%;
  height: auto;
  background-image: url(../img/slash.svg);
  background-size: auto 100%;
  background-repeat: no-repeat;
  background-position: 25% 0%;
  -webkit-animation: move 5s linear infinite 0s;
          animation: move 5s linear infinite 0s;
}
.brand #slash:after {
  content: "";
  width: 100%;
  display: block;
  position: relative;
  z-index: -1;
  padding: 136%;
}

@-webkit-keyframes slideInFromRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(140px);
            transform: translateX(140px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideInFromRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(140px);
            transform: translateX(140px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.hero .slide-item {
  opacity: 0;
  -webkit-animation: slideInFromRight 1s ease forwards;
          animation: slideInFromRight 1s ease forwards;
}
.hero p.slide-item {
  -webkit-animation-delay: 0;
          animation-delay: 0;
}
.hero h2.slide-item {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}
.hero a.slide-item {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}
@media (max-width: 767px) {
  .hero.h-\[85vh\] {
    height: 500px;
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .index-topic a {
    display: block;
  }
  .index-topic a .border-b {
    display: block;
    padding-top: 5px;
  }
}

@media (max-width: 1023px) {
  #mobile-menu-overlay {
    overflow-y: scroll;
  }
  #mobile-menu-overlay.max-w-sm {
    max-width: 100%;
  }
}

.drawer-transition {
  -webkit-transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-transition {
  -webkit-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}

footer .brand #string {
  fill: #fff;
}
footer .foot-align {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .foot-svg a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .foot-svg a svg {
  width: 1.5em;
  height: 1.5em;
}
@media (max-width: 1280px) {
  footer .container {
    max-width: calc(100% - 60px);
  }
  footer .px-6 {
    padding: 0;
  }
}
@media (max-width: 1024px) {
  footer .copy-y {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
@media (max-width: 767px) {
  footer .brand {
    margin: 0 auto;
  }
}

@-webkit-keyframes move {
  0% {
    background-position: 25% 0%;
  }
  100% {
    background-position: 69% 0%;
  }
}

@keyframes move {
  0% {
    background-position: 25% 0%;
  }
  100% {
    background-position: 69% 0%;
  }
}
header .index-account {
  -webkit-filter: drop-shadow(rgba(0, 0, 0, 0.5) 0px 10px 30px);
          filter: drop-shadow(rgba(0, 0, 0, 0.5) 0px 10px 30px);
  opacity: 0;
  -webkit-transform: translateY(20px);
      -ms-transform: translateY(20px);
          transform: translateY(20px);
  visibility: hidden;
  -webkit-transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, -webkit-transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease;
  transition: opacity 0.25s ease, transform 0.25s ease, -webkit-transform 0.25s ease;
  right: 4rem;
  pointer-events: none;
}
header .index-account.show {
  opacity: 1;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 1400px) {
  header .index-account {
    right: 2rem;
  }
}
@media (max-width: 767px) {
  header .index-account {
    right: 1.5rem;
  }
}
header .index-search {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: translateY(-100%);
      -ms-transform: translateY(-100%);
          transform: translateY(-100%);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
header .index-search.show {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
}
header .p-1\.5 {
  padding: 0.375rem 10px;
}
header button.px-6 {
  font-size: 16px;
}
header button.px-6:hover {
  color: #fff;
}
header .gap-3 {
  gap: 1.5rem;
}
@media (max-width: 1024px) {
  header .gap-3 {
    gap: 1.5rem 1rem;
  }
}
@media (max-width: 767px) {
  header .gap-3 {
    gap: 1.5rem 0.5rem;
  }
}
@media (max-width: 1023px) {
  header .static-nav {
    display: none;
  }
}

.custom-prev,
.custom-next,
.custom-prev2,
.custom-next2,
.custom-prev3,
.custom-next3,
.product-next,
.product-prev {
  width: 40px;
  height: 40px;
  background: #000;
  border-radius: 50%;
  opacity: 0.8;
}
.custom-prev::after,
.custom-next::after,
.custom-prev2::after,
.custom-next2::after,
.custom-prev3::after,
.custom-next3::after,
.product-next::after,
.product-prev::after {
  font-size: 18px;
  color: #fff;
}

.custom-pagination .swiper-pagination-bullet,
.swiper-pagination2 .swiper-pagination-bullet,
.custom-pagination3 .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #000;
  opacity: 0.3;
}
.custom-pagination .swiper-pagination-bullet-active,
.swiper-pagination2 .swiper-pagination-bullet-active,
.custom-pagination3 .swiper-pagination-bullet-active {
  opacity: 1;
}

.index-showcase .swiper-button-next,
.index-showcase .swiper-button-prev,
.index-showcase .swiper-pagination,
.index-feed .swiper-button-next,
.index-feed .swiper-button-prev,
.index-feed .swiper-pagination,
.index-great .swiper-button-next,
.index-great .swiper-button-prev,
.index-great .swiper-pagination {
  position: static;
  -webkit-transform: translate(0);
      -ms-transform: translate(0);
          transform: translate(0);
  margin-top: 0;
}
.index-showcase .swiper-nav-wrapper,
.index-feed .swiper-nav-wrapper,
.index-great .swiper-nav-wrapper {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.index-showcase .swiper-nav-wrapper .swiper-pagination,
.index-feed .swiper-nav-wrapper .swiper-pagination,
.index-great .swiper-nav-wrapper .swiper-pagination {
  width: auto;
}

a.read-more {
  display: block;
  max-width: 250px;
  position: relative;
  overflow: hidden;
}

#marquee-section .bg-gray {
  -webkit-filter: grayscale(1);
          filter: grayscale(1);
  opacity: 0.3;
}
#marquee-section .margin-right {
  margin-right: 40px;
}
#marquee-section .slow-marquee {
  -webkit-animation: marquee 80s linear infinite;
          animation: marquee 80s linear infinite;
}
#marquee-section .slow-marquee-reverse {
  -webkit-animation: marquee-reverse 80s linear infinite;
          animation: marquee-reverse 80s linear infinite;
}
#marquee-section .speed-boost {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
}
#marquee-section .marquee-content-wrapper:hover {
  -webkit-animation-play-state: paused;
          animation-play-state: paused;
}
#marquee-section .marquee-content-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media (max-width: 1100px) {
  #marquee-section .-rotate-3 {
    --tw-rotate: -4deg;
  }
  #marquee-section .rotate-3 {
    --tw-rotate: 4deg;
  }
}
@media (max-width: 1023px) {
  #marquee-section .md\:py-4 {
    padding: 5px 0;
  }
}
@media (max-width: 767px) {
  #marquee-section .-rotate-3 {
    --tw-rotate: -6deg;
  }
  #marquee-section .rotate-3 {
    --tw-rotate: 6deg;
  }
}

@keyframes marquee {
  0% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
}
@-webkit-keyframes marquee-reverse {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
@keyframes marquee-reverse {
  0% {
    -webkit-transform: translate3d(-50%, 0, 0);
            transform: translate3d(-50%, 0, 0);
  }
  100% {
    -webkit-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
  }
}
.img-card {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.img-card:hover {
  opacity: 0.9;
}

.scroll-container {
  scroll-behavior: smooth;
}

.bg-1 {
  background: url(../img/picture-5.webp);
}

.bg-2 {
  background: url(../img/IMG_2526.jpg);
}

.index-collections.py-16 {
  padding-bottom: 0;
}
.index-collections .border-b {
  cursor: pointer;
}
@media (max-width: 767px) {
  .index-collections .max-w-md {
    max-width: 12rem;
  }
  .index-collections .space-y-12 > :not([hidden]) ~ :not([hidden]).top {
    margin-top: 30px;
  }
}

.swiper-nav-wrapper {
  position: relative;
}

.index-showcase2 .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
          transition-timing-function: linear !important;
}
@media (max-width: 1024px) {
  .index-showcase2 .space-x-16 > :not([hidden]) ~ :not([hidden]) {
    margin: 0;
  }
}

#cart-drawer.md\:right-4 {
  right: 0;
}
@media (min-width: 768px) {
  #cart-drawer.md\:right-4.click {
    right: 1rem;
  }
}

.list-item-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  text-decoration: none;
  color: #000000;
}

.list-item-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  height: 1px;
  width: 0;
  background-color: black;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}

.list-item-link:hover::after {
  width: 100%;
}

.dropdown-menu {
  max-height: 20rem;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.dropdown-menu::-webkit-scrollbar {
  display: none;
}

.product-card .main-image {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.7s ease-in-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, opacity 0.3s ease-out;
  transition: transform 0.7s ease-in-out, opacity 0.3s ease-out, -webkit-transform 0.7s ease-in-out;
}

@media (max-width: 1300px) {
  .grid-products .lg\:grid-cols-5 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .grid-products .lg\:grid-cols-5 .product-card:nth-child(9), .grid-products .lg\:grid-cols-5 .product-card:nth-child(10) {
    display: none;
  }
}
@media (max-width: 1023px) {
  .grid-products .lg\:grid-cols-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .grid-products .lg\:grid-cols-5 .product-card:nth-child(9) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media (max-width: 767px) {
  .grid-products .lg\:grid-cols-5 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .grid-products .lg\:grid-cols-5 .product-card:nth-child(10) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.product-main .product-title-link {
  position: relative;
  display: inline-block;
}
.product-main .product-title-link::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: currentColor;
  -webkit-transition: width 0.3s ease-out;
  transition: width 0.3s ease-out;
}
.product-main .product-title-link:hover::after {
  width: 100%;
}
.product-main .all-k {
  width: 100%;
}
.product-main .product-grid {
  width: 100%;
}
@media (max-width: 1450px) {
  .product-main.lg\:px-16 {
    padding-left: 30px;
    padding-right: 30px;
  }
  .product-main .md\:w-64 {
    width: 13rem;
  }
}
@media (max-width: 1300px) {
  .product-main .sm\:w-56 {
    width: 12rem;
  }
}
@media (max-width: 1280px) {
  .product-main .md\:w-64 {
    width: calc(50% + 50px);
  }
  .product-main .mobile-facets__button {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-weight: bold;
    cursor: pointer;
  }
  .product-main .mobile-facets__button svg {
    margin-right: 8px;
  }
  .product-main aside.md\:w-64 {
    display: none;
  }
  .product-main .all-k {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    width: auto;
  }
  .product-main .all-k button.lg-m {
    color: #000;
  }
  .product-main .all-k button.lg-hidden {
    display: none;
  }
  .product-main .all-k > .flex-grow {
    display: none;
  }
}
@media (max-width: 767px) {
  .product-main #view-controls {
    display: none;
  }
  .product-main .md\:w-64 {
    width: 100%;
  }
  .product-main.lg\:px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .product-main #product-grid.gap-y-10 {
    row-gap: 0.5rem;
  }
  .product-main .product-card h3 {
    font-size: 16px;
    line-height: 1.3;
  }
  .product-main .product-card .text-2xl {
    font-size: 18px;
  }
  .product-main .product-card .text-sm {
    font-size: 12px;
  }
}
@media (max-width: 500px) {
  .product-main .img-wid {
    max-width: 100%;
  }
}

.mobile-facets__button {
  display: none;
}

.modal-content {
  -webkit-transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out, -webkit-transform 0.3s ease-out;
}

.modal-content.slide-out-bottom {
  -webkit-transform: translateY(100%);
      -ms-transform: translateY(100%);
          transform: translateY(100%);
  opacity: 0;
}

.modal-content.slide-in-bottom {
  -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.view-slide {
  width: 100%;
  -webkit-transition: -webkit-transform 0.3s ease-out;
  transition: -webkit-transform 0.3s ease-out;
  transition: transform 0.3s ease-out;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  position: absolute;
  top: 0;
  left: 0;
}

.view-slide.current {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  position: relative;
}

.view-slide.next {
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
}

.view-slide.prev {
  -webkit-transform: translateX(-100%);
      -ms-transform: translateX(-100%);
          transform: translateX(-100%);
}

.facet-item[data-selected=true] .facet-checkbox {
  background-color: black;
  border-color: black;
}

.facet-item[data-selected=true] .facet-check-icon {
  opacity: 1;
}

.facet-item[data-selected=true] .facet-text {
  color: black;
  font-weight: 600;
}

.facet-item[data-selected=true] .facet-count {
  color: black;
  font-weight: 600;
}

@-webkit-keyframes filter-wiggle {
  0%, 100% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}

@keyframes filter-wiggle {
  0%, 100% {
    -webkit-transform: rotate(-10deg);
            transform: rotate(-10deg);
  }
  50% {
    -webkit-transform: rotate(10deg);
            transform: rotate(10deg);
  }
}
.animate-filter-wiggle {
  -webkit-animation: filter-wiggle 1s ease-in-out infinite;
          animation: filter-wiggle 1s ease-in-out infinite;
}

.price-input.active {
  color: black;
  font-weight: 600;
}

@media (max-width: 1280px) {
  .pad-lg.lg\:px-16 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 767px) {
  .pad-lg.lg\:px-16 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.product-list #message-box {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 50;
  -webkit-transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out, transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  -webkit-transform: translateX(100%);
      -ms-transform: translateX(100%);
          transform: translateX(100%);
  opacity: 0;
}
.product-list #message-box.show {
  -webkit-transform: translateX(0);
      -ms-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
.product-list .product-thumb-swiper {
  max-width: 400px;
  margin: 0;
}
.product-list .product-main-swiper .swiper-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.product-list .product-main-swiper .swiper-slide.active-slide {
  opacity: 1;
  z-index: 10;
}
.product-list .product-main-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #d1d5db;
  opacity: 1;
  margin: 0 8px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .product-list .product-main-pagination .swiper-pagination-bullet {
    margin: 0 5px;
  }
}
.product-list .product-main-pagination .swiper-pagination-bullet-active {
  background: #ec4899;
  -webkit-transform: scale(1.1);
      -ms-transform: scale(1.1);
          transform: scale(1.1);
}
.product-list .swiper-pagination {
  position: static;
  margin-top: 1.5rem;
}

@media (max-width: 1365px) {
  .detail-container .md\:text-5xl {
    font-size: 2.5em;
  }
}
@media (max-width: 1280px) {
  .detail-container .lg\:w-3\/5 {
    width: 45%;
  }
  .detail-container .lg\:w-2\/5 {
    width: 55%;
  }
  .detail-container .md\:text-5xl {
    font-size: 2.3em;
  }
}
@media (max-width: 1023px) {
  .detail-container .lg\:w-3\/5 {
    width: 100%;
  }
  .detail-container .lg\:w-2\/5 {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .detail-container .md\:text-5xl {
    font-size: 2em;
  }
}

@media (max-width: 1280px) {
  .flex.page-login-block {
    display: block;
  }
  .flex.page-login-block label {
    margin-bottom: 1em;
  }
}

@media (max-width: 1280px) {
  .page-login .lg\:p-16 {
    padding: 4rem 2rem;
  }
}
@media (max-width: 767px) {
  .page-login .lg\:p-16 {
    padding: 2rem 1.5rem;
  }
}

.brand-main .md\:text-2xl {
  font-size: 1.7em;
}
@media (max-width: 1830px) {
  .brand-main .brand-list .md\:h-auto {
    min-height: 480px;
  }
  .brand-main .lg\:p-10 {
    padding: 1rem 2rem;
  }
  .brand-main .h-\[35px\] {
    height: 25px;
  }
  .brand-main .h-\[25px\] {
    height: 15px;
  }
  .brand-main .md\:text-base {
    font-size: 14px;
  }
  .brand-main h2.mb-2 {
    display: block;
  }
  .brand-main h2.mb-2 span {
    display: block;
    margin-left: 0;
  }
}
@media (max-width: 1400px) {
  .brand-main .lg\:grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 1280px) {
  .brand-main.product-main .md\:w-64 {
    width: 100%;
  }
  .brand-main .lg\:grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .brand-main .brand-list .md\:h-auto {
    min-height: 430px;
  }
  .brand-main .brand-list p {
    line-height: 1.3;
  }
  .brand-main .brand-list .read-more {
    margin-top: 30px;
  }
}
@media (max-width: 1023px) {
  .brand-main .lg\:grid-cols-2 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
@media (max-width: 767px) {
  .brand-main .md\:text-2xl {
    font-size: 1.25em;
    line-height: 1.3;
    padding-bottom: 5px;
  }
  .brand-main .brand-list .lg\:p-10 {
    padding: 3.5rem 1rem 1rem;
  }
  .brand-main .brand-list .read-more {
    font-size: 12px;
    padding: 8px 0;
    margin: 15px 0 0;
  }
  .brand-main .brand-list .md\:text-base {
    font-size: 12px;
  }
  .brand-main .brand-list .md\:h-auto {
    min-height: auto;
  }
  .brand-main .lg\:p-10 {
    padding: 1.5rem;
  }
}

