:root {
  --secondary-main: #3a0c4e;
  /* brand purple ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â identity, headings, footer */
  --brand-deep: #2c0a3c;
  --brand-2: #6a1b7e;
  /* lighter purple for gradients */
  --cta: #3a0c4e;
  /* primary action (Add / Shop) = brand */
  --deal: #ef5a26;
  /* deal / discount ÃƒÂ¢Ã¢â€šÂ¬Ã¢â‚¬Â warm orange (from logo gradient) */
  --deal-pink: #e0218a;
  --go: #1f9d6b;
  /* delivery / success green (logo leaf) */
  --amber: #f7b733;
  /* highlight accent */
  --ink: #1c1322;
  /* text */
  --bg: #faf7fc;
  /* very light lilac-white */
  --surface: #ffffff;
  --line: #ece2f1;
  --muted: #7a7180;
  --maxw: 1240px;
  --r: 16px;
  --recommended-card-min-width: 150px !important;
}

body {
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.5;
  overflow-x: clip;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 40px;
}

@media (max-width: 768px) {
  .wrap {
    padding: 0 16px;
  }
}

.display {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 12px;
  border: 0;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.btn--amber {
  background: var(--amber);
  color: var(--brand-deep);
}

.sec {
  padding: 30px 0;
}

.sec__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 16px;
  gap: 12px;
}

.sec__head h2 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 21px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.sec__head a {
  font-size: 13px;
  font-weight: 700;
  color: var(--secondary-main);
  white-space: nowrap;
}

/* notice */
/* Announcement Bar */
.notice {
  align-items: center;
  white-space: nowrap;

  background: transparent;
  /* Remove inner background */
  color: var(--font-color, #fff);

  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;

  padding: 0;
  margin: 0;
}

.notice b {
  color: var(--amber, #ffc107);
  font-weight: 700;
  margin-right: 8px;
}

/* Marquee */
marquee {
  display: block;
  width: 100%;
  background: var(--secondary-main);
  /* Bar background */
  color: #fff;
  padding: 8px 16px;
  box-sizing: border-box;
  overflow: hidden;
}

/* header */
header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.hdr {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  max-width: var(--maxw);
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 9px;
}

.brand img {
  height: 42px;
  width: 42px;
  border-radius: 10px;
  object-fit: cover;
}

.brand b {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 17px;
  letter-spacing: -0.01em;
  line-height: 1;
  display: block;
  color: var(--secondary-main);
}

.brand small {
  font-size: 10px;
  color: var(--go);
  font-weight: 700;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  gap: 3px;
}

.search {
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 11px 14px;
  color: var(--muted);
  font-size: 13.5px;
  min-width: 0;
}

.search svg {
  width: 18px;
  height: 18px;
  stroke: var(--secondary-main);
  fill: none;
  stroke-width: 2;
  flex: none;
}

.search span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hdr__icons {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hdr__icons a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink);
}

.hdr__icons svg {
  width: 22px;
  height: 22px;
  stroke: var(--ink);
  fill: none;
  stroke-width: 1.8;
}

.ic-cart {
  position: relative;
}

.ic-cart i {
  position: absolute;
  top: -7px;
  right: -9px;
  background: var(--deal);
  color: #fff;
  font-size: 10px;
  font-style: normal;
  font-weight: 700;
  min-width: 17px;
  height: 17px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  padding: 0 4px;
}

.hdr__loc {
  display: none;
}

/* hero */
.hero {
  color: #fff;
  position: relative;
  overflow: hidden;
  background: var(--secondary-main);
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  z-index: 0;
}

.hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    180deg,
    rgba(44, 10, 60, 0.82) 0%,
    rgba(44, 10, 60, 0.45) 42%,
    rgba(44, 10, 60, 0.12) 70%
  );
}

.hero__in {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 26px 14px 30px;
  position: relative;
  z-index: 1;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 20px;
}

.hero__badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.3);
}

.hero h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 14px 0 10px;
  max-width: 16ch;
}

.hero h1 em {
  font-style: normal;
  color: var(--amber);
}

.hero p {
  color: #e9d8f2;
  font-size: 14.5px;
  max-width: 40ch;
  margin-bottom: 18px;
}

