/* =========================================================
   HOME PAGE STYLES
   Tách từ coto-theme.css để dễ bảo trì.
   ========================================================= */

.japano-home {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 28%, rgba(217, 185, 111, .12), transparent 26%),
    radial-gradient(circle at 92% 62%, rgba(7, 68, 47, .08), transparent 28%),
    linear-gradient(180deg, #fffdf8 0%, #f8f4ea 48%, #fffaf1 100%);
}

.japano-home section {
  scroll-margin-top: 118px;
}

.home-banner-section {
  display: block;
  padding: 0;
  width: 100%;
}

.home-banner-shell {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.home-banner-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 1920 / 720;
  height: calc(100vh - 142px);
  min-height: 640px;
  overflow: hidden;
  background: #f7f1e4;
  border: 0;
  border-radius: 0;
  box-shadow: 0 14px 34px rgba(7, 68, 47, .07);
  isolation: isolate;
}

.home-banner-slider::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08), transparent 34%, transparent 76%, rgba(6,36,26,.04)),
    linear-gradient(180deg, transparent 80%, rgba(6,36,26,.06));
  pointer-events: none;
}

.home-banner-slide {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(18px);
  filter: saturate(1) contrast(1);
  transition: opacity .62s ease, transform .72s cubic-bezier(.2,.8,.2,1), filter .62s ease;
}

.home-banner-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  object-position: center;
  transform: none;
  transition: filter .6s ease;
}

.home-banner-slide.is-active {
  z-index: 1;
  opacity: 1;
  transform: translateX(0);
  filter: saturate(1.04) contrast(1.02);
}

.home-banner-control {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,.75);
  border-radius: 50%;
  background: rgba(255,255,255,.68);
  color: var(--primary-color);
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 28px rgba(7, 68, 47, .14);
  backdrop-filter: blur(12px);
  transition: transform .2s ease, background .2s ease;
}

.home-banner-control:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.08);
}

.home-banner-prev {
  left: clamp(6px, 1vw, 14px);
}

.home-banner-next {
  right: clamp(6px, 1vw, 14px);
}

.home-banner-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  z-index: 5;
  display: flex;
  gap: 10px;
  transform: translateX(-50%);
}

.home-banner-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  transition: width .25s ease, background .25s ease;
}

.home-banner-dots button.is-active {
  width: 30px;
  background: #fff;
}

.home-banner-slider .home-banner-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 6;
  height: 7px;
  width: 100%;
  transform-origin: left;
  background: linear-gradient(90deg, #064c37 0%, #15a36f 48%, #f1cf68 100%);
  box-shadow: 0 -2px 14px rgba(6, 76, 55, .32);
}

.home-banner-slider.is-running .home-banner-progress {
  animation: bannerProgress 3.2s linear infinite;
}

.home-banner-carousel {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 0;
  overflow: hidden;
  border: 0;
  background: #f7f1e4;
  box-shadow: 0 18px 48px rgba(7, 68, 47, .12);
  isolation: isolate;
}

.home-banner-carousel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(6, 36, 26, .16), transparent 28%, transparent 72%, rgba(6, 36, 26, .12)),
    linear-gradient(180deg, transparent 68%, rgba(6, 36, 26, .16));
  pointer-events: none;
}

.home-banner-carousel .carousel-inner,
.home-banner-carousel .carousel-item,
.home-banner-link {
  height: clamp(380px, 48vw, 720px);
}

.home-banner-link {
  display: block;
}

.home-banner-img {
  display: block !important;
  width: 100%;
  height: 100% !important;
  min-height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 5.8s ease, filter .45s ease;
  filter: saturate(1.03) contrast(1.02);
}

.home-banner-carousel .carousel-item.active .home-banner-img {
  transform: scale(1.075);
}

.home-banner-carousel .carousel-control-prev,
.home-banner-carousel .carousel-control-next {
  width: clamp(54px, 7vw, 96px);
  opacity: 1;
  z-index: 5;
}

.home-banner-arrow {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .78);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 16px 36px rgba(7, 68, 47, .18);
  backdrop-filter: blur(12px);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.home-banner-carousel .carousel-control-prev:hover .home-banner-arrow,
.home-banner-carousel .carousel-control-next:hover .home-banner-arrow {
  background: #fff;
  color: var(--primary-light);
  transform: scale(1.08);
}

.home-banner-carousel .carousel-indicators {
  z-index: 6;
  margin-bottom: 24px;
}

.home-banner-carousel .carousel-indicators [data-bs-target] {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 0;
  background-color: rgba(255,255,255,.72);
  opacity: 1;
  transition: width .25s ease, background .25s ease;
}

.home-banner-carousel .carousel-indicators .active {
  width: 36px;
  border-radius: 999px;
  background-color: #fff;
}

.home-banner-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 7;
  height: 7px;
  width: 100%;
  transform-origin: left;
  background: linear-gradient(90deg, #064c37 0%, #15a36f 48%, #f1cf68 100%);
  box-shadow: 0 -2px 14px rgba(6, 76, 55, .32);
  animation: bannerProgress 3.2s linear infinite;
}

.home-banner-carousel:hover .home-banner-progress {
  animation-play-state: paused;
}

@keyframes bannerProgress {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}

@keyframes homeFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-categories .section-title,
.product-categories .category-bs-card,
.about-section .store-visual,
.about-section .eyebrow,
.about-section .about-title,
.about-section .about-desc,
.about-section .stats-row,
.why-section .section-title,
.why-section .why-item,
.review-section .section-title,
.review-section .review-card,
.map-section .map-panel {
  animation: homeFadeUp .62s ease both;
}

