/* NGỰ SẮC — PL CLEAN CSS */

:root {
  --nav-height: 74px;
  --nav-brown: #4a2b20;
  --royal-red: #530000;
  --royal-gold: #c89b5e;
  --blush-pink: #d9a6a6;
  --cream: #fff8ef;
  --cream-soft: #f4e6d0;
  --paper: #fffaf5;
  --ink: #3b2a24;
  --muted: #715f56;
  --line: rgba(83, 0, 0, .14);
  --white: #fff;
  --ease: cubic-bezier(.22, 1, .36, 1);
  --transition: .35s var(--ease);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--blush-pink) var(--cream);
}

body {
  min-width: 320px;
  min-height: 100vh;
  overflow-x: hidden;
  padding-top: var(--nav-height);
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.drawer-is-open,
body.ngs-search-open {
  overflow: hidden;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  background: none;
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--royal-gold);
  outline-offset: 4px;
}

/* NAVBAR */
.site-nav,
.nav,
.site-nav.scrolled,
.nav.scrolled {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  height: var(--nav-height);
  min-height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 56px;
  border-bottom: 1px solid rgba(255, 248, 239, .18);
  background: var(--nav-brown);
  color: var(--cream);
  box-shadow: 0 8px 26px rgba(43, 25, 18, .14);
  opacity: 1;
  transform: translateY(0);
  transition: opacity .24s ease, transform .34s cubic-bezier(.22, .7, .2, 1);
  will-change: opacity, transform;
}

.site-nav.is-hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none;
}

.site-nav-logo,
.nav-logo {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1002;
  transform: translate(-50%, -50%);
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(30px, 2.5vw, 38px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: .032em;
  white-space: nowrap;
}

.site-nav-logo span,
.nav-logo span {
  color: inherit;
  font: inherit;
  letter-spacing: inherit;
}

.site-nav-links,
.nav-links {
  display: none;
}

.nav-hamburger {
  position: absolute;
  left: 56px;
  top: 50%;
  z-index: 1002;
  width: 28px;
  height: 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  padding: 0;
  transform: translateY(-50%);
}

.nav-hamburger span {
  width: 17px;
  height: 1.4px;
  border-radius: 999px;
  background: var(--cream);
  transition: transform .3s var(--ease), opacity .2s ease;
  transform-origin: center;
}

.nav-hamburger span:nth-child(3) {
  display: none;
}

.nav-hamburger.is-open span:first-child {
  transform: translateY(3.7px) rotate(45deg);
}

.nav-hamburger.is-open span:nth-child(2) {
  transform: translateY(-3.7px) rotate(-45deg);
}

.nav-search-btn {
  position: absolute;
  right: 56px;
  top: 50%;
  z-index: 1002;
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0;
  color: var(--cream);
  transform: translateY(-50%);
  transition: opacity .25s ease, transform .25s var(--ease);
}

.nav-search-btn:hover {
  transform: translateY(-50%) scale(1.08);
}

.nav-search-btn svg {
  width: 20px;
  height: 20px;
}

.nav-search-btn circle,
.nav-search-btn path,
.ngs-search-submit circle,
.ngs-search-submit path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

body.ngs-search-open .nav-search-btn {
  opacity: 0;
  pointer-events: none;
}

/* DRAWER */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 1400;
  background: rgba(0, 0, 0, .35);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}

.drawer-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.nav-drawer {
  position: fixed;
  inset: 0 auto 0 0;
  z-index: 1500;
  width: 260px;
  max-width: 72vw;
  height: 100dvh;
  display: flex;
  flex-direction: column;
  padding: 82px 28px 32px;
  background: var(--nav-brown);
  box-shadow: 8px 0 34px rgba(0, 0, 0, .2);
  transform: translateX(-100%);
  transition: transform .42s var(--ease);
}

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

.nav-drawer a {
  width: 100%;
  padding: 15px 0;
  border-bottom: 1px solid rgba(255, 248, 239, .2);
  color: var(--cream);
  font-family: "Be Vietnam Pro", "DM Sans", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  opacity: 0;
  transform: translateX(-14px);
}

.nav-drawer.open a {
  animation: drawerItem .48s var(--ease) both;
}

.nav-drawer.open a:nth-child(1) { animation-delay: .06s; }
.nav-drawer.open a:nth-child(2) { animation-delay: .12s; }
.nav-drawer.open a:nth-child(3) { animation-delay: .18s; }

.nav-drawer a:hover,
.nav-drawer a.is-active {
  color: #efd8b8;
}

/* SEARCH UI - dùng được nếu HTML/JS đang tạo các phần tử ngs-search-* */
.search-panel,
.search-backdrop,
.ng-nav-search-box,
.ng-search-suggest {
  display: none !important;
}

.ngs-search-backdrop {
  position: fixed;
  inset: var(--nav-height) 0 0;
  z-index: 6500;
  background: rgba(255, 255, 255, .68);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .28s ease;
}

body.ngs-search-open .ngs-search-backdrop {
  opacity: 1;
  pointer-events: auto;
}

.ngs-search-form {
  position: fixed;
  right: 64px;
  top: calc(var(--nav-height) / 2);
  z-index: 7000;
  width: clamp(220px, 24vw, 280px);
  height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 8px;
  border-bottom: 1.5px solid rgba(255, 248, 239, .9);
  background: #fff;
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%) translateX(24px);
  transition: opacity .28s var(--ease), transform .28s var(--ease);
}

