/**
 * Golden Teak – TSC-inspired design overrides
 */

/* Bootstrap grid file has no display utilities – required for responsive */
.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }
.d-inline-flex { display: inline-flex !important; }

@media (min-width: 768px) {
  .d-md-none { display: none !important; }
  .d-md-block { display: block !important; }
}

@media (min-width: 992px) {
  .d-lg-none { display: none !important; }
  .d-lg-block { display: block !important; }
  .d-lg-flex { display: flex !important; }
  .d-lg-inline-flex { display: inline-flex !important; }
}

@media (max-width: 991.98px) {
  .d-lg-none { display: block !important; }
  .d-lg-none.icon-btn,
  .d-lg-none.hamburger-tsc { display: flex !important; }
  .d-lg-none.mobile-nav-tabs { display: flex !important; }
  .d-lg-block,
  .d-none.d-lg-block,
  .d-none.d-lg-flex { display: none !important; }
}

@media (max-width: 767.98px) {
  .d-md-block,
  .d-none.d-md-block { display: none !important; }
}

:root {
  --tsc-navy: #5a4f24;
  --tsc-navy-dark: #4a3f1a;
  --tsc-blue-pill: #faecc8;
  --tsc-blue-bg: #fffbf0;
  --tsc-circle-grad: linear-gradient(165deg, #f0d78c 0%, #faeab8 42%, #fff9e8 100%);
}

body {
  font-family: 'Poppins', 'Inter', sans-serif;
  color: var(--tsc-navy-dark);
  overflow-x: hidden;
}

/* ========== MOBILE HEADER ========== */
@media (max-width: 991.98px) {
  .site-header .header-inner {
    display: grid;
    grid-template-columns: 40px 1fr auto;
    align-items: center;
    height: 52px;
    padding: 0 10px;
    gap: 6px;
    max-width: 100%;
  }

  .site-header .logo {
    justify-self: start;
    min-width: 0;
    flex-direction: row;
    gap: 6px;
  }

  .site-header .logo-text {
    font-size: 0.68rem;
    letter-spacing: 0.05em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 42vw;
  }

  .site-header .logo-icon svg {
    width: 20px;
    height: 20px;
  }

  .site-header .header-actions {
    display: flex;
    align-items: center;
    gap: 0;
    flex-shrink: 0;
  }

  .site-header .header-actions .icon-btn {
    width: 34px;
    height: 34px;
    padding: 6px;
    flex-shrink: 0;
  }

  .site-header .header-actions .icon-btn svg {
    width: 20px;
    height: 20px;
  }

  .hamburger-tsc {
    width: 40px;
    height: 40px;
    padding: 10px 8px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 6px;
    background: none;
    border: none;
  }

  .hamburger-tsc .ham-line {
    display: block;
    height: 2.5px;
    background: var(--tsc-navy-dark);
    border-radius: 2px;
    transition: transform 0.25s ease, width 0.25s ease;
  }

  .hamburger-tsc .ham-line-1 { width: 22px; }
  .hamburger-tsc .ham-line-2 { width: 14px; }

  .hamburger-tsc.is-open .ham-line-1 {
    width: 22px;
    transform: translateY(4px) rotate(45deg);
  }

  .hamburger-tsc.is-open .ham-line-2 {
    width: 22px;
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav-tabs {
    padding: 0 8px 8px;
  }

  .mobile-nav-tab {
    font-size: 0.92rem;
    padding: 10px 6px;
    max-width: none;
  }

  .mobile-nav-tab.active {
    color: var(--tsc-navy-dark);
    border-bottom-width: 2.5px;
    border-bottom-color: var(--tsc-navy-dark);
  }

  .category-circles-bar {
    padding: 10px 0 12px;
  }

  .category-circles-bar .circle-item {
    width: 88px;
  }

  .category-circles-bar .circle-img {
    width: 76px;
    height: 76px;
    background: var(--tsc-circle-grad);
  }

  .category-circles-bar .circle-img img {
    width: 96%;
    height: 96%;
    transform: translateY(-4px) !important;
  }

  .category-circles-bar .circle-item span {
    font-size: 0.82rem;
    font-weight: 500;
    margin-top: 8px;
    color: var(--tsc-navy-dark);
  }

  .category-circles-bar .category-swiper {
    padding: 0 12px;
  }

  .page-home .hero-natural-h .swiper-slide {
    min-height: 0 !important;
    height: auto !important;
    max-height: none;
    background: transparent;
  }

  .page-home .shop-by-categories-section {
    padding: 8px 0 18px !important;
  }

  .tsc-section-title {
    font-size: 1.35rem;
    margin-bottom: 0;
  }

  .shop-cat-scroll-row .shop-cat-card {
    flex: 0 0 150px;
  }

  .shop-cat-img-wrap {
    height: 180px;
    border-radius: 16px;
    background: var(--tsc-blue-bg);
  }

  .shop-cat-img-wrap img {
    object-fit: contain;
    object-position: center bottom;
    padding: 8px;
  }

  .shop-cat-label {
    background: var(--tsc-blue-pill);
    color: var(--tsc-navy-dark);
    font-size: 0.85rem;
  }

  .mobile-drawer-panel {
    width: 100%;
    max-width: 100%;
  }

  .pb-mobile-nav {
    padding-bottom: 72px;
  }
}

/* ========== DESKTOP HEADER / NAV ========== */
@media (min-width: 992px) {
  .page-home .header-sticky-wrap {
    background: transparent;
    border-bottom: none;
  }

  .page-home .header-top {
    background: transparent;
  }

  body.header-fixed.page-home .header-sticky-wrap {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid #faf6ed;
  }

  .page-home .category-circles-bar {
    background: #fff !important;
  }

  /* Header visuals: see header-tsc.css */
}

/* ========== HOMEPAGE: transparent header + white category bar ========== */
.page-home .site-header {
  background: transparent;
  margin-bottom: 0;
}

.page-home .header-sticky-wrap {
  background: transparent;
  border-bottom: none;
}

.page-home .header-top {
  background: transparent;
}

.page-home .mobile-nav-tabs {
  background: #fff;
  border-bottom: 1px solid #faf6ed;
}

.page-home .category-circles-bar {
  padding: 8px 0 0;
  margin: 0;
  border-bottom: none;
  background: #fff !important;
}

.page-home .category-circles-bar .category-swiper {
  padding-bottom: 8px;
}

body.header-fixed.page-home .header-sticky-wrap {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #faf6ed;
}

body.header-fixed.page-home .header-top {
  background: transparent;
}

body.header-fixed.page-home .category-circles-bar {
  background: #fff !important;
  box-shadow: 0 2px 8px rgba(74, 63, 26, 0.04);
}

/* No gap: category bar → hero */
.page-home #main-content {
  margin-top: 0;
  padding-top: 0;
}

.page-home .hero-image-only {
  margin: 0 !important;
  padding: 0;
  line-height: 0;
  border-radius: 0;
}

.page-home .hero-image-only .swiper,
.page-home .hero-image-only .swiper-wrapper,
.page-home .hero-image-only .swiper-slide {
  margin: 0;
  padding: 0;
}

.page-home #main-content > .hero-slider:first-child {
  margin-top: 0;
}