.product-categories .row > div:nth-child(1) .category-bs-card,
.why-section .row > div:nth-child(1) .why-item,
.review-section .row > div:nth-child(1) .review-card { animation-delay: .04s; }

.product-categories .row > div:nth-child(2) .category-bs-card,
.why-section .row > div:nth-child(2) .why-item,
.review-section .row > div:nth-child(2) .review-card { animation-delay: .1s; }

.product-categories .row > div:nth-child(3) .category-bs-card,
.why-section .row > div:nth-child(3) .why-item,
.review-section .row > div:nth-child(3) .review-card { animation-delay: .16s; }

.product-categories .row > div:nth-child(4) .category-bs-card,
.why-section .row > div:nth-child(4) .why-item { animation-delay: .22s; }

.product-categories .row > div:nth-child(5) .category-bs-card,
.why-section .row > div:nth-child(5) .why-item { animation-delay: .28s; }

@media (prefers-reduced-motion: reduce) {
  .home-banner-slide,
  .home-banner-slide img,
  .btn-japano-primary,
  .category-bs-card,
  .category-image img,
  .store-photo,
  .why-item,
  .review-card,
  .map-panel {
    transition: none !important;
    animation: none !important;
  }
}

.japano-hero {
  padding: 26px 0 0;
}

.hero-main {
  min-height: 430px;
  padding: 42px 42px 24px;
  border: 1px solid rgba(7, 68, 47, .08);
  background:
    linear-gradient(100deg, #fffdf8 0%, #fffdf8 38%, rgba(247, 241, 226, .9) 64%, #efe5cf 100%);
  border-radius: 12px;
  box-shadow: 0 22px 60px rgba(7, 68, 47, .1);
  position: relative;
  overflow: hidden;
}

.hero-main::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.98), rgba(255,255,255,.55) 46%, transparent 78%),
    radial-gradient(circle at 78% 28%, rgba(217,185,111,.28), transparent 28%);
  opacity: .95;
  pointer-events: none;
}

.hero-main > * {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.05;
  color: #101a17;
  margin: 0 0 18px;
  font-weight: 800;
}

.hero-title span {
  color: var(--primary-color);
}

.hero-desc {
  color: #48534e;
  font-size: 15px;
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 24px;
}

.btn-japano-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary-color);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 12px 22px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2px;
  line-height: 1;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 20px rgba(7, 68, 47, .14);
  transition: transform .24s ease, box-shadow .24s ease, background .24s ease;
}

.btn-japano-primary i {
  line-height: 1;
}

.btn-japano-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255,255,255,.28) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: transform .55s ease;
}

.btn-japano-primary:hover {
  background: var(--primary-light);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 22px rgba(7, 68, 47, .18);
}

.btn-japano-primary:hover::after {
  transform: translateX(120%);
}

.hero-product-wrap {
  height: 360px;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(90deg, rgba(255,255,255,.3), rgba(255,255,255,0)),
    #efe7d9;
  border-radius: 10px;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.62), 0 18px 38px rgba(7,68,47,.12);
}

.hero-product-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255,253,248,.7) 0%, rgba(255,253,248,.18) 32%, rgba(255,253,248,0) 66%);
  pointer-events: none;
}

.hero-product-wrap::after {
  content: '';
  position: absolute;
  left: 18%;
  right: 12%;
  bottom: 18px;
  height: 22px;
  border-radius: 50%;
  background: rgba(7, 68, 47, .14);
  filter: blur(13px);
  z-index: 2;
}

.hero-product {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
  position: relative;
  z-index: 0;
  filter: saturate(.95) contrast(1.02);
}

.hero-trust {
  margin-top: 22px;
  max-width: 690px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #25332e;
  font-size: 12px;
  font-weight: 700;
  min-height: 40px;
}

.trust-item i {
  width: 28px;
  height: 28px;
  border: 1px solid rgba(7, 68, 47, .18);
  color: var(--primary-color);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 28px;
}

.hero-side {
  padding: 44px 10px 22px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 28px;
}

.side-benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.side-icon {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border-radius: 50%;
  background: rgba(7, 68, 47, .06);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
}

.side-benefit h3 {
  font-family: var(--font-family);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-dark);
  margin: 2px 0 4px;
}

.side-benefit p {
  margin: 0;
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
}

.section-pad {
  padding: 50px 0;
}

.section-title {
  font-family: var(--font-family);
  color: #10211a;
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 850;
  text-transform: none;
  line-height: 1.14;
  margin-bottom: 24px;
  letter-spacing: 0;
}

.section-title.text-center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.product-categories {
  padding-top: 44px;
  padding-bottom: 46px;
  background: transparent;
  border-bottom: 0;
}

.category-dynamic-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 236px));
  gap: 26px;
  align-items: stretch;
  justify-content: center;
}

.category-dynamic-grid.is-few {
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  gap: 30px;
}

.category-dynamic-grid.is-mid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 270px));
  gap: 28px;
}

.category-dynamic-grid.is-many {
  grid-template-columns: repeat(auto-fit, minmax(200px, 220px));
  gap: 24px;
}