body.ngs-search-open .ngs-search-form {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(-50%);
}

.ngs-search-input {
  flex: 1;
  min-width: 0;
  height: 36px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--cream);
  font-family: "Be Vietnam Pro", "DM Sans", Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  -webkit-appearance: none;
  appearance: none;
}

.ngs-search-input::-webkit-search-cancel-button,
.ngs-search-input::-webkit-search-decoration {
  display: none;
  -webkit-appearance: none;
}

.ngs-search-input::placeholder {
  color: rgba(255, 248, 239, .74);
}

.ngs-search-close,
.ngs-search-submit {
  flex: 0 0 24px;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  color: var(--cream);
}

.ngs-search-close {
  font-size: 21px;
  line-height: 1;
}

.ngs-search-submit svg {
  width: 18px;
  height: 18px;
}

.ngs-search-popover {
  position: fixed;
  top: var(--nav-height);
  right: 34px;
  z-index: 6900;
  width: min(560px, calc(100vw - 68px));
  max-height: min(390px, calc(100dvh - var(--nav-height) - 28px));
  overflow-y: auto;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 0 0 22px 22px;
  background: #fff;
  color: var(--royal-red);
  box-shadow: 0 22px 60px rgba(59, 42, 36, .18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px) scale(.985);
  transform-origin: top right;
  transition: opacity .3s var(--ease), transform .3s var(--ease);
}

body.ngs-search-open .ngs-search-popover {
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.ngs-search-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
}

.ngs-search-title,
.ngs-search-link,
.ngs-search-name {
  font-family: "Be Vietnam Pro", "DM Sans", Arial, sans-serif;
}

.ngs-search-title {
  color: var(--royal-red);
  font-size: 13px;
  font-weight: 800;
}