body.header-fixed.page-home .site-header {
  min-height: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible;
  background: transparent;
}

/* ========== MEGA MENU – square, uniform size ========== */
.mega-cat-thumb {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  border-radius: 10px;
  background: var(--tsc-blue-bg);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mega-cat-thumb img {
  width: 88%;
  height: 88%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
}

.mega-col-grid {
  display: grid;
  grid-template-columns: repeat(3, 88px);
  justify-content: start;
  gap: 20px 16px;
}

.mega-col-grid-wide {
  grid-template-columns: repeat(auto-fill, 88px);
  justify-content: start;
}

/* Desktop mega menu – no clip on All Categories / Relax */
@media (min-width: 992px) {
  .header-sticky-wrap {
    overflow: visible !important;
  }

  .header-sticky-wrap .mega-menu {
    overflow: visible;
    left: 0;
    right: 0;
  }

  .mega-menu .container {
    max-width: 1280px;
    overflow: visible;
    padding-left: 24px;
    padding-right: 24px;
  }

  .mega-menu-inner.mega-menu-rich {
    overflow: visible;
  }

  .mega-detail-area {
    position: relative;
    flex: 1;
    min-width: 0;
    min-height: 300px;
    overflow: hidden;
    padding: 0 20px 20px 28px !important;
  }

  .mega-detail-panel,
  .mega-panel-groups {
    display: none;
    position: absolute;
    inset: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 0 !important;
  }

  .mega-detail-panel.active,
  .mega-panel-groups.active {
    display: block;
    position: relative;
    inset: auto;
    width: 100%;
    min-height: 300px;
  }

  .mega-cols {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px 32px;
    width: 100%;
  }

  .mega-col {
    min-width: 0;
    overflow: visible;
  }

  .mega-col-grid {
    grid-template-columns: repeat(3, 88px);
    justify-content: start;
    gap: 18px 14px;
  }

  .mega-col-grid-wide {
    display: flex;
    flex-wrap: wrap;
    gap: 18px 14px;
    max-width: 100%;
  }

  .mega-col.single {
    width: 100%;
  }

  .site-header .header-inner {
    height: 68px;
  }

  .site-header .main-nav {
    gap: 4px 20px;
  }

  .site-header .main-nav .nav-item {
    font-size: 0.92rem;
    font-weight: 500;
    padding: 10px 2px;
    letter-spacing: 0.01em;
  }

  .site-header .main-nav .nav-item.active,
  .site-header .main-nav .nav-item:hover {
    font-weight: 600;
  }

  .site-header .logo-text {
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .site-header .btn-find-store {
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    box-shadow: 0 4px 14px rgba(27, 43, 75, 0.2);
  }

  .site-header .header-actions .icon-btn {
    color: var(--tsc-navy);
  }
}

.mega-col-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 4px;
  width: 88px;
  text-decoration: none;
  color: var(--tsc-navy-dark);
  font-weight: 500;
  font-size: 0.82rem;
  line-height: 1.2;
  transition: transform 0.2s ease;
}

.mega-col-link:hover {
  transform: translateY(-2px);
  color: var(--tsc-navy);
}

.mega-col-visual {
  width: 72px;
  height: 72px;
  min-width: 72px;
  min-height: 72px;
  border-radius: 12px;
  background: var(--tsc-blue-bg);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: none;
}

.mega-col-visual img {
  width: 90%;
  height: 90%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  object-position: center;
  transform: none;
  filter: none;
}

.mega-col-name {
  line-height: 1.2;
  max-width: 88px;
  word-break: break-word;
}

.mega-col h4 {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: #7a8fa8;
  font-weight: 600;
  margin-bottom: 16px;
}

.mega-cols {
  gap: 32px 48px;
}

.mega-sidebar .mega-side-link {
  font-size: 0.92rem;
  padding: 12px 14px;
  border-radius: 10px;
}

.mega-sidebar .mega-side-link.active,
.mega-sidebar .mega-side-link:hover {
  background: var(--tsc-blue-pill);
  color: var(--tsc-navy);
}

/* ========== HERO – natural image height ========== */
.hero-natural-h .swiper,
.hero-natural-h .swiper-wrapper {
  height: auto !important;
}

.hero-natural-h .swiper-slide {
  min-height: 0 !important;
  height: auto !important;
  background: transparent !important;
}

.hero-natural-h .hero-slide-link,
.hero-natural-h picture,
.hero-natural-h img {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
  object-fit: contain;
}

/* ========== PROMO STRIP – shiny, one line mobile ========== */
.promo-strip-shine {
  position: relative;
  overflow: hidden;
  padding: 0;
  background: linear-gradient(90deg, #4a3f1a 0%, #5c4f20 38%, #4a3f1a 100%);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.promo-strip-shine::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    110deg,
    rgba(232, 200, 120, 0) 0%,
    rgba(232, 200, 120, 0.12) 26%,
    rgba(250, 234, 184, 0.65) 50%,
    rgba(232, 200, 120, 0.12) 74%,
    rgba(232, 200, 120, 0) 100%
  );
  transform: translateX(-55%);
  animation: promoGoldShine 3.8s ease-in-out infinite;
}

.promo-strip-shine::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, transparent 45%);
  pointer-events: none;
}