.category-bs-card {
  border: 1px solid rgba(7, 68, 47, .09);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  color: var(--text-dark);
  box-shadow: 0 10px 28px rgba(7, 68, 47, .07);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.category-dynamic-grid .category-bs-card {
  min-width: 0;
  width: 100%;
}

.category-bs-card:hover {
  transform: translateY(-8px);
  border-color: rgba(7, 68, 47, .28);
  box-shadow: 0 18px 42px rgba(7, 68, 47, .12);
  color: var(--text-dark);
}

.category-image {
  height: 164px;
  background: #f0eadf;
  overflow: hidden;
}

.category-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  object-position: center;
  transition: transform .35s ease, filter .35s ease;
}

.category-dynamic-grid.is-few .category-image,
.category-dynamic-grid.is-mid .category-image {
  height: 178px;
}

.category-dynamic-grid.is-few .category-image img,
.category-dynamic-grid.is-mid .category-image img {
  height: 100%;
}

.category-bs-card:hover .category-image img {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.02);
}

.category-bs-card .card-body {
  padding: 16px 16px 18px;
  min-height: 124px;
}

.category-bs-card .category-icon {
  width: 32px;
  height: 32px;
  margin: -32px 0 10px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(7, 68, 47, .12);
  color: var(--primary-color);
  font-size: 14px;
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, color .25s ease, background .25s ease;
}

.category-bs-card:hover .category-icon {
  background: var(--primary-color);
  color: #fff;
  transform: translateY(-2px) rotate(-4deg);
}

.category-bs-card .card-title {
  font-family: var(--font-family);
  font-size: 15px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 6px;
}

.category-bs-card .card-text {
  color: var(--text-muted);
  font-size: 13px;
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

@media (min-width: 1600px) {
  .home-banner-slider {
    aspect-ratio: 1920 / 640;
    height: min(640px, 33.333vw);
    min-height: 0;
  }

  .product-categories {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .category-dynamic-grid,
  .category-dynamic-grid.is-few,
  .category-dynamic-grid.is-mid,
  .category-dynamic-grid.is-many {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 32px;
    max-width: 1560px;
    margin-left: auto;
    margin-right: auto;
  }

  .category-image,
  .category-dynamic-grid.is-few .category-image,
  .category-dynamic-grid.is-mid .category-image {
    height: clamp(184px, 11vw, 236px);
  }

  .category-bs-card .card-body {
    min-height: 138px;
    padding: 18px 18px 20px;
  }

  .about-section .container > .row {
    --bs-gutter-x: 4rem;
  }

  .store-visual {
    max-width: 760px;
    margin-left: auto;
  }

  .about-desc {
    max-width: 760px;
  }

  .review-section .container {
    max-width: min(1560px, calc(100% - 176px));
  }
}

@media (min-width: 2000px) {
  .section-pad {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .home-banner-slider {
    height: min(700px, 33.333vw);
  }

  .category-dynamic-grid,
  .category-dynamic-grid.is-few,
  .category-dynamic-grid.is-mid,
  .category-dynamic-grid.is-many {
    max-width: 1720px;
    gap: 36px;
  }

  .about-section .container > .row {
    --bs-gutter-x: 5.5rem;
  }
}

.about-section {
  padding-top: 52px;
  padding-bottom: 54px;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  position: relative;
  overflow: hidden;
}

.store-visual {
  min-height: 0;
  aspect-ratio: 658 / 455;
  border-radius: 22px;
  overflow: hidden;
  background: #f4f8f6;
  position: relative;
  border: 1px solid rgba(7, 68, 47, .1);
  box-shadow: 0 28px 70px rgba(7, 68, 47, .16);
  isolation: isolate;
}

.store-visual.has-image::before {
  content: '';
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, .82);
  border-radius: 16px;
  pointer-events: none;
}

.store-visual.has-image::after {
  display: none;
}

.store-photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.08) contrast(1.04);
  transition: transform .7s ease, filter .7s ease;
}

.store-visual:hover .store-photo {
  transform: scale(1.035);
  filter: saturate(1.14) contrast(1.07);
}

.store-placeholder {
  position: absolute;
  inset: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px dashed rgba(7,68,47,.22);
  border-radius: 12px;
  background: rgba(255,255,255,.62);
  color: var(--primary-color);
  font-weight: 900;
  font-size: clamp(24px, 3vw, 34px);
  text-align: center;
}

.store-placeholder small {
  display: block;
  color: var(--text-muted);
  font-size: 13px;
  font-weight: 700;
}

.eyebrow {
  color: var(--primary-color);
  text-transform: uppercase;
  font-weight: 900;
  font-size: 12px;
  letter-spacing: 1.4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .7);
  border: 1px solid rgba(7, 68, 47, .12);
  box-shadow: 0 10px 24px rgba(7, 68, 47, .07);
}

.eyebrow::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 5px rgba(217, 185, 111, .18);
}

.about-title {
  font-size: clamp(32px, 3.8vw, 46px);
  color: #0b1713;
  margin: 18px 0 18px;
  line-height: 1.12;
  max-width: 760px;
}

.about-desc {
  color: #53645d;
  font-size: 17px;
  line-height: 1.85;
  max-width: 650px;
}

.stats-row {
  margin-top: 26px;
  padding: 18px 12px;
  background: rgba(255, 255, 255, .84);
  border: 1px solid rgba(7,68,47,.1);
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(7, 68, 47, .1);
  backdrop-filter: blur(12px);
}

.stats-row > div {
  position: relative;
}

.stats-row > div:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 8px;
  right: 0;
  width: 1px;
  height: calc(100% - 16px);
  background: linear-gradient(180deg, transparent, rgba(7, 68, 47, .16), transparent);
}