.ngs-search-link {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.ngs-search-link a {
  color: var(--royal-red);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.ngs-search-grid {
  display: grid;
  gap: 10px;
}

.ngs-search-card {
  min-height: 84px;
  display: grid;
  grid-template-columns: 68px 1fr auto;
  align-items: center;
  gap: 13px;
  padding: 8px 11px 8px 8px;
  border: 1px solid rgba(83, 0, 0, .1);
  border-radius: 16px;
  background: rgba(255, 255, 255, .76);
  transition: transform .24s var(--ease), box-shadow .24s ease, background .24s ease;
}

.ngs-search-card:hover {
  transform: translateY(-2px);
  background: #fff;
  box-shadow: 0 12px 28px rgba(59, 42, 36, .1);
}

.ngs-search-card img {
  width: 68px;
  height: 68px;
  border-radius: 12px;
  object-fit: cover;
  background: var(--cream-soft);
}

.ngs-search-name {
  display: block;
  margin-bottom: 3px;
  color: var(--royal-red);
  font-size: 13.5px;
  font-weight: 800;
  line-height: 1.35;
}

.ngs-search-desc {
  display: block;
  color: #6f5a50;
  font-size: 12px;
  line-height: 1.45;
}

.ngs-search-arrow {
  color: var(--royal-gold);
  font-size: 22px;
}

.ngs-search-empty {
  display: none;
  padding: 15px;
  border-radius: 14px;
  background: rgba(83, 0, 0, .06);
  color: var(--royal-red);
  font-size: 13px;
  font-weight: 700;
}

.ngs-search-popover.no-result .ngs-search-empty {
  display: block;
}

/* FOOTER */
.site-footer,
.footer {
  position: relative;
  z-index: 2;
  padding: 72px 48px 40px;
  background: var(--royal-red);
  color: rgba(255, 248, 239, .78);
}

.site-footer-grid,
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.site-footer-logo,
.footer-logo {
  margin-bottom: 16px;
  color: var(--cream);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 44px;
  font-weight: 700;
  letter-spacing: .11em;
}

.site-footer-logo span,
.footer-logo span {
  color: inherit;
  font: inherit;
}

.site-footer p,
.footer-tagline,
.footer-links a,
.footer-links span,
.footer-bottom,
.footer-bottom-links a {
  max-width: 430px;
  color: rgba(255, 248, 239, .78);
  font-family: "Be Vietnam Pro", "DM Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.site-footer h4,
.footer-col-title {
  margin-bottom: 20px;
  color: var(--cream);
  font-family: "Be Vietnam Pro", "DM Sans", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.site-footer a,
.footer-links a,
.footer-bottom-links a {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 248, 239, .78);
  font-family: "Be Vietnam Pro", "DM Sans", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-links span {
  margin-bottom: 0;
  font-size: 13px;
}

.site-footer a:hover,
.footer-links a:hover,
.footer-bottom-links a:hover {
  color: var(--cream);
}

.site-footer-bottom,
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(255, 248, 239, .18);
  color: rgba(255, 248, 239, .76);
  font-family: "Be Vietnam Pro", "DM Sans", Arial, sans-serif;
  font-size: 12px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

/* MOTION */
.ngs-reveal {
  opacity: 0;
  filter: blur(7px);
  transform: translateY(36px) scale(.988);
  transition:
    opacity .78s var(--ease),
    transform .78s var(--ease),
    filter .78s var(--ease);
  transition-delay: var(--ngs-delay, 0ms);
}

.ngs-reveal.from-left {
  transform: translateX(-34px);
}

.ngs-reveal.from-right {
  transform: translateX(34px);
}

.ngs-reveal.is-visible {
  opacity: 1;
  filter: none;
  transform: none;
}

.ngs-image {
  opacity: 0;
  filter: blur(8px) saturate(.9);
  transform: scale(1.035);
  transition: opacity .65s ease, filter .65s ease, transform .9s var(--ease);
}

.ngs-image.is-loaded {
  opacity: 1;
  filter: none;
  transform: none;
}

.ngs-clicked {
  animation: clickPop .28s var(--ease);
}

@keyframes drawerItem {
  from { opacity: 0; transform: translateX(-14px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes clickPop {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(.97); }
}

::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  border: 2px solid var(--cream);
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blush-pink), var(--royal-gold), var(--royal-red));
}

@media (max-width: 768px) {
  :root {
    --nav-height: 64px;
  }

  .site-nav,
  .nav,
  .site-nav.scrolled,
  .nav.scrolled {
    padding: 0 22px;
  }

  .site-nav-logo,
  .nav-logo {
    font-size: clamp(26px, 7vw, 34px);
  }

  .nav-hamburger {
    left: 22px;
  }

  .nav-search-btn {
    right: 22px;
  }

  .nav-drawer {
    width: 230px;
    max-width: 76vw;
    padding: 76px 24px 30px;
  }

  .ngs-search-form {
    top: var(--nav-height);
    left: 0;
    right: 0;
    width: 100%;
    height: 58px;
    padding: 8px 22px;
    border-bottom: 1px solid rgba(0, 0, 0, .72);
    background: #fff;
    transform: translateY(-12px);
  }

  body.ngs-search-open .ngs-search-form {
    transform: translateY(0);
  }

  .ngs-search-input,
  .ngs-search-input::placeholder {
    font-size: 14px;
  }

  .ngs-search-popover {
    top: calc(var(--nav-height) + 58px);
    left: 0;
    right: 0;
    width: 100%;
    max-height: calc(100svh - var(--nav-height) - 58px);
    padding: 24px 22px 34px;
    border: 0;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
  }

  .ngs-search-head {
    display: grid;
    gap: 5px;
  }

  .ngs-search-card {
    min-height: 96px;
    grid-template-columns: 82px 1fr;
    gap: 16px;
    padding: 10px 0;
    border: 0;
    border-radius: 0;
    background: #fff;
  }

  .ngs-search-card img {
    width: 82px;
    height: 82px;
    border-radius: 0;
  }

  .ngs-search-arrow {
    display: none;
  }

  .site-footer,
  .footer {
    padding: 52px 20px 32px;
  }

  .site-footer-grid,
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 38px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 430px) {
  .ngs-search-form {
    width: 100%;
  }

  .ngs-search-input::placeholder {
    color: rgba(0, 0, 0, .5);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation: none !important;
    transition-duration: .01ms !important;
  }

  .ngs-reveal,
  .ngs-image {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }
}

/* PL — CHI TIẾT SẢN PHẨM */
.product-detail-list {
  width: min(1280px, 100%);
  min-height: calc(100svh - var(--nav-height));
  margin: 0 auto;
  padding: 72px 42px 96px;
  background:
    radial-gradient(circle at 8% 12%, rgba(217, 166, 166, .16), transparent 28%),
    radial-gradient(circle at 92% 22%, rgba(200, 155, 94, .12), transparent 24%),
    var(--cream);
}

.product-detail {
  min-height: auto;
}

.product-detail[hidden] {
  display: none;
}

.pl-product-shell {
  display: grid;
  grid-template-columns: minmax(360px, .92fr) minmax(420px, 1fr);
  align-items: start;
  gap: clamp(42px, 6vw, 88px);
}

.pl-gallery {
  position: sticky;
  top: calc(var(--nav-height) + 28px);
}

.pl-main-image {
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--cream), var(--cream-soft));
  box-shadow: 0 28px 90px rgba(59, 42, 36, .13);
}

.pl-main-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.pl-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin-top: 14px;
}

.pl-thumb {
  min-height: 92px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 248, 239, .78);
  transition: transform .25s var(--ease), border-color .25s ease, box-shadow .25s ease;
}

.pl-thumb:hover,
.pl-thumb.is-active {
  transform: translateY(-2px);
  border-color: var(--royal-red);
  box-shadow: 0 12px 26px rgba(59, 42, 36, .09);
}

.pl-thumb img {
  width: 100%;
  height: 100%;
  min-height: 92px;
  object-fit: cover;
}

.pl-thumb-empty {
  display: grid;
  place-items: center;
  gap: 3px;
  color: var(--royal-red);
}

.pl-thumb-empty span {
  font-size: 24px;
}

.pl-thumb-empty small {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 11px;
  font-weight: 600;
}

.pl-info {
  position: relative;
  padding-top: 12px;
}

.pl-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-bottom: 24px;
}

.pl-actions button {
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 248, 239, .84);
  color: var(--royal-red);
  font-size: 22px;
  transition: transform .25s var(--ease), background .25s ease;
}

.pl-actions button:hover {
  transform: translateY(-2px);
  background: var(--cream-soft);
}

.product-label {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--royal-gold);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pl-info h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(54px, 6vw, 86px);
  font-weight: 700;
  line-height: .95;
}

#phan-nu .pl-info h1 { color: #f5a360; }
#phan-ma .pl-info h1 { color: #fa8b87; }
#son-duong .pl-info h1 { color: #797f4a; }