@keyframes promoGoldShine {
  0% { transform: translateX(-60%); opacity: 0.55; }
  50% { transform: translateX(20%); opacity: 0.85; }
  100% { transform: translateX(95%); opacity: 0.55; }
}

.promo-strip-track {
  position: relative;
  z-index: 1;
  padding: 12px 16px;
}

.promo-strip-text {
  margin: 0;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: clamp(0.64rem, 2.8vw, 0.92rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.35);
}

@media (min-width: 768px) {
  .promo-strip-track {
    padding: 14px 24px;
  }

  .promo-strip-text {
    font-size: 0.9rem;
    letter-spacing: 0.08em;
  }
}

/* ========== SHOP BY CATEGORIES BENTO (TSC) ========== */
.shop-by-categories-section {
  padding: 28px 0 32px;
  background: #fff;
}

.shop-cat-head {
  text-align: center;
  margin-bottom: 18px;
  padding: 0 20px;
}

.tsc-section-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: clamp(1.45rem, 3.2vw, 1.85rem);
  color: #111827;
  text-align: center;
  letter-spacing: -0.02em;
  margin: 0;
  line-height: 1.25;
}

.shop-bento-outer {
  padding: 0 0 0 16px;
}

.shop-bento-scroll {
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px 8px 0;
  width: 100%;
  scroll-behavior: smooth;
}