.stats-row strong {
  display: block;
  color: var(--primary-color);
  font-size: 25px;
  font-weight: 900;
  text-align: center;
  line-height: 1.05;
}

.stats-row span {
  display: block;
  color: var(--text-muted);
  font-size: 12px;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  margin-top: 7px;
}

.why-section {
  padding-top: 54px;
  padding-bottom: 34px;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  overflow: hidden;
}

.why-section::before {
  display: none;
}

.why-section .container {
  position: relative;
  z-index: 1;
}

.why-section .section-title {
  color: #0d2018;
  margin-top: 0;
  margin-bottom: 30px;
}

.why-panel {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  padding: 28px 28px;
  justify-content: center;
  background: rgba(255, 252, 245, .78);
  border: 1px solid rgba(157, 123, 47, .12);
  border-radius: 16px;
  box-shadow: 0 16px 42px rgba(92, 72, 35, .055);
  backdrop-filter: blur(10px);
}

.why-panel > [class*="col"] {
  width: auto;
  max-width: none;
  padding: 0;
  position: relative;
}

.why-panel > [class*="col"]:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10px;
  right: 0;
  width: 1px;
  height: calc(100% - 20px);
  background: linear-gradient(180deg, transparent, rgba(92, 72, 35, .16), transparent);
}

.why-item {
  text-align: center;
  min-height: 132px;
  height: 100%;
  padding: 8px 18px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transition: transform .28s ease, color .28s ease;
  perspective: 700px;
  position: relative;
  overflow: hidden;
}

.why-item::after {
  display: none;
}

.why-item:hover {
  transform: translateY(-3px);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.why-item:hover::after {
  display: none;
}

.why-item i {
  width: auto;
  height: auto;
  border-radius: 0;
  color: #b9a064;
  background: transparent;
  border: 0;
  box-shadow: none;
  font-size: 28px;
  margin: 0 auto 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform-style: preserve-3d;
  backface-visibility: visible;
  transition: transform .55s cubic-bezier(.2,.8,.2,1), box-shadow .28s ease;
}

.why-item:hover i {
  transform: translateY(-3px) scale(1.06);
  color: var(--primary-color);
  background: transparent;
  box-shadow: none;
}

.why-panel > div:nth-child(even) .why-item i {
  color: #b9a064;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.why-panel > div:nth-child(even) .why-item:hover i {
  color: var(--primary-color);
  background: transparent;
  box-shadow: none;
}

.why-item h3 {
  font-family: var(--font-family);
  color: #13231d;
  font-size: 13px;
  font-weight: 850;
  margin-bottom: 8px;
  line-height: 1.35;
  text-align: center;
}

.why-item p {
  color: #64746d;
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  text-align: center;
}

.review-section {
  padding-top: 24px;
  padding-bottom: 92px;
  background: transparent;
  border-top: 0;
  border-bottom: 0;
  color: var(--text-dark);
  overflow: hidden;
}

.review-section::before {
  display: none;
}

.review-section .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  padding-left: clamp(42px, 7vw, 104px);
  padding-right: clamp(42px, 7vw, 104px);
}

.review-section .section-title {
  color: #10211a;
  font-size: clamp(28px, 2.6vw, 34px);
  text-shadow: none;
  margin-top: 0;
  margin-bottom: 18px;
}

.review-section .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 1.25rem;
}

.review-card {
  border: 1px solid rgba(7,68,47,.1);
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(7,68,47,.055);
  background: rgba(255,255,255,.9);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
  overflow: hidden;
  position: relative;
}

.review-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(7,68,47,.18);
  box-shadow: 0 12px 28px rgba(7,68,47,.09);
}

.review-card .card-body {
  padding: 20px 24px 19px;
}

.quote-icon {
  color: rgba(7,68,47,.12);
  font-size: 20px;
  margin-bottom: 4px;
}

.rating {
  color: #e8b83a;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 8px;
}

.review-content {
  color: #35443e;
  font-size: 12.5px;
  line-height: 1.55;
  min-height: 48px;
  margin-bottom: 0;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 12px;
  padding-top: 11px;
  border-top: 1px solid rgba(7,68,47,.09);
}

.review-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  border: 3px solid #fff;
  box-shadow: 0 10px 22px rgba(7, 68, 47, .2);
  flex: 0 0 34px;
}

.review-author strong,
.review-author small {
  display: block;
}

.review-author strong {
  font-size: 12.5px;
  color: var(--text-dark);
}

.review-author small {
  color: var(--text-muted);
  font-size: 11.5px;
}

.map-section {
  background: transparent;
  padding-top: 54px;
  padding-bottom: 62px;
}

.map-panel {
  display: grid;
  grid-template-columns: minmax(280px, .85fr) minmax(420px, 1.35fr);
  gap: 24px;
  align-items: stretch;
  background: #fff;
  border: 1px solid rgba(7, 68, 47, .1);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 52px rgba(7, 68, 47, .09);
  transition: transform .3s ease, box-shadow .3s ease;
}

.map-panel:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 64px rgba(7, 68, 47, .13);
}

.map-info {
  padding: clamp(26px, 4vw, 46px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.map-title {
  color: var(--text-dark);
  font-size: clamp(30px, 3vw, 40px);
  font-weight: 850;
  line-height: 1.14;
  margin: 12px 0 14px;
}

.map-info p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 22px;
}

.map-contact-list {
  display: grid;
  gap: 13px;
  margin-bottom: 24px;
}

.map-contact-list div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #34443e;
  font-size: 14px;
  line-height: 1.55;
}