.hero__search {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border-radius: 14px;
  padding: 13px 16px;
  max-width: 460px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.hero__search svg {
  width: 20px;
  height: 20px;
  stroke: var(--secondary-main);
  fill: none;
  stroke-width: 2;
  flex: none;
}

.hero__search input {
  border: 0;
  outline: 0;
  flex: 1;
  font-size: 14px;
  font-family: inherit;
  color: var(--ink);
  min-width: 0;
}

.hero__search button {
  border: 0;
  background: var(--cta);
  color: #fff;
  font-weight: 700;
  font-size: 13px;
  padding: 9px 16px;
  border-radius: 10px;
  cursor: pointer;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin-top: 18px;
}

.hero__trust span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12.5px;
  font-weight: 600;
  color: #f0e4f7;
}

.hero__trust svg {
  width: 16px;
  height: 16px;
  stroke: var(--amber);
  fill: none;
  stroke-width: 2;
}

/* category grid */
.catgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.cat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 12px 6px;
  text-align: center;
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.cat:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(58, 12, 78, 0.1);
}

.cat__img {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 12px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.cat__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cat__img.tint {
  font-size: 34px;
}

.cat b {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink);
}

/* product rail / grid */
.prow {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 46%;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.prow::-webkit-scrollbar {
  display: none;
}

.prow .pcard {
  scroll-snap-align: start;
}

.pgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.pcard {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

.pcard__img {
  position: relative;
  aspect-ratio: 1/1;
  background: #fff;
}

.pcard__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pcard__tag {
  position: absolute;
  top: 9px;
  left: 9px;
  background: var(--deal);
  color: #fff;
  font-size: 10.5px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 7px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.pcard__time {
  position: absolute;
  top: 9px;
  right: 9px;
  background: rgba(255, 255, 255, 0.94);
  color: var(--go);
  font-size: 9.5px;
  font-weight: 800;
  padding: 3px 7px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 3px;
}

.pcard__time svg {
  width: 10px;
  height: 10px;
  stroke: var(--go);
  fill: none;
  stroke-width: 2.4;
}

.pcard__body {
  padding: 10px 11px 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.pcard__qty {
  font-size: 11px;
  color: var(--muted);
  font-weight: 600;
}

.pcard__name {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  min-height: 2.6em;
  color: var(--ink);
}

.pcard__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
}

.pcard__price b {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.pcard__price s {
  color: var(--muted);
  font-size: 11.5px;
  margin-left: 4px;
}

.pcard__add {
  border: 1.5px solid var(--cta);
  color: var(--cta);
  background: #f7eefb;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: 0.02em;
  padding: 7px 16px;
  border-radius: 10px;
  cursor: pointer;
}

/* footer */
footer {
  background: var(--brand-deep);
  color: #d9c8e3;
  margin-top: 14px;
}

.foot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 22px;
  padding: 40px 40px 26px;
  max-width: var(--maxw);
  margin: 0 auto;
}

@media (max-width: 768px) {
  .foot {
    padding: 0 16px;
  }
}

.foot__brand {
  grid-column: 1 / -1;
}

.foot__brand .b {
  display: flex;
  align-items: center;
  gap: 10px;
}

.foot__brand img {
  height: 46px;
  width: 46px;
  border-radius: 10px;
}

.foot__brand b {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 18px;
  color: #fff;
}

.foot__brand p {
  margin-top: 12px;
  max-width: 42ch;
  font-size: 13px;
  line-height: 1.7;
}

.foot h4 {
  color: #fff;
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 700;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.foot a,
.foot p {
  font-size: 13px;
  line-height: 1.95;
  color: #d9c8e3;
}

.foot a:hover {
  color: #fff;
}

.foot__socials {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.foot__socials a {
  width: 34px;
  height: 34px;
  border: 1px solid #573a66;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.foot__socials svg {
  width: 17px;
  height: 17px;
  fill: #d9c8e3;
}

.pay {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pay span {
  font-size: 10px;
  letter-spacing: 0.04em;
  background: #3a2447;
  border: 1px solid #573a66;
  padding: 5px 9px;
  border-radius: 6px;
  color: #d9c8e3;
  font-weight: 600;
}

.foot__bar {
  border-top: 1px solid #3a2447;
  text-align: center;
  padding: 15px;
  font-size: 12px;
  color: #a991b8;
}

@media (max-width: 599px) {
  .hero__in {
    min-height: 500px;
    padding-bottom: 26px;
  }

  .hero__bg {
    object-position: center bottom;
  }

  .hero__scrim {
    background: linear-gradient(
      180deg,
      rgba(44, 10, 60, 0.95) 0%,
      rgba(44, 10, 60, 0.88) 30%,
      rgba(44, 10, 60, 0.4) 49%,
      rgba(44, 10, 60, 0.06) 66%,
      transparent 80%
    );
  }

  .hero__trust {
    display: none;
  }

  .hero h1 {
    font-size: 29px;
  }

  .hero p {
    font-size: 14px;
    margin-bottom: 16px;
  }
}

@media (min-width: 600px) {
  .catgrid {
    grid-template-columns: repeat(4, 1fr);
  }

  .prow {
    grid-auto-columns: 31%;
  }

  .pgrid {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero h1 {
    font-size: 38px;
  }
}

@media (min-width: 900px) {
  .hdr {
    grid-template-columns: auto auto 1fr auto;
  }

  .hdr__loc {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 12.5px;
    color: var(--ink);
    font-weight: 600;
  }

  .hdr__loc svg {
    width: 18px;
    height: 18px;
    stroke: var(--secondary-main);
    fill: none;
    stroke-width: 1.8;
  }

  .hdr__loc small {
    color: var(--muted);
    font-weight: 500;
  }

  .search {
    max-width: 540px;
  }

  .catgrid {
    grid-template-columns: repeat(6, 1fr);
    gap: 14px;
  }

  .prow {
    grid-auto-columns: 18.5%;
  }

  .pgrid {
    grid-template-columns: repeat(5, 1fr);
  }

  .sec {
    padding: 38px 0;
  }

  .sec__head h2 {
    font-size: 25px;
  }

  .hero__in {
    padding: 60px 14px 66px;
  }

  .hero h1 {
    font-size: 48px;
    max-width: 17ch;
  }

  .hero p {
    font-size: 16px;
  }

  .hero__scrim {
    background: linear-gradient(
      95deg,
      rgba(44, 10, 60, 0.9) 0%,
      rgba(44, 10, 60, 0.7) 34%,
      rgba(44, 10, 60, 0.15) 55%,
      transparent 70%
    );
  }

  .foot {
    grid-template-columns: 2.2fr 1fr 1fr 1.3fr;
  }

  .foot__brand {
    grid-column: auto;
  }
}

/* BEGIN shoopy-gen:base */
.sx {
  --sx-purple: var(--secondary-main, #3a0c4e);
  --sx-go: #1f9d6b;
  --sx-amber: #f7b733;
  --sx-line: #ece2f1;
  --sx-radius: 16px;
  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
}

.sx,
.sx * {
  box-sizing: border-box;
}

/* END shoopy-gen:base */

/* BEGIN shoopy-gen:usp-1 */
.sx-usp {
  max-width: 1240px;
  margin: 4px auto 0;
  padding: 0 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

@media (max-width: 768px) {
  .sx-usp {
    padding: 0px 16px;
  }
}

.sx-usp .sx-usp__item {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fff;
  border: 1px solid var(--sx-line);
  border-radius: var(--sx-radius);
  padding: 13px 14px;
}

.sx-usp .sx-usp__ic {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  font-size: 19px;
  background: #f7eefb;
  color: var(--sx-purple);
  flex: none;
}

.sx-usp .sx-usp__ic--go {
  background: #e6f6ef;
  color: var(--sx-go);
}

.sx-usp .sx-usp__t {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 13.5px;
  color: #1c1322;
  line-height: 1.2;
}

.sx-usp .sx-usp__s {
  font-size: 11.5px;
  color: #7a7180;
  margin-top: 2px;
}

@media (min-width: 900px) {
  .sx-usp {
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
  }
}

/* END shoopy-gen:usp-1 */

/* BEGIN shoopy-gen:combo-1 */
.sx-combo {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 40px 4px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

@media (max-width: 768px) {
  .sx-combo {
    padding: 8px 16px 4px;
  }
}

.sx-combo .sx-combo__card {
  border-radius: 20px;
  padding: 24px 22px;
  color: #fff;
  position: relative;
  overflow: hidden;
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sx-combo .sx-combo__card--a {
  background: linear-gradient(120deg, #2c0a3c, #3a0c4e 55%, #6a1b7e);
}

.sx-combo .sx-combo__card--b {
  background: linear-gradient(120deg, #b3431a, #ef5a26 60%, #f7b733);
}

.sx-combo .sx-combo__eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
}

.sx-combo .sx-combo__title {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 23px;
  line-height: 1.1;
  display: block;
  margin: 8px 0 6px;
}

.sx-combo .sx-combo__sub {
  font-size: 13px;
  opacity: 0.92;
  max-width: 34ch;
}

.sx-combo .sx-combo__cta {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 13px;
  margin-top: 14px;
  display: inline-block;
}

@media (min-width: 700px) {
  .sx-combo {
    grid-template-columns: 1fr 1fr;
  }
}

/* END shoopy-gen:combo-1 */

/* custom css */
.desktop-store-logo img {
  border-radius: 12px !important;
}

#notice {
  padding: 0px !important;
}

.desktop-header-main {
  padding: 8px 40px !important;
}

@media (max-width: 768px) {
  .desktop-header-main {
    padding: 8px 14px !important;
  }
}

.desktop-store-logo a {
  border-radius: 10px !important;
}

.page-container {
  max-width: 1240px;
}

.section {
  background-color: #faf7fc !important;
}

.sh-header-search-box {
  background-color: #faf7fc !important;
  border-radius: 12px !important;
}

.desktop-header-center {
  display: flex;
  flex: 1;
  justify-content: initial !important;
  max-width: none !important;
}

.heading-title {
  font-weight: 800 !important;
  font-size: 21px !important;
}

@media (min-width: 900px) {
  .heading-title {
    font-size: 25px !important;
    font-family: "Plus Jakarta Sans", sans-serif !important;
  }
}

.shop-all-link span {
  color: #000 !important;
}

@media (max-width: 767px) {
  .recommended-theme-mode-swiper
    .product-swiper-slide.recommended-theme-card-swiper {
    width: 150px !important;
  }
}

.recommended-theme-mode-grid {
  display: grid;
  justify-content: space-between;
  margin: -5px;
  --recommended-card-min-width: 135px !important;
  --recommended-card-max-width: 1fr;
  grid-template-columns: repeat(
    auto-fill,
    minmax(var(--recommended-card-min-width), var(--recommended-card-max-width))
  );
}

@media (max-width: 767px) {
  .product-swiper-slide {
    --product-in-row: 2.2 !important;
  }
}

.w-full.justify-center.relative {
  width: 100%;
  position: relative;
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.w-full.justify-center.relative
  > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6 {
  width: 100%;
  display: grid !important;
  grid-template-columns: repeat(
    var(--category-in-row-mobile, 3),
    minmax(0, 1fr)
  ) !important;
  gap: 14px !important;
}

.w-full.justify-center.relative
  > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6
  > div {
  background: #ffffff !important;
  border: 1px solid #f0e8f1 !important;
  border-radius: 20px !important;
  padding: 10px !important;
  text-align: center !important;
  overflow: hidden !important;
  box-shadow: 0 8px 24px rgba(40, 20, 45, 0.08) !important;
  transition: 0.25s ease !important;
}

.w-full.justify-center.relative
  > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6
  > div:hover {
  transform: translateY(-4px) !important;
  box-shadow: 0 14px 34px rgba(40, 20, 45, 0.14) !important;
}

.w-full.justify-center.relative
  > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6
  > div
  img {
  width: 100% !important;
  aspect-ratio: 1 / 1 !important;
  height: auto !important;
  object-fit: cover !important;
  border-radius: 15px !important;
  display: block !important;
  background: #fff4d8 !important;
}

.w-full.justify-center.relative
  > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6
  > div
  h3,
.w-full.justify-center.relative
  > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6
  > div
  p,
.w-full.justify-center.relative
  > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6
  > div
  span {
  color: #1f2937 !important;
  font-size: 15px !important;
  font-weight: 700 !important;
  line-height: 1.25 !important;
  margin-top: 10px !important;
  text-align: center !important;
}

@media (min-width: 768px) {
  .w-full.justify-center.relative
    > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6 {
    grid-template-columns: repeat(
      var(--category-in-row-desktop, 6),
      minmax(0, 1fr)
    ) !important;
    gap: 24px !important;
  }

  .w-full.justify-center.relative
    > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6
    > div {
    border-radius: 22px !important;
    padding: 12px !important;
  }

  .w-full.justify-center.relative
    > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6
    > div
    img {
    border-radius: 16px !important;
  }
}

@media (max-width: 480px) {
  .w-full.justify-center.relative
    > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6 {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .w-full.justify-center.relative
    > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6
    > div {
    border-radius: 14px !important;
    padding: 6px !important;
  }

  .w-full.justify-center.relative
    > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6
    > div
    img {
    border-radius: 11px !important;
  }

  .w-full.justify-center.relative
    > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6
    > div
    h3,
  .w-full.justify-center.relative
    > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6
    > div
    p,
  .w-full.justify-center.relative
    > .w-full.grid.grid-cols-3.md\:grid-cols-6.gap-4.md\:gap-6
    > div
    span {
    font-size: 12px !important;
    margin-top: 7px !important;
  }
}

@media (max-width: 767px) {
  .product-swiper-slide {
    --product-in-row: 2.5 !important;
  }
}