/* Hide scrollbar line under Shop by Categories */
.shop-bento-no-scrollbar {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.shop-bento-no-scrollbar::-webkit-scrollbar {
  display: none;
  width: 0;
  height: 0;
}

.shop-bento-unified {
  display: grid;
  grid-template-columns: repeat(var(--bento-cols, 7), 162px);
  grid-template-rows: repeat(2, 196px);
  gap: 14px;
  width: max-content;
  min-width: calc(var(--bento-cols, 7) * 162px + (var(--bento-cols, 7) - 1) * 14px);
  margin: 0;
  padding: 4px 16px 8px;
}

.shop-bento-tsc {
  /* TSC reference: fixed 7-slot bento proportions */
}

.bento-card {
  position: relative;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background: #fef8ea;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 18px rgba(27, 43, 75, 0.08);
  min-height: 0;
}

.bento-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(27, 43, 75, 0.14);
}

.bento-img-wrap {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  background: #fef8ea;
  overflow: hidden;
}

.bento-img-wrap::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 42%;
  background: linear-gradient(0deg, rgba(232, 244, 252, 0.55) 0%, transparent 100%);
  pointer-events: none;
  z-index: 1;
}

.bento-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover !important;
  object-position: center center !important;
  display: block;
  transition: transform 0.4s ease;
}

.bento-card:hover .bento-img-wrap img {
  transform: scale(1.06);
}

.bento-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: auto;
  z-index: 3;
  max-width: calc(100% - 24px);
  padding: 9px 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  line-height: 1.2;
  color: #4a3f1a;
  box-shadow: 0 4px 16px rgba(74, 63, 26, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Grid positions – TSC 2-row bento */
.pos-mattress      { grid-column: 1 / 3; grid-row: 1; }
.pos-recliner-sofa { grid-column: 3; grid-row: 1 / 3; }
.pos-massager      { grid-column: 4; grid-row: 1; }
.pos-recliner-bed  { grid-column: 5 / 7; grid-row: 1; }
.pos-bedding       { grid-column: 7; grid-row: 1; }
.pos-desk          { grid-column: 1; grid-row: 2; }
.pos-chair         { grid-column: 2; grid-row: 2; }
.pos-elite-sofa    { grid-column: 5 / 7; grid-row: 2; }
.pos-pillows       { grid-column: 4; grid-row: 2; }
.pos-cushions      { grid-column: 7; grid-row: 2; }

.bento-card--added {
  min-height: 0;
}

.shop-by-categories-section {
  overflow: hidden;
}

.shop-bento-scroll {
  scroll-snap-type: x proximity;
  cursor: grab;
}

.shop-bento-scroll:active,
.shop-bento-scroll.is-dragging {
  cursor: grabbing;
}


@media (max-width: 1199px) {
  .shop-bento-unified {
    grid-template-columns: repeat(var(--bento-cols, 7), 152px);
    grid-template-rows: repeat(2, 182px);
    min-width: calc(var(--bento-cols, 7) * 152px + (var(--bento-cols, 7) - 1) * 14px);
  }
}

@media (max-width: 767px) {
  .shop-bento-unified {
    grid-template-columns: repeat(var(--bento-cols, 7), 140px);
    grid-template-rows: repeat(2, 168px);
    gap: 10px;
    min-width: calc(var(--bento-cols, 7) * 140px + (var(--bento-cols, 7) - 1) * 10px);
  }

  .tsc-section-title {
    font-size: 1.35rem;
    font-weight: 500;
  }

  .bento-label {
    font-size: 0.78rem;
    padding: 6px 12px;
    font-weight: 500;
  }
}

.page-home .bento-label {
  background: rgba(232, 244, 252, 0.88);
  color: #4a3f1a;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.7);
}

/* ========== MOBILE DRAWER (TSC style) ========== */
.mobile-drawer-panel {
  width: 100%;
  max-width: 100%;
}

.mobile-drawer-top {
  display: grid;
  grid-template-columns: 44px 1fr 44px;
  align-items: center;
  padding: 14px 16px;
  border-bottom: 1px solid #faf6ed;
  flex-shrink: 0;
}

.drawer-close-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  color: var(--tsc-navy-dark);
  cursor: pointer;
}

