/* ==============================================
   MARQUEE BANNER (chạy chữ)
   ============================================== */
.marquee-banner {
  width: 100%;
  background: #e5dfd1;
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
  position: relative;
  /* fade edges */
  /* -webkit-mask-image: linear-gradient(to right,
      transparent 0%,
      black 6%,
      black 94%,
      transparent 100%);
  mask-image: linear-gradient(to right,
      transparent 0%,
      black 6%,
      black 94%,
      transparent 100%); */
}

.marquee-track {
  display: inline-flex;
  align-items: center;
  gap: 0;
  animation: marquee-scroll 38s linear infinite;
  will-change: transform;
}

.marquee-banner:hover .marquee-track {
  animation-play-state: paused;
}

.marquee-item {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  font-weight: 400;
  color: #3a3632;
  letter-spacing: 0.03em;
  padding: 0 20px;
  white-space: nowrap;
}

.marquee-sep {
  font-size: 11px;
  color: #b0a898;
  padding: 0 4px;
  flex-shrink: 0;
}

@keyframes marquee-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* ==============================================
   HERO SLIDER
   ============================================== */
.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #d0ccca;
}

.hero-slide {
  position: relative;
  outline: none;
}

/* --- Background layer --- */
.hs-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hs-bg-1 {
  background: radial-gradient(ellipse at 65% 40%, #c8c4c0 0%, #b0acaa 40%, #989490 100%);
}

.hs-bg-2 {
  background: radial-gradient(ellipse at 60% 50%, #d0ccc8 0%, #b8b4b0 50%, #a0a0a0 100%);
}

.hs-bg-3 {
  background: radial-gradient(ellipse at 60% 40%, #ccc8c4 0%, #b4b0ac 40%, #9c9898 100%);
}

/* --- Overlay gradient on top of banner image --- */
/* .hs-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.52) 0%,
    rgba(0, 0, 0, 0.28) 45%,
    rgba(0, 0, 0, 0.08) 100%
  );
  z-index: 1;
} */

/* --- Text content – left side --- */
.hs-content {
  position: absolute;
  width: 1410px;
  max-width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  padding-right: 40%;
  padding-left: 15px;
  /* color: #ffffff; */
}

.hs-label {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  /* color: rgba(255, 255, 255, 0.80); */
  /* letter-spacing: 0.1em; */
  margin-bottom: 20px;
  text-transform: uppercase;
}

.hs-title h2 {
  /* font-family: 'Manrope', sans-serif; */
  font-size: clamp(18px, 2.8vw, 38px);
  font-weight: 400;
  /* color: #ffffff; */
  line-height: 1.3;
  margin-bottom: 24px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.25);
}

.hs-title p {
  font-size: 16px;
  font-weight: 500;
}

.hs-note {
  font-size: 15px;
  /* color: rgba(255, 255, 255, 0.85); */
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-top: 20px;
  display: inline-block;
}

/* --- Banner image – full background --- */
.hs-product {
  position: relative;
  width: 100%;
  z-index: 0;
  display: flex;
}

.hs-product img {
  width: 100%;
  height: auto;
  display: block;
  min-height: 500px;
}

/* --- Slide dots --- */
.hs-dots,
.hs-dots-slick {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  /* gap: 10px; */
  z-index: 5;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hs-dot,
.hs-dots-slick li button {
  width: 60px;
  height: 2px;
  border: none;
  background: rgba(30, 28, 26, 0.25);
  cursor: pointer;
  padding: 0;
  transition: all 0.3s;
  border-radius: 1px;
  font-size: 0;
  line-height: 0;
  color: transparent;
}

.hs-dot.active,
.hs-dots-slick li.slick-active button {
  background: #1a1a1a;
  width: 60px;
}

/* --- Prev / Next arrows --- */
.hs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 32px;
  color: rgba(30, 28, 26, 0.4);
  cursor: pointer;
  z-index: 5;
  padding: 8px 14px;
  transition: color 0.2s;
  line-height: 1;
}

.hs-arrow:hover {
  color: #1a1a1a;
}

.hs-prev {
  left: 20px;
}

.hs-next {
  right: 20px;
}

#hero-slide-video .hs-product {
  width: 100%;
  aspect-ratio: 1920 / 840;
  min-height: 500px;
  position: relative;
}

#hero-slide-video iframe {
  width: 100%;
  height: 100%;
}