.pl-subtitle {
  max-width: 660px;
  margin-bottom: 18px;
  color: var(--royal-red);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: clamp(18px, 1.7vw, 24px);
  font-weight: 700;
  line-height: 1.45;
}

.pl-desc {
  max-width: 660px;
  margin-bottom: 22px;
  color: #6f5a50;
  font-size: 16px;
  line-height: 1.85;
}

.pl-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.pl-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--cream-soft);
  color: var(--royal-red);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.pl-slogan {
  margin: 28px 0;
  padding: 20px 24px;
  border-left: 4px solid var(--royal-gold);
  border-radius: 0 18px 18px 0;
  background: rgba(244, 230, 208, .58);
  color: var(--royal-red);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(25px, 2.3vw, 34px);
  font-weight: 700;
  line-height: 1.25;
}

.pl-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 34px;
}

.pl-primary-btn,
.pl-secondary-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: 999px;
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: transform .25s var(--ease), background .25s ease, color .25s ease;
}

.pl-primary-btn {
  background: var(--royal-red);
  color: var(--cream);
}

.pl-secondary-btn {
  border: 1px solid rgba(83, 0, 0, .22);
  background: rgba(255, 248, 239, .8);
  color: var(--royal-red);
}

.pl-primary-btn:hover,
.pl-secondary-btn:hover {
  transform: translateY(-2px);
}

.pl-secondary-btn:hover {
  background: var(--cream-soft);
}

/* ACCORDION */
.pl-accordion {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.pl-accordion-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 248, 239, .8);
  box-shadow: 0 12px 34px rgba(59, 42, 36, .05);
}

.pl-accordion-head {
  width: 100%;
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 22px;
  background: linear-gradient(135deg, var(--cream), var(--cream-soft));
  color: var(--royal-red);
  font-family: "Be Vietnam Pro", "DM Sans", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  transition: background .25s ease;
}

.pl-accordion-head:hover {
  background: linear-gradient(135deg, var(--cream-soft), #eed9ba);
}

.pl-accordion-head b {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(83, 0, 0, .1);
  color: var(--royal-red);
  font-size: 17px;
}

.pl-accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  padding: 0 24px;
  border-top: 0 solid transparent;
  background: rgba(255, 248, 239, .72);
  transition:
    grid-template-rows .4s var(--ease),
    padding .4s var(--ease),
    border-color .4s ease;
}

.pl-accordion-body > * {
  min-height: 0;
  overflow: hidden;
}

.pl-accordion-item.is-open .pl-accordion-body {
  grid-template-rows: 1fr;
  padding: 22px 24px 26px;
  border-top: 1px solid rgba(83, 0, 0, .1);
}

.pl-accordion-body p {
  max-width: 760px;
  margin-bottom: 14px;
  color: #5f4a40;
  font-size: 15px;
  line-height: 1.85;
}

.pl-accordion-body p:last-child {
  margin-bottom: 0;
}

.pl-ingredient-list {
  display: grid;
  gap: 12px;
}

.pl-ingredient-list li {
  padding: 14px 16px;
  border-radius: 14px;
  background: var(--cream-soft);
  color: var(--royal-red);
  font-size: 14px;
  line-height: 1.65;
}

/* LOWER INFO */
.pl-detail-lower {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  margin-top: 72px;
}

.pl-detail-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 248, 239, .84);
  box-shadow: 0 18px 48px rgba(59, 42, 36, .06);
}

.pl-detail-card h2 {
  margin-bottom: 24px;
  color: var(--royal-red);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(32px, 3vw, 46px);
  line-height: 1.05;
}

.pl-detail-card p {
  margin-bottom: 14px;
  color: #6f5a50;
  font-size: 15px;
  line-height: 1.85;
}

.pl-info-table {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.pl-info-row {
  display: grid;
  grid-template-columns: 210px 1fr;
  border-bottom: 1px solid var(--line);
}

.pl-info-row:last-child {
  border-bottom: 0;
}

.pl-info-row strong,
.pl-info-row span {
  padding: 18px 20px;
  font-size: 14px;
  line-height: 1.65;
}

.pl-info-row strong {
  background: rgba(244, 230, 208, .72);
  color: var(--royal-red);
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 700;
}

.pl-info-row span {
  color: #6f5a50;
}

.pl-qr-box {
  display: grid;
  grid-template-columns: 74px 1fr;
  align-items: center;
  gap: 16px;
  margin-top: 26px;
  padding: 18px;
  border-radius: 18px;
  background: var(--cream-soft);
}

.pl-qr-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: var(--royal-red);
  color: var(--cream);
  font-family: "Be Vietnam Pro", sans-serif;
  font-weight: 800;
}

.pl-qr-box h3 {
  margin-bottom: 6px;
  color: var(--royal-red);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 15px;
  font-weight: 800;
}

.pl-qr-box p {
  margin: 0;
  font-size: 13px;
  line-height: 1.7;
}

/* EXTRA GALLERY */
.pl-extra-gallery {
  margin-top: 72px;
}

.pl-extra-head {
  max-width: 720px;
  margin-bottom: 24px;
}

.pl-extra-head span {
  color: var(--royal-gold);
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.pl-extra-head h2 {
  margin: 12px 0 10px;
  color: var(--royal-red);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 4vw, 58px);
  line-height: 1;
}