.drawer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.drawer-logo-img {
  display: block;
  width: auto;
  height: 32px;
  max-width: 200px;
  object-fit: contain;
}

.drawer-logo .logo-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  color: var(--tsc-navy);
}

.drawer-wa-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25d366;
  margin-left: auto;
}

.mobile-drawer-cta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 14px 16px;
  border-bottom: 1px solid #faf6ed;
  flex-shrink: 0;
}

.mobile-drawer-cta-stack .mobile-action-btn {
  width: 100%;
  border-radius: 999px;
  padding: 13px 16px;
  font-size: 0.92rem;
}

.mobile-action-btn.outline-red {
  border: 1.5px solid #7f1d1d;
  color: #7f1d1d;
  background: #fff;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.mobile-drawer-title {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 12px;
  font-weight: 600;
}

.mobile-cat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.mobile-cat-tile {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1px solid #e8eef5;
  border-radius: 14px;
  background: #fff;
  min-height: 68px;
  text-decoration: none;
}

.mobile-cat-thumb {
  width: 52px;
  height: 52px;
  min-width: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mobile-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: transparent;
}

.mobile-cat-name {
  font-size: 0.86rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--tsc-navy-dark);
}

.mobile-service-card {
  border-radius: 16px;
  background: #f8fbfe;
  border-color: #faecc8;
}

.mobile-drawer-links a {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 16px 0;
  color: var(--tsc-navy-dark);
  text-decoration: none;
  display: block;
  border-bottom: 1px solid #f1f5f9;
}

.mobile-drawer-quick {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 16px;
  padding-top: 8px;
}

.drawer-quick-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #fff;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--tsc-navy-dark);
  cursor: pointer;
}

/* ========== MOBILE BOTTOM NAV – mobile only ========== */
.mobile-bottom-nav {
  display: none;
}

@media (max-width: 991.98px) {
  .mobile-bottom-nav {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    position: fixed;
    bottom: calc(env(safe-area-inset-bottom, 0px) + 8px);
    left: 10px;
    right: 10px;
    z-index: 999;
    height: 64px;
    padding: 6px;
    background: linear-gradient(180deg, rgba(255, 252, 243, 0.97) 0%, rgba(250, 238, 207, 0.94) 100%);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(201, 162, 39, 0.26);
    border-radius: 20px;
    box-shadow: 0 14px 34px rgba(74, 63, 26, 0.16), 0 3px 10px rgba(201, 162, 39, 0.2);
  }

  .mobile-bottom-nav .mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    min-width: 0;
    padding: 6px 2px 5px;
    border-radius: 14px;
    text-decoration: none;
    color: #7a6f59;
    -webkit-tap-highlight-color: transparent;
    transition: color 0.2s ease, background-color 0.2s ease;
  }

  .mobile-bottom-nav .mbn-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    border-radius: 10px;
    color: #7d7160;
    background: transparent;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
  }

  .mobile-bottom-nav .mbn-icon svg {
    width: 21px;
    height: 21px;
    stroke-width: 2;
  }

  .mobile-bottom-nav .mbn-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.015em;
  }

  .mobile-bottom-nav .mbn-item:hover {
    color: #5f4e20;
  }

  .mobile-bottom-nav .mbn-item:active,
  .mobile-bottom-nav .mbn-item.active {
    color: #5f4e20;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78) 0%, rgba(250, 236, 200, 0.9) 100%);
  }

  .mobile-bottom-nav .mbn-item:active .mbn-icon,
  .mobile-bottom-nav .mbn-item.active .mbn-icon {
    color: #5f4e20;
    background: rgba(255, 255, 255, 0.72);
    transform: translateY(-1px);
  }

  .mobile-bottom-nav .mbn-item.mbn-cart .badge {
    background: linear-gradient(180deg, #6b4a18 0%, #4d3511 100%);
    color: #fff8ee;
    border: 1px solid rgba(255, 228, 171, 0.45);
  }

  body.pb-mobile-nav {
    padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px) + 16px);
  }
}

@media (min-width: 992px) {
  .mobile-bottom-nav {
    display: none !important;
  }

  body.pb-mobile-nav {
    padding-bottom: 0;
  }
}

/* Mobile shop categories – natural image, no bg box */
.shop-cat-img-wrap {
  background: transparent !important;
  height: auto;
  min-height: 140px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 8px;
}

.shop-cat-img-wrap img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 160px;
  object-fit: contain;
  object-position: center bottom;
}