.iframe-touch-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .hero-slide {
    display: block;
    min-height: unset;
  }

  .hs-content {
    width: 100%;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    padding: 0 15px;
  }

  .hs-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .hs-label {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .hs-arrow {
    display: none;
  }
}

/* ==============================================
   BEST ITEMS SECTION
   ============================================== */
.best-section {
  padding: 72px 0;
}

/* ===== TITLE ===== */
.best-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  text-align: center;
  color: #1a1a1a;
  letter-spacing: 0.01em;
  margin-bottom: 32px;
}

/* ===== TABS ===== */
.best-tabs {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 52px;
  list-style: none;
  /* flex-wrap: wrap; */
  white-space: nowrap;
  overflow-x: auto;
}

.best-tabs li {
  font-family: 'Playfair Display', serif;
  cursor: pointer;
  font-size: 24px;
  font-weight: 400;
  color: #b0a898;
  padding-bottom: 5px;
  border-bottom: 1.5px solid transparent;
  transition: color 0.25s, border-color 0.25s;
  white-space: nowrap;
}

.best-tabs li.active {
  color: #1a1a1a;
  font-weight: 700;
}

.best-tabs li:hover {
  color: #1a1a1a;
}

/* ===== CAROUSEL WRAPPER ===== */
.carousel-wrapper {
  position: relative;
}

/* ===== ARROW BUTTONS ===== */
.carousel-btn {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 28px;
  color: #c0b8b0;
  z-index: 10;
  padding: 8px;
  transition: color 0.2s;
  line-height: 1;
  user-select: none;
}

.carousel-btn:hover {
  color: #1a1a1a;
}

.carousel-btn.prev {
  left: -36px;
}

.carousel-btn.next {
  right: -36px;
}

/* ===== PRODUCT GRID ===== */
.products-grid:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.products-grid.slick-initialized {
  display: block;
}

.products-grid.slick-initialized .slick-track {
  display: flex;
}

.products-grid.slick-initialized .product-card {
  margin: 0 10px;
  outline: none;
}

.products-grid .slick-list {
  margin: 0 -10px;
}

/* ===== PRODUCT CARD ===== */
.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.product-image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 12px;
  /* background: #f5f0eb; */
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.05);
}

/* Placeholder boxes */
.product-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  transition: transform 0.4s ease;
  position: relative;
  overflow: hidden;
}

.product-card:hover .product-placeholder {
  transform: scale(1.04);
}

.product-placeholder svg {
  width: 62%;
  height: 62%;
  opacity: 0.8;
}

/* ===== PRODUCT INFO ===== */
.product-brand {
  font-size: 13px;
  color: #666;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.product-name {
  font-size: 18px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.4;
  margin-bottom: 10px;
  word-break: keep-all;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 50px;
}

.product-price {
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 8px;
}

.price-original {
  font-size: 15px;
  color: #c0b8b0;
  text-decoration: line-through;
}

