/* ============================================
   MOBILE APP-STYLE NAVIGATION
   Hamburger menu + Slide-out drawer + Bottom tab bar
   ============================================ */

/* ── Reset desktop nav on mobile ── */
@media (max-width: 1080px) {
  .site-nav {
    display: none !important;
  }

  .site-actions .auth-actions {
    display: none !important;
  }

  .site-actions .profile-menu {
    display: none !important;
  }

  /* Hide wishlist only — search, cart, hamburger stay */
  .site-actions .circle-action[title="Wishlist"] {
    display: none !important;
  }

  .site-actions {
    gap: 6px !important;
    justify-content: flex-end !important;
  }

  .site-header-inner {
    grid-template-columns: auto 1fr auto !important;
    grid-template-areas: "logo . actions" !important;
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 12px !important;
  }

  .site-logo {
    grid-area: logo !important;
    display: flex !important;
    align-items: center !important;
  }

  .site-logo img {
    height: 30px !important;
    width: auto !important;
  }

  /* Hide brand name text on mobile — logo only */
  .site-logo .site-logo__text,
  .site-logo .site-logo__brand,
  .site-logo .site-logo__tagline,
  .site-logo strong,
  .site-logo span {
    display: none !important;
  }

  .site-actions {
    grid-area: actions !important;
    display: flex !important;
    align-items: center !important;
  }

  .site-header {
    height: 56px !important;
    min-height: 56px !important;
    border-bottom: 1px solid rgba(0,0,0,.06) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.05) !important;
    background: #ffffff !important;
  }

  /* Search icon — compact */
  .site-actions .search-circle-action {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
  }

  .site-actions .search-circle-action .search-icon-svg {
    width: 18px !important;
    height: 18px !important;
  }

  /* Cart icon — with badge count */
  .site-actions .circle-action[title="Shopping Bag"] {
    width: 38px !important;
    height: 38px !important;
    min-width: 38px !important;
    border-color: var(--primary, #b23c7c) !important;
    background: rgba(178,60,124,.06) !important;
    position: relative !important;
  }

  .site-actions .circle-action[title="Shopping Bag"] em {
    background: var(--primary, #b23c7c) !important;
    color: #fff !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    min-width: 16px !important;
    height: 16px !important;
    line-height: 16px !important;
    padding: 0 4px !important;
  }

  /* Hamburger — hidden on mobile */
  .mobile-menu-toggle {
    display: none !important;
  }

  /* Fix search panel position for mobile header */
  :root {
    --navbar-search-top: 56px;
  }
}

/* ── Hide on desktop ── */
@media (min-width: 1081px) {
  .mobile-menu-toggle,
  .mobile-drawer,
  .mobile-drawer-overlay,
  .mobile-bottom-bar {
    display: none !important;
  }
}

/* ── Hide hamburger on mobile — only logo + search + cart ── */
@media (max-width: 1080px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* ============================================
   HAMBURGER BUTTON
   ============================================ */

.mobile-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 0;
  position: relative;
  z-index: 10001;
  -webkit-tap-highlight-color: transparent;
}

@media (max-width: 1080px) {
  .mobile-menu-toggle {
    display: flex;
  }
}

.mobile-menu-toggle__lines {
  width: 22px;
  height: 16px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-menu-toggle__line {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--foreground, #333);
  border-radius: 2px;
  transition: transform 0.3s cubic-bezier(.4,0,.2,1), opacity 0.25s ease;
  transform-origin: center;
}

/* Hamburger → X animation */
.mobile-menu-toggle.is-active .mobile-menu-toggle__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.mobile-menu-toggle.is-active .mobile-menu-toggle__line:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.mobile-menu-toggle.is-active .mobile-menu-toggle__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================
   SLIDE-OUT DRAWER (Full screen overlay)
   ============================================ */

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
}

.mobile-drawer-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100%;
  background: #fff;
  z-index: 10002;
  transform: translateX(-100%);
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 4px 0 24px rgba(0,0,0,.12);
}

.mobile-drawer.is-open {
  transform: translateX(0);
}