.pl-extra-head p {
  color: #6f5a50;
  font-size: 15px;
  line-height: 1.75;
}

.pl-extra-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.pl-extra-img,
.pl-extra-placeholder {
  min-height: 220px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 24% 20%, rgba(217, 166, 166, .2), transparent 28%),
    var(--cream);
  box-shadow: 0 14px 34px rgba(59, 42, 36, .06);
}

.pl-extra-img img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.pl-extra-placeholder {
  display: grid;
  place-items: center;
  color: var(--royal-red);
  text-align: center;
}

.pl-extra-placeholder span {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
  border-radius: 50%;
  background: var(--cream-soft);
  font-size: 28px;
}

.pl-extra-placeholder p {
  font-family: "Be Vietnam Pro", sans-serif;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 980px) {
  .product-detail-list {
    padding: 48px 22px 72px;
  }

  .pl-product-shell {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pl-gallery {
    position: static;
  }

  .pl-main-image img {
    aspect-ratio: 16 / 11;
  }

  .pl-detail-lower {
    grid-template-columns: 1fr;
  }

  .pl-extra-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .product-detail-list {
    padding: 30px 14px 56px;
  }

  .pl-info h1 {
    font-size: 44px;
  }

  .pl-thumb-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .pl-cta-row {
    display: grid;
  }

  .pl-primary-btn,
  .pl-secondary-btn {
    width: 100%;
  }

  .pl-detail-card {
    padding: 22px;
  }

  .pl-info-row {
    grid-template-columns: 1fr;
  }

  .pl-info-row strong {
    padding-bottom: 8px;
  }

  .pl-info-row span {
    padding-top: 8px;
  }

  .pl-extra-grid {
    grid-template-columns: 1fr;
  }

  .pl-accordion-head {
    min-height: 60px;
    padding: 0 16px;
    font-size: 16px;
  }

  .pl-accordion-item.is-open .pl-accordion-body {
    padding: 18px 16px 22px;
  }
}

/* Đồng bộ navbar và footer với trang chủ */
.site-nav,
.site-nav.scrolled,
.nav,
.nav.scrolled {
  background: #fff;
  border-bottom-color: rgba(0, 0, 0, .12);
  color: #000;
  box-shadow: none;
}

.site-nav-logo,
.site-nav-logo span,
.nav-logo,
.nav-logo span,
.site-nav-links a,
.site-nav-links a:visited,
.nav-links a,
.nav-links a:visited,
.nav-search-btn,
.ngs-search-form,
.ngs-search-input,
.ngs-search-close,
.ngs-search-submit {
  color: #000;
}

.nav-hamburger span {
  background: #000;
}

.ngs-search-form {
  border-bottom-color: rgba(0, 0, 0, .72);
}

.ngs-search-input::placeholder {
  color: rgba(0, 0, 0, .5);
}

.nav-drawer {
  background: #fff;
}

.nav-drawer a {
  color: #000;
  border-bottom-color: rgba(0, 0, 0, .12);
}

.nav-drawer a:hover,
.nav-drawer a.is-active,
.site-nav-links a:hover,
.site-nav-links a.is-active,
.nav-links a:hover,
.nav-links a.is-active {
  color: #000;
}

.site-footer,
.footer {
  background: #000;
  color: #fff;
}

.site-footer-logo,
.site-footer-logo span,
.footer-logo,
.footer-logo span,
.site-footer h4,
.footer-col-title,
.site-footer p,
.footer-tagline,
.site-footer a,
.footer-links a,
.footer-links span,
.site-footer-bottom,
.footer-bottom,
.footer-bottom-links a {
  color: #fff;
}

.site-footer-bottom,
.footer-bottom {
  border-top-color: rgba(255, 255, 255, .18);
}

/* Product showcase: desktop 3 cột, mobile ảnh dọc + thông tin bên dưới */
.product-detail-list {
  width: 100%;
  max-width: none;
  min-height: calc(100svh - var(--nav-height));
  padding: 0;
  background: #fff;
}

.pl-showcase {
  min-height: calc(100svh - var(--nav-height));
  display: grid;
  grid-template-columns: minmax(210px, 33%) minmax(430px, 34%) minmax(360px, 33%);
  align-items: center;
  background: #fff;
}

.pl-previous {
  min-width: 0;
  display: grid;
  place-items: center;
  padding: clamp(24px, 6vw, 110px);
  background: #fff;
}

.pl-previous img {
  width: 100%;
  max-width: 280px;
  height: auto;
  max-height: none;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}

.pl-previous:hover img {
  transform: scale(1.025);
  opacity: .88;
}

.pl-current {
  position: relative;
  min-width: 0;
  min-height: 0;
  aspect-ratio: 2 / 3;
  align-self: center;
  overflow: hidden;
  background: #fff;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.pl-current:active {
  cursor: grabbing;
}

.pl-current-track {
  height: 100%;
  display: flex;
  transition: transform .52s cubic-bezier(.22, .7, .2, 1);
  will-change: transform;
}

.pl-slide {
  min-width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  margin: 0;
  padding: 0;
}

.pl-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.pl-fullscreen {
  position: absolute;
  left: 20px;
  bottom: 18px;
  z-index: 4;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  color: #1d2226;
  box-shadow: 0 4px 18px rgba(0, 0, 0, .06);
}

.pl-fullscreen svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pl-dots {
  position: absolute;
  left: 50%;
  bottom: 28px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-50%);
}