.price-sale {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

.price-discount {
  font-size: 16px;
  font-weight: 600;
  color: #bfa054;
  /* Warm golden brown accent color for discount */
}

.price-regular {
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

/* ===== VIEW MORE BUTTON ===== */
.view-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 56px;
}

.view-more-btn {
  font-size: 14px;
  font-weight: 500;
  color: #1a1a1a;
  background: transparent;
  border: 1px solid #1a1a1a;
  padding: 10px 25px;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  text-transform: uppercase;
}

.view-more-btn:hover {
  background: #1a1a1a;
  color: #f2ede8;
}

/* ===== PRODUCT VISUAL COLORS ===== */
.card-1 .product-placeholder {
  background: linear-gradient(145deg, #e8e0d8, #d4c8bc);
}

.card-2 .product-placeholder {
  background: linear-gradient(145deg, #ddd8d0, #c8c0b8);
}

.card-3 .product-placeholder {
  background: linear-gradient(145deg, #ede4da, #d8ccbf);
}

.card-4 .product-placeholder {
  background: linear-gradient(145deg, #e0dcd6, #ccc8c2);
}

/* ==============================================
   NEW ITEMS SECTION
   ============================================== */
.new-items-section:not(.slick-initialized) {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  width: 100%;
}

.new-items-section.slick-initialized {
  display: block;
}

.new-items-section.slick-initialized .slick-track {
  display: flex;
}

.new-items-section.slick-initialized .new-item-card {
  display: block;
  outline: none;
}

.new-item-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3 / 4;
}

.new-item-card .ni-bg {
  /* position: absolute; */
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease;
}

.new-item-card:hover .ni-bg {
  transform: scale(1.05);
}

/* subtle overlay */
.new-item-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.02) 50%,
      rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.new-item-info {
  position: absolute;
  top: 32px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 2;
  color: white;
  padding: 0 10px;
}

.new-item-info .ni-label {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 400;
  letter-spacing: 0.02em;
  margin-bottom: 6px;
  line-height: 1.1;
}

.new-item-info .ni-name {
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.02em;
  opacity: 0.92;
  line-height: 1.4;
  padding: 0 12px;
}

/* Individual background colors per card */
.ni-bg-1 {
  background: linear-gradient(160deg, #9fb8d0 0%, #c4d4e4 45%, #dce8f2 100%);
}

.ni-bg-2 {
  background: linear-gradient(160deg, #b89870 0%, #caa880 45%, #d8bc98 100%);
}

.ni-bg-3 {
  background: linear-gradient(160deg, #252830 0%, #343840 50%, #484c58 100%);
}

.ni-bg-4 {
  background: linear-gradient(160deg, #70c4dc 0%, #90d0e4 45%, #b4dff0 100%);
}

/* SVG product illustrations */
.ni-product {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 68%;
  z-index: 1;
}

/* ==============================================
   MD'S PICK SECTION
   ============================================== */
.mds-section {
  background: #ffffff;
  padding: 80px 0;
}

.mds-inner {
  /* display: grid;
  grid-template-columns: 1fr 1fr; */
  /* gap: 64px; */
  align-items: center;
  margin-bottom: 60px;
}

.mds-inner:last-child {
  margin-bottom: 0;
}

/* Reverse layout for even blocks */
.mds-inner.mds-reverse {
  grid-template-columns: 1fr 1fr;
}

.mds-inner.mds-reverse .mds-photo {
  grid-column: 2;
  grid-row: 1;
}

.mds-inner.mds-reverse .mds-info {
  grid-column: 1;
  grid-row: 1;
}

.mds-inner.mds-reverse .order {
  order: -1;
}

.mds-photo {
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #f7f7f7;
  position: relative;
}

.mds-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mds-photo-inner {
  width: 100%;
  height: 100%;
}

.mds-info {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-left: 60px;
}

.mds-inner.mds-reverse .mds-info {
  padding-left: 0;
  padding-right: 60px;
}

/* "Piccasso" brand label — italic, warm brown */
.mds-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 500;
  /* nâu đồng, khớp ảnh */
  margin-bottom: 14px;
}

.mds-info h2 {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 18px;
  line-height: 1.3;
}

.mds-info>p {
  font-size: 18px;
  color: #6a6060;
  line-height: 1.6;
  margin-bottom: 15px;
}

/* Slider container for products inside MD's Pick */
.mds-products-slick {
  margin-top: 20px;
  position: relative;
}

.mds-products-slick .slick-list {
  margin: 0 -10px;
}

.mds-products-slick .product-card {
  margin: 0 10px;
  outline: none;
}

.mds-products-slick .product-image-wrap {
  /* background: #ffffff; */
  /* border: 1px solid #f0f0f0; */
}

/* Slick arrows for mds products */
.mds-products-slick .slick-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #e2e8f0;
  color: #1a1a1a;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  line-height: 1;
  transition: all 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.mds-products-slick .slick-arrow:hover {
  background: #1a1a1a;
  color: #ffffff;
  border-color: #1a1a1a;
}

.mds-products-slick .slick-prev {
  left: -18px;
}

.mds-products-slick .slick-next {
  right: -18px;
}

/* Hide slick arrow helper classes */
.mds-products-slick .slick-hidden {
  display: none !important;
}

/* ==============================================
   MONTHLY PICCASSO SECTION
   ============================================== */
.monthly-section {
  background: #f5f4f0;
  padding: 80px 0;
}

.monthly-title {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 400;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 48px;
  letter-spacing: 0.01em;
}

.monthly-grid:not(.slick-initialized) {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.monthly-grid.slick-initialized {
  display: block;
}

.monthly-grid.slick-initialized .slick-track {
  display: flex;
}

.monthly-grid.slick-initialized .slick-list {
  margin: 0 -15px;
}

.monthly-grid.slick-initialized .monthly-card {
  margin: 0 15px;
  outline: none;
}

.monthly-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16 / 10;
}

.monthly-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2;
}

.monthly-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: transform 0.5s ease;
}

.monthly-card:hover img {
  transform: scale(1.05);
}

.monthly-card .mc-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}

.monthly-card:hover .mc-bg {
  transform: scale(1.04);
}

/* Card 1: beige/greige tones — brushes on light bg */
.mc-bg-1 {
  background: linear-gradient(135deg, #ccc4ba 0%, #b8b0a6 40%, #a8a098 100%);
}

/* Card 2: dark brown — powder brush dramatic */
.mc-bg-2 {
  background: linear-gradient(135deg, #3a3028 0%, #4e4438 50%, #605850 100%);
}

/* Text info block */
.monthly-card-info {
  position: absolute;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  color: white;
}

.mc-title {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 6px;
  line-height: 1.3;
  font-family: var(--font-family2);
}

.mc-sub {
  font-size: 17px;
  line-height: 1.5;
  margin-top: 5px;
}

/* Highlighted text in card 2 subtitle */
.mc-highlight {
  color: #c8a840;
  font-weight: 500;
}

/* Dark overlay on monthly cards */
.monthly-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
      rgba(0, 0, 0, 0.55) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

/* Brush SVG inside cards */
.mc-brushes {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 65%;
}

.monthly-section .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 30px auto 0;
  gap: 8px;
}

.monthly-section .slick-dots li {
  width: 8px;
  height: 8px;
  background-color: #e2e8f0;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.monthly-section .slick-dots li.slick-active {
  background-color: #1a1a1a;
  width: 24px;
  border-radius: 4px;
}

.monthly-section .slick-dots li button {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0;
  line-height: 0;
  color: transparent;
  cursor: pointer;
}

/* ==============================================
   BRAND STORY SECTION
   ============================================== */
.brand-story-section {
  position: relative;
  width: 100%;
  min-height: 475px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #f0ece6;
}

.brand-story-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .3);
  z-index: 1;
}

/* Large decorative background text */
.bs-bg-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  overflow: hidden;
  pointer-events: none;
  user-select: none;
}

.bs-bg-text img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.bs-bg-text span {
  font-family: 'Playfair Display', serif;
  font-size: clamp(60px, 10vw, 120px);
  font-weight: 700;
  color: #d8d0c8;
  letter-spacing: -0.02em;
  line-height: 0.85;
  opacity: 0.6;
  white-space: nowrap;
  margin: 0 8px;
  transform: rotate(-4deg);
}

/* Center content overlay */
.bs-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  text-align: center;
  padding: 30px;
}