.map-contact-list i {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: rgba(7,68,47,.07);
  color: var(--primary-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.map-frame {
  min-height: 430px;
  background: var(--bg-soft);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 430px;
  display: block;
  border: 0;
  filter: saturate(.95) contrast(1.02);
}

.consult-widget {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 980;
  width: 300px;
}

.consult-box {
  background: linear-gradient(160deg, #0b553d, #063b2a);
  color: #fff;
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 24px 50px rgba(7, 68, 47, .28);
}

.consult-box h3 {
  font-family: var(--font-family);
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.consult-box p {
  color: rgba(255,255,255,.78);
  font-size: 13px;
  line-height: 1.65;
}

.consult-btn {
  width: 100%;
  background: linear-gradient(180deg, #fff2c3, #d6ad61);
  color: var(--primary-color);
  border: 0;
  border-radius: 8px;
  font-weight: 900;
  text-transform: uppercase;
  margin: 12px 0 18px;
}

.consult-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.consult-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  padding: 9px 0;
}

.consult-box li i {
  color: #f3d884;
}

@media (max-width: 1199.98px) {
  .why-panel {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    row-gap: 18px;
  }

  .why-item {
    min-height: 132px;
  }

  .why-panel > [class*="col"]:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 991.98px) {
  .section-title,
  .why-section .section-title,
  .review-section .section-title {
    font-size: clamp(28px, 5vw, 36px);
    margin-bottom: 28px;
  }

  .why-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 30px 26px;
  }

  .why-panel > [class*="col"]:nth-child(3)::after {
    display: block;
  }

  .why-panel > [class*="col"]:nth-child(even)::after {
    display: none;
  }

  .why-panel > [class*="col"]:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
  }

  .why-panel > [class*="col"]:last-child:nth-child(odd)::after {
    display: none;
  }

  .why-item {
    min-height: 150px;
    padding: 18px 18px;
  }

  .why-item i {
    font-size: 31px;
    margin-bottom: 16px;
  }

  .why-item h3 {
    font-size: 13.5px;
  }

  .why-item p {
    font-size: 12.5px;
  }

  .review-card .card-body {
    padding: 18px;
  }
}

@media (max-width: 575.98px) {
  .why-section,
  .review-section {
    padding-top: 28px;
    padding-bottom: 28px;
  }

  .section-title,
  .why-section .section-title,
  .review-section .section-title {
    font-size: 26px;
    margin-bottom: 22px;
  }

  .why-panel {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    padding: 8px;
    border-radius: 10px;
  }

  .why-panel > [class*="col"]:not(:last-child)::after {
    display: none;
  }

  .why-panel > [class*="col"]:nth-child(odd)::after {
    content: '';
    position: absolute;
    top: auto;
    right: 0;
    left: auto;
    bottom: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent, rgba(92, 72, 35, .16), transparent);
    display: block;
  }

  .why-panel > [class*="col"] {
    border-bottom: 1px solid rgba(92, 72, 35, .08);
  }

  .why-panel > [class*="col"]:nth-last-child(-n+2) {
    border-bottom: 0;
  }

  .why-panel > [class*="col"]:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    width: 50%;
    justify-self: center;
  }

  .why-panel > [class*="col"]:last-child:nth-child(odd)::after {
    display: none;
  }

  .why-item {
    min-height: 82px;
    padding: 10px 6px;
    border-radius: 0;
  }

  .why-item i {
    width: auto;
    height: auto;
    margin-bottom: 6px;
    font-size: 18px;
  }

  .why-item h3 {
    font-size: 10px;
    line-height: 1.25;
    margin-bottom: 3px;
  }

  .why-item p {
    font-size: 9px;
    line-height: 1.25;
  }

  .review-card {
    border-radius: 8px;
  }

  .review-card .card-body {
    padding: 18px;
  }

  .review-content {
    min-height: auto;
    font-size: 13px;
  }
}

/* Final responsive pass for home page */
@media (max-width: 1399.98px) {
  .home-banner-slider {
    height: clamp(430px, 44vw, 560px);
    min-height: 430px;
  }

  .category-dynamic-grid.is-many {
    grid-template-columns: repeat(auto-fit, minmax(188px, 1fr));
  }
}

@media (max-width: 1199.98px) {
  .home-banner-slider {
    height: clamp(360px, 48vw, 500px);
    min-height: 360px;
  }

  .category-dynamic-grid,
  .category-dynamic-grid.is-few,
  .category-dynamic-grid.is-mid,
  .category-dynamic-grid.is-many {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
  }

  .about-title {
    font-size: clamp(30px, 4vw, 40px);
  }

  .review-section .container {
    max-width: 1120px;
    padding-left: 48px;
    padding-right: 48px;
  }
}