.pl-dot {
  position: relative;
  width: 20px;
  height: 20px;
  padding: 0;
  border-radius: 50%;
  background: transparent;
}

.pl-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #9ba0a3;
  transform: translate(-50%, -50%);
  transition: transform .22s ease, background .22s ease;
}

.pl-dot.is-active::before {
  background: #24292d;
  transform: translate(-50%, -50%) scale(1.45);
}

.pl-showcase-info {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(38px, 6vw, 110px);
  background: #fff;
  color: #24282b;
  text-align: center;
}

.pl-showcase-eyebrow {
  margin-bottom: 22px;
  color: #777f84;
  font-size: clamp(13px, 1vw, 17px);
  line-height: 1.5;
}

.pl-showcase-info h1 {
  margin: 0 0 28px;
  color: #24282b !important;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(36px, 3vw, 52px);
  font-weight: 600;
  line-height: 1.05;
}

#phan-nu .pl-showcase-info h1,
#son-duong .pl-showcase-info h1 {
  font-size: clamp(32px, 2.5vw, 46px);
  white-space: nowrap;
}

.pl-showcase-subtitle,
.pl-showcase-description {
  max-width: 560px;
  color: #747c81;
  font-size: clamp(14px, 1.05vw, 18px);
  line-height: 1.65;
}

.pl-showcase-description {
  margin-top: 18px;
}

/* Nội dung sản phẩm bên dưới gallery */
.pl-product-content {
  width: min(1650px, 100%);
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(300px, .75fr);
  gap: clamp(70px, 10vw, 190px);
  margin: 0 auto;
  padding: clamp(84px, 10vw, 150px) clamp(40px, 7vw, 136px) clamp(96px, 11vw, 170px);
  background: #fff;
}

.pl-product-summary {
  min-width: 0;
}

.pl-product-summary-kicker {
  margin: 0 0 24px;
  color: #292d30;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
}

.pl-product-summary-text {
  max-width: 930px;
  display: -webkit-box;
  overflow: hidden;
  margin: 0;
  color: #363b3e;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(23px, 1.65vw, 29px);
  font-weight: 500;
  line-height: 1.3;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
}

.pl-see-more {
  margin-top: 22px;
}

.pl-info-trigger {
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #303538;
  font: inherit;
  line-height: 1.35;
  cursor: pointer;
}

.pl-info-trigger:hover,
.pl-info-trigger:focus-visible {
  color: #6f1010;
}

.pl-product-links {
  align-self: start;
  justify-self: end;
  width: max-content;
  max-width: 100%;
  display: grid;
  justify-items: start;
  gap: 26px;
  padding-top: 4px;
}

.pl-product-links .pl-info-trigger {
  width: max-content;
  max-width: 100%;
  display: inline-block;
  padding: 0 0 3px;
  border-bottom-color: #5f6467;
  color: #24292c;
  font-size: clamp(14px, .9vw, 16px);
  font-weight: 500;
  line-height: 1.4;
  text-align: left;
}

/* Khối Sự đổi mới: ảnh trái, nội dung phải */
.pl-innovation {
  width: 100%;
  height: clamp(600px, 52vw, 860px);
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  overflow: hidden;
  background: #fff;
}

.pl-innovation-media {
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  background: #f4eee9;
}

.pl-innovation-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.pl-innovation-copy {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(44px, 5.5vw, 96px);
  color: #272c2f;
  text-align: center;
}

.pl-innovation-kicker {
  margin: 0 0 18px;
  color: #6f777b;
  font-size: clamp(13px, .8vw, 15px);
  font-weight: 500;
  line-height: 1.4;
}

.pl-innovation-copy h2 {
  max-width: 440px;
  margin: 0 0 24px;
  color: #252a2d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(28px, 2.2vw, 40px);
  font-weight: 500;
  line-height: 1.02;
}

.pl-innovation-copy > p:not(.pl-innovation-kicker) {
  max-width: 390px;
  margin: 0 0 18px;
  color: #30363a;
  font-size: clamp(14px, .95vw, 17px);
  font-weight: 500;
  line-height: 1.55;
}

.pl-innovation-copy > p:last-child {
  margin-bottom: 0;
}

/* Hiệu ứng cuối trang sản phẩm */
.pl-finish {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(76px, 7vw, 120px) 24px clamp(78px, 8vw, 130px);
  background: #fff;
  color: #252a2d;
  text-align: center;
}

.pl-finish-kicker {
  margin: 0 0 18px;
  color: #6f777b;
  font-size: clamp(13px, .8vw, 15px);
  font-weight: 500;
  line-height: 1.4;
}

.pl-finish h2 {
  max-width: 760px;
  margin: 0;
  color: #252a2d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(23px, 1.8vw, 32px);
  font-weight: 500;
  line-height: 1.05;
}

.pl-finish-media {
  width: min(500px, 74vw);
  aspect-ratio: 2 / 3;
  margin: 36px 0 0;
  overflow: hidden;
  background: #f4eee9;
}

.pl-finish-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.pl-finish-caption {
  max-width: 680px;
  margin: 30px 0 0;
  color: #252a2d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(19px, 1.55vw, 26px);
  font-weight: 500;
  line-height: 1.15;
}

/* Video quy trình cuối trang */
.pl-process {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: clamp(48px, 5vw, 84px) 24px clamp(74px, 7vw, 116px);
  background: #fff;
  text-align: center;
}