.bs-title {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.04em;
  margin-bottom: 0;
}

.bs-logo-script {
  width: 200px;
  margin: -4px auto 12px;
}

.bs-btn {
  font-family: var(--font-family2);
  display: inline-block;
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  border: 1px solid #fff;
  padding: 11px 44px;
  text-transform: capitalize;
  transition: background 0.25s, color 0.25s;
  margin-top: 4px;
}

.bs-btn:hover {
  background: #1a1a1a;
  color: #f2ede8;
  border: 1px solid #1a1a1a;
}

/* ==============================================
   TABLET (max-width: 1024px)
   ============================================== */
@media (max-width: 1024px) {
  .best-section {
    padding: 60px 0;
  }

  .mds-inner {
    grid-template-columns: 1fr 1fr;
  }

  .monthly-section {
    padding: 60px 0;
  }

  .mds-info {
    padding-left: 0px;
  }
}

/* ==============================================
   TABLET (max-width: 900px)
   ============================================== */
@media (max-width: 992px) {
  .mds-inner.mds-reverse .order {
    order: 0;
  }

  .best-section {
    padding: 48px 0;
  }

  .best-title {
    font-size: 32px;
    margin-bottom: 24px;
  }

  .best-tabs {
    gap: 24px;
    margin-bottom: 36px;
  }

  .products-grid:not(.slick-initialized) {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .carousel-btn.prev {
    left: -12px;
  }

  .carousel-btn.next {
    right: -12px;
  }

  /* New Items */
  .new-items-section:not(.slick-initialized) {
    grid-template-columns: repeat(2, 1fr);
  }

  /* MD's Pick */
  .mds-section {
    padding: 56px 0;
  }

  .mds-title {
    font-size: 30px;
    margin-bottom: 36px;
  }

  .mds-inner {
    grid-template-columns: 1fr;
    gap: 22px;
    margin-bottom: 30px;
  }

  .mds-product-title {
    font-size: 22px;
  }

  /* Monthly */
  .monthly-section {
    padding: 48px 0;
  }

  .monthly-title {
    font-size: 30px;
  }

  /* Brand Story */
  .brand-story-section {
    min-height: 260px;
  }

  .bs-bg-text span {
    font-size: 56px;
  }

  .mds-inner.mds-reverse .mds-info {
    padding-right: 0px;
  }
}

/* ==============================================
   MOBILE (max-width: 480px)
   ============================================== */
@media (max-width: 480px) {
  .best-section {
    padding: 36px 0;
  }

  .best-title {
    font-size: 22px;
    margin-bottom: 18px;
  }

  .best-tabs {
    gap: 16px;
    margin-bottom: 28px;
    justify-content: left;
  }

  .best-tabs li {
    font-size: 15px;
  }

  .products-grid:not(.slick-initialized) {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .product-name {
    font-size: 14px;
    height: 39px;
    margin-bottom: 7px;
  }

  .price-sale,
  .price-regular {
    font-size: 13px;
  }

  .price-original {
    font-size: 11px;
  }

  .carousel-btn {
    display: none;
  }

  .view-more-btn {
    padding: 11px 40px;
    font-size: 12px;
  }

  .view-more-wrap {
    margin-top: 36px;
  }

  /* New Items */
  .new-items-section:not(.slick-initialized) {
    grid-template-columns: repeat(2, 1fr);
  }

  .new-item-info .ni-label {
    font-size: 26px;
  }

  .new-item-info .ni-name {
    font-size: 16px;
  }

  /* MD's Pick */
  .mds-section {
    padding: 36px 0;
  }

  .mds-title {
    font-size: 26px;
    margin-bottom: 24px;
  }

  .mds-product-title {
    font-size: 20px;
  }

  .mds-products {
    gap: 14px;
  }

  /* Monthly */
  .monthly-section {
    padding: 36px 0;
  }

  .monthly-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .monthly-grid:not(.slick-initialized) {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .monthly-grid.slick-initialized .slick-list {
    margin: 0 -10px;
  }

  .monthly-grid.slick-initialized .monthly-card {
    margin: 0 10px;
  }

  .monthly-card-info {
    bottom: 18px;
    left: 18px;
  }

  .mc-title {
    font-size: 18px;
  }

  .mc-sub {
    font-size: 15px;
  }

  /* Brand Story */
  .brand-story-section {
    min-height: 220px;
  }

  .bs-title {
    font-size: 22px;
  }

  .bs-logo-script {
    width: 150px;
  }

  .bs-btn {
    padding: 10px 36px;
    font-size: 14px;
  }

  .bs-content {
    gap: 20px;
  }

  .mds-info h2 {
    font-size: 21px;
    margin-bottom: 12px;
  }

  .mds-info h3 {
    margin-bottom: 5px;
  }

  .mds-info>p {
    font-size: 14px;
    margin-bottom: 0;
  }

  .product-brand {
    font-size: 12px;
  }

  .marquee-item {
    font-size: 14px;
  }

  .hs-dot,
  .hs-dots-slick li button {
    width: 40px;
  }

  .hs-dot.active,
  .hs-dots-slick li.slick-active button {
    width: 40px;
  }

  .hs-title p {
    font-size: 14px;
  }
}