/* ── Drawer Header ── */
.mobile-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 16px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.mobile-drawer__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.mobile-drawer__brand img {
  height: 32px;
  width: auto;
}

.mobile-drawer__brand-name {
  font-size: 16px;
  font-weight: 800;
  color: var(--foreground, #333);
  letter-spacing: -0.02em;
}

.mobile-drawer__close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  background: #f5f5f5;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
  color: #666;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.mobile-drawer__close:hover {
  background: #eee;
}

/* ── Drawer User Section ── */
.mobile-drawer__user {
  padding: 20px;
  border-bottom: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.mobile-drawer__user-logged {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.mobile-drawer__user-avatar {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--primary, #4e7661), var(--primary-dark, #3a5948));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  flex-shrink: 0;
  overflow: hidden;
}

.mobile-drawer__user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-drawer__user-info {
  flex: 1;
  min-width: 0;
}

.mobile-drawer__user-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--foreground, #333);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-drawer__user-email {
  font-size: 12px;
  color: #999;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mobile-drawer__user-guest {
  display: flex;
  gap: 10px;
}

.mobile-drawer__user-guest a {
  flex: 1;
  text-align: center;
  padding: 10px 0;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}

.mobile-drawer__user-guest .mobile-drawer__login {
  background: var(--primary, #4e7661);
  color: #fff;
  border: 1px solid var(--primary, #4e7661);
}

.mobile-drawer__user-guest .mobile-drawer__login:hover {
  background: var(--primary-dark, #3a5948);
  border-color: var(--primary-dark, #3a5948);
}

.mobile-drawer__user-guest .mobile-drawer__register {
  background: transparent;
  color: var(--primary, #4e7661);
  border: 1px solid var(--primary, #4e7661);
}

.mobile-drawer__user-guest .mobile-drawer__register:hover {
  background: var(--primary, #4e7661);
  color: #fff;
}

/* ── Drawer Nav ── */
.mobile-drawer__nav {
  flex: 1;
  overflow-y: auto;
  padding: 12px 0;
  -webkit-overflow-scrolling: touch;
}

.mobile-drawer__nav-section {
  padding: 0 20px;
  margin-bottom: 8px;
}

.mobile-drawer__nav-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #bbb;
  padding: 8px 0 6px;
}

.mobile-drawer__nav-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  margin: 2px 0;
  border-radius: 12px;
  text-decoration: none;
  color: var(--foreground, #333);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.mobile-drawer__nav-item:hover,
.mobile-drawer__nav-item:active {
  background: var(--primary-pale, rgba(78,118,97,.08));
  color: var(--primary-dark, #3a5948);
}

button.mobile-drawer__nav-item {
  border: none;
  background: transparent;
  text-align: left;
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mobile-drawer__nav-item.active {
  background: var(--primary-pale, rgba(78,118,97,.1));
  color: var(--primary, #4e7661);
}

.mobile-drawer__nav-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  opacity: 0.7;
}

.mobile-drawer__nav-item.active .mobile-drawer__nav-icon {
  opacity: 1;
}

/* ── Shop Submenu ── */
.mobile-drawer__shop-group {
  margin: 2px 0;
}

.mobile-drawer__shop-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 14px;
  width: 100%;
  border-radius: 12px;
  border: none;
  background: transparent;
  cursor: pointer;
  text-align: left;
  color: var(--foreground, #333);
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.mobile-drawer__shop-trigger:hover {
  background: var(--primary-pale, rgba(78,118,97,.08));
}

.mobile-drawer__shop-arrow {
  margin-left: auto;
  font-size: 12px;
  color: #ccc;
  transition: transform 0.3s ease;
}

.mobile-drawer__shop-group.is-open .mobile-drawer__shop-arrow {
  transform: rotate(180deg);
}

.mobile-drawer__shop-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(.4,0,.2,1);
}

.mobile-drawer__shop-group.is-open .mobile-drawer__shop-sub {
  max-height: 300px;
}

.mobile-drawer__shop-sub a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 14px 11px 48px;
  border-radius: 10px;
  text-decoration: none;
  color: #666;
  font-size: 13px;
  font-weight: 500;
  transition: background 0.2s, color 0.2s;
}

.mobile-drawer__shop-sub a:hover,
.mobile-drawer__shop-sub a:active {
  background: var(--primary-pale, rgba(78,118,97,.06));
  color: var(--primary, #4e7661);
}

.mobile-drawer__shop-sub a.active {
  color: var(--primary, #4e7661);
  font-weight: 700;
}

/* ── Drawer Footer ── */
.mobile-drawer__footer {
  padding: 16px 20px;
  border-top: 1px solid #f0f0f0;
  flex-shrink: 0;
}

.mobile-drawer__logout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #f0f0f0;
  background: transparent;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  color: #e74c3c;
  transition: background 0.2s;
}

.mobile-drawer__logout:hover {
  background: #fef2f2;
}

/* ============================================
   BOTTOM TAB BAR (Mobile App Style)
   ============================================ */

.mobile-bottom-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #fff;
  border-top: 1px solid #f0f0f0;
  box-shadow: 0 -2px 12px rgba(0,0,0,.06);
  padding-bottom: env(safe-area-inset-bottom, 0);
  display: none;
}

@media (max-width: 1080px) {
  .mobile-bottom-bar {
    display: block;
  }

  /* Add padding to body to account for bottom bar */
  body {
    padding-bottom: 68px;
  }
}

.mobile-bottom-bar__inner {
  display: flex;
  align-items: stretch;
  justify-content: space-around;
  height: 56px;
  max-width: 500px;
  margin: 0 auto;
  padding: 0 4px;
}

.mobile-bottom-bar__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  text-decoration: none;
  color: #999;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.02em;
  padding: 4px 0;
  position: relative;
  transition: color 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.mobile-bottom-bar__item.active {
  color: var(--primary, #4e7661);
}

.mobile-bottom-bar__item.active::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 3px;
  background: var(--primary, #4e7661);
  border-radius: 0 0 3px 3px;
}

.mobile-bottom-bar__icon {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  position: relative;
}

.mobile-bottom-bar__badge {
  position: absolute;
  top: -4px;
  right: -8px;
  min-width: 14px;
  height: 14px;
  border-radius: 7px;
  background: var(--primary, #4e7661);
  color: #fff;
  font-size: 8px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
}

/* Profile icon in bottom bar — triggers drawer */
.mobile-bottom-bar__item--profile {
  cursor: pointer;
  border: none;
  background: none;
}

/* ============================================
   BODY PADDING ADJUSTMENTS
   ============================================ */

@media (max-width: 1080px) {
  .hero-section {
    margin-top: 56px !important;
    height: 480px !important;
    min-height: 480px !important;
  }

  /* Push footer content above bottom bar */
  footer {
    margin-bottom: 68px;
  }
}

/* ============================================
   BODY LOCK WHEN DRAWER OPEN
   ============================================ */

body.drawer-open {
  overflow: hidden !important;
  touch-action: none;
  -webkit-overflow-scrolling: none;
  overscroll-behavior: none;
}

/* ============================================
   MOBILE HOME SECTIONS RESPONSIVE TWEAKS
   ============================================ */

/* Hero section mobile */
@media (max-width: 640px) {
  .hero-section {
    height: 400px !important;
    min-height: 400px !important;
  }

  .hero-content {
    padding-bottom: 40px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .text-hero-xl {
    font-size: clamp(2rem, 10vw, 3.5rem) !important;
  }

  .text-hero-sm {
    font-size: 10px !important;
  }

  .hero-content .flex.items-center.gap-6 {
    gap: 12px !important;
    margin-top: 16px !important;
  }
}

/* Products section mobile */
@media (max-width: 640px) {
  #products {
    padding: 32px 0 !important;
  }

  #products .flex.items-center.justify-center {
    gap: 16px !important;
    margin-bottom: 24px !important;
  }

  #products .text-base {
    font-size: 13px !important;
  }

  .product-card-hover .px-3 {
    padding: 8px 10px 12px !important;
  }

  .product-card-hover h3 {
    font-size: 12px !important;
    margin-bottom: 4px !important;
  }

  .product-card-hover p[style*="font-size:20px"] {
    font-size: 16px !important;
  }

  .product-add-to-bag,
  .landing-product-add-to-bag {
    font-size: 10px !important;
    padding: 0 8px !important;
    min-height: 28px !important;
  }
}

/* Sale section mobile */
@media (max-width: 640px) {
  .sale-home-section {
    padding: 32px 0 !important;
  }

  .sale-home-title {
    font-size: 18px !important;
  }

  .sale-home-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
}

/* Beauty Highlight mobile */
@media (max-width: 640px) {
  .beauty-highlight-section {
    padding: 48px 0 !important;
  }

  .beauty-highlight-section [style*="min-height:380px"] {
    min-height: 280px !important;
  }

  .beauty-highlight-section h2 {
    font-size: 24px !important;
  }

  .beauty-highlight-desc {
    font-size: 14px !important;
  }
}

/* Skin Type Showcase mobile */
@media (max-width: 640px) {
  .skin-type-showcase {
    padding: 40px 0 !important;
  }

  .skin-type-showcase__heading p {
    font-size: 10px !important;
  }

  .skin-type-showcase__heading h2 {
    font-size: 20px !important;
  }
}

/* Glow Guide mobile */
@media (max-width: 640px) {
  .glow-guide {
    padding: 40px 0 48px !important;
  }

  .glow-guide__title {
    font-size: 22px !important;
  }

  .glow-guide__grid {
    gap: 12px !important;
  }
}

/* Connect With Us mobile */
@media (max-width: 640px) {
  .relative.py-20.overflow-hidden {
    padding: 48px 0 !important;
  }

  .relative.py-20.overflow-hidden h2 {
    font-size: 24px !important;
  }

  .relative.py-20.overflow-hidden p {
    font-size: 13px !important;
  }
}

/* Product Highlight mobile */
@media (max-width: 640px) {
  .product-highlight-section .product-highlight-row {
    flex-direction: column !important;
  }

  .product-highlight-section .product-highlight-image {
    width: 100% !important;
    min-height: 200px !important;
  }

  .product-highlight-section .product-highlight-content {
    padding: 24px 20px !important;
  }

  .product-highlight-section .product-highlight-title {
    font-size: 20px !important;
  }
}

/* Footer mobile — only "Hubungi Kami" contact CTA */
@media (max-width: 640px) {
  /* Hide the entire 4-column grid */
  .footer-luxury .grid {
    display: none !important;
  }

  /* Hide the copyright bottom bar */
  .footer-luxury > div:last-child {
    display: none !important;
  }

  /* Show only the contact section as last section */
  .footer-luxury {
    padding: 0 !important;
    background: var(--primary) !important;
  }

  .footer-luxury > .max-w-7xl {
    padding: 0 !important;
  }

  /* Make contact section full-width CTA card */
  .footer-luxury .footer-contact {
    display: block !important;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark, #8b2f61) 100%) !important;
    padding: 32px 20px !important;
    margin: 0 !important;
    border-top: 1px solid rgba(255,255,255,.1);
  }

  .footer-luxury .footer-contact h4 {
    display: block !important;
    text-align: center !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #fff !important;
    margin: 0 0 20px !important;
    letter-spacing: 0.02em !important;
  }

  .footer-luxury .footer-contact-list {
    flex-direction: column !important;
    gap: 14px !important;
    align-items: stretch !important;
  }

  .footer-luxury .footer-contact__item {
    justify-content: flex-start !important;
    font-size: 13px !important;
    color: rgba(255,255,255,.85) !important;
    padding: 12px 16px !important;
    background: rgba(255,255,255,.08) !important;
    border-radius: 12px !important;
    border: 1px solid rgba(255,255,255,.1) !important;
  }

  .footer-luxury .footer-contact__item a {
    color: #fff !important;
    font-weight: 600 !important;
  }

  .footer-luxury .footer-contact__icon {
    background: rgba(255,255,255,.12) !important;
    border-color: rgba(255,255,255,.2) !important;
    width: 36px !important;
    height: 36px !important;
  }

  .footer-luxury .footer-contact__icon svg {
    width: 16px !important;
    height: 16px !important;
    color: #fff !important;
  }
}

/* ============================================
   BEST SELLER / PRODUCT SECTION — MOBILE FIX
   The featured image with text overlay looks bad
   on mobile. Redesign to stacked layout.
   ============================================ */

@media (max-width: 640px) {
  /* Featured image — reduce height, smaller text */
  #products .w-full.lg\:w-\[42\%\] {
    min-height: 220px !important;
    height: 220px !important;
    border-radius: 16px !important;
    overflow: hidden !important;
  }

  #products .w-full.lg\:w-\[42\%\] .absolute.bottom-8 {
    bottom: 16px !important;
    left: 16px !important;
  }

  #products .w-full.lg\:w-\[42\%\] .text-white.text-2xl {
    font-size: 18px !important;
  }

  #products .w-full.lg\:w-\[42\%\] .text-white.text-xs {
    font-size: 9px !important;
  }

  /* Product grid — tighter spacing */
  #products .grid.grid-cols-2 {
    gap: 10px !important;
  }

  /* Product cards — cleaner mobile look */
  .product-card-hover {
    border-radius: 12px !important;
    overflow: hidden !important;
  }

  .product-card-hover .relative.overflow-hidden {
    border-radius: 12px 12px 0 0 !important;
  }

  .product-card-hover .px-3 {
    padding: 8px 10px 14px !important;
  }

  .product-card-hover h3 {
    font-size: 11px !important;
    line-height: 1.3 !important;
    margin-bottom: 4px !important;
    -webkit-line-clamp: 2 !important;
    display: -webkit-box !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
  }

  .product-card-hover p[style*="font-size:20px"] {
    font-size: 15px !important;
  }

  /* Discount badge */
  .product-card-discount-badge {
    font-size: 9px !important;
    padding: 2px 6px !important;
  }

  .product-card-original-price {
    font-size: 10px !important;
  }

  /* Hide "Tambah ke Keranjang" button on mobile — users tap card to view */
  .product-add-to-bag.landing-product-add-to-bag {
    display: none !important;
  }
  .catalogue-page .product-add-to-bag.landing-product-add-to-bag {
    display: inline-flex !important;
  }

  /* Show wishlist heart only */
  .product-card-actions {
    position: absolute !important;
    top: 8px !important;
    right: 8px !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    opacity: 1 !important;
    display: flex !important;
    gap: 0 !important;
  }

  .wishlist-love.product-card-wish {
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,.9) !important;
    backdrop-filter: blur(4px) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 14px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,.1) !important;
    border: none !important;
    padding: 0 !important;
  }

  /* Tab buttons — more compact */
  #products .flex.items-center.justify-center {
    gap: 14px !important;
    margin-bottom: 20px !important;
  }

  #products .text-base {
    font-size: 12px !important;
    letter-spacing: 0.1em !important;
  }
}

/* ============================================
   SKIN TYPE TABS — HORIZONTAL SCROLL ON MOBILE
   ============================================ */

@media (max-width: 640px) {
  /* Tabs container — horizontal scroll */
  .skin-type-showcase__tabs {
    display: flex !important;
    flex-direction: row !important;
    gap: 10px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scroll-snap-type: x mandatory !important;
    padding-bottom: 8px !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
  }

  .skin-type-showcase__tabs::-webkit-scrollbar {
    display: none !important;
  }

  /* Each tab — fixed width, snap */
  .skin-type-tab {
    flex: 0 0 auto !important;
    min-width: 140px !important;
    width: 140px !important;
    min-height: auto !important;
    padding: 14px 16px !important;
    flex-direction: column !important;
    text-align: center !important;
    gap: 8px !important;
    scroll-snap-align: start !important;
  }

  .skin-type-tab__icon {
    width: 44px !important;
    height: 44px !important;
    flex-basis: 44px !important;
  }

  .skin-type-tab strong {
    font-size: 12px !important;
  }

  .skin-type-tab small {
    font-size: 11px !important;
  }
}