.pl-process-video {
  position: relative;
  width: min(1200px, 82%);
  margin: 0 auto;
  overflow: hidden;
  background: #111;
}

.pl-process-video video {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

.video-controls {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 4;
  display: flex;
  gap: 5px;
}

.video-control {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  background: rgba(0, 0, 0, .24);
  color: #fff;
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px);
  transition: background .2s ease, transform .2s ease;
}

.video-control:hover {
  background: rgba(0, 0, 0, .4);
}

.video-control:active {
  transform: scale(.96);
}

.video-control:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.video-control svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.video-control .icon-sound-off,
.video-control .icon-play,
.video-control-mute.is-muted .icon-sound-on,
.video-control-play.is-paused .icon-pause {
  display: none;
}

.video-control-mute.is-muted .icon-sound-off,
.video-control-play.is-paused .icon-play {
  display: block;
}

.pl-process h2 {
  max-width: 720px;
  margin: clamp(30px, 3vw, 48px) 0 0;
  color: #252a2d;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(22px, 1.8vw, 32px);
  font-weight: 500;
  line-height: 1.1;
}

/* Drawer thông tin mở từ bên phải */
.pl-info-drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 11990;
  background: rgba(255, 255, 255, .66);
  opacity: 0;
  visibility: hidden;
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  transition: opacity .32s ease, visibility .32s ease;
}

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