@media (max-width: 991.98px) {
  .japano-home section {
    scroll-margin-top: 96px;
  }

  .section-pad,
  .product-categories,
  .about-section,
  .why-section,
  .review-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .home-banner-slider {
    height: clamp(280px, 54vw, 420px);
    min-height: 280px;
  }

  .category-dynamic-grid,
  .category-dynamic-grid.is-few,
  .category-dynamic-grid.is-mid,
  .category-dynamic-grid.is-many {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .category-image,
  .category-dynamic-grid.is-few .category-image,
  .category-dynamic-grid.is-mid .category-image {
    height: 150px;
  }

  .about-section .row {
    row-gap: 28px;
  }

  .store-visual {
    max-width: 760px;
    margin: 0 auto;
  }

  .stats-row {
    margin-top: 20px;
  }

  .review-section .row {
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .about-section .btn-japano-primary {
    margin-left: auto;
    margin-right: auto;
  }

  .why-panel {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    padding: 20px 16px;
  }

  .why-panel > [class*="col"]:last-child:nth-child(odd) {
    grid-column: auto;
    width: auto;
    justify-self: stretch;
  }

  .why-panel > [class*="col"]:nth-child(even)::after,
  .why-panel > [class*="col"]:nth-child(3)::after,
  .why-panel > [class*="col"]:last-child:nth-child(odd)::after {
    display: block;
  }

  .why-panel > [class*="col"]:last-child::after {
    display: none !important;
  }

  .why-item {
    min-height: 116px;
    padding: 12px 8px;
  }

  .why-item i {
    font-size: 23px;
    margin-bottom: 10px;
  }

  .why-item h3 {
    font-size: 11.5px;
    line-height: 1.25;
  }

  .why-item p {
    font-size: 10.5px;
    line-height: 1.35;
  }

  .product-categories {
    padding-top: 30px;
    padding-bottom: 36px;
  }

  .product-categories .section-title {
    font-size: clamp(28px, 4vw, 34px);
    margin-bottom: 18px;
  }

  .category-dynamic-grid,
  .category-dynamic-grid.is-few,
  .category-dynamic-grid.is-mid,
  .category-dynamic-grid.is-many {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .category-image,
  .category-dynamic-grid.is-few .category-image,
  .category-dynamic-grid.is-mid .category-image {
    height: 108px;
  }

  .category-image img {
    height: 100%;
    object-fit: cover;
  }

  .category-bs-card .card-body {
    min-height: 112px;
    padding: 12px 10px 13px;
  }

  .category-bs-card .category-icon {
    width: 28px;
    height: 28px;
    margin-top: -28px;
    margin-bottom: 7px;
    font-size: 12px;
  }

  .category-bs-card .card-title {
    font-size: 12px;
    line-height: 1.25;
    margin-bottom: 5px;
  }

  .category-bs-card .card-text {
    font-size: 10.5px;
    line-height: 1.4;
  }
}

@media (max-width: 767.98px) {
  .section-title,
  .why-section .section-title,
  .review-section .section-title {
    font-size: 25px;
    margin-bottom: 20px;
  }

  .home-banner-slider {
    height: clamp(220px, 58vw, 330px);
    min-height: 220px;
  }

  .home-banner-control {
    width: 34px;
    height: 34px;
  }

  .category-bs-card .card-body {
    min-height: 112px;
    padding: 14px;
  }

  .about-title {
    font-size: 29px;
  }

  .about-desc {
    font-size: 15px;
    line-height: 1.7;
  }

  .stats-row > div::after {
    display: none;
  }

  .review-section .container {
    padding-left: 28px;
    padding-right: 28px;
  }
}

@media (max-width: 575.98px) {
  .japano-home section {
    scroll-margin-top: 82px;
  }

  .japano-home .container {
    max-width: 100%;
    padding-left: 8px;
    padding-right: 8px;
  }

  .section-pad,
  .product-categories,
  .about-section,
  .why-section,
  .review-section {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .why-section {
    padding-top: 20px;
    padding-bottom: 18px;
  }

  .why-section .section-title {
    font-size: 22px;
    line-height: 1.18;
    margin-bottom: 14px;
    max-width: 320px;
  }

  .product-categories {
    padding-top: 18px;
    padding-bottom: 20px;
  }

  .home-banner-slider {
    height: 210px;
    min-height: 210px;
  }

  .home-banner-dots,
  .home-banner-progress {
    display: none;
  }

  .category-dynamic-grid,
  .category-dynamic-grid.is-few,
  .category-dynamic-grid.is-mid,
  .category-dynamic-grid.is-many {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    gap: 12px;
    padding: 0;
  }

  .category-bs-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: auto;
    border-radius: 12px;
    background: #fff;
    border: 1px solid rgba(7, 68, 47, 0.05);
    box-shadow: 0 4px 12px rgba(7, 68, 47, 0.04);
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease;
  }

  .category-image,
  .category-dynamic-grid.is-few .category-image,
  .category-dynamic-grid.is-mid .category-image {
    width: 100%;
    aspect-ratio: 236 / 164; /* Khóa chặt tỷ lệ chuẩn 1.44 như máy tính */
    height: auto; /* Chiều cao tự động tính theo tỷ lệ để hình không bị kéo */
    background: #f3efe6;
    display: block;
    position: relative;
    overflow: hidden;
  }

  .category-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: fill !important; /* Giãn full card, hình ảnh sắc nét đúng tỷ lệ gốc không méo mó */
  }

  .category-bs-card .card-body {
    padding: 10px 8px 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-height: auto;
    flex-grow: 1;
  }

  /* Hiển thị icon tròn nổi trên ảnh giống máy tính */
  .category-bs-card .category-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    margin: -22px 0 6px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid rgba(7, 68, 47, 0.12);
    color: var(--primary-color);
    font-size: 9px;
    box-shadow: var(--shadow-sm);
    z-index: 2;
  }

  .category-bs-card .card-title {
    font-size: 11px;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 4px;
    color: var(--primary-color);
  }

  /* Hiển thị mô tả ngắn giống máy tính */
  .category-bs-card .card-text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-size: 9px;
    color: var(--text-muted);
    line-height: 1.3;
    margin: 0;
  }

  .product-categories .section-title {
    font-size: 18px;
    margin-bottom: 10px;
  }

  .product-categories .text-center.mt-4 {
    margin-top: 12px !important;
  }

  .product-categories .btn-japano-primary {
    min-height: 34px;
    padding: 0 12px;
    border-radius: 8px;
    font-size: 10px;
  }

  .store-visual {
    border-radius: 10px;
  }

  .store-visual.has-image::before {
    inset: 5px;
    border-radius: 8px;
  }

  .about-section .row {
    --bs-gutter-y: 1rem;
  }

  .about-title {
    font-size: 24px;
    line-height: 1.18;
  }

  .about-desc {
    font-size: 13px;
    line-height: 1.6;
  }

  .stats-row {
    padding: 12px 6px;
  }

  .stats-row > div {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .stats-row strong {
    font-size: 22px;
  }

  .stats-row span {
    font-size: 10px;
  }

  .why-panel {
    border-radius: 12px;
  }

  .review-section .row {
    --bs-gutter-x: .625rem;
    --bs-gutter-y: .625rem;
  }

  .review-section .row > div {
    width: 50%;
  }

  .review-section .row > div:last-child:nth-child(odd) {
    margin-left: auto;
    margin-right: auto;
  }

  .review-card {
    border-radius: 8px;
  }

  .review-card .card-body {
    padding: 11px;
  }

  .quote-icon {
    font-size: 18px;
    margin-bottom: 5px;
  }

  .rating {
    font-size: 10px;
    margin-bottom: 7px;
  }

  .review-content {
    font-size: 11px;
    line-height: 1.45;
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .review-author {
    gap: 8px;
  }

  .review-avatar {
    width: 34px;
    height: 34px;
  }

  .review-author strong {
    font-size: 11px;
  }

  .review-author small {
    font-size: 10px;
  }
}

/* Phone-first compact pass for the home page */
@media (max-width: 575.98px) {
  .japano-home .container {
    padding-left: 12px !important;
    padding-right: 12px !important;
  }

  .section-pad,
  .product-categories,
  .about-section,
  .why-section,
  .review-section,
  .map-section {
    padding-top: 28px !important;
    padding-bottom: 28px !important;
  }

  /* Sleek & Premium Typography for Mobile Titles */
  .section-title,
  .why-section .section-title,
  .review-section .section-title {
    font-size: 17.5px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.6px !important;
    color: var(--primary-color) !important;
    margin-bottom: 16px !important;
    line-height: 1.3 !important;
    text-align: center !important;
  }

  /* Aspect-ratio based banner slider that never stretches or crops, mimicking desktop perfectly */
  .home-banner-slider {
    aspect-ratio: 1920 / 720 !important;
    height: auto !important;
    min-height: auto !important;
    border-radius: 8px !important;
    margin-bottom: 0 !important;
    box-shadow: 0 6px 18px rgba(7, 68, 47, 0.04) !important;
  }

  .home-banner-slider img {
    object-fit: fill !important;
    height: 100% !important;
    width: 100% !important;
    border-radius: 8px !important;
  }

  .home-banner-control {
    display: none !important; /* Hide side arrows on mobile for clean look - touch swiping works */
  }

  .store-visual {
    max-height: 142px !important;
    aspect-ratio: 16 / 7 !important;
    border-radius: 8px !important;
  }

  .store-photo {
    object-position: center !important;
  }

  .about-section .row {
    --bs-gutter-y: 0.8rem !important;
  }

  .eyebrow {
    position: static !important;
    width: max-content !important;
    height: auto !important;
    max-width: 100% !important;
    margin: 0 auto 8px !important;
    padding: 3px 8px !important;
    font-size: 8.5px !important;
    font-weight: 700 !important;
    letter-spacing: 0.8px !important;
    text-transform: uppercase !important;
    background: rgba(185, 160, 100, 0.08) !important;
    color: #b9a064 !important;
    border-radius: 4px !important;
    display: block !important;
  }

  .eyebrow::before {
    display: none !important; /* Remove heavy dots */
  }

  .about-title {
    font-size: 17.5px !important;
    font-weight: 700 !important;
    line-height: 1.25 !important;
    color: #10211a !important;
    text-align: center !important;
    margin: 0 0 10px !important;
  }

  .about-desc {
    font-size: 12px !important;
    line-height: 1.55 !important;
    color: var(--text-muted) !important;
    text-align: center !important;
    margin: 0 0 16px !important;
    display: block !important; /* Allow reading full brief without forcing clunky clamp */
    -webkit-line-clamp: unset !important;
  }

  /* Ultra refined and elegant stats section */
  .stats-row {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
    margin-top: 14px !important;
    padding: 12px 8px !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 16px rgba(7, 68, 47, 0.02) !important;
    background: rgba(255, 255, 255, 0.5) !important;
    backdrop-filter: blur(8px) !important;
    border: 1px solid rgba(7, 68, 47, 0.04) !important;
  }

  .stats-row > div {
    width: auto !important;
    max-width: none !important;
    padding: 6px 4px !important;
    text-align: center !important;
    border: 0 !important;
  }

  .stats-row > div:nth-child(1),
  .stats-row > div:nth-child(2) {
    border-bottom: 1px solid rgba(7, 68, 47, 0.04) !important;
  }

  .stats-row > div:nth-child(odd) {
    border-right: 1px solid rgba(7, 68, 47, 0.04) !important;
  }

  .stats-row > div::after,
  .stats-row > div:last-child::after {
    display: none !important;
  }

  .stats-row strong {
    font-size: 18px !important;
    font-weight: 800 !important;
    color: var(--primary-color) !important;
    display: block !important;
    line-height: 1.1 !important;
  }

  .stats-row span {
    font-size: 10px !important;
    font-weight: 500 !important;
    color: var(--text-muted) !important;
    display: block !important;
    margin-top: 2px !important;
    line-height: 1.25 !important;
  }

  .about-section .btn-japano-primary {
    display: flex !important;
    width: max-content !important;
    margin: 14px auto 0 !important;
    padding: 8px 16px !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    min-height: auto !important;
    border-radius: 6px !important;
  }

  /* Unified compact category adjustments */
  .category-dynamic-grid {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 0 !important;
  }

  .category-bs-card {
    border-radius: 10px !important;
    border: 1px solid rgba(7, 68, 47, 0.04) !important;
    box-shadow: 0 4px 12px rgba(7, 68, 47, 0.02) !important;
    background: #ffffff !important;
  }

  .category-image {
    aspect-ratio: 236 / 164 !important;
    height: auto !important;
    background: #fdfbf7 !important;
  }

  .category-image img {
    object-fit: contain !important;
    background-color: #fcf9f2 !important;
  }

  .category-bs-card .card-body {
    padding: 10px 8px 12px !important;
  }

  .category-bs-card .category-icon {
    width: 22px !important;
    height: 22px !important;
    margin: -21px 0 6px !important;
    font-size: 9px !important;
    border: 1px solid rgba(7, 68, 47, 0.08) !important;
    box-shadow: 0 2px 6px rgba(7, 68, 47, 0.04) !important;
  }

  .category-bs-card .card-title {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    margin-bottom: 3px !important;
  }

  .category-bs-card .card-text {
    font-size: 9px !important;
    line-height: 1.35 !important;
  }

  .product-categories .btn-japano-primary {
    min-height: auto !important;
    padding: 8px 16px !important;
    border-radius: 6px !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
  }

  /* Highly polished Why Us layout */
  .why-section {
    padding-top: 28px !important;
    padding-bottom: 24px !important;
  }

  .why-panel {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  .why-panel > [class*="col"] {
    width: 100% !important;
    max-width: none !important;
    padding: 0 !important;
    border: 0 !important;
  }

  .why-panel > [class*="col"]:last-child:nth-child(odd) {
    grid-column: 1 / -1 !important;
  }

  .why-item {
    background: #ffffff !important;
    border: 1px solid rgba(7, 68, 47, 0.03) !important;
    border-radius: 10px !important;
    padding: 14px 10px !important;
    box-shadow: 0 4px 12px rgba(7, 68, 47, 0.02) !important;
    height: 100% !important;
  }

  .why-item i {
    font-size: 18px !important;
    margin-bottom: 6px !important;
    color: #b9a064 !important;
  }

  .why-item h3 {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
    margin-bottom: 4px !important;
    line-height: 1.3 !important;
  }

  .why-item p {
    font-size: 10px !important;
    color: var(--text-muted) !important;
    line-height: 1.4 !important;
  }

  /* Single-column premium feedback cards to prevent squished layouts */
  .review-section .row {
    --bs-gutter-x: 0px !important;
    --bs-gutter-y: 10px !important;
  }

  .review-section .row > div {
    width: 100% !important;
  }

  .review-card {
    border-radius: 10px !important;
    border: 1px solid rgba(7, 68, 47, 0.04) !important;
    box-shadow: 0 4px 14px rgba(7, 68, 47, 0.02) !important;
    background: #ffffff !important;
    margin-bottom: 0 !important;
  }

  .review-card .card-body {
    padding: 14px 16px !important;
  }

  .quote-icon {
    font-size: 16px !important;
    margin-bottom: 4px !important;
    color: rgba(7, 68, 47, 0.08) !important;
  }

  .rating {
    font-size: 9px !important;
    margin-bottom: 6px !important;
  }

  .review-content {
    font-size: 11.5px !important;
    line-height: 1.5 !important;
    color: var(--text-dark) !important;
    margin-bottom: 10px !important;
    display: block !important;
    -webkit-line-clamp: unset !important;
    min-height: auto !important;
  }

  .review-author {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    margin-top: 10px !important;
    padding-top: 8px !important;
    border-top: 1px solid rgba(7, 68, 47, 0.05) !important;
  }

  .review-avatar {
    width: 32px !important;
    height: 32px !important;
    flex: 0 0 32px !important;
    border: 1px solid rgba(7, 68, 47, 0.05) !important;
    box-shadow: none !important;
  }

  .review-author strong {
    font-size: 11.5px !important;
    font-weight: 700 !important;
    color: var(--primary-color) !important;
  }

  .review-author small {
    font-size: 9.5px !important;
    color: var(--text-muted) !important;
  }
}

/* Force 4-column layout for product categories on all viewports from Tablet and up (Tablet & Desktop) */
@media (min-width: 768px) {
  .category-dynamic-grid,
  .category-dynamic-grid.is-few,
  .category-dynamic-grid.is-mid,
  .category-dynamic-grid.is-many {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