.pl-info-drawer {
  position: fixed;
  inset: 10px 10px 10px auto;
  z-index: 12000;
  width: min(520px, calc(100% - 20px));
  overflow: hidden;
  border-radius: 9px;
  background: #fff;
  color: #4e575b;
  box-shadow: -20px 0 60px rgba(0, 0, 0, .12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(calc(100% + 24px));
  transition: transform .42s cubic-bezier(.22, .8, .2, 1), opacity .25s ease, visibility .42s ease;
}

.pl-info-drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.pl-info-drawer-inner {
  height: 100%;
  overflow-y: auto;
  padding: 64px clamp(32px, 3.5vw, 58px) 70px;
  scrollbar-width: thin;
}

.pl-info-drawer-close {
  position: absolute;
  top: 20px;
  right: 22px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 0;
  background: transparent;
  color: #303538;
  font-size: 30px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.pl-info-drawer h2 {
  margin: 0 0 70px;
  padding: 0 0 17px;
  border-bottom: 1px solid #e0e1e2;
  color: #303538;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
}

.pl-info-drawer h2::after {
  content: "";
  display: block;
  width: 104px;
  height: 1px;
  margin-bottom: -18px;
  background: #303538;
}

.pl-info-drawer-content {
  color: #4b5357;
  font-size: clamp(15px, 1vw, 16px);
  font-weight: 500;
  line-height: 1.75;
}

.pl-info-drawer-content h3 {
  margin: 0 0 30px;
  color: #303538;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(29px, 2vw, 36px);
  font-weight: 600;
  line-height: 1.1;
}

.pl-info-drawer-content p {
  margin: 0 0 28px;
}

.pl-info-facts {
  display: grid;
  gap: 10px;
  margin: 36px 0;
}

.pl-info-facts div {
  display: grid;
  grid-template-columns: minmax(135px, .8fr) minmax(0, 1.7fr);
  gap: 16px;
}

.pl-info-facts dt {
  color: #303538;
  font-weight: 600;
}

.pl-info-facts dd {
  margin: 0;
}

.pl-info-weight {
  padding-top: 12px;
  border-top: 1px solid #e3e4e5;
}

body.pl-info-drawer-open {
  overflow: hidden;
}

.pl-lightbox[hidden] {
  display: none;
}

.pl-lightbox {
  --pl-lightbox-scale: 1;
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  grid-template-columns: 108px minmax(0, 1fr) 132px;
  gap: clamp(18px, 2.5vw, 46px);
  align-items: stretch;
  padding: 64px clamp(24px, 3vw, 56px) 40px;
  background: rgba(249, 249, 249, .985);
}

.pl-lightbox-stage {
  min-width: 0;
  min-height: 0;
  width: auto;
  height: min(calc(100svh - 104px), 900px);
  max-width: 100%;
  aspect-ratio: 2 / 3;
  align-self: center;
  justify-self: center;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #f4f4f4;
}

.pl-lightbox-main {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  transform: scale(var(--pl-lightbox-scale));
  transition: transform .35s cubic-bezier(.22, .7, .2, 1), opacity .2s ease;
  will-change: transform;
}

.pl-lightbox-zoom {
  position: relative;
  align-self: center;
  height: min(560px, 72vh);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pl-lightbox-zoom::before {
  content: "";
  position: absolute;
  top: 13px;
  bottom: 13px;
  left: 10px;
  width: 1px;
  background: #c8c8c8;
}

.pl-lightbox-zoom-step {
  position: relative;
  z-index: 1;
  min-height: 26px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #858585;
  font-size: 12px;
  cursor: pointer;
}

.pl-lightbox-zoom-step::before {
  content: "";
  width: 21px;
  height: 21px;
  flex: 0 0 21px;
  border: 1px solid #bbb;
  border-radius: 50%;
  background: #f9f9f9;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.pl-lightbox-zoom-step.is-active {
  color: #171717;
}

.pl-lightbox-zoom-step.is-active::before {
  border: 6px solid #252525;
  background: #fff;
  transform: scale(1.08);
}

.pl-lightbox-zoom-step:focus-visible {
  outline: 2px solid #242424;
  outline-offset: 4px;
}

.pl-lightbox-thumbs {
  align-self: center;
  max-height: calc(100vh - 130px);
  display: flex;
  flex-direction: column;
  gap: 12px;
  overflow-y: auto;
  padding: 2px 8px 2px 2px;
  scrollbar-width: thin;
}

.pl-lightbox-thumb {
  width: 100%;
  height: 96px;
  flex: 0 0 96px;
  overflow: hidden;
  padding: 0;
  border: 1px solid transparent;
  background: #eee;
  cursor: pointer;
  opacity: .62;
  transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}

.pl-lightbox-thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

.pl-lightbox-thumb:hover,
.pl-lightbox-thumb.is-active {
  border-color: #222;
  opacity: 1;
}

.pl-lightbox-thumb:focus-visible {
  outline: 2px solid #222;
  outline-offset: 2px;
}

.pl-lightbox-close {
  position: absolute;
  top: 12px;
  right: 18px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: #111;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

body.pl-lightbox-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .pl-showcase {
    grid-template-columns: 32% 36% 32%;
  }

  .pl-showcase-info {
    padding: 40px 28px;
  }
}

@media (max-width: 800px) {
  .product-detail-list {
    background: #fff;
  }

  .pl-showcase {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .pl-previous {
    display: none;
  }

  .pl-current {
    width: 100%;
    min-height: 0;
    aspect-ratio: 2 / 3;
  }

  .pl-slide {
    height: 100%;
    padding: 0;
  }

  .pl-fullscreen {
    left: 16px;
    bottom: 20px;
  }

  .pl-dots {
    bottom: 35px;
  }

  .pl-showcase-info {
    min-height: 390px;
    padding: 70px 24px 82px;
  }

  .pl-showcase-eyebrow {
    margin-bottom: 20px;
    font-size: 15px;
  }

  .pl-showcase-info h1 {
    margin-bottom: 26px;
    font-size: clamp(38px, 11vw, 56px);
  }

  #phan-nu .pl-showcase-info h1,
  #son-duong .pl-showcase-info h1 {
    font-size: clamp(30px, 9vw, 42px);
    white-space: nowrap;
  }

  .pl-showcase-subtitle,
  .pl-showcase-description {
    font-size: 15px;
    line-height: 1.75;
  }

  .pl-product-content {
    grid-template-columns: 1fr;
    gap: 52px;
    padding: 68px 24px 88px;
  }

  .pl-product-summary-text {
    font-size: 23px;
    line-height: 1.35;
    -webkit-line-clamp: 7;
  }

  .pl-product-links {
    align-self: auto;
    justify-self: end;
  }

  .pl-innovation {
    height: auto;
    grid-template-columns: 1fr;
  }

  .pl-innovation-media {
    width: calc(100% - 32px);
    height: auto;
    margin: 0 auto;
    aspect-ratio: 2 / 3;
  }

  .pl-innovation-copy {
    min-height: 440px;
    padding: 62px 24px 72px;
  }

  .pl-innovation-copy h2 {
    margin-bottom: 22px;
    font-size: clamp(30px, 8vw, 38px);
  }

  .pl-innovation-copy > p:not(.pl-innovation-kicker) {
    font-size: 14px;
    line-height: 1.7;
  }

  .pl-finish {
    padding: 68px 20px 82px;
  }

  .pl-finish h2 {
    font-size: clamp(25px, 7vw, 32px);
  }

  .pl-finish-media {
    width: min(420px, 88vw);
    margin-top: 30px;
  }

  .pl-finish-caption {
    margin-top: 26px;
    font-size: clamp(20px, 6vw, 25px);
  }

  .pl-process {
    padding: 48px 12px 72px;
  }

  .pl-process-video {
    width: calc(100% - 20px);
  }

  .pl-process h2 {
    margin-top: 22px;
    padding: 0 12px;
    font-size: clamp(18px, 5vw, 22px);
    line-height: 1.25;
  }

  .pl-info-drawer {
    inset: 0;
    width: 100%;
    border-radius: 0;
  }

  .pl-info-drawer-inner {
    padding: 62px 24px 54px;
  }

  .pl-info-drawer h2 {
    margin-bottom: 48px;
  }

  .pl-info-facts div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .pl-lightbox {
    grid-template-columns: 1fr;
    grid-template-rows: minmax(0, 1fr) auto auto;
    gap: 14px;
    padding: 58px 14px 16px;
  }

  .pl-lightbox-stage {
    grid-row: 1;
    width: min(100%, 440px);
    height: auto;
    max-height: none;
    aspect-ratio: 2 / 3;
  }

  .pl-lightbox-zoom {
    grid-row: 2;
    width: 100%;
    height: auto;
    flex-direction: row;
  }

  .pl-lightbox-zoom::before {
    top: 10px;
    right: 11px;
    bottom: auto;
    left: 11px;
    width: auto;
    height: 1px;
  }

  .pl-lightbox-zoom-step {
    flex-direction: column;
    gap: 3px;
    font-size: 10px;
  }

  .pl-lightbox-thumbs {
    grid-row: 3;
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 2px 2px 5px;
  }

  .pl-lightbox-thumb {
    width: 72px;
    height: 56px;
    flex: 0 0 72px;
  }
}
